I was making a weld script with a hammer and I have gotten the welding right, I just need to rotate the hammer to face the right way( picture: http://prnt.sc/b17y6o )
I tried to use CFrame.fromEulerAnglesXYZ() & CFrame.Angles() but it pushes the hammer to the top of my arm. Can someone help me with this? Here is the script if you need it:
hammer.CFrame = plr:FindFirstChild("Right Arm").CFrame * CFrame.new(0,-1.72,0) local weld = Instance.new("Weld",hammer) weld.Part0 = plr:FindFirstChild("Right Arm") weld.C0 = plr:FindFirstChild("Right Arm").CFrame:inverse() weld.Part1 = hammer weld.C1 = hammer.CFrame:inverse()