TheRedGamingNL

This is the Cat Hub

Feb 28th, 2022 (edited)
1,230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.84 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3.  
  4. local Window = Library.CreateLib("Cat Hub", "GrapeTheme")
  5.  
  6.  
  7. local Tab = Window:NewTab("Home")
  8. local Section = Tab:NewSection("Home")
  9.  
  10. Section:NewButton("Discord", "It will copy the discord link to your clipboard", function()
  11.     setclipboard("https://discord.gg/bZH6sxx6AZ")
  12.     toclipboard("https://discord.gg/bZH6sxx6AZ")
  13. end)
  14.  
  15.  
  16.  
  17. local Tab = Window:NewTab("Player")
  18. local PlayerSection = Tab:NewSection("Player")
  19.  
  20. PlayerSection:NewSlider("Walkspeed", "Changes the walkspeed", 250, 16, function(v)
  21.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  22. end)
  23.  
  24. PlayerSection:NewSlider("Jumppower", "Changes the jumppower", 250, 50, function(v)
  25.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  26. end)
  27.  
Add Comment
Please, Sign In to add comment