How to play animations in game with new Moon Animator

I am very new to animating on Moon Animator and I want my animations and camera/subtitles that I made to play when a player joins the game. Here is what I have so far:

image

image

image

image

How can I get this to work?

2 Likes

You have to export it. For me, I just right clicked on the animation in the explorer and was able to publish it by clicked a button that I think said “Save to Roblox”. If you don’t own the animations I don’t think you can play them.

image

So like this?

1 Like

Yes, I think so, press save to roblox.

You need to use an AnimationController inside a Humanoid.

Insert an animation inside a LocalScript and the Script inside a StarterCharacterScripts or StarterPlayerScripts

local Humanoid = game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid")
local Animation = Humanoid:LoadAnimation(script:FindFirstChildOfClass("Animation"))

Animation:Play()
1 Like

You click File>Export Rigs, right-click on the selected object in the Explorer (Moon Animator will have it selected for you) and click “Save To Roblox”. Then do what @XayVoid said.