script timeout: exhausted allowed execution time for the current resumption point
What does this mean? (sorry for the white tint, the screenshot was taken while Roblox Studio was not responding)
You are trying to execute over so many iterations of a loop or didn’t put wait() or task.wait() on a while true do loop
What does the “current resumption point” mean?
Probably the for loops previous person mentioned. Try and check over all of the loops in your scripts and make sure they have a delay or else runtime is going to be overloaded by that loop causing you to crash.
i guess you can research this one for yourself
I just realized that pretty much every script in the game experienced this error including roblox scripts
You basically tried to run a while true do
loop or a repeat until
loop without letting it wait. The roblox engine reads code so fast that your computer (nobody’s) can handle any output or backend processes that quickly. Roblox added this feature where it ejects this error when you don’t wait in a loop instead of letting the person’s PC crash (which is what used to happen before). So just fix this by adding a task.wait()
anywhere in your loop. As for “exhausted allowed resumption time for the current resumption point”, it basically means the loop was paused since it was waiting too long to resume work and is no longer allowed to continue from where it left off.