local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Player = Players.LocalPlayer local Window = Rayfield:CreateWindow({ Name = "[w2] Speed Super Hero Escape", LoadingTitle = "[w2] Speed Super Hero Escape", LoadingSubtitle = "Testing Menu", ConfigurationSaving = { Enabled = false } }) -- SPEED local SpeedTab = Window:CreateTab("Speed") local SpeedEnabled = false local SpeedValue = 16 SpeedTab:CreateToggle({ Name = "Speed Modifier", CurrentValue = false, Callback = function(Value) SpeedEnabled = Value end }) SpeedTab:CreateSlider({ Name = "Walk Speed", Range = {16, 999999}, Increment = 1, Suffix = " Speed", CurrentValue = 16, Callback = function(Value) SpeedValue = Value end }) task.spawn(function() while task.wait(0.1) do if SpeedEnabled then pcall(function() local Character = Player.Character local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid") if Humanoid then Humanoid.WalkSpeed = SpeedValue end end) end end end) -- AUTO FARM local AutoFarmTab = Window:CreateTab("Auto Farm") local AutoFarm = false AutoFarmTab:CreateToggle({ Name = "Auto Farm", CurrentValue = false, Callback = function(Value) AutoFarm = Value end }) task.spawn(function() while task.wait(1) do if AutoFarm then pcall(function() local Character = Player.Character local Root = Character and Character:FindFirstChild("HumanoidRootPart") local WinPads = workspace:FindFirstChild("WinPads") local NormalPads = WinPads and WinPads:FindFirstChild("NormalPads") local Pad = NormalPads and NormalPads:FindFirstChild("15") if Root and Pad then if Pad:IsA("BasePart") then Root.CFrame = Pad.CFrame + Vector3.new(0, 5, 0) elseif Pad:IsA("Model") then Root.CFrame = Pad:GetPivot() + Vector3.new(0, 5, 0) end end end) end end end) -- AUTO REBIRTH local AutoRebirth = false AutoFarmTab:CreateToggle({ Name = "Auto Rebirth", CurrentValue = false, Callback = function(Value) AutoRebirth = Value end }) task.spawn(function() while task.wait(1) do if AutoRebirth then pcall(function() local Remotes = ReplicatedStorage:FindFirstChild("Remotes") local Event = Remotes and Remotes:FindFirstChild("RebirthButtonEvent") if Event then Event:FireServer() end end) end end end) -- ANTI AFK local AntiAFK = false AutoFarmTab:CreateToggle({ Name = "Anti-AFK", CurrentValue = false, Callback = function(Value) AntiAFK = Value end }) Player.Idled:Connect(function() if AntiAFK then pcall(function() local VirtualUser = game:GetService("VirtualUser") VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new()) end) end end) Rayfield:Notify({ Title = "[w2] Speed Super Hero Escape", Content = "All features loaded!", Duration = 3 })