teotv202

Remove Shadows From Workspace

Mar 12th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. while true do
  2. wait(0.01)
  3. local light = game:GetService("Lighting")
  4. light.OutdoorAmbient = Color3.new(0,0,0)
  5. light.Ambient = Color3.new(1,1,1)
  6. light.GlobalShadows = false
  7. local clear = game:GetService("Workspace")
  8. local shadows = Instance.new("Humanoid",clear)
  9. shadows.Name = "Light"
  10. shadows:FindFirstChildOfClass("Workspace")
  11. end
Add Comment
Please, Sign In to add comment