Rivals Scripts

Rivals Scripts on Roblox is a PvP (Player vs Player) fighting game where players compete against each other using different weapons, skills, and strategies. You battle opponents, earn rewards, and upgrade your character to become stronger.

Best Rivals Scripts

Rivals is a competitive game where strategy and skill determine the winner. While using scripts might seem like an easy way to gain an edge, it comes with major risks, including account bans, security threats, and game instability.

1. Auto Attack & Kill Aura

This script automatically attacks nearby enemies without pressing any buttons.

_G.KillAura = true -- Change to false to disable

while _G.KillAura do
    pcall(function()
        for _, enemy in pairs(game:GetService("Workspace").Enemies:GetChildren()) do
            if enemy:FindFirstChild("HumanoidRootPart") and enemy:FindFirstChild("Humanoid") and enemy.Humanoid.Health > 0 then
                game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = enemy.HumanoidRootPart.CFrame
                for _, tool in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
                    if tool:IsA("Tool") then
                        tool:Activate()
                    end
                end
            end
        end
    end)
    wait(0.5)
end

2. Speed Hack (Extreme Speed Boost)

Increases your character’s speed to move faster across the map.

game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100 -- Change the value to adjust speed

3. God Mode (Invincibility)

Makes you immune to enemy attacks.

game.Players.LocalPlayer.Character.Humanoid.Health = math.huge

4. Auto Collect Coins

Automatically collects all coins on the map without moving.

for _,v in pairs(game:GetService("Workspace").Coins:GetChildren()) do
    if v:IsA("Part") then
        v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
    end
end

Instructions for Use:

  1. Copy the script you want.
  2. Open your script executor (Synapse X, KRNL, Fluxus, etc.).
  3. Paste the script into the executor.
  4. Run the script and enjoy the enhancements.

⚠ Using scripts in Roblox can result in a ban. Use at your own risk.