top of page
Search
Writer's pictureAoki

[Roblox] Script to turn off all the lights

Here's the script to access [Lighing]>[Apperance] to turn off all the liggts to make the darkest night atomosphere

----<Script>----------------------------------------------------

light = game:GetService("Lighting")

light.Ambient= Color3.new(0,0,0)

light.Brightness = 0

light.EnvironmentDiffuseScale = 0

light.OutdoorAmbient = Color3.new(0,0,0)

light.ClockTime = 0

light.Sky.CelestialBodiesShown = false

light.Sky.StarCount = 0

----------------------------------------------------

49 views0 comments

Recent Posts

See All

[Unity] UI Canvas for VR

1. Create a camera under [Main Camera] and delete [Audio Listner] 2. Rename this camera to [UI Camera] 3. [UI Camera] - Change [Clear...

Unity Hub

Kommentit


bottom of page