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

Any-way to check if a game is a Personal Build Server?

Asked by 9 years ago

I was wondering if there's any-way to check if a game is a Personal Build Server, if there is how would you do it?

1 answer

Log in to vote
0
Answered by
4Bros 550 Moderation Voter
9 years ago

Generally, games that are personal servers have a boolvalue named PSVariable inside the workspace, however this value can be edited or deleted by other scripts so it isn't very reliable.

if Workspace:FindFirstChild'PSVariable' then
    print("game is a personal server")
else
    print("game may not be a personal server")
end
Ad

Answer this question