Advertisement
TheRedGamingNL

Your Mom

Jun 30th, 2022
921
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.33 KB | None | 0 0
  1. --hi
  2.  
  3.  
  4. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  5.  
  6.  
  7.  
  8. local Window = Library.CreateLib("Cat Hub", "GrapeTheme")
  9.  
  10.  
  11. local Tab = Window:NewTab("Home")
  12. local Section = Tab:NewSection("Home")
  13.  
  14. Section:NewButton("Discord", "It will copy the discord link to your clipboard", function()
  15.     setclipboard("https://discord.gg/bZH6sxx6AZ")
  16.     toclipboard("https://discord.gg/bZH6sxx6AZ")
  17. end)
  18.  
  19.  
  20.  
  21. local Tab = Window:NewTab("Player")
  22. local PlayerSection = Tab:NewSection("Player")
  23.  
  24. PlayerSection:NewSlider("Walkspeed", "Changes the walkspeed", 250, 16, function(v)
  25.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = v
  26. end)
  27.  
  28. PlayerSection:NewSlider("Jumppower", "Changes the jumppower", 250, 50, function(v)
  29.     game.Players.LocalPlayer.Character.Humanoid.JumpPower = v
  30. end)
  31.  
  32. local Tab = Window:NewTab("Scripts")
  33. local ScriptsSection = Tab:NewSection("Scripts")
  34.  
  35. ScriptsSection:NewButton("Owl Hub", "Executes Owl Hub", function()
  36.     loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))();
  37. end)
  38.  
  39.  
  40. local Tab = Window:NewTab("Options")
  41. local OptionsSection = Tab:NewSection("Options")
  42.  
  43. OptionsSection:NewKeybind("Toggle Gui", "Toggles The GUI", Enum.KeyCode.RightShift, function()
  44.     Library:ToggleUI()
  45. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement