-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] -- Evade Keyless Script | Mobile Compatible (Delta, Codex, Wave) -- Features: Nextbot Box ESP (Nextbox), Nextbot Highlight ESP, Speed Changer, Inf Jump, Anti-Lag, Auto Revive, Auto Carry local Players = game:GetService("Players") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local CoreGui = game:GetService("CoreGui") local Lighting = game:GetService("Lighting") local LocalPlayer = Players.LocalPlayer -- Configuration Table local Settings = { SpeedEnabled = false, SpeedValue = 32, InfJump = false, AntiLag = false, NextbotHighlight = false, NextbotBoxESP = true, -- ESP Nextbox (2D Box + Distance/Name) AutoRevive = false, AutoCarry = false } ---------------------------------------------------------------- -- 1. NEXTBOT BOX ESP (NEXTBOX) & HIGHLIGHT ---------------------------------------------------------------- local function IsNextbot(obj) if obj:IsA("Model") and not Players:GetPlayerFromCharacter(obj) then if obj:FindFirstChild("HumanoidRootPart") or obj:FindFirstChild("Root") or obj.PrimaryPart then return true end end return false end local function ApplyNextboxESP(model) local root = model:FindFirstChild("HumanoidRootPart") or model:FindFirstChild("Root") or model.PrimaryPart if not root then return end -- Create Billboard Box ESP if not root:FindFirstChild("NextboxBGui") then local bgui = Instance.new("BillboardGui") bgui.Name = "NextboxBGui" bgui.Adornee = root bgui.AlwaysOnTop = true bgui.Size = UDim2.new(0, 45, 0, 65) bgui.StudsOffset = Vector3.new(0, 0, 0) local boxFrame = Instance.new("Frame") boxFrame.Name = "BoxBorder" boxFrame.Size = UDim2.new(1, 0, 1, 0) boxFrame.BackgroundTransparency = 1 boxFrame.BorderSizePixel = 2 boxFrame.BorderColor3 = Color3.fromRGB(255, 30, 30) boxFrame.Parent = bgui local nameTag = Instance.new("TextLabel") nameTag.Name = "NameTag" nameTag.Size = UDim2.new(1, 100, 0, 18) nameTag.Position = UDim2.new(0, -50, -0.3, 0) nameTag.BackgroundTransparency = 1 nameTag.Text = model.Name .. " [NEXTBOT]" nameTag.TextColor3 = Color3.fromRGB(255, 60, 60) nameTag.TextSize = 12 nameTag.Font = Enum.Font.SourceSansBold nameTag.Parent = bgui bgui.Parent = root end -- Update Visibility if root:FindFirstChild("NextboxBGui") then root.NextboxBGui.Enabled = Settings.NextbotBoxESP end end -- Scan and Loop Nextbots task.spawn(function() while task.wait(0.5) do for _, obj in ipairs(workspace:GetDescendants()) do if IsNextbot(obj) then -- Box ESP ApplyNextboxESP(obj) -- Highlight ESP if Settings.NextbotHighlight then if not obj:FindFirstChild("NextbotHighlight") then local hl = Instance.new("Highlight") hl.Name = "NextbotHighlight" hl.Adornee = obj hl.FillColor = Color3.fromRGB(255, 0, 50) hl.FillTransparency = 0.5 hl.OutlineColor = Color3.fromRGB(255, 255, 255) hl.Parent = obj end else if obj:FindFirstChild("NextbotHighlight") then obj.NextbotHighlight:Destroy() end end end end end end) ---------------------------------------------------------------- -- 2. SPEED CHANGER & INFINITE JUMP ---------------------------------------------------------------- RunService.RenderStepped:Connect(function() if Settings.SpeedEnabled and LocalPlayer.Character then local humanoid = LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = Settings.SpeedValue end end end) UserInputService.JumpRequest:Connect(function() if Settings.InfJump and LocalPlayer.Character then local humanoid = LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end) ---------------------------------------------------------------- -- 3. AUTO REVIVE & AUTO CARRY ---------------------------------------------------------------- task.spawn(function() while task.wait(0.2) do if Settings.AutoRevive or Settings.AutoCarry then for _, prompt in ipairs(workspace:GetDescendants()) do if prompt:IsA("ProximityPrompt") then local actionText = (prompt.ActionText or ""):lower() local objectText = (prompt.ObjectText or ""):lower() if Settings.AutoRevive and (actionText:find("revive") or objectText:find("revive")) then fireproximityprompt(prompt) end if Settings.AutoCarry and (actionText:find("carry") or objectText:find("carry")) then fireproximityprompt(prompt) end end end end end end) ---------------------------------------------------------------- -- 4. ANTI LAG (PERFORMANCE BOOSTER) ---------------------------------------------------------------- local function EnableAntiLag() pcall(function() settings().Rendering.QualityLevel = Enum.RenderQualityLevel.Level01 end) Lighting.GlobalShadows = false Lighting.FogEnd = 9e9 for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.Plastic v.Reflectance = 0 elseif v:IsA("Decal") or v:IsA("Texture") then v.Transparency = 1 elseif v:IsA("ParticleEmitter") or v:IsA("Smoke") or v:IsA("Fire") then v.Enabled = false end end end ---------------------------------------------------------------- -- 5. MOBILE CUSTOM GUI ---------------------------------------------------------------- local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "EvadeHubGUI" ScreenGui.ResetOnSpawn = false if gethui then ScreenGui.Parent = gethui() elseif CoreGui:FindFirstChild("RobloxGui") then ScreenGui.Parent = CoreGui else ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") end -- Floating Toggle Button local OpenBtn = Instance.new("TextButton") OpenBtn.Name = "OpenButton" OpenBtn.Size = UDim2.new(0, 60, 0, 60) OpenBtn.Position = UDim2.new(0.02, 0, 0.25, 0) OpenBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 20) OpenBtn.TextColor3 = Color3.fromRGB(0, 255, 150) OpenBtn.Text = "EVADE" OpenBtn.TextSize = 13 OpenBtn.Font = Enum.Font.SourceSansBold OpenBtn.Active = true OpenBtn.Draggable = true OpenBtn.Parent = ScreenGui local OpenBtnCorner = Instance.new("UICorner") OpenBtnCorner.CornerRadius = UDim.new(0, 30) OpenBtnCorner.Parent = OpenBtn -- Main Frame local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 260, 0, 380) MainFrame.Position = UDim2.new(0.5, -130, 0.5, -190) MainFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 18) MainFrame.Active = true MainFrame.Draggable = true MainFrame.Visible = true MainFrame.Parent = ScreenGui local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 10) MainCorner.Parent = MainFrame -- Title local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundColor3 = Color3.fromRGB(28, 28, 28) Title.Text = "EVADE HUB | NEXTBOX ESP" Title.TextColor3 = Color3.fromRGB(0, 255, 150) Title.TextSize = 14 Title.Font = Enum.Font.SourceSansBold Title.Parent = MainFrame local TitleCorner = Instance.new("UICorner") TitleCorner.CornerRadius = UDim.new(0, 10) TitleCorner.Parent = Title -- Container local Container = Instance.new("UIListLayout") Container.Parent = MainFrame Container.SortOrder = Enum.SortOrder.LayoutOrder Container.Padding = UDim.new(0, 6) Container.HorizontalAlignment = Enum.HorizontalAlignment.Center local Padding = Instance.new("UIPadding") Padding.PaddingTop = UDim.new(0, 48) Padding.Parent = MainFrame -- Button Generator local function CreateToggle(name, defaultState, callback) local Btn = Instance.new("TextButton") Btn.Size = UDim2.new(0.9, 0, 0, 32) Btn.BackgroundColor3 = defaultState and Color3.fromRGB(0, 180, 100) or Color3.fromRGB(40, 40, 40) Btn.Text = name .. ": " .. (defaultState and "ON" or "OFF") Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Btn.TextSize = 13 Btn.Font = Enum.Font.SourceSansBold Btn.Parent = MainFrame local BtnCorner = Instance.new("UICorner") BtnCorner.CornerRadius = UDim.new(0, 6) BtnCorner.Parent = Btn local state = defaultState Btn.MouseButton1Click:Connect(function() state = not state Btn.BackgroundColor3 = state and Color3.fromRGB(0, 180, 100) or Color3.fromRGB(40, 40, 40) Btn.Text = name .. ": " .. (state and "ON" or "OFF") callback(state) end) end -- Add Toggles to UI CreateToggle("Nextbot Box ESP (Nextbox)", Settings.NextbotBoxESP, function(v) Settings.NextbotBoxESP = v end) CreateToggle("Nextbot Highlight ESP", Settings.NextbotHighlight, function(v) Settings.NextbotHighlight = v end) CreateToggle("Speed Changer (1x/Fast)", Settings.SpeedEnabled, function(v) Settings.SpeedEnabled = v end) CreateToggle("Infinite Jump", Settings.InfJump, function(v) Settings.InfJump = v end) CreateToggle("Auto Revive", Settings.AutoRevive, function(v) Settings.AutoRevive = v end) CreateToggle("Auto Carry", Settings.AutoCarry, function(v) Settings.AutoCarry = v end) -- Anti Lag Button local AntiLagBtn = Instance.new("TextButton") AntiLagBtn.Size = UDim2.new(0.9, 0, 0, 32) AntiLagBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) AntiLagBtn.Text = "Enable Anti-Lag" AntiLagBtn.TextColor3 = Color3.fromRGB(255, 255, 255) AntiLagBtn.TextSize = 13 AntiLagBtn.Font = Enum.Font.SourceSansBold AntiLagBtn.Parent = MainFrame local AntiLagCorner = Instance.new("UICorner") AntiLagCorner.CornerRadius = UDim.new(0, 6) AntiLagCorner.Parent = AntiLagBtn AntiLagBtn.MouseButton1Click:Connect(function() EnableAntiLag() AntiLagBtn.Text = "Anti-Lag Applied" AntiLagBtn.BackgroundColor3 = Color3.fromRGB(0, 180, 100) end) -- Open/Close UI OpenBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end)