local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "AdminTestHub", HidePremium = false, SaveConfig = true, ConfigFolder = "Admin"}) --[[ Name = - The name of the UI. HidePremium = - Whether or not the user details shows Premium status or not. SaveConfig = - Toggles the config saving in the UI. ConfigFolder = - The name of the folder where the configs are saved. IntroEnabled = - Whether or not to sext to show in the intro animation. IntroIcon = - URL to the image you want to use in the intro animation. Icon = - URL to the image you want displayed on the window. CloseCallback = - Funchow the intro animation. IntroText = - Ttion to execute when the window is closed. --]] local PlayerTab = Window:MakeTab({ Name = "PlayerHacks", Icon = "rbxassetid://5205790826", PremiumOnly = false }) --[[ Name = - The name of the tab. Icon = - The icon of the tab. PremiumOnly = - Makes the tab accessible to Sirus Premium users only. ]] local Section = PlayerTab:AddSection({ Name = "Speed" }) --[[ Name = - The name of the section. ]] PlayerTab:AddSlider({ Name = "Speed", Min = 20, Max = 100, Default = 5, Color = Color3.fromRGB(97, 37, 37), Increment = 1, ValueName = "bannana", Callback = function(Value) print(Value) end }) --[[ Name = - The name of the slider. Min = - The minimal value of the slider. Max = - The maxium value of the slider. Increment = - How much the slider will change value when dragging. Default = - The default value of the slider. ValueName = - The text after the value number. Callback = - The function of the slider. ]] local AdminScriptsTab = Window:MakeTab({ Name = "AdminScripts", Icon = "rbxassetid://14114798449", PremiumOnly = false }) --[[ Name = - The name of the tab. Icon = - The icon of the tab. PremiumOnly = - Makes the tab accessible to Sirus Premium users only. ]]