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

How do you move individual parts of a R15 NPC?

Asked by 5 years ago

Alright, here is another tricky thing. Im obviously very new to scripting, so please dont be annoying. thank you. I would like to know how to pose a R15 model npc, when i go into animate (which i thought would work) and press "save" and go to exit the thing, it just says "exiting will remove your progress" although i had saved it. Any ideas on how i could fix that issue? Thank you.

0
As long as it’s saved, it should be fine. It warns that in case you didn’t save anything. User#19524 175 — 5y

1 answer

Log in to vote
0
Answered by
Launderer 343 Moderation Voter
5 years ago
Edited 5 years ago

I'm not sure if I understood your question correctly but if your question is how I interpreted it then publish it to ROBLOX, add a ClassName Animation object into the NPC, add the AnimationId of your animation to the Animation object. In the script do

local npc = script.Parent
local anima = npc.Animation
local loadedanima = npc.Humanoid:LoadAnimation(anima)
loadedanima:Play()
Ad

Answer this question