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

Can I GetChildren of only a certain class?

Asked by
Jexpler 63
6 years ago

Can I use :GetChildren() but only have it get children that are, for instance, tools?

4 answers

Log in to vote
3
Answered by 6 years ago

Yes, you can. By using :IsA() you can easily identify what you want from a group of items. For example let's say you had a model with random items:

1local Model = script.Parent
2 
3for _, item in pairs(Modle:GetChildren()) do
4    if item:IsA('Tool') then
5        -- do something to the tool
6    end
7end

Hopefully, this helped. Best of luck developer. Comment if you have problems.

0
Not the best way. Using :IsA() returns classes that INHERIT from that class. Not the actual class. So if item.ClassName == "Tool" then. His question also said of CERTAIN CLASS. User#19524 175 — 6y
0
You raise an interesting point, but are there any concrete classes which themselves inherit from other, concrete classes? Also, is there ever a situation where it is correct to catch instances of a class, but not of a sub-class? Based on OO-principles I'd argue no. fredfishy 833 — 6y
Ad
Log in to vote
2
Answered by 6 years ago
Edited 6 years ago

Unfortunately, while this has been requested on the official developer forum, it is not [yet] a feature. You can, however, use a loop containing an if statement to check if an item is a specific class.

1local newTable = {}
2local items = something:GetChildren()
3for i,v in pairs(items) do
4    if v:IsA("Tool") then -- Any class can go here.  You can also put multiple statements.
5        table.insert(newTable,v)
6    end
7end
8-- do something with newTable here.
Log in to vote
0
Answered by
fredfishy 833 Moderation Voter
6 years ago
Edited 6 years ago

Use :IsA(className) to check the class of an instance.

1function GetChildrenOfType(parent, t)
2    children = {}
3    for i, v in pairs(parent:GetChildren()) do
4        if (v:IsA(t)) then
5            table.insert(children, v)
6        end
7    end
8    return children
9end
Log in to vote
0
Answered by
oreoollie 649 Moderation Voter
6 years ago
Edited 6 years ago

At the moment we are not able to only GetChildren of one class. This can be achieved in a few ways but the best way would be using a generic for loop to add all children of that class to a table.

1childrenOfClass = {} -- Table that the children will be put in.
2for _, v in ipairs(parent:GetChildren()) do -- Loops through ALL children
3    if v:IsA("Class") then -- Checks if child is of a specific class.
4        table.insert(childrenOfClass, v) -- Adds child to table
5    end
6end

You could make this more useful by turning it into a function like this:

1function GetChildrenOfClass(parent, class)
2    children = {} -- Table of children
3    for _,v in ipairs(parent:GetChildren()) do -- Loops through ALL children
4        if v:IsA(class) then -- Checks if "v" is of class "class"
5            table.insert(children, v) -- Adds "v" to table
6        end
7    end
8    return children -- Sends the children back to the line that called it.
9end

If my answer solved your problem, please remember to mark it as correct!

0
Your definition of IsA is wrong. User#19524 175 — 6y
0
Your definition of IsA is wrong. User#19524 175 — 6y
0
No it is not. oreoollie 649 — 6y

Answer this question