Wally Docs No Text
docs
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") Creating a Tab
local b = w:CreateFolder("B")Creating a TextLabel
b:Label("Pretty Useless NGL",{
TextSize = 25;
TextColor = Color3.fromRGB(255,255,255);
BgColor = Color3.fromRGB(69,69,69);
}) Creating a Button
b:Button("Button",function()
print("Elym Winning")
end)Creating a Toggle
Creating a Slider
Creating a Dropdown Menu
Creating a KeyBind
Creating a Color Picker
Creating a TextBox
Destroy UI
Last updated