Stop A Script



  • Hello all,

    I accidentally wrote a forever-looping script. The console continuously logs "missing ; before statement". No matter what I do, I cannot get the script to stop running. Any advice?



  • Scripts is a tick based architecture (read the articles in the help section). Your script gets executed every tick (~1sec), so if you have a syntax error in it, you will see an error message popping up every second. You can comment out the code in your main or simply correct the syntax error to make it run smoothly again.