Play a moon animation

Hello,

I am fond of Moon to create good animations for trailers etc. but I would like to know if I can save an Moon Animation and play it when a player join, so the player will see the animation.

1 Like
1 Like

I seen this video to learn the basics of the plugin but if I want to play the animation that I export, how can I do?

It’s the same with normal animation, just insert a script and an animation inside the script, copy the id of the animation inside the new animation you created, and do a little scripting:

local animation = script.ANIMATION -- replace ANIMATION with your animation name
local humanoid = -- where did you put your humanoid?
humanoid.Animator:LoadAnimation(animation):Play() --play the animation on the humanoid

If you want it to play when the player joins, this should work:

local hum = game:GetService("Players").LocalPlayer.Character.Humanoid
local animation = hum:LoadAnimation(wherever your animation is located)
game:GetService("Players").PlayerAdded:Connect(function()
animation:Play()
end)