Is this what you mean? Press space to make a new object, that will position next to the other one:
sync on
sync rate 60
autocam off
hide mouse
`Make the first objcet
make object box 1,10,10,10
color object 1,RGB(0,64,0)
position object 1,-50,0,0
`\\\\
`Camera settings
position camera 0,0,-100
`\\\\
objectCounter as integer
objectTimer as integer
objectCounter = 1
objectTimer = 10
do
`Decrease objectTimer
dec objectTimer,1
`\\\\
if objectTimer < 1
objectTimer = 0
endif
if keystate(57) = 1 and objectTimer < 1
inc objectCounter,1
make object box objectCounter,10,10,10
posX# = object position x(objectCounter-1)
posY# = object position y(objectCounter-1)
posZ# = object position z(objectCounter-1)
position object objectCounter,posX#+15,posY#,posZ#
objectTimer = 10
endif
sync
loop
If there is something in the code that you can't understand, just ask me
-The Nerd