|
| 05 Jan 2012 07:50 PM |
It makes the Gui Text Line Black instead of White
Text.TextColor3 = BrickColor.White().Color
Problem? |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2012 07:51 PM |
Text.TextColor3 = BrickColor.new("White")
~I've been to nil and back. [Infamous Mrgames... 3 day ban] |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2012 07:51 PM |
| Text.Color = Color3.new(1,1,1) |
|
|
| Report Abuse |
|
|
dirk29
|
  |
| Joined: 26 May 2010 |
| Total Posts: 1142 |
|
| |
|
SDuke524
|
  |
| Joined: 29 Jul 2008 |
| Total Posts: 6267 |
|
|
| 05 Jan 2012 07:52 PM |
| Test it yourself. It takes about 5 seconds to test it, only ask us for help when you run across a problem not when you think you might. |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2012 07:53 PM |
Oops.
Text.TextColor3 = Color3.new(1,1,1) |
|
|
| Report Abuse |
|
|
SDuke524
|
  |
| Joined: 29 Jul 2008 |
| Total Posts: 6267 |
|
|
| 05 Jan 2012 07:53 PM |
@everyone saying he's wrong His script would actually work, if he was trying to change it to white like I think he meant to say. Although still follow the rule I put in my last post. |
|
|
| Report Abuse |
|
|
HatHelper
|
  |
 |
| Joined: 02 Mar 2009 |
| Total Posts: 46305 |
|
|
| 05 Jan 2012 07:55 PM |
Text.TextColor3 = BrickColor.new("White").Color
?? |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2012 08:19 PM |
@Sduke
I have tested it...
Text.TextColor3 = BrickColor.White().Color Text.TextColor3 = BrickColor.White() Text.TextColor3 = BrickColor.new("White") Text.TextColor3 = 255; 255; 255 Text.TextColor3 = (255; 255; 255) Text.TextColor3 = 255, 255, 255
None of them work, which is clearly why I came here. |
|
|
| Report Abuse |
|
|
SDuke524
|
  |
| Joined: 29 Jul 2008 |
| Total Posts: 6267 |
|
|
| 05 Jan 2012 08:21 PM |
| TextColor3 is a Color3 value. So your first one should work, if you put that in one script then obviously it didn't work because all the others returned an error. Delete all the other lines except the first one. |
|
|
| Report Abuse |
|
|
HatHelper
|
  |
 |
| Joined: 02 Mar 2009 |
| Total Posts: 46305 |
|
|
| 05 Jan 2012 08:21 PM |
Text.TextColor3 = BrickColor.new("White").Color
TextColor3 is Color3. You need to give it a Color3.new() Inside that it needs 3 numbers, preferably for you, ranging from 0 to 1. One being the brightest for that color, 0 being black.
Text.TextColor3 = Color3.new(1,1,1)
|
|
|
| Report Abuse |
|
|
SDuke524
|
  |
| Joined: 29 Jul 2008 |
| Total Posts: 6267 |
|
|
| 05 Jan 2012 08:29 PM |
@HatHelper
The .Color property of a BrickColor is the Color3 value. |
|
|
| Report Abuse |
|
|
HatHelper
|
  |
 |
| Joined: 02 Mar 2009 |
| Total Posts: 46305 |
|
| |
|