whenever i play it shows this with my moon animation for a tool. here is my script
local Player = game.Players.LocalPlayer
local Character = Player.Character
local Tool = script.Parent
local Animation = Tool:WaitForChild(“Anim”)
local Track = Character:FindFirstChildOfClass(“Humanoid”):LoadAnimation(Animation)
Tool.Activated:Connect(function()
Track:Play()
end)
i believe that the local animation is the problem. PLEASE HELP!