This sample shows how you can trap when the user wants to 'break' out of your program.
[pbcode]
Setfps 60
Breakkey off
repeat
cls 0
print "Press ESC or click close gadget [X] to exit"
sync
until KeyState(1)=true or getscreenclose()=true
[/pbcode]
Read more: PlayBASIC Documentation - INPUT COMMANDS (https://www.playbasic.com/help.php?page=INPUT.INDEX)