of     1   

Ashispro97
#7532255Wednesday, April 15, 2009 8:22 PM GMT

I know this will be wrong: while true do script.Parent.Color = "Bright Red" wait(2) script.Parent.Color = "Bright Blue" wait(2) script.Parent.Color = "Bright Yellow" wait(2) script.Parent.Color = "Bright Orange" wait(2) script.Parent.Color = "Bright Green" end If that is wrong can someone please fix it. Anyway, thanks for all your help today!
s1gman72
#7532309Wednesday, April 15, 2009 8:24 PM GMT

Each color has a number you use not a name.
larryboylover92
#7532341Wednesday, April 15, 2009 8:24 PM GMT

Instead of Color, use BrickColor and instead of "Bright Red" use BrickColor.new("Bright red") (no cap red) Never cap the second word of a color.
Ashispro97
#7532491Wednesday, April 15, 2009 8:28 PM GMT

So like this? while true do script.Parent.BrickColor = "Bright red" wait(2) script.Parent.BrickColor = "Bright blue" wait(2) script.Parent.BrickColor = "Bright yellow" wait(2) script.Parent.BrickColor = "Bright orange" wait(2) script.Parent.BrickColor = "Bright green" end ~Ash
Ashispro97
#7532531Wednesday, April 15, 2009 8:29 PM GMT

So like this? while true do script.Parent.BrickColor = ("Bright red") wait(2) script.Parent.BrickColor = ("Bright blue") wait(2) script.Parent.BrickColor = ("Bright yellow") wait(2) script.Parent.BrickColor = ("Bright orange") wait(2) script.Parent.BrickColor = ("Bright green") end
Ashispro97
#7532690Wednesday, April 15, 2009 8:32 PM GMT

Above two = wrong see below while true do script.Parent.BrickColor.new = ("Bright red") wait(2) script.Parent.BrickColor.new = ("Bright blue") wait(2) script.Parent.BrickColor.new = ("Bright yellow") wait(2) script.Parent.BrickColor.new = ("Bright orange") wait(2) script.Parent.BrickColor.new = ("Bright green") end
s1gman72
#7566052Thursday, April 16, 2009 5:35 PM GMT

So like this? while true do script.Parent.BrickColor.new("Bright red") wait(2) script.Parent.BrickColor.new("Bright blue") wait(2) script.Parent.BrickColor.new("Bright yellow") wait(2) script.Parent.BrickColor.new("Bright orange") wait(2) script.Parent.BrickColor.new("Bright green") end
larryboylover92
#7566132Thursday, April 16, 2009 5:39 PM GMT

NO. script.Parent.BrickColor = BrickColor.new("Bright red") ...etc
Ashispro97
#7568832Thursday, April 16, 2009 7:39 PM GMT

Oh Right :D!

    of     1