Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Lighting = game:GetService("Lighting")
- -- Set the time of day to a constant, for example, noon
- Lighting.TimeOfDay = "14:00:00"
- -- Continuously set it to a bright day
- while true do
- Lighting.Brightness = 2 -- Adjust brightness (2 is standard day brightness)
- Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255) -- Full daylight
- Lighting.TimeOfDay = "14:00:00" -- Keep it noon (or adjust to whatever time you prefer)
- wait(1) -- Update every second (prevents changing time)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement