-- Delta Hub Mobile - VERSÃO ORIGINAL PARA DELTA / TODOS SERVIDORES -- NÃO ALTERADO NADA DO DESIGN, NOMES OU FUNÇÕES ORIGINAIS -- DELETAR VERSÃO ANTIGA SE TIVER if game.CoreGui:FindFirstChild("DeltaCheatHubMobile12") then game.CoreGui.DeltaCheatHubMobile12:Destroy() end local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local UICorner = Instance.new("UICorner") local Title = Instance.new("TextLabel") local ScrollFrame = Instance.new("ScrollingFrame") local UIListLayout = Instance.new("UIListLayout") local ToggleButton = Instance.new("TextButton") local ToggleCorner = Instance.new("UICorner") ScreenGui.Name = "DeltaCheatHubMobile12" ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false if gethui then ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling end ToggleButton.Name = "ToggleButton" ToggleButton.Parent = ScreenGui ToggleButton.BackgroundColor3 = Color3.fromRGB(255, 0, 100) ToggleButton.Position = UDim2.new(0.05, 0, 0.15, 0) ToggleButton.Size = UDim2.new(0, 45, 0, 45) ToggleButton.Font = Enum.Font.SourceSansBold ToggleButton.Text = "D" ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.TextSize = 22 ToggleButton.Active = true ToggleButton.Draggable = true ToggleCorner.CornerRadius = UDim.new(0, 50) ToggleCorner.Parent = ToggleButton MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Position = UDim2.new(0.3, 0, 0.2, 0) MainFrame.Size = UDim2.new(0, 230, 0, 320) MainFrame.Active = true MainFrame.Draggable = true UICorner.CornerRadius = UDim.new(0, 12) UICorner.Parent = MainFrame Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 45) Title.Font = Enum.Font.SourceSansBold Title.Text = "DELTA MOBILE MENU" Title.TextColor3 = Color3.fromRGB(255, 0, 100) Title.TextSize = 18 ScrollFrame.Name = "ScrollFrame" ScrollFrame.Parent = MainFrame ScrollFrame.BackgroundTransparency = 1 ScrollFrame.Position = UDim2.new(0, 10, 0, 50) ScrollFrame.Size = UDim2.new(1, -20, 1, -60) ScrollFrame.CanvasSize = UDim2.new(0, 0, 0, 560) ScrollFrame.ScrollBarThickness = 4 UIListLayout.Parent = ScrollFrame UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder UIListLayout.Padding = UDim.new(0, 8) ToggleButton.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) local speedAtivo = false local jumpAtivo = false local girarAtivo = false local noclipAtivo = false local voando = false local hitboxAtiva = false local velocidadeCustom = 50 -- Velocidade inicial do ajuste local lp = game.Players.LocalPlayer local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local function CriarBotao(nome, funcao) local Botao = Instance.new("TextButton") local ButtonCorner = Instance.new("UICorner") Botao.Name = nome Botao.Parent = ScrollFrame Botao.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Botao.Size = UDim2.new(1, 0, 0, 35) Botao.Font = Enum.Font.SourceSansBold Botao.Text = nome Botao.TextColor3 = Color3.fromRGB(255, 255, 255) Botao.TextSize = 14 ButtonCorner.CornerRadius = UDim.new(0, 6) ButtonCorner.Parent = Botao Botao.MouseButton1Click:Connect(function() Botao.BackgroundColor3 = Color3.fromRGB(255, 0, 100) task.wait(0.1) Botao.BackgroundColor3 = Color3.fromRGB(35, 35, 35) funcao(Botao) end) return Botao end -- 1. SPEED ALTERNAR local botaoVelocidade = CriarBotao("🏃 Speed: Desativado", function(self) speedAtivo = not speedAtivo if speedAtivo then self.Text = "🏃 Speed Atual: " .. velocidadeCustom else self.Text = "🏃 Speed: Desativado" if lp.Character and lp.Character:FindFirstChild("Humanoid") then lp.Character.Humanoid.WalkSpeed = 16 end end end) RunService.Heartbeat:Connect(function() if speedAtivo and lp.Character and lp.Character:FindFirstChild("Humanoid") then lp.Character.Humanoid.WalkSpeed = velocidadeCustom end end) -- 2. AUMENTAR VELOCIDADE CriarBotao("➕ Aumentar Velocidade (+10)", function() velocidadeCustom = velocidadeCustom + 10 if speedAtivo then botaoVelocidade.Text = "🏃 Speed Atual: " .. velocidadeCustom end end) -- 3. DIMINUIR VELOCIDADE CriarBotao("➖ Diminuir Velocidade (-10)", function() if velocidadeCustom > 16 then velocidadeCustom = velocidadeCustom - 10 end if speedAtivo then botaoVelocidade.Text = "🏃 Speed Atual: " .. velocidadeCustom end end) -- 4. INFINITE JUMP E SUPER JUMP JUNTO CriarBotao("🦘 Ativar Pulos Especiais", function() jumpAtivo = not jumpAtivo if lp.Character and lp.Character:FindFirstChild("Humanoid") then lp.Character.Humanoid.JumpPower = jumpAtivo and 150 or 50 end end) UserInputService.JumpRequest:Connect(function() if jumpAtivo and lp.Character and lp.Character:FindFirstChildOfClass("Humanoid") then lp.Character:FindFirstChildOfClass("Humanoid"):ChangeState(Enum.HumanoidStateType.Jumping) end end) -- 5. SPIN CriarBotao("🔄 Alternar Girar (Spin)", function() girarAtivo = not girarAtivo end) RunService.Heartbeat:Connect(function() if girarAtivo and lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") then lp.Character.HumanoidRootPart.CFrame = lp.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(25), 0) end end) -- 6. NOCLIP CriarBotao("🧱 Alternar Noclip", function() noclipAtivo = not noclipAtivo end) RunService.Stepped:Connect(function() if noclipAtivo and lp.Character then for _, v in pairs(lp.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) -- 7. FULLBRIGHT CriarBotao("💡 Luz Total (Fullbright)", function() local Lighting = game:GetService("Lighting") Lighting.Brightness = 2 Lighting.ClockTime = 14 Lighting.FogEnd = 999999 Lighting.GlobalShadows = false end) -- 8. FLY MOBILE CriarBotao("✈️ Alternar Voo (Fly)", function() voando = not voando task.spawn(function() while voando do local char = lp.Character if not char then break end local rpart = char:FindFirstChild("HumanoidRootPart") local hum = char:FindFirstChild("Humanoid") if not rpart or not hum then break end local bv = rpart:FindFirstChild("FlyBV") or Instance.new("BodyVelocity", rpart) bv.Name = "FlyBV" bv.MaxForce = Vector3.new(400000, 400000, 400000) bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * 100 task.wait(0.02) end if lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") then if lp.Character.HumanoidRootPart:FindFirstChild("FlyBV") then lp.Character.HumanoidRootPart.FlyBV:Destroy() end end end) end) -- 9. REJOIN SERVER CriarBotao("🔁 Reentrar no Servidor", function() game:GetService("TeleportService"):Teleport(game.PlaceId, lp) end) -- 10. ESP local function AtualizarESP() for _, p in pairs(game.Players:GetPlayers()) do if p ~= lp and p.Character and p.Character:FindFirstChild("Head") and not p.Character.Head:FindFirstChild("EspBillboard") then local b = Instance.new("BillboardGui", p.Character.Head) b.Name = "EspBillboard" b.Size = UDim2.new(0, 200, 0, 50) b.AlwaysOnTop = true local t = Instance.new("TextLabel", b) t.Size = UDim2.new(1, 0, 1, 0) t.BackgroundTransparency = 1 t.Text = p.Name t.TextColor3 = Color3.fromRGB(255, 0, 0) t.TextSize = 14 end end end CriarBotao("👁️ Ativar Wallhack (ESP)", function() AtualizarESP() game.Players.PlayerAdded:Connect(AtualizarESP) end) -- 11. TELEPORT TO RANDOM CriarBotao("🎲 Teletransportar para Player", function() local players = {} for _, p in pairs(game.Players:GetPlayers()) do if p ~= lp and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then table.insert(players, p) end end if #players > 0 and lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") then local randomPlayer = players[math.random(1, #players)] lp.Character.HumanoidRootPart.CFrame = randomPlayer.Character.HumanoidRootPart.CFrame end end) -- 12. HITBOX EXPANDIDA CriarBotao("🎯 Alternar Hitbox Gigante", function() hitboxAtiva = not hitboxAtiva end) RunService.Heartbeat:Connect(function() for _, p in pairs(game.Players:GetPlayers()) do if p ~= lp and p.Character and p.Character:FindFirstChild("Head") then local cabeca = p.Character.Head if hitboxAtiva then cabeca.Size = Vector3.new(5, 5, 5) cabeca.Transparency = 0.5 cabeca.CanCollide = false else cabeca.Size = Vector3.new(2, 1, 1) cabeca.Transparency = 0 end end end end)