What is _G and for what i can use it?

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”

47 Likes