Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Godmode (Auto Revive) - Survive Wave Z Script | Free Roblox Script
Survive Wave Z Survive Wave Z

Godmode (Auto Revive)

Survive Wave Z 62 views 2 months ago
Godmode (Auto Revive) - Roblox Script
Mobile Mobile Friendly

Description

Credits: mangomangomangomango

made by l0stveilrevives you when ded also revives other players too

Survive Wave Z
Explore more scripts
View all Survive Wave Z scripts

24 Lines 1,297 Bytes
getgenv().settings = {
    teleport = {
        enabled = true,
        players = true -- teleports to dead players to revive them
    }
}

game:GetService("RunService").Heartbeat:Connect(function()
    if getgenv().settings.teleport.enabled then
        if game:GetService("Players").LocalPlayer.Character and game:GetService("Players").LocalPlayer.Character.Humanoid.Health <= 0 then
            if game:GetService("Players").LocalPlayer.Character.Head.RevivePrompt then
                fireproximityprompt(game:GetService("Players").LocalPlayer.Character.Head.RevivePrompt)
            end
        end
        if getgenv().settings.teleport.players then
            for i, v in pairs(game:GetService("Players"):GetPlayers()) do
                if v ~= game:GetService("Players").LocalPlayer and v.Character and v.Character.Humanoid.Health <= 0 and v.Character.Head.RevivePrompt and game:GetService("Players").LocalPlayer.Character and game:GetService("Players").LocalPlayer.Character.Humanoid.Health > 0 then
                    game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
                    fireproximityprompt(v.Character.Head.RevivePrompt)
                end
            end
        end
    end
end)

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Survive Wave Z game.

Yes, this script is completely free to use.

No, this script does not require a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/godmode-auto-revive/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other