The primary problem is that the BrickColor is not a string.
You try and compare BrickColor with the string 'Bright red'.
There are multiple solutions to this issue -
• you can call tostring() on the BrickColor property, resulting in a string.
1 | for i,v in pairs (game.Workspace:GetChildren()) do |
2 | if v:IsA( "Part" ) and tostring (v.BrickColor) = = "Bright red" |
• you can access the BrickColor datatype when comparing (recommended)
1 | for i,v in pairs (game.Workspace:GetChildren()) do |
2 | if v:IsA( "Part" ) and v.BrickColor = = BrickColor.new( "Bright red" ) |
You can read more about this method here.