My game will have 2 different places: Public to everyone Lobby and the place where Core Gameplay will happen. The player will be able to join to Core Gameplay place in the lobby, which will be private only to them but will have the option to allow their place to be joined by friends(let say max 5 friends can join).
My problem is, I don't know how to make a place private to one player while still have option to make friends join. Do I make it with just a script or maybe something on the Create page too?
I can only find on Roblox Developer page about teleporting through places but nothing about this kind of settings...
One way you could potentially do this is by using TeleportService
local place = TelelportService:ReserveServer(0000000) TeleportService:TeleportToPrivateServer(1248523004, place, player)
keep in mind this can only operate on the server.