I’m creating a game that has classified information in a module in Serverscriptstorage. How safe is the information from being accessed by the client?
1 Like
Anything in ServerScriptService or ServerStorage is not replicated to the client so it’s safe to put it there.
6 Likes
That’s what I thought, thanks!