Do you have API and HTTP services disabled?
A different error would appear if API services or HTTP requests were turned off.
For the information, the exact error for HTTP requests being disabled would be Http requests are not enabled. Enable via game settings
They are enabled though. I need HTTP service to be enabled.
Are you sure that you do not have any other script making HTTP requests? Could this be the work of a malicious plugin/model then?
Two days ago was the last time I published an update. A day later in the morning the servers randomly shutdown and âbrokeâ. This has to be a roblox issue.
HTTP 429 (HTTP 429 (TOO MANY REQUESTS)
Your game sends too much requests to a webserver
Itâs not a ROBLOX issue. Try disabling HTTPService to see if it works.
If I used the search method in all scripts, what would I type to find any scripts that use http service?
- Wait thereâs a âSearch in all Scriptsâ method?
- Not a HTTPService user, let me check.
Yeah, if you open a script and look at the menu bar thereâs a find button, if you press it thereâs an option to âFind in Allâ
Okay so http service is disabled, problem still happening.
GetAsync()
sends HTTP GET requests, try searching that one?
Game performance goes down sometimes if you have a lot of ungrouped models, or a lot of scripts. From experience, if you group parts together, lag will be reduced by a lot. If you use efficient scripting methods, and not have tons of scripts, the game shouldnât lag.
He said the lag came randomly, not from a script update.
Do you use any toolbox models in your game?
No, I donât remember using any.
I would do what @Sxdistical recommended and revert versions back by a few. You said you havenât updated in 2 days maybe revert to one version before that one and see what happens?
I am going to sleep itâs like half 2 in the morning. I hope someone comes up with a working solution.
Do you have any scuffed plugins installed? Some malicious ones are often created to crash servers. Id sugget uninstalling your plugins, enabling âHidden objectsâ in your studio settings and make sure there are no injected scripts hidden away.
This is an interesting case, however it does not seem I can join for long enough to open the dev console to see certain stats.
This seems to be a server sided issue, not client. I only got 4% cpu usage while loading and those 4% were probably mostly from chrome.
Here are a few questions I have
- Any plugins?
- What was the error after you turned off HTTP requests?
- How much memory does it show in studioâs dev console?
- Are you the sole developer for this project? If not, ask all other devs about free models theyâve taken/plugins installed. Recently thereâs been a few complaints about a user by the name of @nl2p taking plugins then reuploading them with viruses. Make sure none of your developers have a plugin from them.
Also search through all scripts is CTRL+SHIFT+F
What? No. Grouping has nothing to do with performance whatsoever, itâs a form of organisation.
The amount of scripts is only minimally related to performance. A game with several scripts is capable of performing better than a one with less scripts. All code still goes through the same interpreter, task scheduler, VM, whatever. Itâs just that youâre creating more entry points in your code now and falling into practice traps, race conditions, edge cases, corner cases, so on are more likely to occur.