Hello!
I am trying to make a tool (with no handle) that makes you dance when you equip It, the problem Is that It does literally nothing
Script:
local Tool = script.Parent local Troll = Tool.Parent local CopeAnimationTrack Tool.Equipped:Connect(function() Troll.HumanoidRootPart.Anchored = true Troll["Chicken Dance"]:Play() CopeAnimationTrack = Troll.Humanoid:FindFirstChild("Animator"):LoadAnimation(CopeDance) CopeAnimationTrack:Play() end) Tool.Unequipped:Connect(function() Troll.HumanoidRootPart.Anchored = false Troll["Chicken Dance"]:Stop() CopeAnimationTrack:Stop() end)