fork-K

Afternoon 2pm

Aug 29th, 2023
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. local lighting = game.Lighting
  2.  
  3. for i,v in pairs(lighting:GetChildren()) do
  4. v:Destroy()
  5. end
  6.  
  7. local blur = Instance.new("BlurEffect", lighting)
  8. local bloom = Instance.new("BloomEffect", lighting)
  9. local atmosphere = Instance.new("Atmosphere", lighting)
  10. local sky = Instance.new("Sky", lighting)
  11. local colorc = Instance.new("ColorCorrectionEffect", lighting)
  12. local dof = Instance.new("DepthOfFieldEffect", lighting)
  13. local sunray = Instance.new("SunRaysEffect", lighting)
  14.  
  15.  
  16. --Color3.fromRGB()
  17. -- Lighting
  18. lighting.Ambient = Color3.fromRGB(33, 33, 33)
  19. lighting.Brightness = 2.25
  20. lighting.ColorShift_Bottom = Color3.fromRGB(0,0,0)
  21. lighting.ColorShift_Top = Color3.fromRGB(255, 247, 237)
  22. lighting.EnvironmentDiffuseScale = 0.203
  23. lighting.EnvironmentSpecularScale = 0.255
  24.  
  25. lighting.OutdoorAmbient = Color3.fromRGB(51, 54, 67)
  26. lighting.ShadowSoftness = 0.19
  27. lighting.ClockTime = 13
  28. lighting.GeographicLatitude = -1.12
  29. lighting.ExposureCompensation = 0.85
  30.  
  31. -- Atmosphere
  32. atmosphere.Density = 0.364
  33. atmosphere.Offset = 0.556
  34. atmosphere.Color = Color3.fromRGB(200, 170, 108)
  35. atmosphere.Decay = Color3.fromRGB(92, 60, 14)
  36. atmosphere.Glare = 0
  37. atmosphere.Haze = 0
  38.  
  39. -- Sky
  40. sky.CelestialBodiesShown = true
  41. sky.MoonAngularSize = 11
  42. sky.MoonTextureId = "rbxasset://sky/moon.jpg"
  43. sky.SkyboxBk = 'rbxasset://textures/sky/sky512_bk.tex'
  44. sky.SkyboxDn = 'rbxasset://textures/sky/sky512_dn.tex'
  45. sky.SkyboxFt = 'rbxasset://textures/sky/sky512_ft.tex'
  46. sky.SkyboxLf = 'rbxasset://textures/sky/sky512_lf.tex'
  47. sky.SkyboxRt = 'rbxasset://textures/sky/sky512_rt.tex'
  48. sky.SkyboxUp = 'rbxasset://textures/sky/sky512_up.tex'
  49.  
  50. -- Bloom
  51. bloom.Intensity = 0.3
  52. bloom.Size = 10
  53. bloom.Threshold = 0.8
  54.  
  55. -- Blur
  56. blur.Size = 5
  57.  
  58. --Color Correction (Main)
  59. colorc.Brightness = 0.1
  60. colorc.Contrast = 0.5
  61. colorc.Contrast = 0.5
  62. colorc.Saturation = -0.3
  63. colorc.TintColor = Color3.fromRGB(241, 241, 214)
  64.  
  65. -- Depth Of Field
  66. dof.FarIntensity = 0.077
  67. dof.FocusDistance = 21.54
  68. dof.InFocusRadius = 16.77
  69. dof.NearIntensity = 0.277
  70.  
  71. sunray.Intensity = .25
  72. sunray.Spread = .1
  73. --End
Advertisement
Add Comment
Please, Sign In to add comment