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

How do I make this dummy play an animation?

Asked by 7 years ago

I'm trying to make this dummy have an animation play, but nothing happens.

1local a = script.Animation
2a.AnimationId = "rbxassetid://33796059"
3 h = Character:FindFirstChild'Humanoid'
4local t = h:LoadAnimation(a)
5t:Play()

Thanks if you can help, I'm also a bit of a noob so go easy on me!

0
* goes hard on you* User#19524 175 — 7y

1 answer

Log in to vote
2
Answered by
hellmatic 1523 Moderation Voter
7 years ago
Edited 7 years ago

Make sure this is a script and is inside the NPC's character.

1local Character = script.Parent
2 
3local animation = Instance.new('Animation')
4local track = nil
5 
6animation.AnimationId = "rbxassetid://33796059"
7 
8track = Character.Humanoid:LoadAnimation(animation)
9track:Play()
0
Thanks! CaptainAlien132 225 — 7y
Ad

Answer this question