local Handle = Tool:WaitForChild("Handle")
local Mesh = Handle:WaitForChild("Mesh")
local swingAnim = Tool.Animations.Swing
Tool.Activated:Connect(function()
print(1)
local animTrack = Tool.Parent:WaitForChild("Humanoid"):LoadAnimation(swingAnim)
animTrack:Play()
print(2)
end)
the animation wont play, there is no errors and both debug print statements print.
classic animation animator lets me import it
idk whats wrong or if it is a bug?