Last updated: 2026-07-08

Speed Super Hero Escape Scripts

Cette page fournit du code script pour +1 Speed Super Hero Escape (Place ID 92937726498067). Avertissement : les scripts violent les ToS Roblox — usage éducatif uniquement. Contrôles und Guides sont recommandés.

Script Auto Farm

Entraîne automatiquement le Speed sur le tapis le plus proche avec protection anti-AFK.

-- Speed Super Hero Escape Auto Farm
loadstring(game:HttpGet("https://raw.githubusercontent.com/speedwiki/scripts/main/autofarm.lua"))()

-- Local fallback if remote fails:
--[[
local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()

while task.wait(0.5) do
    local pads = workspace:FindFirstChild("TrainingGround")
    if pads then
        for _, pad in pairs(pads:GetDescendants()) do
            if pad.Name == "SpeedPad" and pad:IsA("BasePart") then
                character.HumanoidRootPart.CFrame = pad.CFrame + Vector3.new(0, 3, 0)
                break
            end
        end
    end
    -- Anti-AFK
    virtualUser:CaptureController()
    virtualUser:ClickButton2(Vector2.new())
end
]]

Script Auto Win

Téléporte dans le stage sélectionné et collecte les Wins automatiquement.

-- Speed Super Hero Escape Auto Win
loadstring(game:HttpGet("https://raw.githubusercontent.com/speedwiki/scripts/main/autowin.lua"))()

-- Configuration
local TARGET_STAGE = 4  -- Change to your highest clearable stage
local LOOP = true

local stages = workspace:FindFirstChild("Stages")
if stages then
    local stage = stages:FindFirstChild("Stage" .. TARGET_STAGE)
    if stage then
        local checkpoints = stage:GetDescendants()
        for _, cp in pairs(checkpoints) do
            if cp.Name == "Checkpoint" then
                game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = cp.CFrame + Vector3.new(0, 5, 0)
                task.wait(0.3)
            end
        end
    end
end

Script Fly

Permet le vol libre pour naviguer les stages et la carte.

-- Speed Super Hero Escape Fly Script
loadstring(game:HttpGet("https://raw.githubusercontent.com/speedwiki/scripts/main/fly.lua"))()

-- Simple inline fly
local speed = 50
local flying = false
local bodyVelocity, bodyGyro

local function startFly()
    local root = game.Players.LocalPlayer.Character.HumanoidRootPart
    bodyGyro = Instance.new("BodyGyro", root)
    bodyVelocity = Instance.new("BodyVelocity", root)
    bodyGyro.P = 9000
    bodyVelocity.MaxForce = Vector3.new(9e9, 9e9, 9e9)
    flying = true
    while flying do
        local cam = workspace.CurrentCamera.CFrame
        bodyGyro.CFrame = cam
        local dir = Vector3.new(0,0,0)
        if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.W) then dir = dir + cam.LookVector end
        if game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.S) then dir = dir - cam.LookVector end
        bodyVelocity.Velocity = dir * speed
        task.wait()
    end
end

Script Speed Boost

Multiplie la vitesse de déplacement pour un entraînement plus rapide.

-- Speed Super Hero Escape Speed Boost
loadstring(game:HttpGet("https://raw.githubusercontent.com/speedwiki/scripts/main/speedboost.lua"))()

-- Inline speed boost
local MULTIPLIER = 10  -- Adjust as needed

local player = game.Players.LocalPlayer
local function applySpeed()
    local humanoid = player.Character and player.Character:FindFirstChild("Humanoid")
    if humanoid then
        humanoid.WalkSpeed = 16 * MULTIPLIER
        humanoid.JumpPower = 50 * math.sqrt(MULTIPLIER)
    end
end

player.CharacterAdded:Connect(applySpeed)
applySpeed()

print("[Speed Boost] Active at " .. MULTIPLIER .. "x")

Instructions d'utilisation

  1. Ouvrir un exécuteur de scripts Roblox (PC uniquement).
  2. Rejoindre le jeu (Place ID 92937726498067).
  3. Copier le code souhaité.
  4. Coller dans l'exécuteur et cliquer Execute.
  5. Tester d'abord en serveur privé.

Risques et alternatives

Les scripts comportent un risque de ban. Alternatives légitimes : items multiplicateurs, timing Rebirth et farming Wins manuel. Multiplicateurs, Quand Rebirth, Farmer des Wins, Calculateur multiplicateur.

Questions fréquentes

Scripts sûrs ?
Violent ToS Roblox — risque ban. Manuel plus sûr.
Executor requis ?
Oui — PC surtout.
Risque ban ?
Automation risque plus élevé.
Mobile ?
Très limité.
À jour 2026 ?
Tester après mises à jour.

Guides connexes