first of all you need a loop, try this, and by the way this is how you use code snippets
[ code ] code snippet here [ /code ] (remove spaces)
set display mode 800,600,16
sync on : sync rate 60
`load wheel
load object "wheel.x",1
position object 1,400,300,0
xrotate object 1,92
yrotate object 1,180
zrotate object 1,357.5
scale object 1,12.0,12.0,12.0
`position camera
position camera 401,301,0
point camera 0,0,0
Do
`rotate wheel
if leftkey()=1 then turn object left 1,5
Loop
btw what else is wrong? let me know and umm this way might be more convenient but i wouldn't count on it
instead of turn object left i use this
if leftkey()=1 then dec a#,5
yrotate object 1,a#
then for rightkey replace dec with inc. make sure you set a# as a variable up the top of your code though
~Kieran