Character arm with tool not moving while the animation is playing?
So I am having trouble with script that will play animation when equipped.The animation without tool plays fine and on players screen it looks fine too but to other players it looks like everything animates except right arm with the tool. Here is the Local script that plays animation:
01 | local tool = script.Parent |
02 | local anim = tool.Animation |
03 | local plr = game.Players.LocalPlayer |
04 | local char = workspace:WaitForChild(plr.Name) |
05 | local hum = char:WaitForChild( "Humanoid" ) |
06 | local track = hum:LoadAnimation(anim) |
07 | track.Priority = Enum.AnimationPriority.Movement |
09 | tool.Equipped:connect( function () |
13 | tool.Unequipped:connect( function () |
Anyone knows whats the problem is?