well im very new , ive tried to glue to object together
so ive looked at the commands help and i found the command
glue object to limb . here is my code i want to glue this two objects and make em look and work like one object !
sync on
sync rate 30
hide mouse
autocam off
rem load matrix
make matrix 1,1000,1000,5,5
rem load head model
load object "head.x", 1
position object 1,500,0,500
scale object 1,10000,10000,10000
load image "head.tga",2
texture object 1,2
rem load upper model
load object "upper.x",3
scale object 3,10000,10000,10000
load image "upper.tga",4
texture object 3,4
rem glue body
GLUE OBJECT TO LIMB 1,3,x(dont know what is limb number)
do
a#=wrapvalue(a#+mousemovex())
position camera 500+(sin(a#)*500),200,500+(cos(a#)*500)
point camera 500,0,500
sync
loop