Yes, Jordan, it is indeed good to see a keen developer, but you now have nine threads on the first page of the DB board alone, it seems to me that you are not thinking logically, or reading the help pages.
A menu could simply be: a bitmap the size of the screen, and several clumps of writing on top of it.
Load the bitmap file first.
then set the cursor to a point on the screen and use the print statement to put some text at that point. then a little do - loop. in this loop, check the current X and Y positions of the mouse cursor. if the user clicks and is over one of the words, then act accordingly... a little example (untested)
set cursor 300,390
print "end game"
sync
do
if mouseclick() = 1
if mousex() > 250 and mousex() < 390 and mpusey() > 380 and mousey() < 420
`mouse is hovering over the exit button
end
endif
`only one possible thing to click here, add more if there are more clickable options
loop