You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I have a question on how creating a game lobby works. Alright so I have a main hub which is only allowed for 1 player to join but I also want to make a “Invite Players” options where others can join you as like a Team/Party. After, you invite your teammates the party leader clicks to join the game and all players load into it.
You should probably take a look at messaging service for cross server communication. One method would be to store a table of party members in the party leaders server, and then have all the players in the table teleport.
(This is a very rough idea and would need some modifications for exploiters and optimization and such.)
If you want to handle it via 1 player lobbies then you’ll need to use MessagingService a lot. Unless you feel really brave, I suggest you instead make 60-100 player servers and make lobbies locally to server. This way you’ll be able to use server variables easily and won’t have to constantly send messages and check if they went through.
Ohhh okayy thank you !! I’m looking to make a server where you can invite your friends to your specific server!! For instance say you’re in your own game and you want your friends to join you…it’ll send a invite to them from their game and allow them into yours and then you’ll become the party leader!!