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

How do you refer to certain body parts of a player in R15?

Asked by
DesertusX 435 Moderation Voter
4 years ago

I tried searching this up on the Developer Hub but I couldn't find anything.

2 answers

Log in to vote
1
Answered by 4 years ago

Hey I'm pretty new myself so I hope this explanation helps!

So R6 only has 6 parts - head,torso,Left Arm,Right Arm,Right Leg,Left Leg

R15 has 15 parts - Head, Upper Torso, Lower Torso, LeftUpper Arm, LeftLower Arm, LeftHand, RightUpper Arm, RightLower Arm, RightHand, LeftUpperLeg, LeftLowerLeg, LeftFoot, RightUpperLeg, RightLowerLeg, RightFoot

0
Thanks! DesertusX 435 — 4y
Ad
Log in to vote
1
Answered by 4 years ago
local character = --the character rig
local humanoid = character.Humanoid

if(humanoid.RigType == enum.HumanoidRigType.R15) then
    local limb  = character[name_of_limb_goes_here]
end
0
Thanks! DesertusX 435 — 4y

Answer this question