rem Setup environment
hide mouse
sync rate 30
autocam off
sync on
rem u can change 15 to any number u want (basically saying that tells u how many cubes there are
For x = 1 to 15
Make object cube x,100
Position object x,Rnd(2000),0,Rnd(2000)
Next x
Rem Main loop
Do
caY#= Camera angle Y()
Rem make keys to make camera move
If Upkey()=1 then Move camera 10
If Leftkey()=1 then Yrotate Camera Wrapvalue(caY#-5)
If Rightkey()=1 then Yrotate Camera Wrapvalue(caY#+5)
Rem Refresh Screen
Sync
Loop
For x = 1 to 5
Make object cube x,100
Position object x,Rnd(2000),0,Rnd(2000)
Next x
this is the code
Derek miller