local Kavo = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Kavo.CreateLib("Marretão Br🇧🇷", "BloodTheme") -- --- SISTEMA DE MINIMIZAR (BOTÃO FLUTUANTE) --- local OpenUI = Instance.new("ScreenGui") local MainBtn = Instance.new("TextButton") local UICorner = Instance.new("UICorner") OpenUI.Name = "DeltaMinimizer" OpenUI.Parent = game:GetService("CoreGui") MainBtn.Name = "MainBtn" MainBtn.Parent = OpenUI MainBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) MainBtn.Position = UDim2.new(0.1, 0, 0.1, 0) -- Posição inicial MainBtn.Size = UDim2.new(0, 60, 0, 60) MainBtn.Text = "MENU" MainBtn.TextColor3 = Color3.fromRGB(255, 255, 255) MainBtn.Font = Enum.Font.SourceSansBold MainBtn.TextSize = 14 MainBtn.Active = true MainBtn.Draggable = true -- Importante para Mobile UICorner.CornerRadius = UDim.new(0, 10) UICorner.Parent = MainBtn -- Função para Abrir/Fechar local uiVisivel = true MainBtn.MouseButton1Click:Connect(function() uiVisivel = not uiVisivel -- A Kavo UI geralmente cria um ScreenGui com o nome que demos à Window if game.CoreGui:FindFirstChild("Marretão Br🇧🇷") then game.CoreGui:FindFirstChild("Marretão Br🇧🇷").Enabled = uiVisivel end end) -- --- VARIÁVEIS DE CONTROLE --- _G.ESP_Players = false _G.ESP_Computers = false _G.Noclip = false -- --- ABA OPÇÕES BÁSICA --- local Tab1 = Window:NewTab("Opções Básica") local Sec1 = Tab1:NewSection("Visual / ESP") Sec1:NewToggle("ESP Players", "Verde=Inocente | Vermelho=Marreta", function(state) _G.ESP_Players = state spawn(function() while _G.ESP_Players do for _, p in pairs(game.Players:GetPlayers()) do if p.Character and p ~= game.Players.LocalPlayer then local h = p.Character:FindFirstChild("Highlight_ESP") or Instance.new("Highlight", p.Character) h.Name = "Highlight_ESP" if p.Character:FindFirstChild("Hammer") or p.Backpack:FindFirstChild("Hammer") then h.FillColor = Color3.fromRGB(255, 0, 0) else h.FillColor = Color3.fromRGB(0, 255, 0) end end end task.wait(2) end end) end) Sec1:NewToggle("ESP Computadores", "Mostra os PCs", function(state) _G.ESP_Computers = state for _, v in pairs(game.Workspace:GetDescendants()) do if v.Name == "ComputerTable" then if _G.ESP_Computers then local b = v:FindFirstChild("PC_ESP") or Instance.new("BoxHandleAdornment", v) b.Name = "PC_ESP" b.AlwaysOnTop = true b.Size = Vector3.new(4,4,4) b.Color3 = Color3.fromRGB(0, 200, 255) b.Adornee = v else if v:FindFirstChild("PC_ESP") then v.PC_ESP:Destroy() end end end end end) -- --- ABA UNIVERSAL --- local Tab2 = Window:NewTab("Universal") local Sec2 = Tab2:NewSection("Utilitários") Sec2:NewButton("FullBright (Brilho)", "Ver no escuro", function() game.Lighting.Brightness = 2 game.Lighting.ClockTime = 14 game.Lighting.GlobalShadows = false game.Lighting.Ambient = Color3.fromRGB(255, 255, 255) end) Sec2:NewSlider("Velocidade (Speed)", "Ajusta WalkSpeed", 200, 16, function(s) if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end end) Sec2:NewToggle("NoClip", "Atravessa Paredes", function(state) _G.Noclip = state game:GetService("RunService").Stepped:Connect(function() if _G.Noclip and game.Players.LocalPlayer.Character then for _, part in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then part.CanCollide = false end end end end) end)