I've made a menu and the one button is click-able could someone tell me what I've done wrong...
ink rgb(255,255,255),0
text 5,5,"Play"
text 5,30,"Load"
text 5,55,"Exit"
if mousex() > 5 and mousex() < 75 and mousey() > 5 and mousey() < 25 then ink rgb(0,0,255),0 : text 5,5,"Play"
if mousex() > 5 and mousex() < 75 and mousey() > 5 and mousey() < 25 and mouseclick()=1 then text 0,350,"Are you ready? This may delete any auto-saves." : Text 0,375,"Yes" : Text 0,400,"No"
if mousex() > 5 and mousex() < 75 and mousey() > 30 and mousey() < 25 then ink rgb (0,0,255),0 : text 5,30,"Load"
if mousex() > 5 and mousex() < 75 and mousey() > 30 and mousey() < 25 and mouseclick()=1 then text 350,350,"Done"
if mousex() > 5 and mousex() < 75 and mousey() > 55 and mousey() < 25 then ink rgb (0,0,255),0 : Text 5,55,"Exit"
if mousex() > 5 and mousex() < 75 and mousey() > 55 and mousey() < 25 and mouseclick()=1 then end
sync
loop
@all: Thanks if you help out.