Advertisement
TheRedGamingNL

CH PL

Jun 30th, 2022
774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.62 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. PlayerSection:NewDropdown("Give Gun", "Gives the localplayer a gun", {"M9", "Remington 870", "AK-47"}, function(v)
  33.     local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver[v].ITEMPICKUP
  34.     local Event = game:GetService("Workspace").Remote.ItemHandler
  35.     Event:InvokeServer(A_1)
  36. end)
  37.  
  38. local Tab = Window:NewTab("Scripts")
  39. local ScriptsSection = Tab:NewSection("Scripts")
  40.  
  41. ScriptsSection:NewButton("Owl Hub", "Executes Owl Hub", function()
  42.     loadstring(game:HttpGet("https://raw.githubusercontent.com/CriShoux/OwlHub/master/OwlHub.txt"))();
  43. end)
  44.  
  45.  
  46. local Tab = Window:NewTab("Options")
  47. local OptionsSection = Tab:NewSection("Options")
  48.  
  49. OptionsSection:NewKeybind("Toggle Gui", "Toggles The GUI", Enum.KeyCode.RightShift, function()
  50.     Library:ToggleUI()
  51. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement