Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- Made by 4z#0001, Update Skybox v2.3
- ]]
- local ServerSkyAction = {
- ["UpdateSky"] = true
- }
- if ServerSkyAction.UpdateSky == true then
- for i, v in pairs(game.Lighting:GetChildren()) do
- v:Destroy()
- end
- local LightingService = game:GetService("Lighting")
- local SkyBox = Instance.new("Sky",LightingService)
- local Depth = Instance.new("DepthOfFieldEffect",LightingService)
- local Blur = Instance.new('BlurEffect',LightingService)
- local Atmosphere = Instance.new("Atmosphere",LightingService)
- local SunRays = Instance.new("SunRaysEffect",LightingService)
- local ColorCorrection = Instance.new("ColorCorrectionEffect",LightingService)
- local Bloom = Instance.new("BloomEffect",LightingService)
- local Clouds = Instance.new("Clouds", game.Workspace.Terrain)
- Clouds.Cover = 0.3
- Clouds.Density = 0.2
- SkyBox.CelestialBodiesShown = true
- SkyBox.MoonAngularSize = 11
- SkyBox.MoonTextureId = "rbxasset://sky/moon.jpg"
- SkyBox.SkyboxBk = "rbxassetid://591058823"
- SkyBox.SkyboxDn = "rbxassetid://591059876"
- SkyBox.SkyboxFt = "rbxassetid://591058104"
- SkyBox.SkyboxLf = "rbxassetid://591057861"
- SkyBox.SkyboxRt = "rbxassetid://591057625"
- SkyBox.SkyboxUp = "rbxassetid://591059642"
- SkyBox.StarCount = 3000
- SkyBox.SunAngularSize = 21
- SkyBox.SunTextureId = "rbxasset://sky/sun.jpg"
- SunRays.Intensity = 0.25
- SunRays.Spread = 0.035
- Blur.Size = 2.5
- ColorCorrection.Saturation = 0.2
- LightingService.FogEnd = 4500
- LightingService.OutdoorAmbient = Color3.new(140/255, 140/255, 140/255)
- LightingService.GlobalShadows = true
- LightingService.Brightness = 1.5
- LightingService.Ambient = Color3.new(0/255, 0/255, 0/255)
- LightingService.ShadowColor = Color3.new(61/255, 61/255, 61/255)
- Bloom.Intensity = 0.100
- Bloom.Size = 12.5
- Bloom.Threshold = 2.45
- end
Add Comment
Please, Sign In to add comment