I am using GetChildren like this:
1 | local cars = game.Workspace.Car:GetChildren() |
2 | for i = 1 , #cars do |
3 | cars [ i ] .BrickColor = BrickColor.Yellow() |
4 | end |
But it justs finds one random part by using the table. What term finds All Children?
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.
1 | cars = game.Workspace.Car:GetChildren() |
2 | for i, v in pairs (cars) do |
3 | if v:IsA( "Part" ) then |
4 | v.BrickColor = BrickColor.Yellow() |
5 | end |
6 | end |
01 | c = workspace:children() |
02 | for i = 1 ,#c do |
03 | if c [ i ] .className = = "Part" then |
04 | c [ i ] .BrickColor = BrickColor.new( "Yellow" ) --Sorry if did this line wrong |
05 | elseif c [ i ] .className = = "Model" then |
06 | ci = c [ i ] :children() |
07 | for i 2 = 1 ,#ci do |
08 | if ci [ i 2 ] .className = = "Part" then |
09 | ci [ i 2 ] .BrickColor = BrickColor.new( "Yellow" ) --Sorry if did this line wrong |
10 | end end end end |