Is there a way to get a user's group rolsetid only using a userid? (The player isnt in game)

I want to check a user’s rolesetID in a group using their UserID without them having to be in game. Is this possible?

Not sure what “rolesetID” is but the GroupService:GetGroupsAsync(userId) API GroupService | Roblox Creator Documentation is probably what you’re looking for.

If you need to check their role in a specific group then you’ll need to iterate over the array returned and check the Id for each group returned.

Aside from this, I believe you’d have to use an external proxy service to make a REST HTTP call to one of Roblox’s web APIs, which is probably not as scalable as just using the GroupService.

Thanks! Unless the term is changed or my brain if screwed up, RolesetID is the number each role has in a group. (1-255) I will try out this solution next time I open studio.