Why are these parts not children of this model?

Hello everyone, I ran into this super weird bug that I don’t have a solution for

Ok, look at this explorer
explororchildbug
Notice all the children

Now look at this code:

for i,part in pairs(characterCustomizationDummy:GetChildren()) do
	print(part)
end

This should print every instance in the model right? Nope. This prints everything except for the Head, Torso, Left Arm etc.

If someone could tell me why this is happening and how to solve this, I would appreciate it

Have you tried playing and checking the explorer live to see if anything is missing, or adding a delay before the script happens?

1 Like

Oh, I just needed a delay lol thanks

Best way of doing this is to use a ChildAdded event because it fires right when the child is added.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.