Advertisement
NATCHERMONOXIDE

Pablo lib v3/How to create a hub.

Oct 24th, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. - Pablo lib v3 hub/How to create a hub.
  2.  
  3. - local lib creating.
  4.  
  5. local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
  6.  
  7. -creating window
  8.  
  9. local window = PabloLib:Create(
  10. "Name", -- Name here.
  11. "Enabled", -- If you want draggable set here to "Enabled" if you dont want set to "Disabled".
  12. "p" -- You can put any keybind here to open close.
  13. )
  14.  
  15. - creating tab
  16.  
  17. local tab1 = window:CreateTab("Name")
  18.  
  19. - button for the tab
  20.  
  21. tab1:CreateButton("Button", function()
  22. print("Hello World")
  23. end)
  24.  
  25. - textbox
  26.  
  27. tab1:CreateTextbox("Textbox", function(a)
  28. print(a)
  29. end)
  30.  
  31. - label
  32.  
  33. tab1:CreateLabel("Label")
  34.  
  35. - Warning
  36.  
  37. tab1:CreateWarning("Warning")
  38.  
  39. - Close
  40.  
  41. PabloLib:Close()
  42.  
  43. ---MORE SOON---
  44.  
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement