Don't be rude or get mad at us.
You wont get any help or support if u carry on like a pork chop.
consult this example.
I dont think you fully understand what a static object is and its usage.
remark and unremark the line i commented on
cls
sync on
sync rate 0
make matrix 1,100,100,10,10
position matrix 1,-50,0,-50
make object cube 1,1
position object 1,0,0,0
rem Not highlited in DBP
MAKE STATIC OBJECT 1
for i=2 to 10
make object cube i,1
color object i,rgb(rnd(255),rnd(255),rnd(255))
rem not highlited in DBP
rem read up on this command
rem remark and unremark to see different results
`attach object to static i
rem the statics space zone is still at the old spot
rem but the mesh moves
rem see the white extra white cube?
position object i,0,0,1+i*1
next i
position camera 0,10,-15
point camera 0,0,0
disable escapekey
while escapekey()=0
m# = m# + 0.0001
move object 1,m#
y = wrapvalue(y)+1
rotate object 1,0,y,0
point camera object position x(1),object position y(1),object position z(1)
sync
endwhile
delete object 1