I want to make a list of User IDs on ROBLOX that aren’t banned and are in a specific group of numbers. For this case, I want a list of IDs from 1 - 1000.
I do not know anything about how to script this, since I’m a builder. I want to use this for an “Old” ROBLOX users list, “Medium” ROBLOX users list, and “New” ROBLOX users list.
I’ve looked for solutions on the DevForum, but it was only for groups / group ranks.
for UserId = 1, 1000 do
local Success, Name = pcall(function()
return game.Players:GetNameFromUserIdAsync(UserId)
end)
if Success then print(Name) end
wait()
end