How do I make it that npc can dance?
insert a script into npc
local animation = script.Parent.Animation -- Change this to your animation while true do local animation = script.Parent.Humanoid:LoadAnimation(animation) animation:Play() script.Parent.Humanoid.AnimationPlayed:Wait() end
You can do that by putting the dance animation (you can look one up in the toolbox) then you insert it into the NPC.