YoungAoS

lifesuckstycoon

Oct 18th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.97 KB | None | 0 0
  1. local kavoUi = loadstring(game:HttpGet("https://raw.githubusercontent.com/axterv2/ui-libraries/refs/heads/main/KavoUI"))()
  2. local window = kavoUi.CreateLib("BloxHub - All Tycoons","Luna")
  3.  
  4. ---Tabs
  5.  
  6. local Tab1 = window:NewTab("Main")
  7. local Tab1Section = Tab1:NewSection("Main")
  8. local Tab2 = window:NewTab("Tools")
  9. local Tab2Section = Tab2:NewSection("Tools")
  10. local Tab3 = window:NewTab("Credits")
  11.  
  12. -- Toggle
  13. local ScreenGui = Instance.new("ScreenGui")
  14. local Toggle = Instance.new("TextButton")
  15. local Corner = Instance.new("UICorner")
  16.  
  17. ScreenGui.Name = "ScreenGui"
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ResetOnSpawn = false
  20.  
  21. Toggle.Name = "Toggle"
  22. Toggle.Parent = ScreenGui
  23. Toggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  24. Toggle.Position = UDim2.new(0, 0, 0.454706937, 0)
  25. Toggle.Size = UDim2.new(0, 90, 0, 47)
  26. Toggle.Font = Enum.Font.SourceSans
  27. Toggle.Text = "Toggle"
  28. Toggle.TextColor3 = Color3.fromRGB(93, 63, 211)
  29. Toggle.TextSize = 21.000
  30. Toggle.Draggable = true
  31. Toggle.MouseButton1Click:connect(function()
  32. kavoUi:ToggleUI()
  33. end)
  34.  
  35. Corner.Name = "Corner"
  36. Corner.Parent = Toggle
  37.  
  38. ---Buttons
  39.  
  40. Tab1Section:NewButton("Fly","",function()
  41. loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
  42. end)
  43.  
  44. Tab1Section:NewButton("Hitbox","",function()
  45. _G.HeadSize = 25
  46. _G.Disabled = true
  47.  
  48. game:GetService('RunService').RenderStepped:connect(function()
  49. if _G.Disabled then
  50. for i,v in next, game:GetService('Players'):GetPlayers() do
  51. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  52. pcall(function()
  53. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  54. v.Character.HumanoidRootPart.Transparency = 0.7
  55. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  56. v.Character.HumanoidRootPart.Material = "Neon"
  57. v.Character.HumanoidRootPart.CanCollide = false
  58. end)
  59. end
  60. end
  61. end
  62. end)
  63. end)
  64.  
  65. Tab1Section:NewButton("Big Hitbox","",function()
  66. _G.HeadSize = 50
  67. _G.Disabled = true
  68.  
  69. game:GetService('RunService').RenderStepped:connect(function()
  70. if _G.Disabled then
  71. for i,v in next, game:GetService('Players'):GetPlayers() do
  72. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  73. pcall(function()
  74. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  75. v.Character.HumanoidRootPart.Transparency = 0.7
  76. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
  77. v.Character.HumanoidRootPart.Material = "Neon"
  78. v.Character.HumanoidRootPart.CanCollide = false
  79. end)
  80. end
  81. end
  82. end
  83. end)
  84. end)
  85.  
  86. Tab1Section:NewToggle("Infinite Jumps","",function()
  87. local InfiniteJumpEnabled = true
  88. game:GetService("UserInputService").JumpRequest:connect(function()
  89. if InfiniteJumpEnabled then
  90. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  91. end
  92. end)
  93. end)
  94.  
  95. Tab1Section:NewButton("Speed","Increase speed",function()
  96. function isNumber(str)
  97. if tonumber(str) ~= nil or str == 'inf' then
  98. return true
  99. end
  100. end
  101. local tspeed = 1
  102. local hb = game:GetService("RunService").Heartbeat
  103. local tpwalking = true
  104. local player = game:GetService("Players")
  105. local lplr = player.LocalPlayer
  106. local chr = lplr.Character
  107. local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
  108. while tpwalking and hb:Wait() and chr and hum and hum.Parent do
  109. if hum.MoveDirection.Magnitude > 0 then
  110. if tspeed and isNumber(tspeed) then
  111. chr:TranslateBy(hum.MoveDirection * tonumber(tspeed))
  112. else
  113. chr:TranslateBy(hum.MoveDirection)
  114. end
  115. end
  116. end
  117. end)
  118.  
  119. Tab1Section:NewButton("Infinite Yield","Loads Iy",function()
  120. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  121. end)
  122.  
  123. Tab1Section:NewButton("[DELTA] Infinite Yield","Loads Iy",function()
  124. loadstring(game:HttpGet("https://gist.githubusercontent.com/lxnnydev/c533c374ca4c1dcef4e1e10e33fa4a0c/raw/03e74f184f801dad77d3ebe1e2f18c6ac87ca612/delta___IY.gistfile1.txt.lua",true))()
  125. end)
  126.  
  127. Tab1Section:NewButton("Ping Counter","Counts Ping",function()
  128. loadstring(game:HttpGet("https://pastebin.com/raw/MvKKJ331",true))()
  129. end)
  130.  
  131. Tab1Section:NewButton("Fps Counter","Counts Fps",function()
  132. loadstring(game:HttpGet("https://pastebin.com/raw/ySHJdZpb",true))()
  133. end)
  134.  
  135. Tab2Section:NewButton("NoClip Tool","",function()
  136. mouse = game.Players.LocalPlayer:GetMouse()
  137. tool = Instance.new("Tool")
  138. tool.RequiresHandle = false
  139. tool.Name = ("Equip To Noclip")
  140. tool.Activated:Connect(function()
  141. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  142. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  143. while true do
  144. game:GetService("RunService").Stepped:wait()
  145. game.Players.LocalPlayer.Character.Head.CanCollide = false
  146. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  147. end
  148. end)
  149. tool.Parent = game.Players.LocalPlayer.Backpack
  150. end)
  151.  
  152. Tab2Section:NewButton("Speed Tool","",function()
  153. mouse = game.Players.LocalPlayer:GetMouse()
  154. tool = Instance.new("Tool")
  155. tool.RequiresHandle = false
  156. tool.Name = "Click To Speed Up"
  157. tool.Activated:connect(function()
  158. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  159. end)
  160. tool.Parent = game.Players.LocalPlayer.Backpack
  161. end)
  162.  
  163. Tab2Section:NewButton("TP Tool","Teleport",function()
  164. mouse = game.Players.LocalPlayer:GetMouse()
  165. tool = Instance.new("Tool")
  166. tool.RequiresHandle = false
  167. tool.Name = "Equip to Click TP"
  168. tool.Activated:connect(function()
  169. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  170. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  171. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  172. end)
  173. tool.Parent = game.Players.LocalPlayer.Backpack
  174. end)
  175.  
  176. -- ESP
  177. Tab1Section:NewLabel("ESP")
  178. local aj = loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/V.G-Hub/main/Karrot-Esp"))()
  179. Tab1Section:NewToggle("Enable Esp", "?", function(K)
  180. aj:Toggle(K)
  181. aj.Players = K
  182. end)
  183.  
  184. Tab1Section:NewToggle("Tracers Esp", "?" ,function(K)
  185. aj.Tracers = K
  186. end)
  187.  
  188. Tab1Section:NewToggle("Name Esp", "?", function(K)
  189. aj.Names = K
  190. end)
  191.  
  192. Tab1Section:NewToggle("Boxes Esp", "?", function(K)
  193. aj.Boxes = K
  194. end)
  195.  
  196. Tab1Section:NewToggle("Team Coordinate", "?", function(L)
  197. aj.TeamColor = L
  198. end)
  199.  
  200. Tab1Section:NewToggle("Team Mates","?",function(L)
  201. aj.TeamMates = L
  202. end)
  203.  
  204. Tab1Section:NewColorPicker("ESP Color","?", Color3.fromRGB(255,255,255), function(P)
  205. aj.Color = P
  206. end)
  207.  
  208. -- Credits
  209. local Section = Tab3:NewSection("Credits")
  210. Section:NewLabel("Made by Mannuhd Scripts")
  211. Section:NewLabel("@robloxscripter-1")
  212. local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/Jxereas/UI-Libraries/main/notification_gui_library.lua", true))()
  213. local notif = Notification.new("info", "BloxHub", "Made by Mannuhd Scripts", 5)
Advertisement
Add Comment
Please, Sign In to add comment