Building Your Dream Team: Adding Friends to Your Fortnite Island
Tutorial beginner

Building Your Dream Team: Adding Friends to Your Fortnite Island

Updated beginner

Building Your Dream Team: Adding Friends to Your Fortnite Island

Have you ever wanted to build a massive Fortnite island but felt like doing it all alone was too hard? You are not alone! Most big games are made by huge teams. In Fortnite Creative, you can bring your friends on board to help you build, test, and share your island. This tutorial shows you how to grow your team from one person to a whole squad.

What You'll Learn

  • How to open the Creator Portal (your command center).
  • How to find your friends using their Epic Display Name.
  • How to give friends special Roles (like Editor or Tester).
  • How to send an Invite Link so they can join instantly.

How It Works

Think of your Fortnite island like a school project. If you do it alone, you have to do all the reading, writing, and drawing. But if you have a team, you can split the work. One person can draw maps. Another can test the traps. Another can write the story.

To make this happen, you need to add people to your Team. A team is just a group of creators working on the same project.

Here is the secret: You don't add people inside the game itself. You add them in the Creator Portal. This is a special website that lives in your web browser. It is like the "backstage" area for your island.

When you add a friend, you give them a Role. A role is like a job title.

  • Editor: They can change the island.
  • Tester: They can play and find bugs, but not break things.
  • Owner: Only you can be the owner. This is the boss role.

Once you add them, they get a special link. They click it, say "yes," and boom! They are part of your crew.

Let's Build It

We will walk through the steps to add a friend named "BuilderBob" to your team. You will need your friend's Epic Display Name. This is the name they use when they log into Fortnite. It is usually their username.

Step 1: Go to the Portal

Open your web browser. Go to the Creator Portal. You should see your profile picture in the top corner.

Step 2: Find Your Team

Click the little down arrow next to your profile picture. A menu will pop up. Select your team name. This switches your view from "Me" to "Us."

Step 3: Add a Member

Look for the button that says Add Team Member. It might be on the side or top of the screen. Click it. A panel will slide out.

Step 4: Find Your Friend

Click the button that says Add new by Epic Display Name. A search box will appear. Type your friend's name exactly as they use it. For example, type BuilderBob.

Step 5: Pick a Role

Your friend's name will show up in the search results. Click on their name. Now, pick their job. Check the box for Editor if you want them to help build. Check Tester if you just want them to play. You can pick more than one!

Step 6: Send the Invite

Click the Invite button. A link will appear. Click Copy to Clipboard. This copies the link to your computer's memory.

Now, go talk to BuilderBob! Send them the link in a text message or Discord. When they click it, they will join your team.

The Code Behind the Scenes

In Verse, teams are often managed behind the scenes using something called an Agent. An agent is just a fancy word for "a player or character in the game." When you add a player to your creative team, the system checks if they are already there. If not, it adds them to a list.

Here is what that logic looks like in Verse. It is simple!

# This function adds a player to the team list
using { /Verse.org/Simulation }
using { /Fortnite.com/Game }
using { /Fortnite.com/Devices }

# A Verse device that tracks team members
team_manager := class(creative_device):

    # A mutable list that holds every agent on the team
    var TeamMembers : []agent = array{}

    # Checks whether PlayerToAdd is already in TeamMembers
    IsAlreadyOnTeam(PlayerToAdd : agent) : logic =
        # Search the list for a matching agent
        for (Member : TeamMembers):
            if (Member = PlayerToAdd):
                return true
        return false

    # Adds a player to the team list if they are not already on it
    AddPlayerToTeam(PlayerToAdd : agent) : void =
        # First, check if they are already on the team
        if (IsAlreadyOnTeam(PlayerToAdd) = false):
            # If they are not, print a message to the console
            Print("Adding player to the team!")

            # Add them to the list of team members
            set TeamMembers = TeamMembers + array{PlayerToAdd}```

Let's break this down:
*   `agent`: This is the player.
*   `IsAlreadyOnTeam`: This asks a question. "Is this person already here?"
*   `TeamMembers +=`: This means "add this person to the list."

You don't need to write this code to add friends. The Creator Portal does it for you! But it is good to know that a list is tracking who is on your team.

## Try It Yourself

Ready to grow your squad? Here is your mission:

1.  Open the **Creator Portal**.
2.  Find the **Add Team Member** button.
3.  Add **one** friend to your team.
4.  Give them the **Tester** role only.
5.  Copy the invite link and send it to them.

**Hint:** If you can't find their name, make sure you are spelling their Epic Display Name exactly right. Spaces and capital letters matter!

## Recap

*   Use the **Creator Portal** to manage your team.
*   Find friends by their **Epic Display Name**.
*   Give friends a **Role** like Editor or Tester.
*   Send an **Invite Link** so they can join easily.

Great job! You are now a team leader. Keep building and have fun with your new crew!

## References

*   https://dev.epicgames.com/documentation/en-us/fortnite/creating-teams-in-creator-portal-in-unreal-editor-for-fortnite
*   https://dev.epicgames.com/documentation/en-us/fortnite/fortnite-communities-in-fortnite
*   https://dev.epicgames.com/documentation/en-us/fortnite/setting-up-teams-in-fortnite-creative
*   https://dev.epicgames.com/documentation/en-us/fortnite-creative/setting-up-teams-in-fortnite-creative
*   https://dev.epicgames.com/documentation/en-us/fortnite/prop-hunt-04-setting-up-teams-and-classes-in-unreal-editor-for-fortnite

Verse source files

Turn this into a guided course

Add Adding Additional Team Members to your free study plan — we'll suggest related pages and stitch the lot into one compile-checked, self-guided lesson with worked examples and quizzes.

Original tutorial generated by Verse Island from the Verse/UEFN knowledge base, with references to the Epic Games sources above. Code is validated against the knowledge base.

Comments

    Sign in to vote, comment, or suggest an edit. Sign in