Advertisement
Noctural

Fullbright Source

Apr 5th, 2023
7,065
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.75 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wally2", true))()
  2. local Window = Library:CreateWindow("Fullbright")
  3.  
  4. local Lighting = game:GetService("Lighting")
  5. local Settings = {
  6.     Enabled = false,
  7.     Color = 255
  8. }
  9.  
  10. Window:Toggle("Toggle Fullbright", {}, function(state)
  11.     task.spawn(function()
  12.         Settings.Enabled = state
  13.         while true do
  14.             if not Settings.Enabled then return end
  15.  
  16.             Lighting.Ambient = Color3.fromRGB(Settings.Color, Settings.Color, Settings.Color)
  17.             task.wait(.05)
  18.         end
  19.     end)
  20. end)
  21.  
  22.  
  23. Window:Slider("Fullbright", {default = 1; min = 0; max = 1; precise = 0.1; }, function(var)
  24.     Settings.Color = 255 * var
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement