local Players = game:Service("Players") local UserInputService = game:Service("UserInputService") local ReplicatedStorage = game:Service("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer -- --- CONFIGURATION --- local normalSpeed = 16 local infiniteSpeed = 500 -- Increased speed as requested local isSpeedEnabled = false local autoRebirthEnabled = true -- Set to false if you want to turn off auto-rebirth -- --- 1. KEYBOARD SPEED TOGGLE (Left Control + E) --- local function toggleSpeed() local character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() local humanoid = character:FindFirstChildOfClass("Humanoid") if humanoid then isSpeedEnabled = not isSpeedEnabled if isSpeedEnabled then humanoid.WalkSpeed = infiniteSpeed print("Speed Boost: ACTIVE (" .. tostring(infiniteSpeed) .. ")") else humanoid.WalkSpeed = normalSpeed print("Speed Boost: RESET") end end end UserInputService.InputBegan:Connect(function(input, gameProcessed) if gameProcessed then return end if input.KeyCode == Enum.KeyCode.E and UserInputService:IsKeyDown(Enum.KeyCode.LeftControl) then toggleSpeed() end end) -- --- 2. AUTOMATIC MAX REBIRTH SCANNER --- -- This loop continuously searches for the game's rebirth remote event and fires it task.spawn(function() print("Searching for Rebirth systems...") while autoRebirthEnabled and task.wait(0.5) do -- Search ReplicatedStorage for Rebirth events for _, object in pairs(ReplicatedStorage:GetDescendants()) do if object:IsA("RemoteEvent") or object:IsA("RemoteFunction") then local name = object.Name:lower() -- Check for common naming patterns used by developers if name:find("rebirth") or name:find("addrebirth") or name:find("prestige") then if object:IsA("RemoteEvent") then -- Fire the remote event to request a rebirth object:FireServer(1) -- Tries to rebirth 1 time per loop object:FireServer() -- Backup fire without arguments elseif object:IsA("RemoteFunction") then object:InvokeServer(1) end end end end -- Also look inside the player's leaderstats to force client-side visualization local leaderstats = LocalPlayer:FindFirstChild("leaderstats") if leaderstats then for _, stat in pairs(leaderstats:GetChildren()) do if stat.Name:lower():find("rebirth") then stat.Value = 999999 -- Attempts to set display to Max end end end end end) print("--- Script fully loaded into Delta! ---") print("-> Press Left Control + E to sprint at 500 speed.") print("-> Auto-Rebirth loop running in background.")