So I need to find the hands of a character. while trying to use :GetChildren() to do so, I stumbled upon a problem.
Hands are not in the table.
This is the script I used:
local Character = script.Parent local Desc = Character:GetChildren() for index, children in pairs(Desc) do if children:IsA("BasePart") then print(children.Name) end end
this is what I got:
HumanoidRootPart LeftLowerArm LeftUpperArm LowerTorso RightLowerArm RightUpperArm LeftUpperLeg RightUpperLeg LeftFoot LeftLowerLeg RightFoot RightLowerLeg UpperTorso Head
Additional: The script is placed in StarterCharacterScripts
Any ideas of why this may be happening?
hands are not baseparts apparently