Make A Command Bounce Pad In Minecraft! Launch Players Into Air! Awesome For Servers! Launch Pad!
Video Summary
In this video I show you how to make a simple command-based launch/bounce pad in Minecraft Java using just three commands. The pad only activates when you step on an iron trapdoor, launching you upward and even boosting you forward if you run onto it. I walk through setting up repeating always-active command blocks for levitation and speed, plus an optional cloud particle effect, and explain how the distance selector keeps other trapdoors from triggering it.
Formatted Transcript
Hey everybody, it’s UnderMyCap. Today I’m going to show you how to make launch pads (bounce pads) in Minecraft using commands. This is a really cool setup that only needs three simple commands, and you can build it in any vanilla Java world.
You’ve probably seen launch pads on servers like Hypixel. Those are often datapack-based and can get pretty complex, but this version is simple and works in normal Minecraft Java. Unfortunately, it won’t work on Bedrock Edition because commands behave differently there. If you’d like a Bedrock version, leave a comment and I’ll take a look into whether it’s possible.
How the Launch Pad Works
Here’s what makes this launch pad unique: nothing happens when you simply walk near it or step on the surrounding blocks. It only activates when you step directly on an iron trapdoor.
When you step onto the iron trapdoor, you’ll get launched straight up into the air. If you remain standing on the trapdoor, you’ll continue getting launched repeatedly.
Even better, you can get launched forward if you run onto it with momentum. For example, if you sprint into the trapdoor, you’ll be flung in the direction you were moving, which makes it great for parkour, hubs, or server lobbies.
In my build, I styled it like an “air vent.” The cloud particles are meant to look like wind coming up from the vent (even if it’s not perfect, it adds a nice effect).
What You Need
You’ll need command blocks for this, so make sure cheats are enabled in your world.
Step 1: Get a Command Block
First, give yourself a command block. You can’t get command blocks from the creative inventory, so you need to use a command:
/give @s command_block
Once you run that, you’ll receive a command block. Place it down where you want the launch pad to be.
Step 2: Levitation Command (The Launch)
The first command gives the player levitation, but only if they’re standing on an iron trapdoor. This is done using execute and checking the block beneath the player.
Type this into the first command block:
execute at @a[distance=..5] if block ~ ~-1 ~ minecraft:iron_trapdoor run effect give @s levitation 1 60 true
Then set the command block to:
Repeat + Always Active
About the Distance Setting
The distance=..5 part limits the command to players within 5 blocks of the command block. This is useful so other iron trapdoors elsewhere in your world won’t accidentally act like launch pads.
- distance=..5 means “anywhere from 0 to 5 blocks away.”
- If you used distance=5, it would only work at exactly 5 blocks—so don’t do that.
- You can also set a range like distance=2..5 if you want it to activate only within a specific ring.
Once that’s set, place an iron trapdoor nearby and step on it to test. You should get launched upward.
Step 3: Speed Command (Forward Launch Boost)
Next, we’ll add a second command block to apply speed at the same time. This is what helps fling you forward when you run onto the pad.
Copy the first command block (including its settings) and place it directly above the first one.
On Windows, you can copy a command block by holding Ctrl and using your pick-block key (usually the middle mouse button). On Mac, it’s typically Command or Control plus pick-block.
In the copied command block, change the levitation effect to speed, and increase the amplifier:
execute at @a[distance=..5] if block ~ ~-1 ~ minecraft:iron_trapdoor run effect give @s speed 1 100 true
Keep it set to:
Repeat + Always Active
Now, when you stand on the trapdoor, you’ll get both levitation and speed. If you want the pad to feel stronger or weaker, you can adjust the amplifier values (the last number before true).
Step 4: Particle Command (Visual Effect)
The final command creates the particle effect. Use a third command block and enter a particle command. I used the cloud particle to simulate wind, but you can use any particle you want.
Place a third command block and type:
particle cloud ~ ~2 ~ 0 1 0 0 1 force @a
Then set it to:
Repeat + Always Active
This spawns a cloud particle two blocks above the command block with a small spread. The force option makes sure everyone can see it.
Finishing the Build
At this point, the launch pad is complete. Add whatever decorative blocks you want around it, and place the iron trapdoor on top where players will step.
Step onto the trapdoor to test it. If everything is set correctly, you’ll get launched, and if you sprint into it, you’ll be launched forward as well.
Wrap-Up
That’s the full launch pad setup! If you enjoyed this tutorial, leave a like and consider subscribing. I make lots of Minecraft command tutorials, and it’s really fun to experiment with what’s possible in vanilla Java.
Also, let me know what you think of my audio—I’m using a new headset and I’ve been adjusting my setup. I’d love to hear whether it sounds better or worse than in my previous videos.
Thanks so much for watching. Check out the channel for more command tutorials, and I’ll see you in the next video.
Video Thumbnail
Recommended Items Based On Post
Products not fetched from DB and/or API. Please check debug logs.Advertisment




