GaboPro879

RTX_ROBLOX

Sep 10th, 2023
1,363
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.43 KB | None | 0 0
  1. --[[
  2. MADDD
  3. ]]
  4.  
  5.  
  6. local Vignette = true -- change to false if you don't want a shadow frame
  7.  
  8.  
  9.  
  10. local Lighting = game:GetService("Lighting")
  11. local StarterGui = game:GetService("StarterGui")
  12. local Bloom = Instance.new("BloomEffect")
  13. local Blur = Instance.new("BlurEffect")
  14. local ColorCor = Instance.new("ColorCorrectionEffect")
  15. local SunRays = Instance.new("SunRaysEffect")
  16. local Sky = Instance.new("Sky")
  17. local Atm = Instance.new("Atmosphere")
  18.  
  19.  
  20. for i, v in pairs(Lighting:GetChildren()) do
  21.     if v then
  22.         v:Destroy()
  23.     end
  24. end
  25.  
  26. Bloom.Parent = Lighting
  27. Blur.Parent = Lighting
  28. ColorCor.Parent = Lighting
  29. SunRays.Parent = Lighting
  30. Sky.Parent = Lighting
  31. Atm.Parent = Lighting
  32.  
  33. if Vignette == true then
  34.     local Gui = Instance.new("ScreenGui")
  35.     Gui.Parent = StarterGui
  36.     Gui.IgnoreGuiInset = true
  37.    
  38.     local ShadowFrame = Instance.new("ImageLabel")
  39.     ShadowFrame.Parent = Gui
  40.     ShadowFrame.AnchorPoint = Vector2.new(0.5,1)
  41.     ShadowFrame.Position = UDim2.new(0.5,0,1,0)
  42.     ShadowFrame.Size = UDim2.new(1,0,1.05,0)
  43.     ShadowFrame.BackgroundTransparency = 1
  44.     ShadowFrame.Image = "rbxassetid://4576475446"
  45.     ShadowFrame.ImageTransparency = 0.3
  46.     ShadowFrame.ZIndex = 10
  47. end
  48.  
  49. Bloom.Intensity = 0.3
  50. Bloom.Size = 10
  51. Bloom.Threshold = 0.8
  52.  
  53. Blur.Size = 5
  54.  
  55. ColorCor.Brightness = 0.1
  56. ColorCor.Contrast = 0.5
  57. ColorCor.Saturation = -0.3
  58. ColorCor.TintColor = Color3.fromRGB(255, 235, 203)
  59.  
  60. SunRays.Intensity = 0.075
  61. SunRays.Spread = 0.727
  62.  
  63. Sky.SkyboxBk = "http://www.roblox.com/asset/?id=151165214"
  64. Sky.SkyboxDn = "http://www.roblox.com/asset/?id=151165197"
  65. Sky.SkyboxFt = "http://www.roblox.com/asset/?id=151165224"
  66. Sky.SkyboxLf = "http://www.roblox.com/asset/?id=151165191"
  67. Sky.SkyboxRt = "http://www.roblox.com/asset/?id=151165206"
  68. Sky.SkyboxUp = "http://www.roblox.com/asset/?id=151165227"
  69. Sky.SunAngularSize = 10
  70.  
  71. Lighting.Ambient = Color3.fromRGB(2,2,2)
  72. Lighting.Brightness = 2.25
  73. Lighting.ColorShift_Bottom = Color3.fromRGB(0,0,0)
  74. Lighting.ColorShift_Top = Color3.fromRGB(0,0,0)
  75. Lighting.EnvironmentDiffuseScale = 0.2
  76. Lighting.EnvironmentSpecularScale = 0.2
  77. Lighting.GlobalShadows = true
  78. Lighting.OutdoorAmbient = Color3.fromRGB(0,0,0)
  79. Lighting.ShadowSoftness = 0.2
  80. Lighting.ClockTime = 17
  81. Lighting.GeographicLatitude = 45
  82. Lighting.ExposureCompensation = 0.5
  83.  
  84. Atm.Density = 0.364
  85. Atm.Offset = 0.556
  86. Atm.Color = Color3.fromRGB(199, 175, 166)
  87. Atm.Decay = Color3.fromRGB(44, 39, 33)
  88. Atm.Glare = 0.36
  89. Atm.Haze = 1.72
  90.  
  91. script:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment