Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Search player by in game user id - Scripting Support - Roblox

    devforum.roblox.com/t/search-player-by-in-game-user-id/1385559

    For my in game user id system here, how could I search people by their id? I just got the code from the devhub. function search (player, text) local ODS = game:GetService ("DataStoreService"):GetOrderedDataStore ("ArksieData") local pageSize = 1 local pages = ODS:GetSortedAsync (false, pageSize) local topTen = pages:GetCurrentPage () for rank ...

  3. API to get User ID from Username? - Scripting Support - Roblox

    devforum.roblox.com/t/api-to-get-user-id-from-username/3011891

    If you only request a single username however (like we do here), you can just do responseContent["data"][0]["id"] to fetch the user id assuming the arrays in said language start from 0 (and not 1 like in lua). 3 Likes. system (system) Closed June 22, 2024, 7:46pm #8. This topic was automatically closed 14 days after the last reply.

  4. Help with finding terminated/player's name with his user ID -...

    devforum.roblox.com/t/help-with-finding-terminatedplayers-name-with-his-user...

    What do you want to achieve? Find the Username of a terminated/banned player with his user ID What is the issue? Roblox told me to remove him from all records, but i cant get to deleting his datastores because they’re using his username, i have tried this script but the server doesnt have permissions for such info. local HttpService = game:GetService("HttpService") local DataStoreService ...

  5. [NEW] Roblox Search Discord Bot - Community Tutorials - DevForum...

    devforum.roblox.com/t/new-roblox-search-discord-bot/259907

    Use Glitch for this tutorial for real-time debugging, this tutorial is based on Glitch setup! Glitch is a free to use website which can host node apps, websites and much more. It can be found here. This is a tutorial to demonstrate how to search up Roblox profiles from your server. This will be the result. It’ll show all relevant details that the website correspondingly shows on your profile ...

  6. Find deleted user with roblox userId

    devforum.roblox.com/t/find-deleted-user-with-roblox-userid/989708

    TheNextElectron (TheNextElectron) January 17, 2021, 6:53pm #2. are you trying to find deleted users or make a script that finds deleted users? Because they are already games that can search up deleted users. 1 Like. BenMactavsin (BenMactavsin) January 17, 2021, 7:01pm #3. Yes, you can: create.roblox.com.

  7. Get List Of Players or UserId's from a group - Roblox

    devforum.roblox.com/t/get-list-of-players-or-userids-from-a-group/1228922

    Then you can iterate that table and go through the “user” key in each data field and then either make a string that’s separated by \n or just put all the usernames in a table and concat the table

  8. Search player by IN GAME (not roblox) user id system

    devforum.roblox.com/t/search-player-by-in-game-not-roblox-user-id-system/1385594

    Hi. How could I use my user id system here, and be able to search with it.I know you’d have to use ordered datastores, but I have no idea.

  9. API to get userid from username? - Scripting Support - Roblox

    devforum.roblox.com/t/api-to-get-userid-from-username/1129733

    If not, you’ll have to make a request to the roblox API in order to attempt to get it. disclosuure (disclosure) March 25, 2021, 10:05am #3

  10. Is there a way to get a player's display name from their ... -...

    devforum.roblox.com/t/is-there-a-way-to-get-a-players-display-name-from-their...

    I want to know if there is a way to get a player’s display name from their username or user id. Is there a way to get a display name out of a username/userid yet? Rami_XD1 (RamiDeV) July 29, 2021, 10:35pm

  11. How to get a Players model just from the User Id - Roblox

    devforum.roblox.com/t/how-to-get-a-players-model-just-from-the-user-id/1917095

    A game service that contains presently connected Player objects. local players = game:GetService("Players") -- The 'Players' service. local userId = 1 -- The userid of the player you want to create. local model = players:CreateHumanoidModelFromUserId(userId) -- Generate a model from the userId. model.Parent = workspace -- Parent the model to ...