Hello!
I have some people making private servers in my game but I want to make some things visible in private servers than others such as hand cuffs and doors.
Hello!
I have some people making private servers in my game but I want to make some things visible in private servers than others such as hand cuffs and doors.
local function getServerType()
if game.PrivateServerId ~= "" then
if game.PrivateServerOwnerId ~= 0 then
return "VIPServer"
else
return "ReservedServer"
end
else
return "StandardServer"
end
end