For some reason when using color3.new it is multiplying?
01 | local red = game.Workspace.Red |
02 | local light = script.Parent:FindFirstChild( "Sector 1 Light" ) |
04 | red.Changed:Connect( function () |
05 | if red.Value = = true then |
06 | light.BrickColor = BrickColor.new( "Crimson" ) |
07 | light.SurfaceLight.Color = Color 3. new( 255 , 37 , 40 ) |
10 | light.brickColor = BrickColor.new( "Institutional white" ) |
11 | light.SurfaceLight.Color = Color 3. new( 255 , 255 , 255 ) |
So whenever I try to set the color, instead of it setting it, it multiplies it by the previous color..
WHAT THE HECK??
It is happening on the first if statement, not the else. At least I don't think..
Please help.