Learn · modules
What Is HClip in Minecraft? Horizontal Clip Explained
HClip (Horizontal Clip) shifts a player sideways through a solid block to skip past a thin wall. Here's how the world module works and why servers catch it.
What is HClip?
HClip, short for Horizontal Clip, is a Minecraft world module that pushes a player sideways through a solid block instead of walking them around it. Rather than digging, jumping, or finding a door, the player's position simply moves from one side of the obstacle to the other in a single step. It's built for short crossings, a wall, a narrow gap, and it doesn't touch a single block to get there.
How HClip works
Normally the game moves you one small step at a time and checks each step against the world's collision data, so you can't occupy the same space as a solid block. HClip skips that sequence. It pushes the player's position sideways past a block's collision in one move, so instead of the client walking around an obstacle over several ticks, the player ends up on the far side of it.
Because the shift is short and purely horizontal, it isn't a general teleport. It's sized for crossing something like the thickness of a single wall or a narrow gap, the kind of obstacle that would otherwise mean digging in or walking the long way around.
Is HClip safe to use?
The appeal is obvious: access without a trace. Digging into a base takes time, leaves broken blocks behind, and can trip a trap or tip off whoever built the place. HClip skips all of that. Nothing is placed, nothing is broken, and the wall looks untouched afterward, which makes it attractive for slipping past a thin barrier or into a sealed vault quietly.
That quiet comes at a cost. Moving through a block the server considers solid isn't something normal movement physics can produce, and a position report that puts a player inside a wall, even for one tick, is illegal by definition. Any server that validates reported position against world collision data is checking for exactly this shape of behavior. This is a movement exploit, not a cosmetic flex, and it carries real ban risk on anything that checks.
HClip vs other movement exploits
| Exploit | What it does | Detection risk |
|---|---|---|
| HClip | Shift sideways through a wall | Position overlaps solid block |
| VClip | Shift up/down through a floor or ceiling | Same, vertical axis |
| Bhop | Manipulate movement packets to skip friction | Impossible acceleration |
| Flight | Sustain altitude without a climbing block | Vertical velocity out of range |
HClip is one of several position-manipulation modules that all leave the same core tell: a position report the server's collision system says is impossible.
FAQ
It shifts the player a short distance sideways through a solid block, so they end up on the other side without breaking or placing anything.
No. Breaking through a wall removes blocks and leaves a visible hole. HClip leaves the wall standing; the player just passes through its collision instead of removing it.
No. It's built to move the player a short distance, enough to cross something like a single wall's thickness or a narrow gap.
Yes. It requires the player's position to briefly overlap a solid block, which normal movement can never produce. Server-side collision checks are built to catch exactly this.