local RunService = game:GetService("RunService") local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local VirtualUser = game:GetService("VirtualUser") local LocalPlayer = Players.LocalPlayer local FARM_OFFSET = 3 local CUSTOM_FLY_SPEED = 1000 local CUSTOM_WALK_SPEED = 250 local TARGET_PLAYER_NAME = "" local FlyEnabled = true local BringEnabled = true local TagEnabled = true local AutoFarmEnabled = true local SpeedEnabled = true local PlayerEspEnabled = true local TargetTpEnabled = false local NoVoidEnabled = true local NoFlingEnabled = true local NoStunEnabled = true local InfComboEnabled = true Players.LocalPlayer.Idled:Connect(function() VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new(0,0)) end) -- Create Native Master Screen Container local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "BoxyHub_RedBlack" ScreenGui.ResetOnSpawn = false ScreenGui.DisplayOrder = 99999 local success, err = pcall(function() ScreenGui.Parent = CoreGui end) if not success or not ScreenGui.Parent then ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") end -- FORCED FULL-SCREEN MAIN FRAME local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(1, 0, 1, 0) MainFrame.Position = UDim2.new(0, 0, 0, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(12, 12, 12) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Visible = true MainFrame.Parent = ScreenGui -- Top Bar Header local TopBar = Instance.new("Frame") TopBar.Size = UDim2.new(1, 0, 0, 50) TopBar.BackgroundColor3 = Color3.fromRGB(25, 25, 25) TopBar.BorderSizePixel = 0 TopBar.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -100, 1, 0) Title.Position = UDim2.new(0, 20, 0, 0) Title.BackgroundTransparency = 1 Title.Text = "BOXY HUB | DELTA MOBILE OVERCLOCK" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 16 Title.Font = Enum.Font.RobotoMono Title.TextXAlignment = Enum.TextXAlignment.Left Title.Parent = TopBar -- INTERACTIVE CLOSE BUTTON [X] local CloseBtn = Instance.new("TextButton") CloseBtn.Name = "CloseBtn" CloseBtn.Size = UDim2.new(0, 40, 0, 40) CloseBtn.Position = UDim2.new(1, -50, 0, 5) CloseBtn.BackgroundColor3 = Color3.fromRGB(45, 15, 15) CloseBtn.BorderColor3 = Color3.fromRGB(255, 0, 0) CloseBtn.Font = Enum.Font.RobotoMono CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.fromRGB(255, 50, 50) CloseBtn.TextSize = 16 CloseBtn.Parent = TopBar -- CUSTOM FLOATING BOXY BOO IMAGE OPEN BUTTON local OpenBtn = Instance.new("ImageButton") OpenBtn.Name = "BoxyOpenToggle" OpenBtn.Size = UDim2.new(0, 85, 0, 85) OpenBtn.Position = UDim2.new(0.02, 0, 0.2, 0) OpenBtn.BackgroundTransparency = 1 OpenBtn.Image = "rbxassetid://15092647980" local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 16) UICorner.Parent = OpenBtn local UIStroke = Instance.new("UIStroke") UIStroke.Color = Color3.fromRGB(255, 0, 0) UIStroke.Thickness = 3 UIStroke.Parent = OpenBtn OpenBtn.Visible = false OpenBtn.ZIndex = 99999 OpenBtn.Parent = ScreenGui -- Wire close/open toggle functions together CloseBtn.MouseButton1Click:Connect(function() MainFrame.Visible = false OpenBtn.Visible = true end) OpenBtn.MouseButton1Click:Connect(function() MainFrame.Visible = true OpenBtn.Visible = false end) -- Scroll Menu Items Box local ContentFrame = Instance.new("ScrollingFrame") ContentFrame.Size = UDim2.new(1, -40, 1, -70) ContentFrame.Position = UDim2.new(0, 20, 0, 60) ContentFrame.BackgroundTransparency = 1 ContentFrame.CanvasSize = UDim2.new(0, 0, 0, 800) ContentFrame.ScrollBarThickness = 6 ContentFrame.Parent = MainFrame local function createBoxyButton(text, position, default, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(1, 0, 0, 50) btn.Position = position btn.Font = Enum.Font.RobotoMono btn.TextSize = 13 btn.BorderSizePixel = 1 btn.Parent = ContentFrame local state = default local function updateVisual() if state then btn.BackgroundColor3 = Color3.fromRGB(45, 10, 10) btn.BorderColor3 = Color3.fromRGB(255, 50, 50) btn.Text = ":: " .. text .. " [ON] ::" btn.TextColor3 = Color3.fromRGB(255, 50, 50) else btn.BackgroundColor3 = Color3.fromRGB(20, 20, 20) btn.BorderColor3 = Color3.fromRGB(80, 80, 80) btn.Text = ":: " .. text .. " [OFF] ::" btn.TextColor3 = Color3.fromRGB(150, 150, 150) end end updateVisual() btn.MouseButton1Click:Connect(function() state = not state updateVisual() callback(state) end) end -- Generate UI Buttons createBoxyButton("AUTO-FLY TRACK (FREEBOUND)", UDim2.new(0, 0, 0, 10), FlyEnabled, function(s) FlyEnabled = s end) createBoxyButton("4S BRING EXPLOIT", UDim2.new(0, 0, 0, 70), BringEnabled, function(s) BringEnabled = s end) createBoxyButton("CLOSE-RANGE AUTO-FARM", UDim2.new(0, 0, 0, 130), AutoFarmEnabled, function(s) AutoFarmEnabled = s end) createBoxyButton("CUSTOM SPEED MULTI", UDim2.new(0, 0, 0, 190), SpeedEnabled, function(s) SpeedEnabled = s end) createBoxyButton("ANTI-VOID SYSTEM", UDim2.new(0, 0, 0, 250), NoVoidEnabled, function(s) NoVoidEnabled = s end) createBoxyButton("ANTI-FLING STABILIZATION", UDim2.new(0, 0, 0, 310), NoFlingEnabled, function(s) NoFlingEnabled = s end) createBoxyButton("INSTANT NO-STUN RECOVERY", UDim2.new(0, 0, 0, 370), NoStunEnabled, function(s) NoStunEnabled = s end) createBoxyButton("INFINITE COMBO MACRO ATTACK", UDim2.new(0, 0, 0, 430), InfComboEnabled, function(s) InfComboEnabled = s end) createBoxyButton("ALL NAME ESP TAGS", UDim2.new(0, 0, 0, 490), TagEnabled, function(s) TagEnabled = s end) createBoxyButton("ALL PLAYERS HIGHLIGHT ESP", UDim2.new(0, 0, 0, 550), PlayerEspEnabled, function(s) PlayerEspEnabled = s end) createBoxyButton("TP TO CHOSEN PLAYER", UDim2.new(0, 0, 0, 610), TargetTpEnabled, function(s) TargetTpEnabled = s end) -- USERNAME TARGET INPUT TEXTBOX local NameInput = Instance.new("TextBox") NameInput.Size = UDim2.new(1, 0, 0, 50) NameInput.Position = UDim2.new(0, 0, 0, 680) NameInput.BackgroundColor3 = Color3.fromRGB(15, 15, 15) NameInput.BorderColor3 = Color3.fromRGB(255, 0, 0) NameInput.BorderSizePixel = 1 NameInput.Font = Enum.Font.RobotoMono NameInput.PlaceholderText = "[ TYPE TARGET USERNAME HERE & PRESS ENTER ]" NameInput.PlaceholderColor3 = Color3.fromRGB(120, 120, 120) NameInput.Text = "" NameInput.TextColor3 = Color3.fromRGB(255, 255, 255) NameInput.TextSize = 12 NameInput.Parent = ContentFrame NameInput.FocusLost:Connect(function(enterPressed) if enterPressed then TARGET_PLAYER_NAME = NameInput.Text end end) -- Server-wide Player Highlighting Systems local function applyUniversalEsp(player) if player == LocalPlayer then return end local function createTags(char) if char:FindFirstChild("BoxyEsp") then char.BoxyEsp:Destroy() end if char:FindFirstChild("BoxyTag") then char.BoxyTag:Destroy() end local highlight = Instance.new("Highlight") highlight.Name = "BoxyEsp" highlight.FillColor = Color3.fromRGB(255, 255, 255) highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.FillTransparency = 0.5 highlight.OutlineTransparency = 0 highlight.Adornee = char highlight.Enabled = PlayerEspEnabled highlight.Parent = char local bb = Instance.new("BillboardGui") bb.Name = "BoxyTag" bb.Size = UDim2.new(0, 200, 0, 50) bb.StudsOffset = Vector3.new(0, 3, 0) bb.AlwaysOnTop = true local tl = Instance.new("TextLabel") tl.Size = UDim2.new(1, 0, 1, 0) tl.BackgroundTransparency = 1 tl.TextColor3 = Color3.fromRGB(255, 0, 0) tl.TextSize = 13 tl.Font = Enum.Font.RobotoMono tl.TextStrokeTransparency = 0 tl.Text = "[!] PLAYER: " .. string.upper(player.Name) tl.Parent = bb local root = char:WaitForChild("HumanoidRootPart", 5) if root then bb.Parent = root end end if player.Character then createTags(player.Character) end player.CharacterAdded:Connect(createTags) end for _, pl in ipairs(Players:GetPlayers()) do applyUniversalEsp(pl) end Players.PlayerAdded:Connect(applyUniversalEsp) local function getBackPlayer() local furthestPlayer = nil local maxZ = -math.huge for _, player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") and player.Character:FindFirstChildOfClass("Humanoid") and player.Character:FindFirstChildOfClass("Humanoid").Health > 0 then local zPos = player.Character.HumanoidRootPart.Position.Z if zPos > maxZ then maxZ = zPos furthestPlayer = player end end end return furthestPlayer end -- Core Physics Execution Thread local bringTimer = 0 RunService.Heartbeat:Connect(function(deltaTime) bringTimer = bringTimer + deltaTime local target = getBackPlayer() local myRoot = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") local myHumanoid = LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if myHumanoid then if SpeedEnabled then myHumanoid.WalkSpeed = CUSTOM_WALK_SPEED else myHumanoid.WalkSpeed = 16 end if NoStunEnabled and myHumanoid.PlatformStand then myHumanoid.PlatformStand = false end end if myRoot then if NoVoidEnabled and myRoot.Position.Y < -50 then myRoot.CFrame = CFrame.new(myRoot.Position.X, 50, myRoot.Position.Z) myRoot.Velocity = Vector3.new(0, 0, 0) end