Quote: "Nothing works."
What do you mean?
The following complete program using your code plus minimal extra stuff seems to work OK. What exactly is wrong?
set display mode desktop width(), desktop height(), 32
sync on : sync rate60 : sync
autocam off
position camera -50, 150, 5
point camera -50, 0, 300
` create a small test image
create bitmap 1, 256, 256
cls rgb(0, 255, 0)
ink rgb(255, 0, 0), 0
text 20, 20, "This is a test image"
text 20, 40, "and this is the second line of text"
get image 1, 0, 0, 256, 256
set current bitmap 0
` create objects and limbs
` first row
for t=2 to 6
make object cube t,20
position object t,-360+(t-1)*100,100,300
make mesh from object 1,t
add limb t,1,1
scale limb t,1,100,100,100
next t
` second row
for t=7 to 10
make object cube t,20
position object t,-310+(t-6)*100,50,300
make mesh from object 1,t
add limb t,1,1
scale limb t,1,100,100,100
next t
` third row
for t=11 to 15
make object cube t,20
position object t,-360+(t-10)*100,0,300
make mesh from object 1,t
add limb t,1,1
scale limb t,1,100,100,100
next t
` fourth row
for t=16 to 19
make object cube t,20
position object t,-310+(t-15)*100,-50,300
make mesh from object 1,t
add limb t,1,1
scale limb t,1,100,100,100
next t
` fifth row
for t=20 to 24
make object cube t,20
position object t,-360+(t-19)*100,-100,300
make mesh from object 1,t
add limb t,1,1
scale limb t,1,100,100,100
next t
` texture the objects
for t = 2 to 24
texture object t, 1
next t
repeat
sync
until spacekey()
end