Advertisement
KrysteL1337

fps bosster 2

Mar 14th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.83 KB | None | 0 0
  1. local lig = game.Lighting
  2. local Skybox = game.Lighting:FindFirstChildOfClass("Sky")
  3.  
  4. lig.Ambient = Color3.new(255/255, 255/255, 255/255)
  5. lig.Brightness = Color3.new(0,0,0)
  6. lig.ColorShift_Bottom = Color3.new(0,0,0)
  7. lig.GlobalShadows = false
  8. lig.OutdoorAmbient = Color3.new(255/255, 255/255, 255/255)
  9. lig.Outlines = false
  10. lig.Archivable = false
  11. lig.FogColor = Color3.new(0,0,0)
  12. lig.FogEnd = 4000
  13. lig.ExposureCompensation = -0.42
  14. lig.GeographicLatitude = 0
  15. lig:FindFirstChildOfClass("BloomEffect"):Destroy()
  16. lig:FindFirstChildOfClass("BlurEffect"):Destroy()
  17. lig:FindFirstChildOfClass("ColorCorrectionEffect"):Destroy()
  18. lig:FindFirstChildOfClass("SunRaysEffect"):Destroy()
  19. Skybox.MoonAngularSize = 0
  20. Skybox.CelestialBodiesShown = false
  21. Skybox.StarCount = 0
  22. Skybox.SunAngularSize = 0
  23. Skybox.SunTextureId = 0
  24. Skybox.MoonTextureId = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement