Stop Driving Like a Grandma: How to Build Rocket Racing Boost Pads
Stop Driving Like a Grandma: How to Build Rocket Racing Boost Pads
Look, we’ve all been there. You’re in the heat of a Rocket Racing match, you hit the nitro, and suddenly you’re flying off a ramp like a confused bird. But what if you could control that chaos? What if you could turn a boring straightaway into a high-speed obstacle course where missing a boost pad means you’re driving the speed of a shopping cart with a flat tire?
In this tutorial, we’re going to build a custom Rocket Racing track section using the RR Boost Pad device. This isn’t just about slapping a green tile on the ground; it’s about understanding how UEFN (Unreal Editor for Fortnite) handles these specific racing devices. We’ll learn why these pads are locked down (spoiler: it’s to keep the game fair), how to place them correctly, and how to use them to create "skill-check" sections that separate the pros from the players who keep hitting the wall.
What You'll Learn
- The RR Boost Pad Device: What it is, where to find it, and why you can’t tweak its speed.
- Placement Strategy: How to position pads for maximum speed without breaking the game physics.
- The "Locked" Logic: Understanding why some devices in Rocket Racing are "constants" rather than "variables."
- Building a Mini-Course: A quick setup to test your new boost section.
How It Works
The Boost Pad: Your Car’s Energy Drink
Imagine you’re playing Fortnite Creative. You know the Item Granter? You step on it, you get a gun. Simple. The RR Boost Pad is the Rocket Racing equivalent. It’s a device that detects when a Rocket Racing vehicle drives over it and instantly applies a burst of speed to that vehicle.
Think of it like a Storm Zone timer, but for speed. When you hit the pad, the "storm" of speed hits your car, pushing you forward.
Why You Can’t Change the Speed (The "Constant" Concept)
Here is the most important thing you need to know before you start building: You cannot change the amount of speed or the duration of the boost from the pad itself.
In programming terms, the boost strength is a Constant. A constant is like a rule written in stone before the game starts. In standard Fortnite Creative, you might use a Slider to change how much health a healing pad gives (that’s a Variable—something that changes). But in Rocket Racing, the boost strength is hardcoded by Epic Games.
Why? Game Balance. If one builder could make a pad that launches you into the stratosphere and another could make one that just nudges you forward, the races would be broken. Everyone needs the same boost for the same distance. It ensures that when you see a green pad, you know exactly what it does. No surprises. Just pure, consistent speed.
Where to Find It
You can’t just spawn this in a normal Fortnite Creative island. You must be using the Rocket Racing Island Template. If you try to look for this in a standard Creative island, it won’t be there. It’s like trying to find a Battle Bus ticket in a Zero Build lobby—it’s in the wrong game mode.
- Open UEFN.
- Create a new project using the Rocket Racing template.
- Open the Devices panel.
- Search for "RR Boost Pad." It’s usually grouped with other Rocket Racing devices like the RR Active Track Volume and RR Checkpoint.
The Scene Graph: It’s All About Hierarchy
In Unreal Engine, everything exists in a Scene Graph. Think of the Scene Graph as the Loadout Screen in Fortnite.
- The Island is your entire Loadout.
- The Track is a specific piece of gear in that loadout.
- The Boost Pad is a specific component of that track.
The Boost Pad doesn’t just "exist"; it is a child of the track system. It relies on the RR Active Track Volume to know where the race is happening. If you place a boost pad outside the active track volume, it might not work, or worse, it might break the game logic. Always keep your boost pads inside your defined race lanes.
Let's Build It
We’re going to build a simple "Speed Check" section. This will be a straightaway with a boost pad that gives you a burst of speed, followed by a sharp turn. If you hit the boost, you’ll make the turn. If you miss it, you’ll spin out.
Step 1: Set Up Your Track
- Make sure you are in a Rocket Racing project.
- Place down some RR Track pieces to create a straight section. Keep it simple—about 50-100 meters long.
- Ensure you have an RR Active Track Volume covering this section. This volume tells the game, "Hey, this is where the race is happening."
Step 2: Place the RR Boost Pad
- Go to the Devices panel.
- Find the RR Boost Pad.
- Drag it into your level and place it directly on the track surface.
- Crucial Step: Make sure the pad is perfectly aligned with the track. If it’s floating above the ground, cars might drive under it and miss the boost. If it’s buried in the ground, cars might clip into it and get stuck.
Step 3: The "Locked" Settings
Click on the boost pad. Look at the Details Panel on the right. You might expect to see settings for "Boost Strength" or "Boost Duration." You won’t.
You will see settings for:
- Enabled: Whether the pad is active.
- Collision: How the car interacts with it.
This is the "Constant" we talked about. The power is fixed. Your job isn’t to tune the power; your job is to design the placement.
Step 4: Add a Challenge
Now, place a sharp turn or a ramp immediately after the boost pad.
- The Goal: The player needs to hit the boost to carry enough momentum to make the turn or clear the ramp.
- The Fail State: If they miss the pad, they slow down and hit the wall.
The Code (It’s Simple, I Promise)
You might be wondering, "Do I need to write Verse code to make this work?"
No.
The RR Boost Pad is a Device-Based system. This means it’s pre-built logic that Epic has already coded for you. It’s like using a Trap in Fortnite. You don’t need to write code to make a Spike Trap deal damage; you just place it, and it works.
However, if you want to get fancy and trigger other events (like playing a sound effect or spawning a particle effect when the boost is hit), you can use Verse. But for the basic speed boost? It’s plug-and-play.
Here’s what the "logic" looks like in plain English (not code):
# This is pseudo-code to explain the logic
When Vehicle hits RR Boost Pad:
If Vehicle is on Track:
Apply Fixed Speed Boost (Strength: 100%, Duration: 0.5s)
Play Boost Sound Effect
Play Boost Visual Effect (Particles)
Else:
Do Nothing (Vehicle is not in the race)
You don’t need to write this. The device does it for you. Your job is to place the device where it matters.
Try It Yourself
Challenge: Build a "Boost Gauntlet."
- Create a long straightaway.
- Place three RR Boost Pads in a row, but leave small gaps between them.
- Add a RR EMP Volume (which slows cars down) after the third boost.
- Goal: Players need to hit all three boosts to maintain enough speed to escape the EMP zone. If they miss one, they’ll get slowed down and stuck.
Hint: Think about the gaps. If the gap is too wide, players will miss the boost. If it’s too narrow, it’s too easy. Find the "Goldilocks" zone where it’s hard but fair.
Recap
- RR Boost Pads are device-based speed boosters for Rocket Racing.
- They are Constants: You can’t change their speed or duration. This keeps the game balanced.
- They only work in Rocket Racing projects, not standard Creative islands.
- Placement is everything. Align them with the track and use them to create challenges that reward good driving.
Now go build a track that makes your friends scream. And remember: if they keep hitting the wall, it’s not their fault—it’s your bad boost pad placement.
References
- https://dev.epicgames.com/documentation/en-us/fortnite/using-rocket-racing-boost-pad-devices-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/creating-rocket-racing-islands-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/using-rocket-racing-devices-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/working-with-rocket-racing-islands-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/using-devices-in-fortnite
Verse source files
- 01-fragment.verse · fragment
Turn this into a guided course
Add using-rocket-racing-boost-pad-devices-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.
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.