- Boost is a movement module that injects a short burst of extra speed instead of building it up gradually.
- It closes distance on a fleeing target or breaks away from a losing fight, then decays back to normal speed.
- Servers catch it by comparing distance moved per tick against what vanilla physics allow.
Boost is a movement module that gives a player a short burst of extra speed or velocity, applied all at once instead of building up the way vanilla sprinting and momentum do. It is a Minecraft utility client staple for two moments: closing distance on someone trying to run, and getting out of a fight that has gone sideways. The effect is brief on purpose, a single spike rather than a sustained speed increase.
How it works
Vanilla Minecraft builds speed gradually. Sprinting, jumping, and momentum all follow fixed formulas the server can predict tick by tick. Boost skips that buildup entirely: it sets the player's velocity directly for a short window, then lets it decay back to normal once the burst ends.
Because that injection happens client-side, the client is the one reporting where the player ends up afterward. The server has two options: trust the position report, or recompute what a legitimate player's momentum could have produced across the same span of ticks and compare the two.
Why people actually use it
The core use case is repositioning. A short speed spike closes distance on a target trying to run, letting the player catch up or land a hit before the gap opens too wide. The same trick works in reverse: pulling away from a fight fast enough that an opponent cannot keep pace, buying a moment to heal or just leave.
Both cases share the same shape. It is a movement advantage compressed into a couple of seconds, instead of one spread evenly across a whole fight.
Is it safe to use
Boost is a gameplay-advantage feature, not a cosmetic one, and sudden movement is one of the more visible things a server-side anticheat watches for. The server tracks position tick to tick and compares distance moved against what vanilla physics permit given the player's state (sprinting, jumping, grounded, and so on). A burst that clears that ceiling produces a position delta too large for the tick it happened in, which is a clean signal to flag.
Detection gets harder when the burst is small or blended into normal acceleration, since it can pass for a lag spike or a well-timed jump. A large, repeated, or clearly instant jump in speed is easy to catch; a modest one is not, which is exactly why implementations trying to stay under the radar keep the boost brief and infrequent.
Where this sits in Opal's catalog
Opal ships a full Movement category, Speed, No Slow, Phase, Step, and the rest, but nothing branded specifically as Boost. Those modules are built around sustained movement and terrain traversal, not a single injected velocity spike, so if you came here looking for the exact module name in Opal's menu, it is not there under that name.
Reference, not a how-to
This page describes the module generically so you know what the term means. Naming and exact behavior vary by client, and any speed beyond what vanilla physics allow breaks the rules on essentially every server running an anticheat.
FAQ
Boost gives the player a short burst of extra speed or velocity, usually used to close distance on a target quickly or to get away from a losing fight in a hurry.
Yes. It produces a sudden jump in movement speed that a server can compare against the maximum speed vanilla physics allow for a given tick, which makes large or repeated bursts easy to flag.
The module is documented as seen in clients like Juul and Rose.
It describes the same general idea, a short-lived speed increase beyond what vanilla movement allows, though exact naming and implementation vary between clients.
Any movement cheat that produces speed beyond what the game allows violates the rules of essentially every server running an anticheat, and Boost qualifies because it moves the player outside normal physics.