@helpme
Try setting the camera smooth to a much lower value than 100. In this example, I set it to 5.
sync on
sync rate 60
autocam off
hide mouse
make matrix 1,1000,1000,25,25
make object cube 1,25
do
if upkey()=1 then move object 1,10
if downkey()=1 then move object 1,-10
if rightkey()=1 then ang#=wrapvalue(ang#+2)
if leftkey()=1 then ang#=wrapvalue(ang#-2)
yrotate object 1,ang#
objx#=object position x(1)
objy#=object position y(1)
objz#=object position z(1)
set camera to follow objx#,objy#,objz#,object angle y(1),400,200,5,1
sync
loop
Enjoy your day.