Advertisement
JaimeJiang

Roblox RTX Graphics Script 2024

Mar 31st, 2024
3,140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. local find1 = game.Lighting:FindFirstChildWhichIsA("BloomEffect") if find1 then
  2.  
  3. game.Lighting:FindFirstChildWhichIsA("BloomEffect"):Destroy()
  4.  
  5. end
  6.  
  7. local find2 = game.Lighting:FindFirstChildWhichIsA("SunRaysEffect") if find2 then
  8.  
  9. game.Lighting:FindFirstChildWhichIsA("SunRaysEffect"):Destroy()
  10.  
  11. end
  12.  
  13. local find3 = game.Lighting:FindFirstChildWhichIsA("ColorCorrectionEffect") if find3 then
  14.  
  15. game.Lighting:FindFirstChildWhichIsA("ColorCorrectionEffect"):Destroy()
  16.  
  17. end
  18.  
  19. local find4 = game.Lighting:FindFirstChildWhichIsA("BlurEffect") if find4 then
  20.  
  21. game.Lighting:FindFirstChildWhichIsA("BlurEffect"):Destroy()
  22.  
  23. end
  24.  
  25. local find5 = game.Lighting:FindFirstChildWhichIsA("Sky") if find5 then
  26.  
  27. game.Lighting:FindFirstChildWhichIsA("Sky"):Destroy()
  28.  
  29. end
  30.  
  31. local blem = Instance.new("BloomEffect",game.Lighting)
  32.  
  33. local sanrey = Instance.new("SunRaysEffect",game.Lighting)
  34.  
  35. local color = Instance.new("ColorCorrectionEffect",game.Lighting)
  36.  
  37. local blor = Instance.new("BlurEffect",game.Lighting)
  38.  
  39. Instance.new("Sky",game.Lighting)
  40.  
  41. game.Lighting.ExposureCompensation = 0.34
  42.  
  43. game.Lighting.ShadowSoftness = 1
  44.  
  45. game.Lighting.EnvironmentDiffuseScale = 0.343
  46.  
  47. game.Lighting.EnvironmentSpecularScale = 1
  48.  
  49. game.Lighting.Brightness = 2
  50.  
  51. game.Lighting.ColorShift_Top = Color3.fromRGB(118,117,108)
  52.  
  53. game.Lighting.OutdoorAmbient = Color3.fromRGB(141,141,141)
  54.  
  55. game.Lighting.GeographicLatitude = 100
  56.  
  57. game.Lighting.Ambient = Color3.fromRGB(112,112,112)
  58.  
  59. blem.Intensity = 0.5
  60.  
  61. blem.Size = 22
  62.  
  63. blem.Threshold = 1.5
  64.  
  65. sanrey.Intensity = 0.117
  66.  
  67. sanrey.Spread = 1
  68.  
  69. blor.Size = 2
  70.  
  71. color.Contrast = 0.3
  72.  
  73. color.Saturation = 0.2
  74.  
  75. color.TintColor = Color3.fromRGB(255,252,224)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement