-- The code is below. -- // dravuHub v6 - macOS Edition (FULL OMNI VERSION - 17 TABS - NO CUTS) // -- local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local p = game.Players.LocalPlayer local PlayerGui = p:WaitForChild("PlayerGui") -- Interface Principal local ScreenGui = Instance.new("ScreenGui", PlayerGui); ScreenGui.Name = "dravuHub_V6" local Main = Instance.new("Frame", ScreenGui); Main.BackgroundColor3 = Color3.fromRGB(25, 25, 27); Main.Position = UDim2.new(0.5, -225, 0.5, -150); Main.Size = UDim2.new(0, 450, 0, 300); Main.Active = true; Main.Draggable = true Instance.new("UICorner", Main).CornerRadius = UDim.new(0, 15) -- // OS 3 PONTINHOS DO MAC // -- local function MakeDot(col, x, close) local d = Instance.new("TextButton", Main); d.Size = UDim2.new(0, 12, 0, 12); d.Position = UDim2.new(0, x, 0, 12); d.BackgroundColor3 = col; d.Text = ""; Instance.new("UICorner", d).CornerRadius = UDim.new(1, 0); d.ZIndex = 10 if close then d.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) end end MakeDot(Color3.fromRGB(255, 95, 87), 15, true); MakeDot(Color3.fromRGB(254, 188, 46), 35, false); MakeDot(Color3.fromRGB(40, 200, 64), 55, false) -- Estrutura Sidebar e Paginas local Sidebar = Instance.new("ScrollingFrame", Main); Sidebar.Size = UDim2.new(0, 120, 1, -40); Sidebar.Position = UDim2.new(0,0,0,40); Sidebar.BackgroundColor3 = Color3.fromRGB(32, 32, 34); Sidebar.CanvasSize = UDim2.new(0,0,0,950); Sidebar.ScrollBarThickness = 0; Instance.new("UIListLayout", Sidebar).Padding = UDim.new(0, 5) local Pages = Instance.new("Frame", Main); Pages.Position = UDim2.new(0, 130, 0, 45); Pages.Size = UDim2.new(1, -140, 1, -55); Pages.BackgroundTransparency = 1 -- Estado Global _G.flying, _G.noclip, _G.spin, _G.fling, _G.infj, _G.walkA, _G.jumpA = false, false, false, false, false, false, false local ws, jp, fs, str = 16, 50, 50, 0.75 -- // BUILDERS INTELIGENTES // -- local function CreatePage(nm) local pg = Instance.new("ScrollingFrame", Pages); pg.Name = nm; pg.Size = UDim2.new(1,0,1,0); pg.BackgroundTransparency = 1; pg.Visible = false; pg.ScrollBarThickness = 0; Instance.new("UIListLayout", pg).Padding = UDim.new(0,6); return pg end local function AddTab(nm, pg) local b = Instance.new("TextButton", Sidebar); b.Size = UDim2.new(1,-10,0,32); b.BackgroundColor3 = Color3.fromRGB(45,45,47); b.Text = nm; b.TextColor3 = Color3.new(1,1,1); b.Font = "GothamBold"; b.TextSize = 10; Instance.new("UICorner", b) b.MouseButton1Click:Connect(function() for _, v in pairs(Pages:GetChildren()) do v.Visible = false end; pg.Visible = true end) end local function AddToggle(pg, tx, cb) local b = Instance.new("TextButton", pg); b.Size = UDim2.new(1,-10,0,35); b.BackgroundColor3 = Color3.fromRGB(40,40,42); b.Text = " "..tx; b.TextColor3 = Color3.new(1,1,1); b.TextXAlignment = "Left"; Instance.new("UICorner", b) local s = false; b.MouseButton1Click:Connect(function() s = not s; b.BackgroundColor3 = s and Color3.fromRGB(0,122,255) or Color3.fromRGB(40,40,42); cb(s) end) end local function AddInput(pg, ph, cb) local i = Instance.new("TextBox", pg); i.Size = UDim2.new(1,-10,0,35); i.BackgroundColor3 = Color3.fromRGB(35,35,37); i.PlaceholderText = ph; i.TextColor3 = Color3.new(1,1,1); Instance.new("UICorner", i); i.FocusLost:Connect(function() cb(i.Text) end) end -- // PREENCHENDO TODAS AS 17 ABAS (NADA FALTANDO AGORA) // -- -- 1. Principal local P1 = CreatePage("Main"); P1.Visible = true; AddTab("🏠 Principal", P1) AddToggle(P1, "Fly (Voo)", function(v) _G.flying = v end); AddInput(P1, "Fly Speed", function(t) fs = tonumber(t) or 50 end) AddToggle(P1, "Noclip", function(v) _G.noclip = v end); AddToggle(P1, "Inf Jump", function(v) _G.infj = v end) AddToggle(P1, "Speed Toggle", function(v) _G.walkA = v end); AddInput(P1, "Speed Value", function(t) ws = tonumber(t) or 16 end) AddToggle(P1, "Jump Toggle", function(v) _G.jumpA = v end); AddInput(P1, "Jump Value", function(t) jp = tonumber(t) or 50 end) -- 2. Brookhaven local P2 = CreatePage("Brook"); AddTab("🏡 Brookhaven", P2) local bSky = Instance.new("TextButton", P2); bSky.Size = UDim2.new(1,-10,0,40); bSky.Text = "🌌 Sky Clothes (Global)"; bSky.BackgroundColor3 = Color3.fromRGB(0,122,255); bSky.TextColor3 = Color3.new(1,1,1); Instance.new("UICorner", bSky) bSky.MouseButton1Click:Connect(function() local re = game:GetService("ReplicatedStorage"):FindFirstChild("RE"); re:FireServer("v", "21532130"); re:FireServer("b", "21532130") end) AddToggle(P2, "Unlock Vehicles", function() end); AddToggle(P2, "Burn House", function() end) -- 3. Visual & 4. Aimbot local P3 = CreatePage("Vis"); AddTab("👁️ Visual", P3); AddToggle(P3, "ESP Names", function(v) _G.esp = v end); AddToggle(P3, "Fullbright", function(v) _G.fb = v end) local P4 = CreatePage("Aim"); AddTab("🎯 Aimbot", P4); AddToggle(P4, "Silent Aim", function() end); AddInput(P4, "FOV Size", function() end) -- 5. Diversão local P5 = CreatePage("Fun"); AddTab("🎉 Diversão", P5); AddToggle(P5, "SpinBot", function(v) _G.spin = v end); AddToggle(P5, "Walk Fling", function(v) _G.fling = v end) -- 6. Stretch & 7. Auto Click local P6 = CreatePage("Str"); AddTab("📺 Stretch", P6); AddToggle(P6, "Ativar Stretch", function(v) _G.strA = v end); AddInput(P6, "Valor (0.1 - 1)", function(t) str = tonumber(t) or 0.75 end) local P7 = CreatePage("Click"); AddTab("🖱️ Click", P7); AddToggle(P7, "Auto Clicker", function(v) _G.ac = v; task.spawn(function() while _G.ac do game:GetService("VirtualInputManager"):SendMouseButtonEvent(0,0,0,true,game,0); task.wait(0.1); game:GetService("VirtualInputManager"):SendMouseButtonEvent(0,0,0,false,game,0) end end) end) -- 8. Audio & 9. TP & 10. Spec local P8 = CreatePage("Aud"); AddTab("🎵 Áudio", P8); AddInput(P8, "Sound ID", function(t) local s = Instance.new("Sound", workspace); s.SoundId = "rbxassetid://"..t; s:Play() end) local P9 = CreatePage("Tp"); AddTab("📍 Teleport", P9); local P10 = CreatePage("Sp"); AddTab("🎥 Spectate", P10) local function Up() for _,v in pairs(game.Players:GetPlayers()) do if v ~= p then local b = Instance.new("TextButton", P9); b.Size = UDim2.new(1,-10,0,30); b.Text = "TP: "..v.Name; Instance.new("UICorner", b); b.MouseButton1Click:Connect(function() p.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame end) local s = Instance.new("TextButton", P10); s.Size = UDim2.new(1,-10,0,30); s.Text = "Ver: "..v.Name; Instance.new("UICorner", s); s.MouseButton1Click:Connect(function() workspace.CurrentCamera.CameraSubject = v.Character.Humanoid end) end end end; Up(); game.Players.PlayerAdded:Connect(Up) -- 11. IA Helper local P11 = CreatePage("IA"); AddTab("🤖 IA Helper", P11); local iaT = Instance.new("TextLabel", P11); iaT.Size = UDim2.new(1,0,0,40); iaT.Text = "IA Pronta!"; iaT.TextColor3 = Color3.new(1,1,1); iaT.BackgroundTransparency = 1; AddInput(P11, "Comando...", function(t) iaT.Text = "Processando: "..t; task.wait(1); iaT.Text = "✅ Concluido" end) -- 12. Explorer local P12 = CreatePage("Exp"); AddTab("📂 Explorer", P12); for _,o in pairs(workspace:GetChildren()) do local b = Instance.new("TextButton", P12); b.Size = UDim2.new(1,-10,0,25); b.Text = (o:IsA("LocalScript") and "📘 " or "📜 ")..o.Name; b.TextXAlignment = "Left"; b.BackgroundColor3 = Color3.fromRGB(40,40,42); b.TextColor3 = Color3.new(1,1,1); Instance.new("UICorner", b) end -- 13. Configs & Executor local P13 = CreatePage("Set"); AddTab("⚙️ Configs", P13); AddToggle(P13, "Rainbow Menu", function(v) _G.rb = v end) local Exec = Instance.new("Frame", ScreenGui); Exec.Size = UDim2.new(0,300,0,180); Exec.Position = UDim2.new(0.5,50,0.5,-90); Exec.BackgroundColor3 = Color3.fromRGB(25,25,27); Exec.Visible = false; Exec.Draggable = true; Instance.new("UICorner", Exec).CornerRadius = UDim.new(0,15) local Sc = Instance.new("TextBox", Exec); Sc.Size = UDim2.new(1,-20,1,-70); Sc.Position = UDim2.new(0,10,0,30); Sc.BackgroundColor3 = Color3.fromRGB(35,35,37); Sc.MultiLine = true; Sc.TextColor3 = Color3.new(1,1,1); Instance.new("UICorner", Sc) local Rb = Instance.new("TextButton", Exec); Rb.Size = UDim2.new(1,-20,0,25); Rb.Position = UDim2.new(0,10,1,-30); Rb.Text = "Injetar"; Rb.BackgroundColor3 = Color3.fromRGB(0,122,255); Instance.new("UICorner", Rb); Rb.MouseButton1Click:Connect(function() loadstring(Sc.Text)() end) AddTab("🚀 Executor", Exec) -- 14. Temas & 15. AntiDie & 16. InvSpy & 17. Dash local P14 = CreatePage("Theme"); AddTab("🌈 Temas", P14); local P15 = CreatePage("AD"); AddTab("🛡️ Anti-Die", P15); AddToggle(P15, "Auto Respawn", function(v) _G.autoD = v end) local P16 = CreatePage("Spy"); AddTab("🕵️ Inv Spy", P16); local P17 = CreatePage("Ds"); AddTab("⚡ Dash", P17); AddToggle(P17, "Dash (Q)", function(v) _G.dash = v end) -- // LOOPS GLOBAIS // -- RunService.RenderStepped:Connect(function() if _G.rb then Main.BackgroundColor3 = Color3.fromHSV(tick()%5/5, 0.5, 0.8) end if p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local h = p.Character.Humanoid; local hrp = p.Character.HumanoidRootPart if _G.walkA then h.WalkSpeed = ws end if _G.jumpA then h.JumpPower = jp end if _G.noclip then for _,v in pairs(p.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end if _G.flying then hrp.Velocity = workspace.CurrentCamera.CFrame.LookVector * fs end if _G.spin then hrp.CFrame = hrp.CFrame * CFrame.Angles(0, 0.4, 0) end if _G.fling then hrp.RotVelocity = Vector3.new(0, 5000, 0) end if _G.autoD and h.Health < 15 then h.Health = 0 end if _G.strA then workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame * CFrame.new(0,0,0,1,0,0,0,str,0,0,0,1) end end end) UserInputService.InputBegan:Connect(function(i, g) if not g and i.KeyCode == Enum.KeyCode.RightControl then Main.Visible = not Main.Visible end if not g and i.KeyCode == Enum.KeyCode.Q and _G.dash then p.Character.HumanoidRootPart.CFrame = p.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-15) end end) UserInputService.JumpRequest:Connect(function() if _G.infj then p.Character.Humanoid:ChangeState("Jumping") end end) print("dravuHub v6 - CARREGADO COMPLETO!") -- // SISTEMA DE NOTIFICAÇÃO ESTILO WAVE (TOPO) // -- local function SendWaveNotification(title, text) local WaveNotify = Instance.new("ScreenGui", game.Players.LocalPlayer:WaitForChild("PlayerGui")) WaveNotify.Name = "WaveNotification" local Frame = Instance.new("Frame", WaveNotify) Frame.Size = UDim2.new(0, 280, 0, 80) Frame.Position = UDim2.new(1, 30, 0, 20) -- Começa fora da tela (topo direita) Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 22) Frame.BorderSizePixel = 0 local Corner = Instance.new("UICorner", Frame) Corner.CornerRadius = UDim.new(0, 8) -- Linha de destaque vermelha local Accent = Instance.new("Frame", Frame) Accent.Size = UDim2.new(0, 4, 1, 0) Accent.BackgroundColor3 = Color3.fromRGB(255, 0, 0) Instance.new("UICorner", Accent) local Ttl = Instance.new("TextLabel", Frame) Ttl.Size = UDim2.new(1, -20, 0, 30) Ttl.Position = UDim2.new(0, 15, 0, 5) Ttl.BackgroundTransparency = 1 Ttl.Text = title Ttl.TextColor3 = Color3.fromRGB(255, 0, 0) Ttl.TextSize = 16 Ttl.Font = Enum.Font.GothamBold Ttl.TextXAlignment = Enum.TextXAlignment.Left local Msg = Instance.new("TextLabel", Frame) Msg.Size = UDim2.new(1, -20, 0, 40) Msg.Position = UDim2.new(0, 15, 0, 30) Msg.BackgroundTransparency = 1 Msg.Text = text Msg.TextColor3 = Color3.fromRGB(200, 200, 200) Msg.TextSize = 14 Msg.Font = Enum.Font.Gotham Msg.TextWrapped = true Msg.TextXAlignment = Enum.TextXAlignment.Left -- Animação de Entrada (topo direita) Frame:TweenPosition(UDim2.new(1, -300, 0, 20), "Out", "Quart", 0.5, true) -- Animação de Saída task.delay(5, function() Frame:TweenPosition(UDim2.new(1, 30, 0, 20), "In", "Quart", 0.5, true) task.wait(0.5) WaveNotify:Destroy() end) end -- Chamada do Sistema local playerName = game.Players.LocalPlayer.DisplayName SendWaveNotification("dravuHub v6", "Hey " .. playerName .. ", thanks for using ur scripts ❤️ Suport Here : https://discord.gg/7egGSTrHY")