All objects inside model are detected except one thing

for i, v in pairs(NotiF:GetChildren()) do
	print(v.Name)
end

I don’t know why my script is being so stubborn.
image
It can print the names of everything in this photo except “Sign”. I’ve renamed it and I’ve emptied its contents and it was still ignored. I don’t know what else I can do.
Help?

Do you have more than one object with similar children? Perhaps you’re looking at a different model.
Try:

print(NotiF:GetFullName())

and see where it leads while testing, or maybe it gets removed by another script.

1 Like

Does the Sign model instance have the property Archivable set to true?

Thanks to seeing where it was leading…
image
image
I’m sorry.

Eh,if its parent is head you would have to do

for i, v in pairs(Head:GetChildren()) do -- or NotiF.Head
	print(v.Name)
end

I put it there for whatever reason and forgot about the line.

What’s the relevance of this comment? OP is trying to iterate through a container of something for objects. Going back for another unneeded iteration is pointless.