Advertisement
inferatu

isle fullbright

May 2nd, 2020
43,393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. local Light = game:GetService("Lighting")
  2.  
  3. function dofullbright()
  4. Light.Ambient = Color3.new(1, 1, 1)
  5. Light.ColorShift_Bottom = Color3.new(1, 1, 1)
  6. Light.ColorShift_Top = Color3.new(1, 1, 1)
  7. end
  8.  
  9. dofullbright()
  10.  
  11. Light.LightingChanged:Connect(dofullbright)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement