Hi!
I'm working on a group game, and I would like to add some safety measures in case somebody copies it for themselves. Is there a way to get the game id? I'm thinking I will do something like this:
if *game id* ~= 12345678 then script.Disabled = true end
Thank you guys! If anyone else knows a better way to try to protect a game, please let me know :)
game.placeId
if game.PlaceId ~= 12345678 then script.Disabled = true end
This way is a little better xD