I want to make a game that only my friends and I didn’t really tried anything so sorry.
There should be a setting in the Game Settings in studio. That will allow you to make it friends only. You could possibly find this in Configure place, then access etc. this will only work if it’s on your profile
Yeah but I want it to be for 2 friends only that i pick xd
Start the game with a door that only allows specific players in.
You would have to create a whitelist system.
local players = game:GetService("Players")
local whitelist = {} -- put userids here
local function added(plr)
if plr.UserId == game.CreatorId then return end
if table.find(whitelist, plr.UserId) then return end
plr:Kick("Blacklisted")
end
players.PlayerAdded:Connect(added)
Well no offense but a bad idea…
It’s an easy solution, but yeah you could also create a whitelist script that instantly boots people like above.
This doesn’t even need to be scripted, the configure place page (on-site) allows you to set a game’s accessibility to everyone/friends only.
He wants specific friends not all of his friends
Oh true, I had only read the thread’s subject (which didn’t indicate specific friends) and not any of the replies.
Go to game settings, make the game private, go to permissions, put your friends in there.
Also, I think you can only make a rank and higher access group games, tho I think that’s just development.
We used to be able to set to friends only access located in configure place page, but with the new roblox creator dashboard, they’ve gotten rid of the old develop layout along with the friends only access option on that page.
Links like https://www.roblox.com/develop?View=3 that go to the old develop layout now redirect to the new creator dashboard. Would be cool if they’d re-add the option one day, but I’m guessing they probably won’t.
Edit: Seems to be a friends only button on the dashboard now. No idea when it was added.
where do you find the button? i can’t find it anywhere
I went to look for it and found it in Configure this Experience (on gamepage) > Audience > Access Settings
Quick example link to it:
for some reason it says “You need permission to access this content
Contact the owner to grant you access or switch accounts” when i put a game id (of a game i own ofc), kinda weird
EDIT: for some reason the ID you see on a roblox game’s page is the place id or something, i needed to click configure experience and then copy that ID to make it work