[Question] Spwaning 2 Players On Client Connect

Options
PickleStringly
edited June 2022 in Fusion

my spwan script pls help

only spwans 2 players when using shard mode

Best Answer

  • emotitron
    emotitron ✭✭✭
    Answer ✓
    Options

    It does appear that your Spawn() call is going to happen on every peer, for every player that joins. You will want to restrict spawning to only:

    if (player == runner.LocalPlayer){

    Spawn();

    }

Answers

  • emotitron
    emotitron ✭✭✭
    Answer ✓
    Options

    It does appear that your Spawn() call is going to happen on every peer, for every player that joins. You will want to restrict spawning to only:

    if (player == runner.LocalPlayer){

    Spawn();

    }

This discussion has been closed.