Does anyone else have these same issues?
It’s starting to annoy me and it happens in every single place.
It’s been happening for a few weeks and I tought roblox would’ve fixed it by now.
So does anyone know how to fix this?
Does anyone else have these same issues?
it does THE SAME to me, whenever i’m testing my game, sometimes it just disconnects the script
So the scripts have a period of time they have to execute within before they exhaust… I believe by default it’s like 10-20 seconds, but from Studio Settings you can increase the Script Timeout Length.
If I recall correctly, the timeout is basically how long before it completes its action or until first wait. For example, if you have a method that is now taking longer due to additional steps in a dependent module or potential Roblox service performance degradation, then something you previously had complete within that time may now be taking longer.
And if that first script that has a timeout is dependent for other scripts and function, then you’ll have the cascading failures from those other scripts.
Thanks for clarifying that out man, i’ve never been able to understand why this was always happening to us until now