local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local CloseBtn = Instance.new("TextButton") local ToggleBtn = Instance.new("TextButton") local FlyBtn = Instance.new("TextButton") local SpeedUp = Instance.new("TextButton") local SpeedDown = Instance.new("TextButton") ScreenGui.Parent = game.CoreGui ScreenGui.ResetOnSpawn = false MainFrame.Name = "DeltaV2_Limpio" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.Position = UDim2.new(0.5, -60, 0.4, 0) MainFrame.Size = UDim2.new(0, 120, 0, 200) MainFrame.BorderSizePixel = 4 MainFrame.BorderColor3 = Color3.fromRGB(255, 255, 255) MainFrame.Active = true MainFrame.Draggable = true local function Style(btn, txt, pos, color) btn.Parent = MainFrame btn.Size = UDim2.new(0, 100, 0, 30) btn.Position = pos btn.Text = txt btn.BackgroundColor3 = color or Color3.fromRGB(0, 0, 0) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Roboto btn.TextSize = 25 btn.BorderSizePixel = 2 btn.BorderColor3 = Color3.fromRGB(255, 255, 255) end Style(CloseBtn, "X", UDim2.new(0, 10, 0, 10), Color3.fromRGB(255, 0, 0)) Style(ToggleBtn, "-", UDim2.new(0, 10, 0, 45), Color3.fromRGB(0, 0, 255)) Style(FlyBtn, "FLY", UDim2.new(0, 10, 0, 85), Color3.fromRGB(0, 255, 0)) Style(SpeedUp, "+", UDim2.new(0, 10, 0, 125), Color3.fromRGB(0, 0, 0)) Style(SpeedDown, "=", UDim2.new(0, 10, 0, 160), Color3.fromRGB(0, 0, 0)) local flying = false local speed = 50 local lp = game.Players.LocalPlayer FlyBtn.MouseButton1Click:Connect(function() flying = not flying FlyBtn.BackgroundColor3 = flying and Color3.fromRGB(255, 0, 0) or Color3.fromRGB(0, 255, 0) local char = lp.Character or lp.CharacterAdded:Wait() local root = char:WaitForChild("HumanoidRootPart") if flying then local bv = Instance.new("BodyVelocity", root) bv.Name = "DeltaFly" bv.MaxForce = Vector3.new(9e9, 9e9, 9e9) bv.Velocity = Vector3.new(0, 0, 0) task.spawn(function() while flying do bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * speed task.wait() end bv:Destroy() end) end end) SpeedUp.MouseButton1Click:Connect(function() speed = speed + 10 end) SpeedDown.MouseButton1Click:Connect(function() speed = speed - 10 if speed < 1 then speed = 1 end end) CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end)