local Tool = script.Parent
local Player = game.Players.LocalPlayer
local Anim = Tool.Animation
Tool.Equipped:Connect(function()
local Animation = Player.Character.Humanoid:LoadAnimation(Anim)
Animation:Play()
end)
Why isn’t it working? I’ve tested the same animation on a rig an it works fine. Also the animation is duplicated from the rig so the issue couldn’t be that.