I have this script and it works on parts but wont work on a SelectionBox. Help?
while true do script.Parent.Color = Color3.new(math.random(), math.random(), math.random()) wait(1.0) 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:
while true do script.Parent.Color = BrickColor.Random() wait(1) end