Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local PabloLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/BatuKvi123/PabloLibV3/main/PabloLibV3"))()
- local window = PabloLib:Create(
- "Tutorial", -- 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.
- )
- local tab1 = window:CreateTab("Admin")
- tab1:CreateTextbox("speed", function(a)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = a
- print(a)
- end)
- tab1:CreateTextbox("JumpPower", function(a)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = a
- print(a)
- end)
- tab1:CreateWarning("Warning")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement