Does shared. communicate between server and client?

My question is kinda simple but im having some problems
Does shared.[value] changes in server when changed in a client?

Answer is no, shared does not replicate between client-server.

oh how about _G tho?

characters

Same applies to _G because client and server run on completely different context levels and separate VMs so they don’t share a global table.

ohhhh alright then, thanks for the help :smile: