Advertisement
MaxproGlitcher

script amiliorer qualitier graphique

Jun 16th, 2022 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. --[[By MaxproGlitcher Discord:MaxproGlitcher#6199
  2. _____ ________.__ .__ __ .__
  3. / \ _____ ___ ________________ ____ / _____/| | |__|/ |_ ____ | |__ ___________
  4. / \ / \\__ \ \ \/ /\____ \_ __ \/ _ \/ \ ___| | | \ __\/ ___\| | \_/ __ \_ __ \
  5. / Y \/ __ \_> < | |_> > | \( <_> ) \_\ \ |_| || | \ \___| Y \ ___/| | \/
  6. \____|__ (____ /__/\_ \| __/|__| \____/ \______ /____/__||__| \___ >___| /\___ >__|
  7. \/ \/ \/|__| \/ \/ \/ \/
  8.  
  9. ]]
  10. -- Roblox Graphics Enhancher
  11. local light = game.Lighting
  12. for i, v in pairs(light:GetChildren()) do
  13. v:Destroy()
  14. end
  15.  
  16. local ter = workspace.Terrain
  17. local color = Instance.new("ColorCorrectionEffect")
  18. local bloom = Instance.new("BloomEffect")
  19. local sun = Instance.new("SunRaysEffect")
  20. local blur = Instance.new("BlurEffect")
  21.  
  22. color.Parent = light
  23. bloom.Parent = light
  24. sun.Parent = light
  25. blur.Parent = light
  26.  
  27. -- enable or disable shit
  28.  
  29. local config = {
  30.  
  31. Terrain = true;
  32. ColorCorrection = true;
  33. Sun = true;
  34. Lighting = true;
  35. BloomEffect = true;
  36.  
  37. }
  38.  
  39. -- settings {
  40.  
  41. color.Enabled = false
  42. color.Contrast = 0.15
  43. color.Brightness = 0.1
  44. color.Saturation = 0.25
  45. color.TintColor = Color3.fromRGB(255, 222, 211)
  46.  
  47. bloom.Enabled = false
  48. bloom.Intensity = 0.1
  49.  
  50. sun.Enabled = false
  51. sun.Intensity = 0.2
  52. sun.Spread = 1
  53.  
  54. bloom.Enabled = false
  55. bloom.Intensity = 0.05
  56. bloom.Size = 32
  57. bloom.Threshold = 1
  58.  
  59. blur.Enabled = false
  60. blur.Size = 6
  61.  
  62. -- settings }
  63.  
  64.  
  65. if config.ColorCorrection then
  66. color.Enabled = true
  67. end
  68.  
  69.  
  70. if config.Sun then
  71. sun.Enabled = true
  72. end
  73.  
  74.  
  75. if config.Terrain then
  76. -- settings {
  77. ter.WaterColor = Color3.fromRGB(10, 10, 24)
  78. ter.WaterWaveSize = 0.15
  79. ter.WaterWaveSpeed = 22
  80. ter.WaterTransparency = 1
  81. ter.WaterReflectance = 0.05
  82. -- settings }
  83. end
  84.  
  85.  
  86. if config.Lighting then
  87. -- settings {
  88. light.Ambient = Color3.fromRGB(0, 0, 0)
  89. light.Brightness = 4
  90. light.ColorShift_Bottom = Color3.fromRGB(0, 0, 0)
  91. light.ColorShift_Top = Color3.fromRGB(0, 0, 0)
  92. light.ExposureCompensation = 0
  93. light.FogColor = Color3.fromRGB(132, 132, 132)
  94. light.GlobalShadows = true
  95. light.OutdoorAmbient = Color3.fromRGB(112, 117, 128)
  96. light.Outlines = false
  97. -- settings }
  98. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement