Advertisement
Guest User

Darkness Script

a guest
Jul 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. --This script will set lighting to be dark, making the game require dynamic lights to see
  2. light = game.Lighting
  3. light.Ambient = Color3.new(0,0,0)
  4. light.Brightness = 0
  5. light.ColorShift_Bottom = Color3.new(0,0,0)
  6. light.ColorShift_Top = Color3.new(0,0,0)
  7. light.GlobalShadows = true
  8. light.OutdoorAmbient = Color3.new(0,0,0)
  9. light.ShadowColor = Color3.new(0,0,0)
  10. light.GeographicLatitude = 0
  11. light.TimeOfDay = "00:00:00"
  12. light.FogColor = Color3.new(0,0,0)
  13. light.FogEnd = 1000000
  14. light.FogStart = 0
  15.  
  16. skydec = "http://www.roblox.com/asset/?version=1&id=1442453"
  17. sky = Instance.new("Sky")
  18. sky.CelestialBodiesShown = false
  19. sky.SkyboxBk = skydec
  20. sky.SkyboxDn = skydec
  21. sky.SkyboxFt = skydec
  22. sky.SkyboxLf = skydec
  23. sky.SkyboxRt = skydec
  24. sky.SkyboxUp = skydec
  25. sky.StarCount = 0
  26. sky.Parent = light
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement