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

How do I make an animation work?

Asked by 10 years ago

I have made a few animations myself, but I can't figure out how to make them run. Suggestions?

3 answers

Log in to vote
5
Answered by 10 years ago

http://wiki.roblox.com/index.php?title=LoadAnimation_(Method) http://wiki.roblox.com/index.php?title=AnimationTrack http://wiki.roblox.com/index.php?title=Play_(Method)

local Humanoid = Game.Players.LocalPlayer.Character.Humanoid
local Animation = Game.ReplicatedStorage.Stuff

local Anim = Humanoid:LoadAnimation(Animation)
Anim:Play()
0
Thanks, I can understand this! ChipioIndustries 454 — 10y
Ad
Log in to vote
-4
Answered by 10 years ago

There is a plugin by ROBLOX.

0
I know, I can make animations, but I don't know how to implement them. ChipioIndustries 454 — 10y
Log in to vote
-4
Answered by 10 years ago
--Im not sure I hope this would work put this in a animation GUI when they click it it animates them
script.Parent.MouseButton1Down:connect(function()
p = game.Players.LocalPlayer

game.Lighting.AnimationController:clone().Parent = p.Character.Torso
wait(2)
p.Character.Torso.AnimationController:Remove()

Answer this question