Wally UI v3 Library
Wally UI v3 [documentation]
Booting the Library
local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()Creating a Window
local w = library:CreateWindow("Title of the library")
--[[
w is used to identify the window.
If you set it to e, when you create a tab,
it will be b = e:CreatFolder("B")
]]Creating a Tab
local b = w:CreateFolder("B")
--[[
The w in w: is the window to which it is attached.
If the window is e, you can use it by changing it to
e. b is the name of the tab, which is used when adding
buttons, etc. It doesn't matter if you use Main, One, etc.
]]Creating a TextLabel
Creating a Button
Creating a Toggle
Creating a Slider
Creating a Dropdown Menu
Creating a KeyBind
Creating a Color Picker
Creating a TextBox
Destroy UI
Last updated