4zx16

Darkness (Horror)

Oct 24th, 2021 (edited)
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.23 KB | None | 0 0
  1. local configuration = {
  2.     Ambient = Color3.new(0,0,0);
  3.     OutDoor_Ambient = Color3.new(0,0,0);
  4.     Brightness = 0;
  5.     ColorShift_Bottom = Color3.new(0,0,0);
  6.     ColorShift_Top = Color3.new(0,0,0);
  7.     Global_Shadows = true;
  8.     Shadow_Color = Color3.new(0,0,0);
  9.     Geographic_Latitude = 0;
  10.     Time = "00:00:00";
  11.     Fog_Color = Color3.new(0,0,0);
  12.     Fog_End = 1000000;
  13.     Fog_Start = 0;
  14.     sky = Instance.new("Sky");
  15.     CelestialBodiesShown = false;
  16.     StarCount = 0;
  17.     skydec = "http://www.roblox.com/asset/?version=1&id=1442453";
  18.     lighting = game:GetService("Lighting");
  19. }
  20. configuration.sky.CelestialBodiesShown = configuration.CelestialBodiesShown
  21. configuration.lighting.Brightness = configuration.Brightness
  22. configuration.sky.SkyboxBk = configuration.skydec
  23. configuration.sky.SkyboxDn = configuration.skydec
  24. configuration.sky.SkyboxFt = configuration.skydec
  25. configuration.sky.SkyboxLf = configuration.skydec
  26. configuration.sky.SkyboxRt = configuration.skydec
  27. configuration.sky.SkyboxUp = configuration.skydec
  28. configuration.sky.StarCount = configuration.StarCount
  29. configuration.lighting.GlobalShadows = configuration.Global_Shadows
  30.  
  31. for _, v in pairs(configuration.lighting:GetChildren()) do
  32.     v:Destroy()
  33. end
  34. configuration.sky.Parent = configuration.lighting
Advertisement
Add Comment
Please, Sign In to add comment