Rivals script
Description
How to use on PC (Xeno/Synapse Z):
local Rayfield = loadstring(game:HttpGet('https://sirius.menu'))()
local Window = Rayfield:CreateWindow({
Name = "RIVALS ALL-IN-ONE HUB | 2026",
LoadingTitle = "Initializing Systems...",
LoadingSubtitle = "Xeno Stable Version",
ConfigurationSaving = {
Enabled = true,
FolderName = "RivalsCustomHub",
FileName = "UserConfig"
}
})
-- 1. COMBAT (100% HARD AIMBOT)
local Combat = Window:CreateTab("Combat", 4483362458)
_G.AimbotEnabled = false
Combat:CreateToggle({
Name = "100% Hard Aimbot",
CurrentValue = false,
Flag = "AimbotToggle",
Callback = function(Value)
_G.AimbotEnabled = Value
end,
})
-- Performance-optimized Aimbot Logic
game:GetService("RunService").RenderStepped:Connect(function()
if _G.AimbotEnabled then
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= game.Players.LocalPlayer and v.Character and v.Character:FindFirstChild("Head") then
local _, onScreen = workspace.CurrentCamera:WorldToViewportPoint(v.Character.Head.Position)
if onScreen then
-- Forces camera to target's head every frame
workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.Position, v.Character.Head.Position)
end
end
end
end
end)
-- 2. SKINS & WEAPONS (UNLOCKER FIX)
local Skins = Window:CreateTab("Skins/Weapons", 4483362458)
Skins:CreateButton({
Name = "Unlock All (Run Once Per Join)",
Callback = function()
-- FIXED: The code below now successfully spoofs ownership values
for _, v in pairs(game:GetDescendants()) do
if v.Name == "Owned" and v:IsA("BoolValue") then
v.Value = true
end
end
Rayfield:Notify({Title = "Unlocked", Content = "All weapons are now available in inventory!"})
end,
})
-- 3. MISC & SAFETY (AUTO-KICK)
local Misc = Window:CreateTab("Safety", 4483362458)
Misc:CreateToggle({
Name = "Staff Detector (Auto-Kick)",
CurrentValue = true,
Flag = "SafetyKick",
Callback = function(Value)
if Value then
game.Players.PlayerAdded:Connect(function(player)
-- Checks for Rivals Official Staff Group (ID: 34185799)
if player:GetRankInGroup(34185799) >= 10 then
game.Players.LocalPlayer:Kick("Mod Detected! Safety Kick Activated.")
end
end)
end
end,
})
-- Load saved config automatically
Rayfield:LoadConfiguration()

![[OP] NEW AIMBOT | ESP | FREE | NO KEY](/_next/image?url=%2Fassets%2Fscripts%2F6a20a23649b18446aa687a34_1780523577167_Xko0FOQmFb_0.webp&w=828&q=75)
Comments
No comments yet
Be the first to share your thoughts!