How to check player id in roblox
Christopher Ramos
Updated on April 04, 2026
How do I find my player ID? PC. On the Roblox website, head to your profile. Do this by clicking on the three lines in the top left hand corner, …
There are other answers below:
In order to find out the ID of another player in Roblox, you need to open their profile and copy the ten-digit code from the address bar. This code is the ID of the player’s account. We are hiring game guide writers!
How to get your user ID in Roblox. To get your user ID in Roblox, you need to go to the Roblox website and log in to your account. Then, navigate to your profile, tap on the URL, and copy your Roblox user ID. Your user ID is the number in your profile URL. Let’s say that your profile URL is “
How to Find my Roblox Player ID on PC? Here’s how PC users can get their Roblox User ID. Visit Roblox.com website and log into your account. Click on your Profile Picture at the top right of the screen. This will open up your profile. Now check your URL in the browser – it should look like this:
You can find a Roblox user’s id by viewing their profile, and checking the URL in your browser’s address bar. At the end of the URL there will be a number. This number is the user’s id.
In this video, I will be showing you how to get music IDs on Roblox. How to find song codes for Roblox 2019. It is very simple and easy to do. If you do have…
local NYPD = {1, 261, 1337} — all userIds game.Players.PlayerAdded:Connect(function(Player) — Check if the Player’s UserId is in the NYPD table if table.find(NYPD, Player.UserId) then Player.Chatted:Connect(function(msg) if string.lower(msg) == “/checkin” then Player.Team = game.Teams.NYPD …
Finding a player’s username with their player ID. So, I’ve been going through my very old roblox places, and reverting back to older versions to see what I can find. I’ve gotten SO MUCH NOSTALGIA, there are so many personal server builds I did with friends that I can look at and remember all of the fun I had after school building with friends.
In other words, the script would only work as intended if ROBLOX (user ID: 1) joined. In fact, this operation would actually throw an error on vanilla lua, although not in Roblox; that’s why the output was helpless here. This should be what you need: table.insert(StaffAdded, Plr.UserId) Alternatively, this line will do the same:
The ID number can be seen at the URL on a player, group, asset or item page. ID swapping. During the early days of Roblox, some players were ID swapped for unknown reasons. A well known case of this is the ID swap between Shedletsky and Telamon. Prior to the username change feature being released, Shedletsky announced that he ID swapped both Telamon and Shedletsky due …
Related Questions
How do I find a Roblox user’s ID?
You can find a Roblox user’s id by viewing their profile, and checking the URL in your browser’s address bar. At the end of the URL there will be a number.
What is Player ID in Roblox?
Player ID means that if someone joins Roblox, and they are the 100th person to do so, their ID is 100. IDs in the catalog work differently. This means that if you go to a player’s ID, such as ThePianoKid99, his ID is 1389482559 because he is the 1389482559th person to sign up to Roblox.
How do I find a user’s ID number?
The ID number can be seen at the URL on a user or item page. To calculate ID, the smaller the ID number, the longer the item or user has been on ROBLOX; the longer the ID, the shorter the item has been on ROBLOX. ID numbers are different by types, such as places have their own ID, and user ID doesn’t correspond with place ID.
How do I find a player’s name in a table?
To do that, set the table indices to the player usernames and their values to true like so: and then try to index the username inside of the table in your if statement’s condition: Try using table.find to see if the Player’s Name exists inside the table.