fork-K

Fullbright

Jan 10th, 2024
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. repeat task.wait() until game:IsLoaded()
  2. wait(5) -- extra load to ensure the script is working
  3. for i,v in pairs(game.Lighting:GetChildren()) do
  4. if v:IsA("") or v:IsA("Sky") or v:IsA("BlurEffect") or v:IsA("BloomEffect") or v:IsA("SunRaysEffect") then
  5. v:Destroy()
  6. end
  7. end
  8.  
  9. game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  10. game.Lighting.Brightness = 1
  11. game.Lighting.ClockTime = 14
  12. game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  13. game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  14. game.Lighting.ExposureCompensation = 0
  15. game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  16. game.Lighting.FogEnd = 999999999
  17. game.Lighting.GeographicLatitude = 41.733
  18. game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  19. game.Lighting.GlobalShadows = true
  20. game.Lighting.Changed:Connect(function()
  21. game.Lighting.Ambient = Color3.fromRGB(255, 255, 255)
  22. game.Lighting.Brightness = 1
  23. game.Lighting.ClockTime = 14
  24. game.Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255)
  25. game.Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255)
  26. game.Lighting.ExposureCompensation = 0
  27. game.Lighting.FogColor = Color3.fromRGB(255, 255, 255)
  28. game.Lighting.FogEnd = 999999999
  29. game.Lighting.GeographicLatitude = 41.733
  30. game.Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255)
  31. game.Lighting.GlobalShadows = true
  32. end)
  33. game.Lighting.DescendantAdded:Connect(function(obj)
  34. if obj:IsA("") or obj:IsA("Sky") or obj:IsA("BlurEffect") or obj:IsA("BloomEffect") or obj:IsA("SunRaysEffect") then
  35. obj:Destroy()
  36. end
  37. end)
Add Comment
Please, Sign In to add comment