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

Error with GetChildren?

Asked by
Hybric 271 Moderation Voter
11 years ago

I am using GetChildren like this:

1local cars = game.Workspace.Car:GetChildren()
2for i = 1, #cars do
3cars[i].BrickColor = BrickColor.Yellow()
4end

But it justs finds one random part by using the table. What term finds All Children?

2 answers

Log in to vote
0
Answered by
jav2612 180
11 years ago

I don't see anything wrong in that script, it should work exactly how you want it to. However you should probably using in pairs for this application.

1cars = game.Workspace.Car:GetChildren()
2for i, v in pairs(cars) do
3    if v:IsA("Part") then
4        v.BrickColor = BrickColor.Yellow()
5    end
6end
0
Thank you, I will try it. Hybric 271 — 11y
0
Also it may because there is a child of "Car" that is not a part. This will cause the script to break. If there are any children in "Car" that arn't parts your going to need to check to make sure "v" is a part first before doing anything. jav2612 180 — 11y
0
I'll just edit to do that.... jav2612 180 — 11y
0
Well I LUA I fixed it all, but one problem, Okay so I have a Color3Value into the starterGui Gui called "Shop" and When I click a text button Hybric 271 — 11y
Ad
Log in to vote
0
Answered by 11 years ago
01c=workspace:children()
02for i=1,#c do
03if c[i].className=="Part"then
04c[i].BrickColor=BrickColor.new("Yellow") --Sorry if did this line wrong
05elseif c[i].className=="Model"then
06ci=c[i]:children()
07for i2=1,#ci do
08if ci[i2].className=="Part"then
09ci[i2].BrickColor=BrickColor.new("Yellow") --Sorry if did this line wrong
10end end end end

Answer this question