Roblox Lighting & Atmosphere
When to Load
Load for Roblox lighting, atmosphere, day/night, or post-processing (Bloom, ColorCorrection, DepthOfField).
Quick Reference
Lighting Service
Lighting.ClockTime = 14 -- 0-24 numeric
Lighting.Brightness = 2 -- 0-10, default 2
Lighting.Ambient = Color3.fromRGB(70, 70, 70) -- shadow fill
Lighting.OutdoorAmbient = Color3.fromRGB(128, 128, 128)
Lighting.GlobalShadows = true
Lighting.ShadowSoftness = 0.2 -- 0=sharp, 1=soft
-- Configure tech/style/quality in Studio; these properties are not script-writable.
-- Verify enum values and device behavior against current Creator Hub docs before setting them.
Atmosphere
local atmo = Instance.new("Atmosphere")
atmo.Density = 0.3 -- 0=clear, 1=opaque (keep <0.5)
atmo.Offset = 0.25 -- 0=ground, 1=sky
atmo.Color = Color3.fromRGB(199, 199, 199) -- near fog
atmo.Decay = Color3.fromRGB(92, 92, 92) -- far/horizon
atmo.Glare = 0 -- 0-10
atmo.Haze = 0 -- 0-10
atmo.Parent = Lighting
Post-Processing (all parented to Lighting)
| Effect |
Key Properties |
BloomEffect |
Intensity (0-1), Size (px), Threshold (>0.7 recommended) |
ColorCorrectionEffect |
Brightness, Contrast, Saturation (-1 to 1), TintColor |
DepthOfFieldEffect |
FarIntensity, FocusDistance, InFocusRadius, NearIntensity |
SunRaysEffect |
Intensity (0-1), Spread (0-1) |
Day/Night Cycle
local CYCLE_SPEED = 1 -- minutes per full day
task.spawn(function()
while true do
Lighting.ClockTime += (task.wait() / 60) * (24 / CYCLE_SPEED)
if Lighting.ClockTime >= 24 then Lighting.ClockTime -= 24 end
end
end)
Local Lights
| Light |
Use |
Key Props |
PointLight |
Lamps, torches |
Range, Brightness, Color |
SpotLight |
Flashlights |
Range, Angle, Face |
SurfaceLight |
Screens, panels |
Range, Angle, Face |
Perf: Limit shadow-casting lights to 4-6 visible. Use Shadows=false on most. Neon material = cheap glow.
MCP: Inspect, change minimally, capture, check performance.
Common Pitfalls
- Brightness >3 washes out. Density >0.5 = soup. Max 2-3 post effects.
- Avoid black Ambient. Technology is deprecated; it and its replacements are Studio-only.
References
- Mood presets (Day, Golden Hour, Night, Horror, Underwater, Sci-Fi), zone tweens, full examples:
references/full.md
1---2name: roblox-lighting3description: Use for Roblox lighting, atmosphere, day/night, or post-processing effects.4---56# Roblox Lighting & Atmosphere78## When to Load910Load for Roblox lighting, atmosphere, day/night, or post-processing (Bloom, ColorCorrection, DepthOfField).1112## Quick Reference1314### Lighting Service15```luau16Lighting.ClockTime = 14 -- 0-24 numeric17Lighting.Brightness = 2 -- 0-10, default 218Lighting.Ambient = Color3.fromRGB(70, 70, 70) -- shadow fill19Lighting.OutdoorAmbient = Color3.fromRGB(128, 128, 128)20Lighting.GlobalShadows = true21Lighting.ShadowSoftness = 0.2 -- 0=sharp, 1=soft22-- Configure tech/style/quality in Studio; these properties are not script-writable.23-- Verify enum values and device behavior against current Creator Hub docs before setting them.24```2526### Atmosphere27```luau28local atmo = Instance.new("Atmosphere")29atmo.Density = 0.3 -- 0=clear, 1=opaque (keep <0.5)30atmo.Offset = 0.25 -- 0=ground, 1=sky31atmo.Color = Color3.fromRGB(199, 199, 199) -- near fog32atmo.Decay = Color3.fromRGB(92, 92, 92) -- far/horizon33atmo.Glare = 0 -- 0-1034atmo.Haze = 0 -- 0-1035atmo.Parent = Lighting36```3738### Post-Processing (all parented to Lighting)39| Effect | Key Properties |40|--------|---------------|41| `BloomEffect` | Intensity (0-1), Size (px), Threshold (>0.7 recommended) |42| `ColorCorrectionEffect` | Brightness, Contrast, Saturation (-1 to 1), TintColor |43| `DepthOfFieldEffect` | FarIntensity, FocusDistance, InFocusRadius, NearIntensity |44| `SunRaysEffect` | Intensity (0-1), Spread (0-1) |4546### Day/Night Cycle47```luau48local CYCLE_SPEED = 1 -- minutes per full day49task.spawn(function()50 while true do51 Lighting.ClockTime += (task.wait() / 60) * (24 / CYCLE_SPEED)52 if Lighting.ClockTime >= 24 then Lighting.ClockTime -= 24 end53 end54end)55```5657### Local Lights58| Light | Use | Key Props |59|-------|-----|-----------|60| `PointLight` | Lamps, torches | Range, Brightness, Color |61| `SpotLight` | Flashlights | Range, Angle, Face |62| `SurfaceLight` | Screens, panels | Range, Angle, Face |6364**Perf:** Limit shadow-casting lights to 4-6 visible. Use `Shadows=false` on most. Neon material = cheap glow.6566**MCP:** Inspect, change minimally, capture, check performance.6768### Common Pitfalls69- Brightness >3 washes out. Density >0.5 = soup. Max 2-3 post effects.70- Avoid black Ambient. Technology is deprecated; it and its replacements are Studio-only.7172### References73- Mood presets (Day, Golden Hour, Night, Horror, Underwater, Sci-Fi), zone tweens, full examples: `references/full.md`