You can access variables from different server side scripts.
If you have this in one script
_G.player = "player"
and this in another
print(_G.player)
it will print “player”
You can access variables from different server side scripts.
If you have this in one script
_G.player = "player"
and this in another
print(_G.player)
it will print “player”