Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local configuration = {
- Ambient = Color3.new(0,0,0);
- OutDoor_Ambient = Color3.new(0,0,0);
- Brightness = 0;
- ColorShift_Bottom = Color3.new(0,0,0);
- ColorShift_Top = Color3.new(0,0,0);
- Global_Shadows = true;
- Shadow_Color = Color3.new(0,0,0);
- Geographic_Latitude = 0;
- Time = "00:00:00";
- Fog_Color = Color3.new(0,0,0);
- Fog_End = 1000000;
- Fog_Start = 0;
- sky = Instance.new("Sky");
- CelestialBodiesShown = false;
- StarCount = 0;
- skydec = "http://www.roblox.com/asset/?version=1&id=1442453";
- lighting = game:GetService("Lighting");
- }
- configuration.sky.CelestialBodiesShown = configuration.CelestialBodiesShown
- configuration.lighting.Brightness = configuration.Brightness
- configuration.sky.SkyboxBk = configuration.skydec
- configuration.sky.SkyboxDn = configuration.skydec
- configuration.sky.SkyboxFt = configuration.skydec
- configuration.sky.SkyboxLf = configuration.skydec
- configuration.sky.SkyboxRt = configuration.skydec
- configuration.sky.SkyboxUp = configuration.skydec
- configuration.sky.StarCount = configuration.StarCount
- configuration.lighting.GlobalShadows = configuration.Global_Shadows
- for _, v in pairs(configuration.lighting:GetChildren()) do
- v:Destroy()
- end
- configuration.sky.Parent = configuration.lighting
Advertisement
Add Comment
Please, Sign In to add comment