Only Up: Building a Vertical Parkour Climb in UEFN
Only Up: Building a Vertical Parkour Climb in UEFN
Only Up is the rage-game formula distilled to a single sentence: one tower, one rule — don't fall. No guns, no storm, no opponents. Just an agonizing vertical climb assembled from floating debris where one missed jump can drop you minutes — sometimes an hour — back down. The original Only Up! exploded on Steam in 2023, and the Fortnite Creative adaptation became one of the most-played maps in the game's history.
This guide is part of the Game Modes series. We'll cover what the mode is, who's built the great ones, and how to nail the three things that make or break an Only Up map: precise collision, clean respawn, and fair checkpoints.
1. What it is
<!-- section-art:1-what-it-is -->

Vertical Climb
Only Up is a single-player (or parallel-multiplayer) vertical parkour climb. The entire level is built upward — a stack of platforms, props, and gaps floating in the sky. The player's only goal is to reach the top. The challenge is entirely in movement precision: timing jumps, judging gaps, and not panicking when one slip undoes a long stretch of progress.
The genre lives or dies on fall consequences. Pure Only Up has no checkpoints — a fall sends you all the way down. Friendlier variants add sparse checkpoints. Either way, the threat of losing progress is the entire emotional engine.
2. Type of game
| Attribute | Typical value |
|---|---|
| Genre | Parkour / Deathrun / Vertical platformer |
| Tags | Parkour, Only Up, Climb, Deathrun, Patience, No-Build |
| Players | 1-16 climbing in parallel (each runs their own attempt) |
| Round length | 20 minutes to several hours (skill-dependent) |
| Skill focus | Jump timing, spatial judgment, nerve control |
| Build mode | Almost always Zero Build — building would trivialize it |
3. The loop
The Only Up loop is brutally simple, which is exactly why it's so sticky.
- Spawn at the base of the tower.
- Read the route — the next platform, the gap, the moving prop.
- Jump — pure player skill, no assists.
- Land or fall — landing advances you; falling drops you into a reset volume.
- Respawn — back to your last checkpoint (or, in hardcore mode, the very bottom).
- Repeat until you reach the summit.
4. Why it's fun
- The stakes are felt, not told. Every jump carries the weight of everything below it. That's pure, unmediated tension.
- Mastery is visible. You feel yourself getting better — a gap that wrecked you ten times suddenly becomes routine.
- Schadenfreude + triumph. It's a perfect streaming/clip game: the gut-punch falls and the screaming summit moments are equally watchable.
- It respects your skill, not your wallet. No upgrades, no loot — just you and the tower. The purity is the appeal.
5. Who's made popular / good ones
Real, verified Fortnite Creative climbs and their creators:
- Only Up Fortnite! 🌄 by army — code
4366-9611-6988. The breakout Fortnite adaptation of the Steam hit, complete with an altitude meter and timer; fall and you restart, climbing through every season of Chapter 1. It racked up billions of minutes played and millions of favorites — one of the most-played Creative maps ever. (fortnite.gg) - Only Up 2.0 by Atlas Creative — a polished spiritual successor by an established studio; not a 1:1 clone but the same climb-the-sky-on-debris concept. (charlieintel.com)
- 300+ LEVEL PARKOUR by jdb — a sprawling parkour ladder in the same family; great reference for how to structure escalating difficulty across hundreds of segments. (fortnitecreativehq.com)
6. Examples
- A hardcore "no checkpoint" tower where a fall from the top means starting completely over — the truest form of the genre.
- A checkpoint-gated climb that registers your progress every ~20 platforms, making the map approachable for a wider audience (this is what most popular versions do).
- A moving-platform section mid-climb that adds a timing layer on top of the spatial one — the difficulty spike players remember.
7. How to make it in UEFN / Verse
<!-- section-art:7-how-to-make-it-in-uefn-verse -->

