yes
here is the code
rem setup the screen
sync on
sync rate 0
hide mouse
if check display mode(1024,768,32)=1 then set display mode 1024,768,32
rem make the player
player=1
make object sphere player,40
position object player,0,0,0
color object player,rgb(255,0,0)
rem movments code
do
if rightkey () = 1 then yrotate object player,wrapvalue (object angle y(player)+4)
if leftkey () = 1 then yrotate object player,wrapvalue (object angle y(player)-4)
if upkey () = 1 then move object player,4
if downkey () = 1 then move object player,-4
sync
loop
tell me if you need any help