Trello API for Guis not working

I have been trying to make a GUI appear for players that are on a certain list for gun spawners. There are three types, and it sometimes works and sometimes doesn’t. It often says HTTP 429 for too many requests, and i don’t know how to fix it. I just want it to check once when the player spawns in, so i can take anyone’s spawner away in game so they can’t use it when respawned. Any help is appreciated, thanks!

1 Like

A 429 error means you’re making too many requests to Trello’s API.

Have you considered making a single request at server start, and caching it? You could expand on that to update it at regular intervals (e.g every five minutes) if necessary.

I’ll look into that, i could try to cache it every five minutes after the player joins.

But how would i do that if it’s server side and the server clones the gui? would i do a whole true do loop and put a wait inside of it?

1 Like