Just wondering if it would be possible to get the children of children through get children?
EX:
1 | objectsInTheChildrenOfWorkspace = game.Workspace:GetChildren():GetChildren() |
2 | print (objectsInTheChildrenOfWorkspace) |
Thanks
Try this:
1 | for i,Child in pairs (game.Workspace:GetChildren()) do --Gets children of workspace |
2 | for i,Child 2 in pairs (Child:GetChildren()) do --Gets children of the children in Workspace |
3 | Child 2. Transparency = 1 --Example |
4 | end |
5 | end |