The Launchpad: How to Create Your First Fortnite Island (Without Losing Your Mind)
Tutorial beginner

The Launchpad: How to Create Your First Fortnite Island (Without Losing Your Mind)

Updated beginner

The Launchpad: How to Create Your First Fortnite Island (Without Losing Your Mind)

So, you want to build the next viral Fortnite island? Great. Before you can place your first trap or script a chaotic respawn system, you need to actually have a place to put it. Think of this step like choosing a lobby before you queue up for a match. If you don’t pick a template, you’re just standing in the void staring at the Battle Bus, which is great for introspection but terrible for gameplay.

In this tutorial, we’re going to walk through creating your very first project in Unreal Editor for Fortnite (UEFN). We’ll set up the basic rules of engagement (like how many players can join and who they fight) so you aren’t playing a solo game with 99 bots. By the end, you’ll have a blank canvas ready for your masterpiece, or at least a place to practice not dying immediately.

What You'll Learn

  • The Project Browser: How to find your "lobby" in UEFN and start fresh.
  • Templates: Why starting with a "Blank" slate is better than a pre-built mess.
  • Island Settings: The "Game Rules" menu that acts like the matchmaker config, deciding if you’re playing Team Deathmatch, Co-op, or Solo.
  • Naming Your Island: Giving your creation a name so it doesn’t get lost in the "My Projects" graveyard.

How It Works

When you open UEFN, you aren’t dropped straight into the editor. You’re dropped into the Project Browser. Think of this like the main menu of Fortnite. You see "Battle Royale," "Creative," "Save the World"—here, you see your past islands and the templates Epic provides.

The "Blank" Template

You might be tempted to pick a fancy template with buildings already placed. Don’t. It’s like trying to learn how to drive in a Formula 1 car with the engine already hot. For your first project, you want a Blank template. This gives you an empty island. It’s boring, yes, but it’s your boring. You can build walls, add devices, and write Verse code without fighting against pre-existing clutter that you don’t understand yet.

The Outliner & Island Settings

Once your project loads, you’ll see a giant, empty landscape. Where are the settings? Where do I change the max players?

In Fortnite Creative, you used to drag devices onto the island to change settings. In UEFN, we use a special device called Island Settings. You can think of this as the Matchmaker Config. It’s not a physical object you can shoot; it’s the invisible rulebook for your island.

This device lives in the Outliner. If you’re new to 3D editors, the Outliner is like your inventory list in the lobby, but instead of showing your skins, it shows every single object (entity) in your scene. It’s the hierarchy of your island.

Inside Island Settings, you’ll find User Options. These are the knobs you turn to define your game:

  • Max Players: How many people can join? 4? 100?
  • Teams: Are they fighting each other (Competitive) or fighting bots together (Cooperative)?
  • Spawn Pad Selection: Do players spawn next to their teammates (Near Teammates) or randomly across the map (Random)?

If you don’t touch these, UEFN uses default values. But defaults are for people who like surprises. You want control. So, let’s set the stage.

Let's Build It

We aren’t writing Verse code yet (we’ll get to that when we make things do stuff). Right now, we’re just setting up the environment. Follow these steps to create your project and configure the basic rules.

Step 1: Create the Project

  1. Launch UEFN.
  2. If a News window pops up, close it. We don’t care about the news; we care about building.
  3. You are now in the Project Browser.
  4. Click the Island Templates tab at the top.
  5. Select Blank. This is your clean slate.
  6. At the bottom of the window, you’ll see a text box. It probably says MyProject. Change this to something cool, like Revenge_Traps_v1 or Chaos_CoOp.
  7. Click Create.

Congratulations. You now have a project. It’s empty, but it’s yours.

Step 2: Open the Rulebook (Island Settings)

  1. Once the editor loads, look at the Content Drawer (usually on the left or right, depending on your layout). Search for Island Settings.
  2. Drag the Island Settings device into your viewport. You don’t need to place it on the ground like a trap; just dropping it into the scene adds it to the world.
  3. Click on the Island Settings device in the viewport or the Outliner to select it.
  4. Look at the Details Panel (usually on the right). You’ll see a section called User Options - Game Rules. This is your command center.

Step 3: Configure Your Match Rules

Let’s set up a small, cooperative team game. This is the easiest way to test devices without worrying about balancing PvP.

In the Details Panel for Island Settings, find these options and change them:

  • Max Players: Set this to 4. (Why 4? Because it’s a classic squad size, and it keeps testing fast.)
  • Teams: Change this from "Competitive" to Cooperative. Now you and your friends are on the same team, fighting the island, not each other.
  • Team Size: Set this to 4. This ensures that if 4 people join, they form one team.
  • Spawn Pad Selection: Set this to Near Teammates. This prevents your teammates from spawning on opposite sides of the map while you’re trying to coordinate a trap strategy.
  • Auto Start: Set this to False. This means the game won’t start the moment the first player joins. You want to be able to test your devices manually without the storm closing in immediately.

Note: If you don’t see these options, use the Search bar at the top of the Details Panel and type "Max Players" or "Teams".

Step 4: Save and Verify

  1. Press Ctrl + S (or Cmd + S on Mac) to save your project.
  2. Click Play in the top toolbar.
  3. When the game loads, check the top right corner. It should say "4 Players" and "Cooperative."
  4. Press Esc to exit the preview.

You didn’t write a single line of code, but you just configured the core architecture of your island. You’ve defined the scope, the teams, and the spawn logic. This is the foundation. Without this, your Verse scripts and devices have nowhere to live and no rules to follow.

Try It Yourself

You’ve got the basics down. Now, let’s tweak the rules to see what happens.

Challenge: Modify your Island Settings to create a Solo Deathmatch scenario.

  • Hint 1: Change Teams to Competitive.
  • Hint 2: Set Max Players to 100 (or whatever your PC can handle for testing).
  • Hint 3: Set Spawn Pad Selection to Random.

Play the game again. Notice how the vibe changes? You’re no longer a squad; you’re a lone wolf in a pit of vipers. This is how you control the player experience before you even place a single wall.

Recap

  • Project Browser: Your main menu. Always start with a Blank template for learning.
  • Island Settings: The invisible rulebook. It controls Max Players, Teams, and Spawns.
  • Outliner: Your inventory list of all objects in the scene.
  • User Options: The specific settings inside Island Settings that define how your match behaves.

You now have a project, a name, and a rulebook. Next up, we’re going to place actual devices and make them talk to each other. Don’t get too comfortable—this is just the lobby.

References

  • https://dev.epicgames.com/documentation/en-us/fortnite/first-island-01-create-and-explore-a-project-in-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/build-your-first-island-in-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/stronghold-01-create-a-new-project-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/deserted-domination-template-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/your-first-island-level-up-with-verse-in-fortnite

Turn this into a guided course

Add first-island-01-create-and-explore-a-project-in-fortnite 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