How to get access to table saved by another lua script with its unique name?
I tried to use in one script like:
_G.Value =12345 or _G["Value"]=12345
in the other script it does not read:
_G.Value or _G["Value"]
Is there any other way? Thanks in advance!
sandboxunable to "interfere" with other executing scripts' states.