Thank you very much for the code. I'm seeing how this works now. The only issue I have now is on how to use that on a model (I may be making a mistake elsewhere in my program).
rem Load tenth planet for home
load object "media\planet\planet.x",10
position object 10,0,-150,-350
rotate object 10,0,0,90
set object specular 10,0
set bump mapping on 10,11
`remstart ##########ACTIVE STATEMENT########################################################
t as integer
t = 0
do
`inc t
` position object 11, sin(t) * 20, 0, 4 + cos(t) * 4
ink 0xffff0000, 0xff000000
center text object screen x(10), object screen y(10), "CUBE"
loop
`remend
So I switched the number to 10, but I still seem to have a conflict. Usually says [ERROR, could not identify object 10] which then relates to the text code lines.