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

How Could I Edit Animations?

Asked by
itsJooJoo 195
8 years ago

So I'm fairly new to animations in ROBLOX. But I need to know how to change the jump/walk/fall etc. animations. I used the plugin and editor, I'm ready to go. Except I need a script for all the animations and how I can change them. I didn't understand the wiki tutorials, so can somebody please help?

1 answer

Log in to vote
0
Answered by 8 years ago

The character (someone inside of workspace) has a localscript called Animate inside of it. Inside of that you see all the animations along with the a child as the actual animation which plays.

--To find and change certian animation
player.CharacterAdded:connect(function(char)
    char.Animate.fall.FallAnim.AnimationId=(http://www.roblox.com/asset/?id=180436148)
    --this will set it to the defualt
end)

You can see the names of all the animations by playing your game in studio and in explorer finding your character, inside of that the Animate localscript, and inside of that all of the animations.

Hope this helped!

0
I did that but for the walk anim it's slowed down by alot and the jump gets cutoff not even 1/4 of a way through itsJooJoo 195 — 8y
Ad

Answer this question