Here's some simple code to glue 6 spheres to a cube. Remember that the help is correct in that the parameters are OBJECT,2ND OBJECT,LIMB
IGNORE the status bar help that is incorrect that has last two parameters swapped!
Now each basic object has a limb 0 which is the main object. You basically glue all your objects to limb 0 of target object (the cube)
sync on: sync rate 0 : autocam off
make object cube 1,50
color object 1,rgb(255,0,0)
for f=1 to 6
obj=f+1
read x,y,z
make object sphere obj,20
position object obj,x*50,y*50,z*50
glue object to limb obj,1,0
next f
position camera 0,100,-200
point camera 0,0,0
do
turn object left 1,0.2
pitch object up 1,0.1
sync
loop
data -1,0,0
data 1,0,0
data 0,0,1
data 0,0,-1
data 0,1,0
data 0,-1,0
Boo!