Animation Wont Play

I’m trying to make a tool animation and whenever I finished no errors or anything, it just won’t play.

–Here’s The Script

local player = game.Players.LocalPlayer
local char = player.Character or player.CharacterAdded:Wait()
local hum = char:WaitForChild(“Humanoid”)

local animator = hum:WaitForChild(“Animator”)
local animation = script.Parent.Animation

function Equipped()
local animateTrack = animator:LoadAnimation(animation)
animateTrack.Stopped:Connect(function ()
animateTrack:AdjustSpeed(0)
animateTrack.TimePosition -= .000001
end)
end

script.Parent.Equipped:Connect(Equipped)

–Its also a Local Script

whoops nvm it works, i just forgot to play it

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.