I’m not sure if there’s a built in cooldown for spamming requests to the server but if I have a remote event / function that when fired from the client automatically runs 100 lines of checks on the server and an exploiter spams this remote will it cause issues? If so do I have to add cooldowns on every remote or a general system that checks the remotes fired per minute or something?
Been deving for a good while I just never really considered if this could be exploited and didn’t have a built in function to stop it from causing issues if it even does.
While not required, I always implement some kind of rate-limiting for any remotes that I think could be exploited for any reason. I believe it’s better to be proactive than reactive.
If it creates 100 parts, then yes. If it prints 100 times, then probably not.
Alright thanks, was just wondering if there was a built in rate limiter on remote fires, I’ll probably add a check when remotes are fired and if they’ve fired like 250 (or whatever amount is far above normal) in the last minute or something I’ll kick them.
Hopefully Roblox can get their anti-cheat working as it was intended, it wouldn’t even be a concern then.