local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Seven7-lua/Roblox/refs/heads/main/Librarys/Orion/Orion.lua')))() local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) local Tab = Window:MakeTab({ Name = "Tab 1", Icon = "rbxassetid://4483345998", PremiumOnly = false }) OrionLib:MakeNotification({ Name = "Title!", Content = "Notification content... what will it say??", Image = "rbxassetid://4483345998", Time = 5 }) Tab:AddButton({ Name = "Button!", Callback = function() print("button pressed") end }) Tab:AddToggle({ Name = "This is a toggle!", Default = false, Callback = function(Value) print(Value) end }) Tab:AddColorpicker({ Name = "Colorpicker", Default = Color3.fromRGB(255, 0, 0), Callback = function(Value) print(Value) end }) -- ColorPicker:Set(Color3.fromRGB(255,255,255)) Tab:AddSlider({ Name = "Slider", Min = 0, Max = 20, Default = 5, Color = Color3.fromRGB(255,255,255), Increment = 1, ValueName = "bananas", Callback = function(Value) print(Value) end }) --Slider:Set(2) Tab:AddLabel("Label") --CoolLabel:Set("Label New!") Tab:AddParagraph("Paragraph","Paragraph Content") -- CoolParagraph:Set("Paragraph New!") Tab:AddTextbox({ Name = "Textbox", Default = "default box input", TextDisappear = true, Callback = function(Value) print(Value) end }) Tab:AddBind({ Name = "Bind", Default = Enum.KeyCode.E, Hold = false, Callback = function() print("press") end }) -- Bind:Set(Enum.KeyCode.E) Tab:AddDropdown({ Name = "Dropdown", Default = "1", Options = {"1", "2"}, Callback = function(Value) print(Value) end }) -- Dropdown:Refresh(List,true) --Dropdown:Set("dropdown option") OrionLib:Init() -- destroying the interface: OrionLib:Destroy() local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "Toggleui" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false local Toggle = Instance.new("TextButton") Toggle.Name = "Toggle" Toggle.Parent = ScreenGui Toggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Toggle.BackgroundTransparency = 0.5 Toggle.Position = UDim2.new(0, 0, 0.454706937, 0) Toggle.Size = UDim2.new(0, 50, 0, 50) Toggle.Draggable = true local Corner = Instance.new("UICorner") Corner.CornerRadius = UDim.new(0.2, 0) Corner.Parent = Toggle local Image = Instance.new("ImageLabel") Image.Name = "Icon" Image.Parent = Toggle Image.Size = UDim2.new(1, 0, 1, 0) Image.BackgroundTransparency = 1 Image.Image = "rbxassetid://117239677500065" local Corner2 = Instance.new("UICorner") Corner2.CornerRadius = UDim.new(0.2, 0) Corner2.Parent = Image Toggle.MouseButton1Click:Connect(function() OrionLib:ToggleUi() end)