Hakupa
|
  |
| Joined: 03 Sep 2011 |
| Total Posts: 5375 |
|
|
| 29 Oct 2015 08:23 PM |
I am new to using this type of function and I want to know how to iterate over not just the children of a model, but the children of the children of the model (Like if the model had a model as a child). How can I do that? so far I have this:
for i,v in pairs(game.Workspace.R32:GetChildren()) do if v:IsA("BasePart") then wait(1) print (v.Name) end end |
|
|
| Report Abuse |
|
|
|
| 29 Oct 2015 08:28 PM |
local search_through = function(place)
for i,v in pairs(place:GetChildren()) do if v:IsA("BasePart") then wait(1) print (v.Name) end search_through(v) end
end
search_through(game.Workspace.R32) |
|
|
| Report Abuse |
|
|
Hakupa
|
  |
| Joined: 03 Sep 2011 |
| Total Posts: 5375 |
|
|
| 29 Oct 2015 08:33 PM |
| the output said that search_through is a nil value at line 9. |
|
|
| Report Abuse |
|
|
|
| 29 Oct 2015 08:41 PM |
local search_through
search_through = function(place)
for i,v in pairs(place:GetChildren()) do if v:IsA("BasePart") then wait(1) print (v.Name) end search_through(v) end
end
search_through(game.Workspace.R32)
Fixed. |
|
|
| Report Abuse |
|
|