You can use _G. for global (Hence the G.) variables, which can be accessed throughout your game. So say I had one script that read below;
_G.Tag = "Hello Digital"
and another script that read;
print(_G.Tag)
Then the variable would be read through the game and the print function would print Hello Digital
.