Posted
this is the remote i find on remote spy
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.
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.
Cancel
Post
I Help People, Ask me.
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post