TheMinid
|
  |
| Joined: 20 Jun 2012 |
| Total Posts: 128 |
|
|
| 01 Jan 2014 10:15 AM |
I put this script in a block, and it wont work, its meant to rapidly change its color.
while true do script.Parent.BrickColor("Really red") wait(0.2) script.Parent.BrickColor("Hot pink") wait(0.2) script.Parent.BrickColor("Toothpaste") wait(0.2) script.Parent.BrickColor("Lime green") wait(0.2) script.Parent.BrickColor("New yeller") wait(0.2) script.Parent.BrickColor("Pink") end
|
|
|
| Report Abuse |
|
|
|
| 01 Jan 2014 10:16 AM |
| script.Parent.BrickColor = BrickColor.new("Really red") |
|
|
| Report Abuse |
|
|
|
| 01 Jan 2014 10:17 AM |
colors = {"Really red","Hot pink","Toothpaste","Lime green","New yeller","Pink"}
while true do for I, color in pairs(colors) do script.Parent.BrickColor = BrickColor(color).Color wait(0.2) end end |
|
|
| Report Abuse |
|
|