Advertisement
Flezaa

aaa

Oct 9th, 2022
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("3hex test hub", "Midnight")
  3.  
  4. -- Player Scripts
  5. local Tab = Window:NewTab("Player Scripts")
  6.  
  7. local Section = Tab:NewSection("Movement")
  8.  
  9. Section:NewSlider("Walkspeed", "go fast", 500, 0, function(s)
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  11. end)
  12.  
  13. Section:NewSlider("Jumppower", "Jump high", 500, 0, function(s)
  14. game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
  15. end)
  16.  
  17.  
  18. --Scripts
  19.  
  20. local Tab = Window:NewTab("Scripts")
  21.  
  22. local Section = Tab:NewSection("Hub")
  23.  
  24. Section:NewButton("Inf yield", "ButtonInfo", function()
  25. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  26. end)
  27.  
  28. --sonaria
  29.  
  30. local Tab = Window:NewTab("Sonaria")
  31.  
  32. local Section = Tab:NewSection("esp")
  33.  
  34. Section:NewButton("Inf yield", "ButtonInfo", function()
  35. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  36. if v.ClassName == "MeshPart" then
  37. print(v.CFrame)
  38. print(v.Name)
  39. game.Player.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.CFrame)
  40.  
  41. end
  42. end)
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement