From a script in any game is there any way to check if the game is a personal server and, if so, the level of permission people in the game have? I've looked on the wiki and couldn't find anything and searched on here for a few different things but haven't found anything helpful. Any ideas?
There is no way to find the personal server. Though there is a way to find a group or player created place. Here is what I found on the wiki page. You can use CreatorType, which will output this.
1 | if game.CreatorType = = Enum.CreatorType.User then |
2 | print ( "This place was created by a user" ) |
3 | else |
4 | print ( "This place was created by a group" ) |
5 | end |
I know this isn't what you asked, but this is still useful. Good luck.