Hmm I think im doing somthing wrong
sync on
sync rate 100
hide mouse
make object sphere 1,200
color object 1,rgb(17,104,189)
make object cube 2,77
position object 2,300,0,0
make object cube 3,99
position object 3,500,7,65
make object cube 4,150
position object 4,900,56,108
load object \"Knife.3DS\",5
position object 5,700,100,1
point camera 0,0,0,0
position camera 0,500,-500
do
POSITION CAMERA OBJECT POSITION X(1),OBJECT POSITION Y(1),OBJECT POSITION Z(1)
if upkey()=1 then move object 1,8
if downkey()=1 then move object 1,-8
if leftkey()=1 then move object left 1,3
if rightkey()=1 then move object right 1,3
if shiftkey()=1 and upkey()=1 then move object 1,8
sync
loop
when i play this code the program starts then right away closes, if i play it without the
load object \"Knife.3DS\",5
position object 5,700,100,1
it works fine. What am i doing wrong?