01 | while true do |
02 | if game.Workspace.MaxVal.Value > = 5 then |
03 | local Parts = game.Workspace:GetChildren() |
04 | for i = 1 , #Parts do |
05 | if Parts [ i ] .Name = = "Partay" or "Partay1" or "Partay2" or "Partay3" or "Partay4" or "Partay5" then |
06 | Parts.BrickColor = BrickColor.new( "Parsley green" ) |
07 | end |
08 | end |
09 | end |
10 | wait(. 2 ) |
11 | end |
There's no error that's being outputted, but it does go through past that second if statement if I tell it to print something. It might be using the original variable, and not changing it based off of that, but I don't know.
Problem: BrickColor isn't changing.
Solution: Use Parts[i]
instead of Parts
on line 06.
Explanation: If you used Parts
, the script would add a key called "BrickColor" into the Parts table instead of setting the part's BrickColor. Using Parts[i]
would make it so that the BrickColor of the part would change.
01 | while true do |
02 | if game.Workspace.MaxVal.Value > = 5 then |
03 | local Parts = game.Workspace:GetChildren() |
04 | for i = 1 , #Parts do |
05 | if Parts [ i ] .Name = = "Partay" or Parts [ i ] .Name = = "Partay1" or Parts [ i ] .Name = = "Partay2" or Parts [ i ] .Name = = "Partay3" or Parts [ i ] .Name = = "Partay4" or Parts [ i ] .Name = = "Partay5" then |
06 | Parts [ i ] .BrickColor = BrickColor.new( "Parsley green" ) |
07 | end |
08 | end |
09 | end |
10 | wait(. 2 ) |
11 | end |
Please upvote and accept this answer if it helped.