How to Access Humanoid Description With Proxy?

I am working on a system that uses Humanoid Description System. I am making some sort of player timer that frequently changes player to the user ids in a table. The problem is I keep getting this error.

Players:GetHumanoidDescriptionFromUserId() failed because HTTP 429

So I know i’m being rate limited and wanted to use the HttpQueue Module from this post:

I just don’t know how I would use httpqueue module as I can’t access Humanoid Description through a url.

1 Like

The issue with that is because you can only have so many requests to the ROBLOX API before it begins to think you are spamming it, then denies requests.

1 Like

Ah I see Thanks, so there isn’t really anyway due to the number of requests

You can add task.wait() so it lessen the requests.

1 Like

I will give this a go thanks ,would I need a cooldown also or no?

1 Like

The ‘HttpService’ grants five hundred requests to each of an experience’s servers per minute.
https://developer.roblox.com/en-us/api-reference/class/HttpService

  • For each Roblox game server, there is a limit of 500 HTTP requests per minute. Exceeding this may cause request-sending functions to stall entirely for about 30 seconds.
1 Like

Thank you for the detailed limit, I will use this as a guide