API - gets global variables from the main coroutine.
functiontest() wait(3);local myValue =get('testValue'); --gets the global object/variable testValue from the main scriptlog(myValue);endreturnfunction() testValue =10;async('test');wait(10);--it will print testValue before finishedlog('finished');end