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

How Do Animations Work?

Asked by 8 years ago

How do ROBLOX Animations work? Like, is Lua involved in making animations for ROBLOX characters or is there a special place in Studio where you can edit and make all the animations?

0
There is a ROBLOX official plugin for it, it's really good and there's a Wiki Bit for it too : http://www.roblox.com/Animation-Editor-item?id=144373835 Nidoxs 190 — 8y
0
there is not as much scripting for animation than what it used to be. And You can easily create your own, the downside is you cannot share animations , as it will not allow you.... http://wiki.roblox.com/index.php?title=Animations scottmike0 40 — 8y

1 answer

Log in to vote
0
Answered by
P100D 590 Moderation Voter
8 years ago

An animation needs to be loaded to a Humanoid object for it to work. The correct syntax for it is this:

(Make sure you have an animation object with the correct ID set first)

anim = Humanoid.Animator:LoadAnimation(animation)
anim:Play()

Make sure all the parts affected are not anchored, or the animation will not play.

If you want to make your own animations, you can find the official ROBLOX plugin for it here: http://www.roblox.com/Animation-Editor-item?id=144373835

0
Excellent, thanks Mars! Overstrand 10 — 8y
Ad

Answer this question