Hello all, I was working on a script in a copy of a game I'm running, got it working and debugged, running no problem in the copy. I went to copy/paste it into a script in the real game, and it gave me an "Unexpected Identifier" error when trying to save. After trying to remove the code in chunks, it was still giving the same error and it was clear that the issue was the on('ready') wrapper. Right now, I'm getting an unexpected identifier error when the script contains this code: on('ready',function(){ log('API is Up.'); }); If I delete that so the script is completely empty or I disable the script, the API starts up without any errors, so it has something to do with this function. Any ideas what the cause could be?