I'm trying to make this dummy have an animation play, but nothing happens.
1 | local a = script.Animation |
2 | a.AnimationId = "rbxassetid://33796059" |
3 | h = Character:FindFirstChild 'Humanoid' |
4 | local t = h:LoadAnimation(a) |
5 | t:Play() |
Thanks if you can help, I'm also a bit of a noob so go easy on me!
Make sure this is a script and is inside the NPC's character.
1 | local Character = script.Parent |
2 |
3 | local animation = Instance.new( 'Animation' ) |
4 | local track = nil |
5 |
6 | animation.AnimationId = "rbxassetid://33796059" |
7 |
8 | track = Character.Humanoid:LoadAnimation(animation) |
9 | track:Play() |