Hello
How do you set a variable in one rooms so that it works in all rooms?
Either use GlobalInt's, or:
in the start of Global Script:
int variable;
and in the end of it:
export variable;
and in the Script Header:
import int variable;
Thank you :Dit worked