Message requests exceeds the allowed limit, please try again later

so basically im doing a thing with messageservice and i get this error message:


i made it so it sends it each 1 second but this still happens.
if i cannot do anything with this is there at least a way to detect when it reached the max and not make the whole script disable?

You can wrap the function call in a pcall, it will tell you if the request errored or not.

1 Like

If you don’t want to implement anything fancy, implement a pcall (you should be doing this anyways because api services can fail unexpectedly) and also reduce the amount of messages being sent if you can as there is a relatively low limit.

Remember to check out Roblox’s own documentation aboit these limits as well here: MessagingService | Roblox Creator Documentation

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.