How do I make my arms animated while using a tool?
Oh gosh..
function arm() leftshoulder = script.Parent.Parent.Torso["Left Shoulder"] leftshoulder.C0 = leftsoulder.C0 *CFrame.Angles(20,-0.35,-1.25) end script.Parent.Equipped:connect(arm)
This script is inside of a tool
Function ARM is a .Equipped function. So when the player equips it, the tool goes to the torso and looks for "Left Shoulder"
You can CFrame your arm to any position you'd like. Use loops for animations like the roblox walking.