book-blankOrion Library

Orion Library [documentation]

Booting the Library


local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/DenDenZZZ/Orion-UI-Library/refs/heads/main/source')))()

Creating a Window


local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
--[[
Name = <string> - The name of the UI.
HidePremium = <bool> - Whether or not the user details shows Premium status or not.
SaveConfig = <bool> - Toggles the config saving in the UI.
ConfigFolder = <string> - The name of the folder where the configs are saved.
IntroEnabled = <bool> - Whether or not to show the intro animation.
IntroText = <string> - Text to show in the intro animation.
IntroIcon = <string> - URL to the image you want to use in the intro animation.
Icon = <string> - URL to the image you want displayed on the window.
CloseCallback = <function> - Function to execute when the window is closed.
]]

Creating a Tab


Creating a Section


Notifying the user


Creating a Button


Creating a Checkbox toggle


Changing the value of an existing Toggle


Creating a Color Picker


Setting the color picker's value


Creating a Slider


Change Slider Value


Creating a Label


Changing the value of an existing label


Creating a Paragraph


Changing an existing paragraph


Creating an Adaptive Input


Creating a Keybind


Chaning the value of a bind


Creating a Dropdown menu


Adding a set of new Dropdown buttons to an existing menu


Selecting a dropdown option


Finishing your script (REQUIRED)


The below function needs to be added at the end of your code.

Destroying the Interface


Last updated