|
| 19 Aug 2013 01:47 PM |
| How would I make a if the Brick Color = Black then make it Cyan |
|
|
| Report Abuse |
|
|
thetacah
|
  |
| Joined: 18 Jan 2013 |
| Total Posts: 16026 |
|
|
| 19 Aug 2013 01:49 PM |
Put that in a script inside of the part
if script.Parent.BrickColor == "black" then script.Parent.BrickColor = "cyan" |
|
|
| Report Abuse |
|
|
| |
|
|
| 19 Aug 2013 01:50 PM |
| Or, you know, just change it using a blink.object script. |
|
|
| Report Abuse |
|
|
Landish
|
  |
| Joined: 24 Sep 2011 |
| Total Posts: 8152 |
|
|
| 19 Aug 2013 01:50 PM |
or #Learn2Script
~ Do the Siggy Siggy. |
|
|
| Report Abuse |
|
|
thetacah
|
  |
| Joined: 18 Jan 2013 |
| Total Posts: 16026 |
|
|
| 19 Aug 2013 01:53 PM |
Actually I don't think my script would work, but still try it. If it doesn't work try this one.
while true do if script.Parent.BrickColor == "Black" then script.Parent.BrickColor = "Cyan" end end
|
|
|
| Report Abuse |
|
|
Landish
|
  |
| Joined: 24 Sep 2011 |
| Total Posts: 8152 |
|
|
| 19 Aug 2013 01:55 PM |
@the, that script would crash studio. You don't have a wait function. >_> while true do if script.Parent.BrickColor == "Black" wait(1)
script.Parent.BrickColor = "Cyan" end end
~ Do the Siggy Siggy. |
|
|
| Report Abuse |
|
|