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

How to put R15 animations onto a NPC???

Asked by 6 years ago
Edited 6 years ago

I've looked up regular animation tutorials but in the end they don't help with my specific request. I've tried recoding the animation scripts on a player but they are far too complicated for my level of coding. I'm stumped at this point so I've come here. How do I put the exact R15 animations of a player (ex: /e dance) onto an NPC. Here is script I've tried using, but I realized I can't do it this way :P:

 -- Animations
local animationOne = script:WaitForChild('AnimationOne')

local animationTwo = script:WaitForChild('AnimationTwo')

local animationThree = script:WaitForChild('AnimationThree')

local humanoid script.Parent:WaitForChild('Humanoid')
local dance = humanoid:LoadAnimation(animationOne, animationTwo, animationThree)
dance:Play()
0
on line 08 you are missing a = after local humanoid So are you trying to play the three animations at the same time or one after the other? Galicate 106 — 6y

Answer this question