Ok i have tryed all i can and i still cant get it
heres code
hide mouse
CLS RGB(255,0,0)
`Load Images Player Images Etc.
Load Image "C:\Player 1.bmp",1
Load Image "C:\Player 2.bmp",2
Load Image "C:\PaintBall.bmp",3
GunSnd=1 : load sound "C:\Gun.wav",GunSnd
Sprite 1,1,300,1
Sprite 2,600,300,2
CLS RGB(25,0,0)
`Draw Players On Screen
Paste Image 1,1,300
Paste Image 2,600,300
CLS RGB(25,0,0)
`Collisions
`Movement
left = 1
right = 300
do
if Rightkey()=1 then left = left + 1
if leftkey()=1 then left = left - 1
sprite 1,left,right,1
if spacekey() = 1 then Play sound GunSnd
if player 1 < 0 then player 1 = player + 1
CLS RGB(20,255,0)
loop
`Shooting!
`===============TO DO==============
do
CLS RGB(25,255,0)
loop
and it wont stop the sprite when it goes off screen it just keeps going why?
"Computers Are Not Smart. They Just Do What You Tell Them To."