|
| 01 Aug 2014 01:10 AM |
script.Parent.Frame.PlayerStats.HP.TextColor3 = Color3.new(177, 255, 194)
Just turning white |
|
|
| Report Abuse |
|
|
Juddily
|
  |
| Joined: 24 Aug 2008 |
| Total Posts: 4243 |
|
|
| 01 Aug 2014 01:11 AM |
| script.Parent.Frame.PlayerStats.HP.TextColor3 = Color3.new(177/255, 255/255, 194/255) |
|
|
| Report Abuse |
|
|
swmaniac
|
  |
| Joined: 28 Jun 2008 |
| Total Posts: 15773 |
|
|
| 01 Aug 2014 01:11 AM |
Counter-intuitively, Color3s store components as fractions of 255 rather than integers.
Color3.new(177/255, 255/255, 194/255)
Is what you want. |
|
|
| Report Abuse |
|
|
|
| 01 Aug 2014 01:21 AM |
| How do I know the other half |
|
|
| Report Abuse |
|
|
swmaniac
|
  |
| Joined: 28 Jun 2008 |
| Total Posts: 15773 |
|
|
| 01 Aug 2014 01:22 AM |
| I don't understand what you mean. |
|
|
| Report Abuse |
|
|
|
| 01 Aug 2014 01:22 AM |
| Where do you get the fraction from |
|
|
| Report Abuse |
|
|
| |
|
swmaniac
|
  |
| Joined: 28 Jun 2008 |
| Total Posts: 15773 |
|
|
| 01 Aug 2014 01:26 AM |
We get the fraction from the fact that there are only 256 possible values for each color in each pixel.
This gives 256^3 = 16777216 possible combinations which is slightly more different colors than the eye can differentiate. |
|
|
| Report Abuse |
|
|