tomoneko

cathub V4

Nov 17th, 2023 (edited)
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. local DiscordLib = loadstring(game:HttpGet"https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/discord%20lib.txt")()
  2.  
  3. local win = DiscordLib:Window("cat hub v4")
  4.  
  5. local serv = win:Server("main", "")
  6.  
  7. local btns = serv:Channel("script")
  8.  
  9. btns:Button("FLY v3", function()
  10. loadstring(game:HttpGet("https://raw.githubusercontent.com/XNEOFF/FlyGuiV3/main/FlyGuiV3.txt"))()
  11. end)
  12.  
  13. btns:Button("V FLY", function()
  14. loadstring(game:HttpGet("https://pastebin.com/raw/MHE1cbWF"))()
  15. end)
  16.  
  17. local walkSpeedChannel = serv:Channel("physical ability")
  18.  
  19. walkSpeedChannel:Label("Enter your desired walk speed below:")
  20.  
  21. local walkSpeed = 16 -- default walk speed
  22.  
  23. walkSpeedChannel:Textbox("Walk Speed", "", false, function(value)
  24. local num = tonumber(value)
  25. if num then
  26. walkSpeed = num
  27. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = num
  28. else
  29. print("Please enter a valid number.")
  30. end
  31. end)
  32.  
  33. local keepWalkSpeed = false
  34.  
  35. walkSpeedChannel:Toggle("keep walk speed", false, function(state)
  36. keepWalkSpeed = state
  37. end)
  38.  
  39. local infiniteJump = false
  40.  
  41. walkSpeedChannel:Toggle("infinite jump", false, function(state)
  42. infiniteJump = state
  43. end)
  44.  
  45. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  46. if keepWalkSpeed then
  47. character:WaitForChild("Humanoid").WalkSpeed = walkSpeed
  48. end
  49. end)
  50.  
  51. game:GetService("UserInputService").JumpRequest:Connect(function()
  52. if infiniteJump then
  53. game.Players.LocalPlayer.Character.Humanoid:ChangeState("Jumping")
  54. end
  55. end)
  56.  
Advertisement
Add Comment
Please, Sign In to add comment