Global lighting

The Lighting service contains properties that you can adjust to update and customize the global lighting in an experience. There are five categories of lighting properties:

  • Color — Configures hue within the experience.
  • Intensity — Configures the intensity or amount of light hitting the camera.
  • Shadows — Configures how a user experiences shadows within the experience.
  • Appearance — Properties that determine the lighting style and lighting/shading quality or view distance prioritization.
  • Environment — Configures the conditions of the experience's world, such as the time of day and geographic latitude.

Color

Ambient

The Ambient property sets a hue for the entirety of an experience. This property affects the lighting for both outdoor and indoor environments.

Lighting.Ambient property of [0, 0, 0]

OutdoorAmbient

The OutdoorAmbient property sets a hue for outdoor areas of an experience. This can help simulate how the ambient color of real-life lighting changes throughout the day. For example, sunlight in the early morning or late afternoon is usually warmer and more pink and orange in tone, while late evening is usually cooler and more blue and purple in tone.

In the following images, note that the lighting inside the garage and cafe doesn't change like it would if you were changing the Ambient property.

Lighting.OutdoorAmbient property of [255, 150, 50]

ColorShift_Top

The ColorShift_Top property sets a hue that reflects from surfaces facing the sun or moon.

Lighting.ColorShift_Top property of [0, 100, 255]

ColorShift_Bottom

The ColorShift_Bottom property sets a hue that reflects from surfaces that are facing away from the sun or moon.

In the following images, note the hue change on the sandstone wall facing away from the sun.

Lighting.ColorShift_Bottom property of [255, 0, 220]

Intensity

Brightness

The Brightness property sets the intensity of illumination. This can help increase the contrast between brightly illuminated areas and shadows, simulating bright sunshine and warmer weather.

Lighting.Brightness property of 0.5

ExposureCompensation

The ExposureCompensation property applies exposure to an experience. Exposure is the amount of light that reaches the camera.

A lower value is similar to under-exposure in photography, while a higher value is similar to over-exposure.

Lighting.ExposureCompensation property of 0

Shadows

GlobalShadows

When enabled, the GlobalShadows property renders shadows.

Lighting.GlobalShadows property enabled

ShadowSoftness

The ShadowSoftness property adjusts how blurry shadows are from a value of 0 (hard edges) to 1 (soft edges). This property is only valid when LightingStyle is set to Realistic.

Lighting.ShadowSoftness property of 0

Appearance

LightingStyle

LightingStyle indicates the artistic intent behind lighting in the experience, as an Enum.LightingStyle option. Realistic provides the most advanced and realistic lighting and shadows Roblox can deliver, while Soft produces a flat, retro‑Roblox look with softer lights and shadows.

Lighting.LightingStyle setting of Realistic

PrioritizeLightingQuality

The PrioritizeLightingQuality property indicates whether you prefer lighting/shading quality or view distance to scale down first. As the rendering quality level reduces, a setting of true prioritizes features such as advanced shadows and high‑quality shaders at closer distances, while a setting of false prioritizes view distance. If lighting and shadows are very important to the artistic feel of your experience, set this to true.

Environment

ClockTime and TimeOfDay

The ClockTime and TimeOfDay property both represent the current time of day in hours, and they are directly related; if you change one property, the other also changes.

The only difference between these properties is their numeric value; ClockTime represents time from hour 0 through 24 while TimeOfDay represents time through a 24 hour string.

Lighting.ClockTime of 0 (TimeOfDay of 00:00:00)

GeographicLatitude

The GeographicLatitude property represents the geographic latitude in degrees. Note that while this property changes the position of the sun and moon, it does not change the ClockTime and TimeOfDay properties.

EnvironmentDiffuseScale

The EnvironmentDiffuseScale property determines how much ambient light is derived from the environment.

In the following images, note how the ambient light changes, particularly inside the kitchen of the ramen shop.

Lighting.EnvironmentDiffuseScale property of 0

EnvironmentSpecularScale

The EnvironmentSpecularScale property determines how much specular light is derived from the environment. When set near a value of 1, smooth objects better reflect the environment and metal appears more realistic.

Lighting.EnvironmentSpecularScale property of 0