so I am loading from a screen that works to the main screen that holds a sprite I set up to jump to the main loop. This sprite hides all my other images and turns the screen blue. how can I fix this?
here is my code
menu:
Global Standard : Standard = RGB(255,255,255):Global Selected : Selected = RGB(280,280,255)
load image "files\menu\tital.png",100000
load image "files\menu\tittal.png",100001
load image "files\menu\playb.png",100002
load image "files\menu\click.jpg",100003
set image colorkey 0,0,0
sync
SPRITE 3, 650,350, 100002
SPRITE 4,mousex(),mousey(), 100003
paste image 100001,0,0
paste image 100000,430,250
sync
do
if mouseclick()=1 then SPRITE 4,mousex(),mousey(), 100003
if mouseclick()=1 and SPRITE COLLISION(4,3)
gosub levelone
endif
sync
loop