Rocket Racing Boost Pads: The "Speed Boost" Button for Your Cars
Rocket Racing Boost Pads: The "Speed Boost" Button for Your Cars
You know that feeling when you hit a ramp in Rocket Racing and suddenly you’re flying? That’s not magic; it’s the RR Boost Pad. In UEFN, these are the pre-made devices that instantly turbocharge any Rocket Racing vehicle that drives over them. It’s the digital equivalent of a storm zone that pushes you forward instead of eating your health.
But here’s the catch: these aren’t standard building pieces. They are specialized tools locked inside the Rocket Racing Island Template. If you try to find them in a regular Creative island, you won’t find them. This guide is for the Rocket Racing builders who want to place these pads correctly without breaking their track.
What You'll Learn
- How to access the Rocket Racing-specific device library.
- Where to find the RR Boost Pad in the UEFN interface.
- Why you can’t customize the boost amount (and why that’s actually good for balance).
- How to place them effectively in your race track design.
How It Works
Think of the RR Boost Pad as a pre-programmed "Ninja Ripper" or "Shock Sticker" but for cars. When a vehicle’s wheels touch the pad’s trigger area, the game engine instantly applies a fixed velocity increase.
The "Black Box" Rule
Unlike standard props where you can tweak every slider, the RR Boost Pad is a Black Box. This means:
- Fixed Power: You cannot change how much speed is added.
- Fixed Duration: You cannot change how long the boost lasts.
Why? Because Epic wants all Rocket Racing islands to feel consistent. If you made a pad that gave 10x speed, you’d break the race balance. If you made one that gave 0.1x speed, nobody would notice. By locking the values, Epic ensures that every player knows exactly what to expect when they hit a blue glowing pad. It’s like the storm timer—you don’t get to set it to 5 minutes or 10 minutes; it just happens.
The Template Lock
This is the most important part. These devices only exist if you are working in the Rocket Racing UEFN Island Template. If you create a new island and select "Creative 2.0" or "Fortnite Battle Royale," the RR Boost Pad will not appear in your device list. You must start your project from the specific Rocket Racing template to access these tools.
Let's Build It
Since we can’t write custom Verse code to create a boost pad (they are pre-built devices), we need to understand the Scene Graph hierarchy of how they work. In UEFN, devices are Entities (objects in the world) with Components (their properties).
Here is how you "code" this into your level using the editor, step-by-step.
Step 1: Get the Right Template
- Open UEFN.
- Create a new island.
- CRITICAL: Select the Rocket Racing template. Do not select "Creative" or "Battle Royale." If you don’t, you will be staring at a blank void of missing devices.
Step 2: Locate the Device
- Open the Devices tab (usually on the left or right panel).
- In the search bar, type
RR Boost Pad. - You should see the device listed under the Rocket Racing category.
Step 3: Place and Align
- Drag the RR Boost Pad into your scene.
- It will appear as a glowing blue pad on the ground.
- Use the transform tools to place it on your track.
- Pro Tip: Make sure the pad is flat. If it’s tilted, cars might bounce off it weirdly. Think of it like placing a trap in Fortnite; if the floor isn’t level, the trap doesn’t trigger properly.
Step 4: Test It
- Press Play.
- Drive a Rocket Racing vehicle over the pad.
- Watch the speedometer spike. You didn’t write a single line of Verse, but you just used a device that handles collision detection, velocity application, and visual feedback automatically.
Why No Verse Code?
You might be wondering, "Where’s the code?" In UEFN, some things are Pre-Baked Devices (like the Boost Pad) and some are Custom Verse Scripts. The Boost Pad is a pre-baked device. It’s like a pre-made storm circle vs. a script that creates a custom storm. For simple, standardized mechanics like speed boosts, Epic provides the device so you don’t have to code the physics engine from scratch.
Try It Yourself
Challenge: Create a "Double Boost" section.
- Place two RR Boost Pads close together on a straightaway.
- Drive through them one after the other.
- Observe what happens to your speed. Does the second boost stack? Does it reset?
Hint: Think about how healing items work. If you eat a shield potion and then immediately eat another, do they stack? Or does the second one just refresh the timer? The Boost Pad behaves similarly with velocity.
Recap
- RR Boost Pads are exclusive to the Rocket Racing Island Template.
- They provide a fixed, uneditable speed boost to ensure game balance.
- They are pre-built devices, not custom Verse scripts, so you place them via the editor, not by writing code.
- Always check your template first—if the device isn’t there, you’re in the wrong project type.
References
- https://dev.epicgames.com/documentation/en-us/uefn/using-rocket-racing-boost-pad-devices-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/using-rocket-racing-devices-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/fortnite/using-rocket-racing-boost-pad-devices-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/working-with-rocket-racing-islands-in-unreal-editor-for-fortnite
Turn this into a guided course
Add RR Boost Pad Devices 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.