Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - Pablo lib v3 hub/How to create a hub.
- - local lib creating.
- local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
- -creating window
- local window = PabloLib:Create(
- "Name", -- Name here.
- "Enabled", -- If you want draggable set here to "Enabled" if you dont want set to "Disabled".
- "p" -- You can put any keybind here to open close.
- )
- - creating tab
- local tab1 = window:CreateTab("Name")
- - button for the tab
- tab1:CreateButton("Button", function()
- print("Hello World")
- end)
- - textbox
- tab1:CreateTextbox("Textbox", function(a)
- print(a)
- end)
- - label
- tab1:CreateLabel("Label")
- - Warning
- tab1:CreateWarning("Warning")
- - Close
- PabloLib:Close()
- ---MORE SOON---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement