#Global Table
4 messages · Page 1 of 1 (latest)
if you don't need to edit the table at all then you can just use a ModuleScript
if you need to edit the table, you can use _G if you want to have a table that is shared between scripts, just be aware that is doesn't cross server <-> client boundaries and the client has its own separate completely unrelated _G then the server's _G
if you need server <-> client sync, I'd recommend using a ModuleScript which the server can set attributes of and set up some RemoteEvents if you need the client to edit it for some reason (unrecommended unless you secure the remotes)