Need help with lighting

I am trying to change my lighting properties through script, but it wont work and I am not getting an error code, I cannot find much on this topic, this is my current code:

local light = game:GetService("Lighting")

light.Ambient = Color3.new(15, 18, 29)
light.Brightness = 0.682
light.ColorShift_Top = Color3.new(20, 30, 49)
light.OutdoorAmbient = Color3.new(4, 7, 17)
light.ExposureCompensation = 0.15
light.ShadowSoftness = 0.01

Any help would be great.

1 Like

I just ran that snippet from a LocalScript and it worked. Is there more to the script, or just that?

I was using a normal script, when I switched to a local script it worked, but now I’m even more confused, why is every part glowing white? when I changed those same properties through the properties tab instead of a script, it looked fine.

1 Like

I believe it’s caused by you using Color3.new(), use Color3.fromRGB() to get an accurate color, as you did in the properties panel.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.