Group Member Only Game Access

I could’ve sworn there was an option in the past that only group members could access an experience. I am speaking of an experience under a group, with only those group members accessing it and nobody else.

If you set the game to the public, anyone can join. You can attempt to utilize the collaboration button and set all group members to play, but then the game doesn’t show on the group page.

How do you achieve a group game that is visible on the group page, yet only accessible to that groups members?

I am not seeking a script. I just want to know if there is a setting that allows what i’ve described. I could’ve sworn there was.

3 Likes

Try this:

local GroupID = 000000000 -- Put here Your Group ID

game.Players.PlayerAdded:Connect(function(player)
	local Rank = player:GetRankInGroup(GroupID)
	if Rank == "Guest" then
		--If user in not member
		player:Kick("You was kicked from server.") -- Is kick player from server
	else
		--If user is member
	end
end)
6 Likes

There are a setting that can give permission just to the group member but recently they change the create ui.

You’re not mistaken, looks like it might’ve been removed. IIRC it used to be an option in both of these places.

image
Creator Dashboard / Develop Page

image
Roblox Studio (looks like this game of mine actually might still have it set)

2 Likes

Yes, I remember there being a setting. I can’t find it now though… But you can still use a script for the same purpose!

Setting the game to Private will unlist the game from the group page, and setting it to Public will allow everyone to join.
I don’t think there’s a setting for that, nor do I remember there being one. :confused:

I remember there being more settings to these permission. I’ve discussed this with numerous people and they all said the same thing, its in permissions. This setting honestly just disappeared with no word from ROBLOX.

As I said in my post, I am not seeking a script. Thank you though.

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.