I cannot load animations on a non humanoid character using AnimationController

I would like help with my issue. Here are the questions answered:

  1. What do you want to achieve? Keep it simple and clear!

I would like to make my Star Platinum load the Idle animation without a humanoid.

  1. What is the issue? Include screenshots / videos if possible!

For some reason I use an animation controller to load the animation and whenever I try to it does not work. Screenshot by Lightshot and Screenshot by Lightshot

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?

Yes, I tried to use a humanoid on Star Platinum but it made the player weld a bit weird and made the player not jump which is a problem, I also tried to use different animations, And I did look for solutions in the Developer Hub.

Im just trying to look for something that can help play the animation since the AnimationController for some reason does not work.

		local animControl = Mystand:WaitForChild("AnimationController")
		local idle = animControl:LoadAnimation(game.ReplicatedStorage.Animations.SP_Idle)
		idle:Play()

Thanks.

Try using Animator

local animControl = Mystand:WaitForChild("AnimationController")
local idle = animControl.Animator:LoadAnimation(game.ReplicatedStorage.Animations.SP_Idle)
idle:Play()

does not work sadly i dont know whats the reason tho