Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you put animations you've made with the Roblox Animation Editor into your character?

Asked by 10 years ago

How do you put animations you've made with the Roblox Animation Editor into your character?

For example, if you made a walking animation with the Animation Editor, how would you put it into your character?

2 answers

Log in to vote
2
Answered by 10 years ago

Name the walking animation "WalkAnim", put it in the lighting, then put this in the workspace:

game.Players.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function(chr)
        chr.Animation.walk.WalkAnim:destroy()
        wait()
        game.Lighting.WalkAnim:clone().Parent = chr.Animation.walk
    end)
end)
Ad
Log in to vote
-1
Answered by
Hybric 271 Moderation Voter
10 years ago

Wow are you smart... incorrect Zakkeh.

So first you've gotta name the animation you made called: "Hola" then, Cut and paste it to Workspace Then, insert a LocalScript into the StarterPack. Then: copy this into the LocalScript:

script.Parent.Parent.Character.Humanoid:LoadAnimation(Workspace.Hola):Play()

Answer this question