Vertical Parkour Logic
An Only Up map is 90% level design, 10% logic — but that 10% is unforgiving. The logic is all about catching falls and managing respawn points.
Core devices
| Device | Role in an Only Up map |
|---|---|
| Player Spawner | The base of the tower — and the fallback respawn if there are no checkpoints. |
| Player Checkpoint device | Registers an agent so their respawn point moves up the tower. The backbone of fair difficulty. |
| Mutator Zone / Damage Volume | The "kill floor" beneath the climb that catches falls and triggers a respawn. |
| Teleporter device | Snaps a fallen player back to their last checkpoint. |
| Player Movement Settings | Tune jump height/air control so the climb is precise, not floaty. |
| HUD Message / Tracker | Show altitude / current checkpoint for that satisfying progress read-out. |
Key mechanics
- Precise collision. Build platforms from props with clean, predictable collision. Floaty or inconsistent collision is the #1 reason a parkour map feels unfair.
- The fall-reset volume. A single large volume under the whole tower catches every fall. When a player enters it, you teleport them to their last checkpoint.
- Respawn / checkpoints. Each Player Checkpoint device, when reached, becomes that player's new respawn anchor via
Register. - Per-player progress. Track each agent's furthest checkpoint so they return to their spot, not a global one.
A grounded, compile-verified climb controller
The device below catches falls and routes each player back to their last registered checkpoint. It uses the real player_checkpoint_device and teleporter_device APIs from the Fortnite digests.
Gotchas
- Collision is everything. The most common Only Up failure isn't logic — it's a prop whose visible edge doesn't match its collision, so players "slip off" platforms that look solid. Test every jump and prefer props with simple box collision.
- One fall zone, not many. A single large Mutator Zone under the entire tower is more reliable than scattering kill volumes. Players fall in unpredictable arcs; cover the whole footprint.
IsRegistered[Agent]is failable. It's a<decides>query — use it inside anif(as above). Don't call it like a function that returns a bool.- Respawn must be per-player. In a 16-player parallel climb, a global "send everyone to checkpoint 3" is wrong. Each agent has their own furthest checkpoint — that's why
player_checkpoint_device.Register(Agent)is per-agent. - Tune movement, then never touch it. Set jump height and air control with a Player Movement Settings device early. If you change it after building, every gap you tuned by hand breaks.
- Loop range syntax.
(Checkpoints.Length - 1)..0walks high-to-low so the player lands on the highest checkpoint they've earned, not the lowest.
Try it yourself
Add an altitude HUD: subscribe a Tracker or HUD Message device to each checkpoint's FirstActivationPerAgentEvent and show "Checkpoint 4 / 12" when a player advances. That progress read-out is a huge part of why the popular versions feel rewarding — players need to see the tower shrinking above them.
Recap
- Only Up = climb the tower, don't fall. Pure movement skill, no combat.
- The three pillars are precise collision, a reliable fall-reset volume, and per-player checkpoints.
- In UEFN: a Mutator Zone catches falls, Player Checkpoint devices move each player's respawn up via
Register, and a Teleporter snaps fallen players back. - Build in Zero Build, tune movement once, and test every single jump's collision.
References
- https://fortnite.gg/island/4366-9611-6988
- https://www.charlieintel.com/fortnite/how-to-play-only-up-2-0-in-fortnite-creative-map-code-259759/
- https://www.dexerto.com/fortnite/how-to-play-only-up-map-in-fortnite-2186675/
- https://www.fortnitecreativehq.com/%E2%9C%A8300-level-parkour%E2%9C%A8/
Get the complete code — free
You've read the full walkthrough. The complete, copy-paste-ready Verse solution is free for members — sign in to unlock it.
Free with your BrainDead.TV / BrainDeadGuild Discord account. The walkthrough above is always free.
Check your understanding
Test yourself with an interactive quiz and track your progress + earn XP — free for members.
Turn this into a guided course
Add Game Modes 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.
References
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.