Thanks Chris Tate it worked just can't turn them invisible; any ideas?
Edit:
here's the code and the previous sketches dosn't work still
Rem Bottom window
Hide sprite 12
Paste sprite 12,0,0
RotationLockTimer=RotationLockTimer+1
ink rgb(0,0,0),rgb(0,0,0)
set cursor 4,247 : print "Information:"
set cursor 4,410
If RotationLock=0 then print "Rotation Mode:Free Mode"
If RotationLock=1 then print "Rotation Mode:Lock Mode"
set cursor 225,410 : print "Previous Sketches"
ink rgb (255,255,255),rgb (255,255,255)
If mousex()<screen width()/1.75 and mousey()>screen height()/2 then set current camera 4
Rem Inventory
If object exist(1000000)=0 then make object box 1000000,10,1,10 : position object 1000000,192,50,282 : hide object 1000000
OptionMenu = pick object (Mousex(),Mousey(),1000000,1000002)
If OptionMenu=1000000 and mouseclick()=1 then InventoryShipConstruction=1
Rem Rotation Lock
If object exist(1000001)=0 then make object box 1000001,40,1,5 : position object 1000001,140,50,242 : hide object 1000001
If OptionMenu=1000001 and mouseclick()=1 and RotationLock=0 and RotationLockTimer=>20 then RotationLock=1 : RotationLockTimer=0
If OptionMenu=1000001 and mouseclick()=1 and RotationLock=1 and RotationLockTimer=>20 then RotationLock=0 : RotationLockTimer=0
Rem Previous Sketch
If object exist(1000002)=0 then make object box 1000002,30,1,5 : position object 1000002,182,50,242
If OptionMenu=1000002 and mouseclick()=1 then PreviousSketchSearch=1
Rem Previous Sketch Menu
If PreviousSketchSearch=1
hide sprite 12
paste sprite 12,0,0
endif
Please help