It's a startercharacterscript with a animation inside and the animation doesn't play
local GrabAnimTrack = char.Humanoid:LoadAnimation(script:FindFirstAncestor("GrabAnimation"))
Output Error: Needs Animation Object (When there's already an object)
Have you tried:
local animation = script:WaitForChild("YourAnimationName") local animationLoad = humanoid:LoadAnimation(animation) animationLoad:Play()