Advertisement
ILovePotato

Untitled

Nov 2nd, 2024
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
  2. local window = PabloLib:Create(
  3. "My Snowball Hub", -- Name here.
  4. "Enabled", -- If you want draggable set here to "Enabled" if you dont want set to "Disabled".
  5. "p" -- You can put any keybind here to open close.
  6. )
  7. local tab1 = window:CreateTab("My Snowball")
  8. tab1:CreateTextbox("Speed", function(a)
  9. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = a
  10. print(a)
  11. end)
  12. tab1:CreateButton("Auto walk", function()
  13. loadstring(game:HttpGet("https://pastebin.com/raw/mHv6Qfyr"))()
  14. print("Hello World")
  15. end)
  16. local tab1 = window:CreateTab("Troll")
  17. tab1:CreateButton("fling all", function()
  18. loadstring(game:HttpGet("https://pastebin.com/raw/zqyDSUWX"))()
  19. print("Hello World")
  20. end)
  21. tab1:CreateButton("night", function()
  22. game.Lighting:SetMinutesAfterMidnight(0)
  23. print("Hello World")
  24. end)
  25. local tab1 = window:CreateTab("Credit")
  26. tab1:CreateLabel("By NeverGonnaGiveUpLo4")
  27. tab1:CreateButton("Close", function()
  28. PabloLib:Close()
  29. print("Hello World")
  30. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement