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