Attaching a part to my back?
I'm trying to attach a part to the back of my uppertorso using a weld. I've tried using * CFrame.new (0, -1.5, 0) to get it to the surface of the back of my uppertorso, and I can never get it right. Here's what I have so far:
1 | local unequipWeld = Instance.new( "Weld" , player.Character.UpperTorso) |
2 | unequipWeld.Name = "UpperTorsoUnequipWeld" |
3 | unequipWeld.Part 0 = unequipWeld.Parent |
4 | unequipWeld.Part 1 = Sword.Blade |
5 | unequipWeld.C 0 = unequipWeld.Parent.CFrame * CFrame.new ( 0 , - 1.5 , 0 ) |
Is there any way that I could get the part to attach to my back? Any help is appreciated.