Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local kavoUi = loadstring(game:HttpGet("https://raw.githubusercontent.com/axterv2/ui-libraries/refs/heads/main/KavoUI"))()
- local window = kavoUi.CreateLib("BloxHub - All Tycoons","Luna")
- ---Tabs
- local Tab1 = window:NewTab("Main")
- local Tab1Section = Tab1:NewSection("Main")
- local Tab2 = window:NewTab("Tools")
- local Tab2Section = Tab2:NewSection("Tools")
- local Tab3 = window:NewTab("Credits")
- -- Toggle
- local ScreenGui = Instance.new("ScreenGui")
- local Toggle = Instance.new("TextButton")
- local Corner = Instance.new("UICorner")
- ScreenGui.Name = "ScreenGui"
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ResetOnSpawn = false
- Toggle.Name = "Toggle"
- Toggle.Parent = ScreenGui
- Toggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Toggle.Position = UDim2.new(0, 0, 0.454706937, 0)
- Toggle.Size = UDim2.new(0, 90, 0, 47)
- Toggle.Font = Enum.Font.SourceSans
- Toggle.Text = "Toggle"
- Toggle.TextColor3 = Color3.fromRGB(93, 63, 211)
- Toggle.TextSize = 21.000
- Toggle.Draggable = true
- Toggle.MouseButton1Click:connect(function()
- kavoUi:ToggleUI()
- end)
- Corner.Name = "Corner"
- Corner.Parent = Toggle
- ---Buttons
- Tab1Section:NewButton("Fly","",function()
- loadstring(game:HttpGet('https://pastebin.com/raw/YSL3xKYU'))()
- end)
- Tab1Section:NewButton("Hitbox","",function()
- _G.HeadSize = 25
- _G.Disabled = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in next, game:GetService('Players'):GetPlayers() do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.7
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- end
- end
- end
- end)
- end)
- Tab1Section:NewButton("Big Hitbox","",function()
- _G.HeadSize = 50
- _G.Disabled = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in next, game:GetService('Players'):GetPlayers() do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.7
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- end
- end
- end
- end)
- end)
- Tab1Section:NewToggle("Infinite Jumps","",function()
- local InfiniteJumpEnabled = true
- game:GetService("UserInputService").JumpRequest:connect(function()
- if InfiniteJumpEnabled then
- game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
- end
- end)
- end)
- Tab1Section:NewButton("Speed","Increase speed",function()
- function isNumber(str)
- if tonumber(str) ~= nil or str == 'inf' then
- return true
- end
- end
- local tspeed = 1
- local hb = game:GetService("RunService").Heartbeat
- local tpwalking = true
- local player = game:GetService("Players")
- local lplr = player.LocalPlayer
- local chr = lplr.Character
- local hum = chr and chr:FindFirstChildWhichIsA("Humanoid")
- while tpwalking and hb:Wait() and chr and hum and hum.Parent do
- if hum.MoveDirection.Magnitude > 0 then
- if tspeed and isNumber(tspeed) then
- chr:TranslateBy(hum.MoveDirection * tonumber(tspeed))
- else
- chr:TranslateBy(hum.MoveDirection)
- end
- end
- end
- end)
- Tab1Section:NewButton("Infinite Yield","Loads Iy",function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
- end)
- Tab1Section:NewButton("[DELTA] Infinite Yield","Loads Iy",function()
- loadstring(game:HttpGet("https://gist.githubusercontent.com/lxnnydev/c533c374ca4c1dcef4e1e10e33fa4a0c/raw/03e74f184f801dad77d3ebe1e2f18c6ac87ca612/delta___IY.gistfile1.txt.lua",true))()
- end)
- Tab1Section:NewButton("Ping Counter","Counts Ping",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/MvKKJ331",true))()
- end)
- Tab1Section:NewButton("Fps Counter","Counts Fps",function()
- loadstring(game:HttpGet("https://pastebin.com/raw/ySHJdZpb",true))()
- end)
- Tab2Section:NewButton("NoClip Tool","",function()
- mouse = game.Players.LocalPlayer:GetMouse()
- tool = Instance.new("Tool")
- tool.RequiresHandle = false
- tool.Name = ("Equip To Noclip")
- tool.Activated:Connect(function()
- game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
- game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
- while true do
- game:GetService("RunService").Stepped:wait()
- game.Players.LocalPlayer.Character.Head.CanCollide = false
- game.Players.LocalPlayer.Character.Torso.CanCollide = false
- end
- end)
- tool.Parent = game.Players.LocalPlayer.Backpack
- end)
- Tab2Section:NewButton("Speed Tool","",function()
- mouse = game.Players.LocalPlayer:GetMouse()
- tool = Instance.new("Tool")
- tool.RequiresHandle = false
- tool.Name = "Click To Speed Up"
- tool.Activated:connect(function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
- end)
- tool.Parent = game.Players.LocalPlayer.Backpack
- end)
- Tab2Section:NewButton("TP Tool","Teleport",function()
- mouse = game.Players.LocalPlayer:GetMouse()
- tool = Instance.new("Tool")
- tool.RequiresHandle = false
- tool.Name = "Equip to Click TP"
- tool.Activated:connect(function()
- local pos = mouse.Hit+Vector3.new(0,2.5,0)
- pos = CFrame.new(pos.X,pos.Y,pos.Z)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
- end)
- tool.Parent = game.Players.LocalPlayer.Backpack
- end)
- -- ESP
- Tab1Section:NewLabel("ESP")
- local aj = loadstring(game:HttpGet("https://raw.githubusercontent.com/GamingScripter/V.G-Hub/main/Karrot-Esp"))()
- Tab1Section:NewToggle("Enable Esp", "?", function(K)
- aj:Toggle(K)
- aj.Players = K
- end)
- Tab1Section:NewToggle("Tracers Esp", "?" ,function(K)
- aj.Tracers = K
- end)
- Tab1Section:NewToggle("Name Esp", "?", function(K)
- aj.Names = K
- end)
- Tab1Section:NewToggle("Boxes Esp", "?", function(K)
- aj.Boxes = K
- end)
- Tab1Section:NewToggle("Team Coordinate", "?", function(L)
- aj.TeamColor = L
- end)
- Tab1Section:NewToggle("Team Mates","?",function(L)
- aj.TeamMates = L
- end)
- Tab1Section:NewColorPicker("ESP Color","?", Color3.fromRGB(255,255,255), function(P)
- aj.Color = P
- end)
- -- Credits
- local Section = Tab3:NewSection("Credits")
- Section:NewLabel("Made by Mannuhd Scripts")
- Section:NewLabel("@robloxscripter-1")
- local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/Jxereas/UI-Libraries/main/notification_gui_library.lua", true))()
- local notif = Notification.new("info", "BloxHub", "Made by Mannuhd Scripts", 5)
Advertisement
Add Comment
Please, Sign In to add comment