here is how i go back to my menu, you have to delite everything to be ablle to restart your game. so in the go to menu or GOSUB menu delite all your objects that are in game, also all the music. then you will be able to restart the game fresh.
Rem *****************************************************************************************
Rem ******** in game help menu loop *********
Rem *****************************************************************************************
if keystate(28) = 1
if doonce = 0
menu = 1 - menu
doonce = 1
endif
else
doonce = 0
endif
if menu=1
cls
show mouse
paste image 9,100,100,1
paste image 8,100,100,1
If HyperLink(700,200,"SAVE Game") = 1 Then GOSUB LEVELONE
If HyperLink(700,250,"MAIN MENU") = 1
delete object 1
delete object 2
delete object 3
delete object 4
delete object 10
delete object 11
delete sound 1
delete sound 2
delete sound 3
delete sound 4
delete sound 5
delete sound 6
delete music 1
delete image 1
cls
GOSUB Menu
endif
If HyperLink(100,300,"click here") = 1
set cursor 100,400
print "this is your shoe upgrade"
set cursor 100,430
print "to use the shoe press r"
set cursor 100,460
print "at the same time you press the up key"
endif
endif
if menu=0
hide mouse
endif
dweeb