Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Mon Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- local Tab = Window:MakeTab({
- Name = "Main",
- Icon = "rbxassetid://113908148449757",
- PremiumOnly = false
- })
- Tab:AddToggle({
- Name = "Un Full Bright",
- Default = false,
- Callback = function(Value)
- if Value then
- game:GetService("Lighting").Brightness = 2
- game:GetService("Lighting").ClockTime = 14
- game:GetService("Lighting").FogEnd = 100000
- game:GetService("Lighting").GlobalShadows = false
- game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(128, 128, 128)
- else
- game:GetService("Lighting").Brightness = 10
- game:GetService("Lighting").ClockTime = 12
- game:GetService("Lighting").FogEnd = 10000
- game:GetService("Lighting").GlobalShadows = true
- game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(127, 127, 127)
- end
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement