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

How do i make a run animation? [closed]

Asked by 9 years ago

I need help so badly please help?

0
This is not a request site, include what you've already tried. http://wiki.roblox.com/index.php?title=Animations Perci1 4988 — 9y

Closed as Not Constructive by NotsoPenguin and BlueTaslem

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 9 years ago

This is not a request site, Although i will help.

First you need to make an animation. You can do this with the animation plugin. https://www.youtube.com/watch?v=u8jZs-DqPR8

Next you need to export your plugin and get the Id

Now we need to use it. Lets make a character wave when a player joins. We need to put this script in a dummy we can generate with the plugin.

id = -- your animation id
game.Players.PlayerAdded:connect(function(p) -- when a player joins
    repeat wait() until p.Character -- wait until the player spawns
    anmi = Instance.new("Animation", script.Parent.Humanoid) -- create a animation and put it in the --humanoid
    anmi.AnimationId = id -- set the id
    track =     script.Parent.Humanoid:LoadAnimation(anmi) -- Loads our animation and preps it for use
    track:Play() -- play the animation.
end)

this is not tested.

Ad