Advertisement
MonEvade

Untitled

Dec 24th, 2024
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Mon Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  4.  
  5. local Tab = Window:MakeTab({
  6. Name = "Main",
  7. Icon = "rbxassetid://113908148449757",
  8. PremiumOnly = false
  9. })
  10.  
  11. Tab:AddToggle({
  12. Name = "Un Full Bright",
  13. Default = false,
  14. Callback = function(Value)
  15. if Value then
  16. game:GetService("Lighting").Brightness = 2
  17. game:GetService("Lighting").ClockTime = 14
  18. game:GetService("Lighting").FogEnd = 100000
  19. game:GetService("Lighting").GlobalShadows = false
  20. game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(128, 128, 128)
  21. else
  22. game:GetService("Lighting").Brightness = 10
  23. game:GetService("Lighting").ClockTime = 12
  24. game:GetService("Lighting").FogEnd = 10000
  25. game:GetService("Lighting").GlobalShadows = true
  26. game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(127, 127, 127)
  27. end
  28. end
  29. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement