I have this script and it works on parts but wont work on a SelectionBox. Help?
1 | while true do |
2 | script.Parent.Color = Color 3. new(math.random(), math.random(), math.random()) |
3 | wait( 1.0 ) |
4 | end |
Also, I tried putting the script into the SelectionBox but it didn't work.
SelectionBoxes use BrickColor for their color property instead of Color3.
Use this:
1 | while true do |
2 | script.Parent.Color = BrickColor.Random() |
3 | wait( 1 ) |
4 | end |