Advertisement
VenoxComeback

Day bp

Mar 17th, 2025 (edited)
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. local Lighting = game:GetService("Lighting")
  2.  
  3. -- Set the time of day to a constant, for example, noon
  4. Lighting.TimeOfDay = "14:00:00"
  5.  
  6. -- Continuously set it to a bright day
  7. while true do
  8. Lighting.Brightness = 2 -- Adjust brightness (2 is standard day brightness)
  9. Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255) -- Full daylight
  10. Lighting.TimeOfDay = "14:00:00" -- Keep it noon (or adjust to whatever time you prefer)
  11. wait(1) -- Update every second (prevents changing time)
  12. end
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement