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