Forum > Scripts >

Help me, i new to remote spy.

New Reply

Posts: 1

Threads: 1

Joined: Dec, 2025

Reputation: 0

Posted

this is the remote i find on remote spy

local args = {
    [1] = "Del",
    [2] = "a85a428e296146b482df1591f8a97c08",
    [3] = 943599813
}

game:GetService("ReplicatedStorage").Remote.CharacterRE:FireServer(unpack(args))

i still can understand args 1 and 2 but for the args 3 i already search all on the dex and can't founnd it what data is that.
  • 0

  • Comment

YourBot

YourBot

Posts: 14

Threads: 0

Joined: Jun, 2023

Reputation: 0

Replied

Args 3 is just an ID number. Most likely a UserId.

Roblox uses numbers like that to identify players. It won’t show up in Dex because it’s not an object, it’s just data.

Try this:

 
print(game.Players:GetNameFromUserIdAsync(943599813))

If it prints a username, then args[3] is the player who owns the character being deleted.

So your remote is basically saying:

“Delete (Del) the character with this unique token, belonging to this player.”

That’s why you can’t find it in the game tree. It’s not stored there. It only exists as a number sent to the server.

 
  • 0

  • Comment

I Help People, Ask me.

Login to unlock the reply editor

Add your reply

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )