|
| 07 May 2014 03:56 PM |
Color3.new(255, 255, 255)
it would change it white if it worked |
|
|
| Report Abuse |
|
|
|
| 07 May 2014 04:16 PM |
| This should be easy for people who messed with guis before :/ |
|
|
| Report Abuse |
|
|
|
| 07 May 2014 04:23 PM |
| label.TextColor=Color3.new(1,1,1)-255/255 is 1 |
|
|
| Report Abuse |
|
|
|
| 07 May 2014 04:25 PM |
| how could you change it to dark red? |
|
|
| Report Abuse |
|
|
|
| 07 May 2014 04:26 PM |
label.TextColor=Color3.new(1,0,0)--Bright red
Use some program like ms paint to find the RGB value you want, then throw it onto the script. |
|
|
| Report Abuse |
|
|
vlekje513
|
  |
| Joined: 28 Dec 2010 |
| Total Posts: 9057 |
|
|
| 07 May 2014 04:28 PM |
Or
R = 0 G = 127 B = 127
Color3.new(R/255,G/255,B/255) |
|
|
| Report Abuse |
|
|
| |
|