Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
4

[SOLVED] Checking personal server info?

Asked by 8 years ago

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?

2 answers

Log in to vote
1
Answered by 8 years ago

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.

if game.CreatorType == Enum.CreatorType.User then
  print("This place was created by a user")
else
  print("This place was created by a group")
end

I know this isn't what you asked, but this is still useful. Good luck.

0
Not what I asked for but you included that there isn't a way to find a personal server. Thanks anyway! General_Scripter 425 — 8y
0
No problem, good luck. JamesLWalker 297 — 8y
Ad
Log in to vote
2
Answered by 7 years ago

What the guy that answered said!

Answer this question