How to distinguish multiplayer and single player

what i need help with is having one level be multiplayer and one be single player
i can handle setting up the multiplayer servers for different platforms but i need to have a sort of hub area and a main multiplayer area

could someone please help i really need help with this
thanks

Can you destigues this by using different game modes?

You purposely have to setup sessions and connections, so you can keep track that way. Every time a person connects, increment a player count.

how do i setup sessions and connections and increment player count

Networking is a huge topic. Setting it up and running is easy enough, its fully comprehending replication that takes time.

Some links to unreal training:
https://api.unrealengine.com/INT/Videos/PLZlv_N0_O1ga0aV9jVqJgog0VWz1cLL5f/uCjXJD9AhqY/index.html

Tons of videos out there on youtube, just search for “unreal networking”, “unreal network sessions”, “unreal multiplayer”.

You’re looking specifically for Host Session and Join Session. The first link above is for the multiplayer shootout example that demonstrates the extreme basics.

thanks ill try those