I'm trying to make this dummy have an animation play, but nothing happens.
local a = script.Animation a.AnimationId = "rbxassetid://33796059" h = Character:FindFirstChild'Humanoid' local t = h:LoadAnimation(a) 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.
local Character = script.Parent local animation = Instance.new('Animation') local track = nil animation.AnimationId = "rbxassetid://33796059" track = Character.Humanoid:LoadAnimation(animation) track:Play()