Why won't Moon Aniamtion V22 work with parts?

So I’m making an animation with Moon Editor V22 but for some reason the part won’t animate in the game.

Animation Editor
https://gyazo.com/b1ade8ba114172cac4be9286ba98adcd

In Game
https://gyazo.com/907526f8d20fcaccf627a9ebecf217d0

I never really use Moon so I don’t know whats going on.

local AC = script.Parent.AnimationController
local A = AC.Animation

local Anim = AC:LoadAnimation(A)

wait(5)
Anim:Play()
print("Played")

Does the part you have include a Humanoid? Unfortunately roblox can’t play animations unless it has a Humanoid to work with.

LoadAnimation works by loading a anim into the player or rigs Humanoid and then playing it from there. For example:

AnimTrack = Rig.Humanoid:LoadAnimation(Animation)

AnimTrack:Play()

Article explaining LoadAnimation:

1 Like

Make sure the part is unanchored and it has a Motor6D part attached