Am I missing something with this Color3.new?
Hello. I am currently working on a GUI project. My issue is, when I click the button to the "Off" position, the BackgroundColor3 does not change to 161, 161, 161
.
Here is the code:
01 | local Button = script.Parent |
02 | script.Parent.MouseButton 1 Click:connect( function () |
03 | if script.On.Value = = true then |
04 | Button:TweenPosition(UDim 2. new( 0.5 , 0 , 0 , 0 ), "Out" , "Quad" , 1 ) |
06 | Button.BackgroundColor 3 = Color 3. new( 161 , 161 , 161 ) |
08 | script.On.Value = false |
09 | elseif script.On.Value = = false then |
10 | Button:TweenPosition(UDim 2. new( 0 , 0 , 0 , 0 ), "Out" , "Quad" , 1 ) |
12 | Button.BackgroundColor 3 = Color 3. new( 0 , 255 , 0 ) |
14 | script.On.Value = true |
This Script is directly inside of a TextButton. The Value is a BoolValue directly inside of the Script.
This is a Server Script (In other words, Script)
What happens is when I click it to turn Off the BackgroundColor3 is changed to 30090, 30090, 30090
instead of 161, 161, 161
.
I'm not sure if I am missing something in my script, or if Color3.new is glitched somehow. It turns 0, 255, 0
(Lime green) when turned On every time.
Thanks for your help guys! I appreciate it!