I am trying to make is so that a brick switches between two colours but it's not working
brick = script.Parent while true do brick.BrickColor = BrickColor("Bright Orange") wait(0.5) brick.BrickColor = BrickColor("Neon Orange") end
i would also appreciate it if someone could tell me how to make it fade between the colors instead of switching
Use
brick = script.parent while true do brick.brickcolor = brickcolor.new("Bright Orange") wait(0.5) brick.brickcolor = brickcolor.new("Neon Orange") end
to change it to a specifi color use .new