|
| 06 Jul 2016 08:36 PM |
So I've had some issues with getting the color of a gui to change properly
I thought I've gotten this to work but I guess not:
I'm trying to change a gui to a darker shade of green than it was previously shading.BackgroundColor = BrickColor.new(0/255, 230/255, 0/255)
The code throws up no errors, but when I go into test mode it appears bright green (0, 255/255, 0)
I understand that gui's colors are in color3 values so I tried: shading.BackgroundColor = Color3.new(0/255, 230/255, 0/255)
but that threw up an error saying Color3 isn't a property of BackgroundColor
any ideas? |
|
|
| Report Abuse |
|
|
|
| 06 Jul 2016 08:45 PM |
shading.BackgroundColor.Color = Color3.new(0/255, 230/255, 0/255)
Add 13,000 posts |
|
|
| Report Abuse |
|
|
|
| 06 Jul 2016 08:45 PM |
^try color3 too
im gonna look into studio too
Add 13,000 posts |
|
|
| Report Abuse |
|
|
|
| 06 Jul 2016 08:46 PM |
well damn
it SHOULD be neither of the 2 options
it's
gui.BackgroundColor3 = Color3.new()
Add 13,000 posts |
|
|
| Report Abuse |
|
|