HexHub V3 UI Library Docs
HexHub V3's New Ui Library!
Example: 

NOTE: HEXHUB V3 UI IS IN EARLY BETA, UI MAY BREAK/BUG OUT!
Library Usage:
Getting Library:
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/HexerMaster1929/HexHub/main/UI/NewUI.lua"))()Making A Notification:
Library:MakeNotification("TITLE","DESCRIPTION",ImageID,Time)Making Window:
local Window = Library.CreateWindow("Window Name")Making Tabs:
local Tab = Window:NewTab("Tab Name")Making Sections:
local Section = LocalPlayerTab:NewSection("Section Name")Making A Button:
Section:NewButton("TITLE", "BUTTON TEXT", function()
print("Button Clicked!)
end)Making A Toggle:
Section:NewToggle("Title",function(Value)
print(Value)
end)Making A Slider:
Section:NewSlider("Slider Name",1,1000,function(Value)
print(Value)
end)Making A KeyBind:
Section:NewKeybind("KeyBind Name",Enum.KeyCode.Q,function(KeyCode)
print(KeyCode)
end)Making A Label:
Section:NewLabel("Label Text")Making A TextBox:
Section:NewTextBox("TextBox Name","PlaceHolder Text",function(Text)
print(Text)
end)Making A DropDown:
Section:NewDropdown("DropDown Name",{"Option1","Option2","Option2"},function(Opt)
print(Opt)
end) Making A ColorPicker:
Section:NewColorPicker("ColorPicker Name", Color3.fromRGB(0, 0, 0), function(color)
print(color)
end)Last updated