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

How do I make a Animation play on a character when a Gui clicked?

Asked by 8 years ago

Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly.

I asked this on the forum and there was no response. Please help.

0
Please Help LAShook 0 — 8y

1 answer

Log in to vote
0
Answered by
Kurieita 125
8 years ago

Just to give you a basic understand....

local Anim = Humanoid:LoadAnimation(Id)

Button.MouseButton1Click:connect(function()
Humanoid:PlayAnimation(Anim)
end)

Now all you need to do is fill in the blanks. :)

Ad

Answer this question