Advertisement
BobMe

NShades

Dec 30th, 2017
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. wait(.04)
  2.  
  3. light = game
  4.  
  5. local Lighting = game.Lighting
  6. local sunRays = Instance.new("SunRaysEffect",game.Lighting)
  7.  
  8. c = script:Clone()
  9. c.Parent = game.Lighting
  10. s = Instance.new("Sky")
  11. s.Name = "Flareon_"
  12. s.SkyboxBk = "http://www.roblox.com/asset/?id=153258865"
  13. s.SkyboxDn = "http://www.roblox.com/asset/?id=153259937"
  14. s.SkyboxFt = "http://www.roblox.com/asset/?id=153258844"
  15. s.SkyboxLf = "http://www.roblox.com/asset/?id=153258851"
  16. s.SkyboxRt = "http://www.roblox.com/asset/?id=153259421"
  17. s.SkyboxUp = "http://www.roblox.com/asset/?id=153259943"
  18. s.Parent = game.Lighting
  19.  
  20. sunRays.Intensity = .35
  21. wait()
  22. sunRays.Spread = .25
  23.  
  24. Lighting.Ambient = Color3.new(0, 0, 0)
  25. Lighting.Brightness = 5
  26. Lighting.ColorShift_Bottom = Color3.new(0.1, 0.1, 0.1)
  27. Lighting.ColorShift_Top = Color3.new(0.5, 0.5, 0.5)
  28. Lighting.FogEnd = 500
  29. Lighting.FogColor = Color3.new(1, 1, 1)
  30. Lighting.FogStart = 0
  31. Lighting.GlobalShadows = true
  32. Lighting.OutdoorAmbient = Color3.new(0.5, 0.5, 0.5)
  33. Lighting.Outlines = true
  34. Lighting.ShadowColor = Color3.new(0.72156864404678, 0.72156864404678, 0.72156864404678)
  35. Lighting.GeographicLatitude = 0
  36. Lighting.TimeOfDay = "12:00:00"
  37.  
  38. local bloom = Instance.new("BloomEffect",game.Lighting)
  39. bloom.Intensity = .45
  40. bloom.Size = .65
  41. bloom.Threshold = .95
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement