Having trouble with "animator"

As you all probably know already, Humanoid:LoadAnimation() has been deprecated, the new method is by using the “Animator” instance. But, I don’t understand it as there aren’t any good devforum posts on it, if anyone knows of it’s properties or functions, or how it works, please tell me.

you use the same method of loadanimation except you simply call it on the Animator instance like so

local Animator = Character.Humanoid.Animator
local track = Animator:LoadAnimation(Animtion)
track:Play()
1 Like

Oh! I see! And then the animator plays it onto it’s parent humanoid, correct?

That is correct :grin: It will then play like any other animation

1 Like