1 | I plan to make a strange humanoid body that has its head inside of it, but I can't figure out how to joint it with the body part that the head is inside. |
2 |
3 | For the structure of the body, it can be thought of as a "torso" block with a "head" that is smaller in size inside of it. |
You can use a Weld to join parts. If the parts are already in the correct relative orientations, you can do this:
1 | local weld = Instance.new( "Weld" ,Part 0 ) |
2 | weld.Part 0 = Part 0 |
3 | weld.Part 1 = Part 1 |
4 | weld.C 0 = Part 0. CFrame:inverse()*Part 1. CFrame |