RIVALS Script (No Key, Auto Aim, Quick Trigger)

Photo of author
By:
Updated:

RIVALS is a multiplayer shooter game on Roblox developed by Nosniy Games, inspired by the Marvel Rivals game.

In this game, players can either play solo or team up with up to 5 other players to battle in different environments.

Each match includes at least 3 rounds, and players can use a variety of weapons like snipers, bows, rockets, and more.

By completing daily tasks, players earn keys that are used to unlock and upgrade weapons.

In this article, we’ve shared a list of RIVALS scripts such as No Key, Auto Aim, Quick Trigger, and more.

RIVALS Script used for Solix HUB: Rage bot, ESP, Auto Anti Aim

loadstring(game:HttpGet("https://raw.githubusercontent.com/debunked69/solixloader/refs/heads/main/solix%20v2%20new%20loader.lua"))()

RIVALS Script PC and Mobile: Silent Aim, Auto Win, Fly, Speed

loadstring(game:HttpGet("https://raw.githubusercontent.com/tbao143/thaibao/main/TbaoHubRivals"))()

RIVALS Script used for Rage Bot, Legit Bot, ESP

loadstring(game:HttpGet(('https://raw.githubusercontent.com/blackowl1231/ZYPHERION/refs/heads/main/main.lua')))()

RIVALS Script used for Auto Aim, Quick Trigger

loadstring(game:HttpGet("https://raw.githubusercontent.com/kiciahook/kiciahook/refs/heads/main/loader.lua"))()

RIVALS Script used for Aimbot 2025

loadstring(game:HttpGet(string.char(104,116,116,112,115,58,47,47,114,97,119,46,103,105,116,104,117,98,117,115,101,114,99,111,110,116,101,110,116,46,99,111,109,47,80,85,83,67,82,73,80,84,83,47,80,73,78,71,85,73,78,47,114,101,102,115,47,104,101,97,100,115,47,109,97,105,110,47,80,105,110,103,117,105,110,72,117,98)))()

RIVALS Script used for Aimbot, ESP, SkinChanger

loadstring(game:HttpGet("https://nicuse.xyz/MainHub.lua"))()

RIVALS Script used for No Key, Aimbot

local replicated_storage = game.GetService(game, "ReplicatedStorage");
local players = game.GetService(game, "Players");

local camera = workspace.CurrentCamera;
local utility = require(replicated_storage.Modules.Utility);

local get_players = function() -- this is dumb asf, feel free to modify.
    local entities = {};

    for _, child in workspace.GetChildren(workspace) do
        if child.FindFirstChildOfClass(child, "Humanoid") then
            table.insert(entities, child);
        elseif child.Name == "HurtEffect" then
            for _, hurt_player in child.GetChildren(child) do
                if (hurt_player.ClassName ~= "Highlight") then
                    table.insert(entities, hurt_player);
                end
            end
        end
    end
    return entities
end
local get_closest_player = function()
    local closest, closest_distance = nil, math.huge;
    local character = players.LocalPlayer.Character;

    if (character == nil) then
        return;
    end

    for _, player in get_players() do
        if (player == players.LocalPlayer) then
            continue;
        end

        if (not player:FindFirstChild("HumanoidRootPart")) then
            continue;
        end

        local position, on_screen = camera.WorldToViewportPoint(camera, player.HumanoidRootPart.Position);

        if (on_screen == false) then
            continue;
        end

        local center = Vector2.new(camera.ViewportSize.X / 2, camera.ViewportSize.Y / 2);
        local distance = (center - Vector2.new(position.X, position.Y)).Magnitude;

        if (distance > closest_distance) then
            continue;
        end

        closest = player;
        closest_distance = distance;
    end
    return closest;
end

local old = utility.Raycast; utility.Raycast = function(...)
    local arguments = {...};

    if (#arguments > 0 and arguments[4] == 999) then
        local closest = get_closest_player();

        if (closest) then
            arguments[3] = closest.Head.Position;
        end
    end
    return old(table.unpack(arguments));
end

RIVALS Script used for PinguinRVS Aimbot, Visuals

loadstring(game:HttpGet("https://raw.githubusercontent.com/PUSCRIPTS/PINGUIN/refs/heads/main/RivalsV1"))()

RIVALS Script used for Aim, Quick Fire, ESP

loadstring(game:HttpGet("https://raw.githubusercontent.com/laeraz/ventures/refs/heads/main/rivals.lua"))()

Suggestion

This article may contain affiliate links. If you use these links to purchase an item we may earn a commission. Thank you for your support.

Photo of author
Biswajit Nayak

Biswajit plays a variety of game genres, earning him the nickname "Spunky" from his friends. He spends most of his time exploring the worlds of Roblox and GTA 5, along with titles like Wuthering Waves and more.

Leave a Comment