local human = game.Players.LocalPlayer.Character.Humanoid local hold = human:LoadAnimation(script.Parent.hold) local tool = script.Parent tool.Equipped:connect(function() hold:Play() end) tool.Unequipped:connect(function() hold:Stop() end)
This is all located in a localscript. When I Play solo, the animation does not play (reposted question because it wasn't answered)
Marked as Duplicate by Wizzy011
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?