How would i make a lobby

i would like to make a fortnite like lobby that i could invite players and their character would show up.

the problem is that i dont know how to make their character appear or make them appear so that only the lobby can see and not the whole server so that they dont inside each other.

i also have a dummy without clothes for custom character creation (like changing clothes, pants, etc.) but i dont know how to make it visible to other players

1 Like

If I understand correctly, you want players to be able to invite their friends and only be able to see their friends’ from their view?

You haven’t given any sort of effort to figure it out so there’s no script for me to critique, but I’ll give you a hint.

If you create a part from a script on the server side, such as in Workspace or ServerScriptService, such as through newPart = Instance.new("Part"), everyone in the server will be able to see it.

However, if you do that same thing from a LocalScript on the client, such as in StarterGui or StarterPlayerCharacter, it will only show up for that particular player.

That is how you would make something that only appears to the individual player.

3 Likes

You could have a holding area where allt he players are, and then clone the player model and move it to the correct location via a starterplayerscript

1 Like

Thank you, it’s the only thing i needed to know

2 Likes