Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Can you get children of get children?

Asked by 8 years ago

Just wondering if it would be possible to get the children of children through get children?

EX:

1objectsInTheChildrenOfWorkspace  =  game.Workspace:GetChildren():GetChildren()
2print(objectsInTheChildrenOfWorkspace)

Thanks

1 answer

Log in to vote
1
Answered by
Bertox 159
8 years ago

Try this:

1for i,Child in pairs(game.Workspace:GetChildren()) do --Gets children of workspace
2    for i,Child2 in pairs(Child:GetChildren()) do --Gets children of the children in Workspace
3        Child2.Transparency = 1 --Example
4    end
5end
0
Cool TSK_Uncovered 55 — 8y
Ad

Answer this question