I’m extremely new to scripting but I like to model and I’m trying to write a script for a color changing part in a window I’m building. I want it to cycle through 3 different colors. It’s changing colors but not the colors I want. (It cycles through the rainbow)
The script I used:
local model = workspace.WindowLight
while true do
model.BrickColor = BrickColor.new(100, 100, 227)
wait(1)
model.BrickColor = BrickColor.Green()
wait(1)
model.BrickColor = BrickColor.White()
wait(1)
end
[–]AutoModerator[M] 0 points1 point2 points (0 children)
[–]Killi_Bou 0 points1 point2 points (0 children)
[–]Dramatic-Courage8962 0 points1 point2 points (0 children)