From what I've seen, yes. Yes they are. And it's ANNOYING. Example:
for i,thing in pairs(model:GetChildren()) print(thing.Name) end
Lets say the model im scanning is this:
Model: Humanoid ParticleEmitter Trail Part1 Part2
What the code returns:
Part1 Part2 Humanoid ParticleEmitter
Is this true and if so is there any way to fix this? Edit: Look in the answers to see the rest of what i said. Or just tell me how to exclude parts from shirts and pants on them. Id like that too :D
I mean... just use ipairs() insead of pairs()
Also, this really shouldn’t be a problem.
for i, thing in ipairs(model:GetChildren()) do print(thing.Name) end
I’m not entirely sure what you want, but that should return the model children in the same order every time... so yeah :)
Well, tried that. The real reason i need this is so that i can edit the player character and the parts always show last in the explorer and first in the list. Here is what the explorer window looks like: Image.
If you want to do only a certain type do
IsA("type of thing here")