Advertisement
Poglo

cool roblox 4k quality

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