Advertisement
4zx16

HD Graphics (SKY)

Nov 21st, 2021 (edited)
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.34 KB | None | 0 0
  1. --[[  
  2.    
  3.  
  4.  _    _ _____     _____                 _     _          
  5. | |  | |  __ \   / ____|               | |   (_)        
  6. | |__| | |  | | | |  __ _ __ __ _ _ __ | |__  _  ___ ___
  7. |  __  | |  | | | | |_ | '__/ _` | '_ \| '_ \| |/ __/ __|
  8. | |  | | |__| | | |__| | | | (_| | |_) | | | | | (__\__ \
  9. |_|  |_|_____/   \_____|_|  \__,_| .__/|_| |_|_|\___|___/
  10.                                  | |                    
  11.                                  |_|    
  12.                                  
  13. --[[
  14.  || 📜 AUTHOR: @4zx16
  15. --]]
  16. local blur = Instance.new("BlurEffect", game:GetService("Lighting"))
  17. local sunrays = Instance.new("SunRaysEffect", game:GetService("Lighting"))
  18. local colorcorrection = Instance.new("ColorCorrectionEffect", game:GetService("Lighting"))
  19. local bloom = Instance.new("BloomEffect", game:GetService("Lighting"))
  20. -- PUTS THE SCRIPT IN SERVERSCRIPTSERVICE IF NOT ALREADY
  21. script.Parent = game:GetService("ServerScriptService")
  22. wait()
  23. -- SKY EFFECTS // LIGHTING --
  24. sunrays.Intensity = 0.100
  25. sunrays.Spread = 0.035
  26. colorcorrection.Saturation = 0.2
  27. bloom.Intensity = 0.100
  28. bloom.Size = 12.5
  29. bloom.Threshold = 2.45
  30. -- SKY EFFECTS // FOG ENDING/STARTING --
  31. game:GetService("Lighting").FogEnd = 2500
  32. game:GetService("Lighting").FogStart = 0
  33. game:GetService("Lighting").FogColor = Color3.new(160/255, 215/255, 255/255)
  34. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement