R63

Shader Script

R63
Jun 21st, 2024
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. --[[Subscribe to Zaptosis on YouTube for more awesome scripts
  2.  
  3. Also Subscribe to JN HH Gaming on Youtube
  4.  
  5. ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  6.  
  7. ███▀▀▀███░░░░░░░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░██░░░░░░░░░
  8.  
  9. █▀░░░███░░░░░░░░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  10.  
  11. ▀░░░███░░▄█▀██▄░▀████████▄██████░░▄██▀██▄░▄██▀██████░░▄██▀███
  12.  
  13. ░░░███░░██░░░██░░░██░░░▀██░░██░░░██▀░░░▀████░░░▀▀░██░░██░░░▀▀
  14.  
  15. ░░███░░░▄▄█████░░░██░░░░██░░██░░░██░░░░░██▀█████▄░██░░▀█████▄
  16.  
  17. ░███░░░▄██░░░██░░░██░░░▄██░░██░░░██▄░░░▄███▄░░░██░██░░█▄░░░██
  18.  
  19. █████████████▀██▄░██████▀░░░▀████░▀█████▀░██████▀████▄██████▀
  20.  
  21. ░░░░░░░░░░░░░░░░░░██░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  22.  
  23. ░░░░░░░░░░░░░░░░▄████▄░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  24.  
  25. ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
  26.  
  27. ]]
  28.  
  29. local find1 = game.Lighting:FindFirstChildWhichIsA("BloomEffect") if find1 then
  30.  
  31. game.Lighting:FindFirstChildWhichIsA("BloomEffect"):Destroy()
  32.  
  33. end
  34.  
  35. local find2 = game.Lighting:FindFirstChildWhichIsA("SunRaysEffect") if find2 then
  36.  
  37. game.Lighting:FindFirstChildWhichIsA("SunRaysEffect"):Destroy()
  38.  
  39. end
  40.  
  41. local find3 = game.Lighting:FindFirstChildWhichIsA("ColorCorrectionEffect") if find3 then
  42.  
  43. game.Lighting:FindFirstChildWhichIsA("ColorCorrectionEffect"):Destroy()
  44.  
  45. end
  46.  
  47. local find4 = game.Lighting:FindFirstChildWhichIsA("BlurEffect") if find4 then
  48.  
  49. game.Lighting:FindFirstChildWhichIsA("BlurEffect"):Destroy()
  50.  
  51. end
  52.  
  53. local find5 = game.Lighting:FindFirstChildWhichIsA("Sky") if find5 then
  54.  
  55. game.Lighting:FindFirstChildWhichIsA("Sky"):Destroy()
  56.  
  57. end
  58.  
  59. local blem = Instance.new("BloomEffect",game.Lighting)
  60.  
  61. local sanrey = Instance.new("SunRaysEffect",game.Lighting)
  62.  
  63. local color = Instance.new("ColorCorrectionEffect",game.Lighting)
  64.  
  65. local blor = Instance.new("BlurEffect",game.Lighting)
  66.  
  67. Instance.new("Sky",game.Lighting)
  68.  
  69. game.Lighting.ExposureCompensation = 0.34
  70.  
  71. game.Lighting.ShadowSoftness = 1
  72.  
  73. game.Lighting.EnvironmentDiffuseScale = 0.343
  74.  
  75. game.Lighting.EnvironmentSpecularScale = 1
  76.  
  77. game.Lighting.Brightness = 2
  78.  
  79. game.Lighting.ColorShift_Top = Color3.fromRGB(118,117,108)
  80.  
  81. game.Lighting.OutdoorAmbient = Color3.fromRGB(141,141,141)
  82.  
  83. game.Lighting.GeographicLatitude = 100
  84.  
  85. game.Lighting.Ambient = Color3.fromRGB(112,112,112)
  86.  
  87. blem.Intensity = 0.5
  88.  
  89. blem.Size = 22
  90.  
  91. blem.Threshold = 1.5
  92.  
  93. sanrey.Intensity = 0.117
  94.  
  95. sanrey.Spread = 1
  96.  
  97. blor.Size = 2
  98.  
  99. color.Contrast = 0.3
  100.  
  101. color.Saturation = 0.2
  102.  
  103. color.TintColor = Color3.fromRGB(255,252,224)
Add Comment
Please, Sign In to add comment