From Lobby to Level: How to Build Seamless Travel in Fortnite Islands
Tutorial beginner

From Lobby to Level: How to Build Seamless Travel in Fortnite Islands

Updated beginner

From Lobby to Level: How to Build Seamless Travel in Fortnite Islands

You know that feeling when you jump off the Battle Bus, land, and suddenly you’re in a completely different biome? Or when you clear a boss room and the floor drops away to reveal the next stage? That’s not magic; it’s travel logic. If your island feels like one giant, endless open world, players might get lost or bored. But if you break it into distinct "chapters" or areas, you control the pacing, the tension, and the drama.

In this tutorial, we’re going to build a Portal Transition System. We’ll take a player from a safe "Lobby" area to the actual "Game Start" zone using a Teleporter and a Timer. No coding required for this part—just pure UEFN device wizardry. By the end, you’ll have a seamless transition that feels like a professional arcade game, not a broken prototype.

What You'll Learn

  • The Scene Graph Basics: Understanding how devices "talk" to each other without being in the same room.
  • Teleporters & Triggers: The classic duo for moving players from Point A to Point B.
  • Timing the Drama: Using a Timer to delay the transition so players don’t get yeeted into the void before they’re ready.
  • HUD Feedback: Telling the player when the travel is happening so they don’t think the game crashed.

How It Works

Imagine your island is a house. The Lobby is the front porch. The Game Area is the living room. You don’t just walk through the wall; you use the door. In UEFN, the "door" is a Teleporter, and the "key" that unlocks it is a Trigger.

Here is the flow we are building:

  1. The Setup: We have two distinct areas (Lobby and Game).
  2. The Trigger: A device that detects when a player walks into a specific zone.
  3. The Delay: A Timer that waits for a few seconds (giving the player time to react or panic).
  4. The Teleport: The actual device that moves the player to the Game Area.
  5. The Announcement: A HUD Message that pops up on screen to say "Go!"

Key Concept: The Scene Graph Think of the Scene Graph as the blueprint of your island. It lists every single object (entities) and how they are connected. When you place a Trigger and a Teleporter, they are just two separate pieces of furniture. To make them work together, you have to "wire" them in the Scene Graph. This is like running an electrical wire from the light switch (Trigger) to the lightbulb (Teleporter). Even if they are miles apart on the map, if they are wired in the Scene Graph, they are connected.

Let's Build It

We aren't writing Verse code for this specific mechanic because UEFN’s visual scripting (devices) is perfect for simple travel. However, understanding how these devices interact is the foundation for when you eventually want to write Verse to make the teleporter smarter (e.g., only teleporting if the player has a key).

Step 1: Create Your Areas

  1. Open your project in UEFN.
  2. Create two distinct zones. Let’s call them Lobby_Area and Game_Start_Area.
  3. In Lobby_Area, place a Trigger Device. Set its size to cover the floor where you want players to stand.
  4. In Game_Start_Area, place a Teleporter Device. Position it exactly where you want the player to appear.
  5. Pro Tip: Place a Player Start in the Lobby so the game knows where to spawn the player initially.

Step 2: Wire the Connection

This is where the magic happens. We need the Trigger to tell the Teleporter to fire.

  1. Select the Trigger Device.
  2. Look at the Details Panel (usually on the right).
  3. Find the Output section. You’ll see an output called OnBeginOverlap. This fires when a player steps inside the trigger.
  4. Drag a line from OnBeginOverlap to the Input of the Teleporter Device.
  5. Select the Teleporter. Find its Input section. Look for Activate. Connect the Trigger’s OnBeginOverlap to the Teleporter’s Activate.

Wait, what’s an Input/Output?

  • Output: A device shouting "Hey! Something happened!" (e.g., "Player stepped here!").
  • Input: A device listening for a command (e.g., "Activate!").
  • Connecting them is like plugging a microphone into a speaker. The shout goes straight to the speaker.

Step 3: Add the Drama (The Timer)

Instant teleportation can be disorienting. Let’s add a 3-second delay so players see the portal open or get a warning.

  1. Place a Timer Device between the Trigger and the Teleporter.
  2. Set the Timer’s Duration to 3.0 seconds.
  3. Wire the Trigger’s OnBeginOverlap to the Timer’s Start input.
  4. Wire the Timer’s OnComplete output to the Teleporter’s Activate input.

Now, the sequence is: Player Steps on Trigger -> Timer Starts -> 3 Seconds Later -> Teleporter Fires

Step 4: Tell the Player What’s Happening

Nobody likes being teleported without warning. Let’s add a HUD Message Device.

  1. Place a HUD Message Device.
  2. Set the Message Text to something like "Entering the Arena..." or "Good Luck!"
  3. Wire the Timer’s OnComplete output to the HUD Message’s Show input.
  4. Optional: Wire the Trigger’s OnBeginOverlap to the HUD Message to show a "Get Ready!" message immediately.

Step 5: Test It

  1. Hit Play.
  2. Walk into the Trigger zone.
  3. Watch the timer count down (if you set up a visual indicator) or just wait.
  4. Feel the satisfaction as your character smoothly pops into the Game Start area.

Try It Yourself

You’ve got the basics down. Now, make it chaotic.

Challenge: Add a Second Trigger in the Game Start Area that teleports the player back to the Lobby if they step on a specific "Red Carpet."

Hint: You’ll need a second Teleporter in the Lobby and a second Trigger in the Game Area. Think about the direction of the wires. Does the Lobby Trigger send the player to the Game Teleporter? Yes. So, does the Game Trigger send the player to the Lobby Teleporter? Make sure you don’t accidentally wire the Game Trigger to the Game Teleporter (which would just spawn them in the same spot repeatedly, a classic beginner mistake!).

Recap

Travel between areas isn’t just about moving players; it’s about controlling the experience. By using Triggers to detect player movement, Timers to pace the action, and Teleporters to move them between distinct zones in the Scene Graph, you create a structured, professional-feeling game. Remember: devices are just nodes in a network. If you understand what they shout (Outputs) and what they listen for (Inputs), you can build any journey you want.

References

  • https://dev.epicgames.com/documentation/en-us/fortnite/tmnt-setting-up-travel-between-areas-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/tmnt-enemy-encounters-and-obstacles-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/uefn/tmnt-travel-between-areas-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/uefn/tmnt-arcade-template-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/tmnt-arcade-template-in-unreal-editor-for-fortnite

Turn this into a guided course

Add tmnt-setting-up-travel-between-areas-in-unreal-editor-for-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