i want to my hammer model fit in players hand but i tried c0 and other things but its keep giving errors and errors could you help me where i was wrong in my code 1
i want looks like this
but its looks like this
and here is my code
i want to my hammer model fit in players hand but i tried c0 and other things but its keep giving errors and errors could you help me where i was wrong in my code 1
i want looks like this
but its looks like this
and here is my code
Use Weld.C0
A rough estimation of your CFrame is like:
CFrame.new(0,-1,0)*CFrame.Angles(0,math.rad(180),math.rad(-90))
So you can do:
weld.C0 = CFrame.new(0,-1,0)*CFrame.Angles(0,math.rad(180),math.rad(-90))
I would also suggest setting the Weld’s Part0 to the arm and Part1 to the hammer because it’s much better and C0 would work better that way.
thanks man it worked
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.