So in a Set Text event, I can do something like:
"Score: " & score
In this scenario, score is a global variable and the output is something like... Score: 123
Instead of using the score variable here, is it possible to use a different variable I previously added to globalThis in a script?
Something like...
globalThis.myScore = 123;
and in Set Text:
"Score: " & globalThis.myScore
Is this possible? In my attempt, it doesn't like me trying to use globalThis.myScore in the event.