Advertisement
ooppppad

what

Jul 28th, 2022
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 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("what's Gui da hood V2", "Sentinel")
  3.  
  4. local Tab = Window:NewTab("Main")
  5. local Section = Tab:NewSection("Main")
  6.  
  7. Section:NewToggle("auto drop", "auto drop", function(state)
  8. if state then
  9. _G.loop = true
  10. while _G.loop == true do wait()
  11. game:GetService("ReplicatedStorage").MainEvent:FireServer("DropMoney","10000")
  12. end
  13. else
  14. _G.loop = false
  15. while _G.loop == true do wait()
  16. end
  17. end
  18. end)
  19.  
  20. Section:NewButton("block", "block", function()
  21. game:GetService("ReplicatedStorage").MainEvent:FireServer("Block",true)
  22. end)
  23.  
  24.  
  25.  
  26.  
  27. local Tab = Window:NewTab("Scripts")
  28. local Section = Tab:NewSection("Scripts")
  29.  
  30. Section:NewButton("Fly(C)", "Fly", function()
  31. loadstring(game:HttpGet("https://pastebin.com/raw/XaPTcSfb", true))()
  32. end)
  33.  
  34. Section:NewButton("Chatspy", "Chatspy", function()
  35. loadstring(game:HttpGet("https://pastebin.com/raw/y4884QqX", true))()
  36. end)
  37.  
  38. Section:NewButton("Cash Counter", "Counter", function()
  39. loadstring(game:HttpGet("https://raw.githubusercontent.com/Crostide/Counter/main/Cash"))()
  40. end)
  41.  
  42. Section:NewButton("godmode V3", "godmode V3", function()
  43. if not game['Loaded'] or not game:GetService('Players')['LocalPlayer'] then
  44. game['Loaded']:Wait();
  45. game:WaitForChild(game:GetService('Players'));
  46. game:GetService('Players'):WaitForChild(game:GetService('Players').LocalPlayer.Name)
  47. end
  48. loadstring(game:HttpGet('https://raw.githubusercontent.com/Linux6699/DaHubRevival/main/godv3.lua'))()
  49. end)
  50.  
  51.  
  52.  
  53. local Tab = Window:NewTab("Player")
  54. local Section = Tab:NewSection("Select Player!")
  55. Plr = {}
  56. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  57. table.insert(Plr,v.Name)
  58. end
  59. local drop = Section:NewDropdown("Select Player!", "Click To Select", Plr, function(t)
  60. PlayerTP = t
  61. end)
  62. Section:NewButton("Click To TP", "", function()
  63. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
  64. end)
  65. Section:NewToggle("Auto Tp", "", function(t)
  66. _G.TPPlayer = t
  67. while _G.TPPlayer do wait()
  68. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[PlayerTP].Character.HumanoidRootPart.CFrame
  69. end
  70. end)
  71.  
  72. Section:NewButton("Refresh Dropdown","Refresh Dropdown", function()
  73. drop:Refresh(Plr)
  74. end)
  75.  
  76.  
  77.  
  78.  
  79. local Tab = Window:NewTab("Teleport")
  80. local Section = Tab:NewSection("Teleport")
  81.  
  82. Section:NewButton("Bank", "Bank", function()
  83. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-462.6618347167969, 39.04584884643555, -285.1705017089844)
  84. end)
  85.  
  86. Section:NewButton("Admin Lair", "Admin Lair", function()
  87. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-871.1184692382812, -32.651187896728516, -645.2445068359375)
  88. end)
  89.  
  90. Section:NewButton("Safe Zone", "Safe Zone", function()
  91. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(207.48085021972656, 38.24801254272461, 200014.953125)
  92. end)
  93.  
  94. Section:NewButton("UFO", "UFO", function()
  95. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(64.63536834716797, 138.99803161621094, -694.84130859375)
  96. end)
  97.  
  98. Section:NewButton("Klub", "Klub", function()
  99. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-265.6568603515625, 0.02608633041381836, -422.1231994628906)
  100. end)
  101.  
  102.  
  103.  
  104. local Tab = Window:NewTab("ToggleUI")
  105. local Section = Tab:NewSection("ToggleUI")
  106.  
  107. Section:NewKeybind("ToggleUI", "ToggleUI", Enum.KeyCode.V, function()
  108. Library:ToggleUI()
  109. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement