Can I remove an item from a GetChildren table?

This probably either sounds very weird or very self-explanatory

Basically, if I have a table of something’s children, can I do table.remove or whatever it was and remove the item from the table? I’d assume this works, but although it isn’t in the table it is still a child of the object…?

1 Like

You can remove an item from a table, that GetChildren returned, with table.remove but that will not destroy or unparent that child instance.

3 Likes