Advertisement
NATCHERMONOXIDE

Untitled

Oct 22nd, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
  2. local window = PabloLib:Create(
  3. "Tutorial", -- 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("Admin")
  8. tab1:CreateTextbox("speed", function(a)
  9. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = a
  10. print(a)
  11. end)
  12. tab1:CreateTextbox("JumpPower", function(a)
  13. game.Players.LocalPlayer.Character.Humanoid.JumpPower = a
  14. print(a)
  15. end)
  16. tab1:CreateWarning("Warning")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement