
LiquidBounce: The Open-Source Utility Mod for Minecraft
LiquidBounce (CCBlueX/LiquidBounce)
A free Minecraft hacked client (utility mod) for Fabric
Want more control over your Minecraft client without mucking around with endless mod installations? LiquidBounce is an open-source utility mod built on Fabric that gives you granular control over everything from inventory management to rendering options. It's popular, actively maintained, and completely free - but it comes with one important caveat: it's only intended for single-player worlds or servers that explicitly allow custom clients.
What LiquidBounce Is
LiquidBounce is a mixin-based injection client using the Fabric API. If that sounds technical, here's the simpler version: it's a framework that runs alongside your vanilla Minecraft client and injects utility features without shipping any of Minecraft's proprietary code. Built in Kotlin and licensed under GPL-3.0, it's maintained by an active open-source community with thousands of GitHub stars.
The core appeal? LiquidBounce gives you modules - discrete chunks of functionality you can toggle on and off. These aren't massive gameplay overhauls like total conversion mods. They're tools: better inventory sorting, entity rendering features, packet utilities, and quality-of-life improvements that make repetitive tasks less tedious.
Why You'd Use It
Most players reach for LiquidBounce in specific scenarios. You're building a giant structure and want storage monitoring to track what's in nearby chests without opening them individually? There's a module for that. You're doing end-game grinding and want to visualize trajectories or automate tedious clicking patterns? The framework supports it. One newer ChestCleaner feature (added in recent updates) automatically organizes your inventory based on custom rules - genuinely saves time if you're doing any serious building or mining.
The key distinction: LiquidBounce itself is neutral technology. Like any tool, how you use it matters. Vanilla survival servers typically forbid it. Modded servers or private multiplayer groups? They often allow it since mods are part of that ecosystem anyway. Look, single-player? Go wild - there's no reason you shouldn't use utilities that make your game less grindy.
One thing that keeps people coming back is the active development cycle. The project pushes updates regularly with actual improvements, not just bug fixes. Looking at the latest releases, you see things like new StorageESP features, refactored item attribute handling, and module improvements that suggest real players filed the requests.
Getting LiquidBounce Running
Installation assumes you've already got Fabric set up for your Minecraft version. If you haven't, grab the Fabric installer first from fabric.io, then come back here.
Here's the actual setup:
git clone - recurse-submodules https://github.com/CCBlueX/LiquidBounce
cd LiquidBounce./gradlew genSourcesThat ` - recurse-submodules` flag is important - the project pulls in theme code and other dependencies as submodules, and skipping it'll leave you with an incomplete build. The `genSources` step is optional but recommended if you're digging into the code or setting up your IDE.
After cloning, open the folder as a Gradle project in your IDE (IntelliJ IDEA works great here), then run:
./gradlew runClientThis launches a test instance with LiquidBounce injected. You should see the module menu when you hit the configured keybind (defaults vary by release).
If you're not building from source and just want to use it, you'd grab the compiled JAR from releases and drop it in your Fabric mods folder instead. But building from source is straightforward if you've Gradle and Node.js installed.
What LiquidBounce Modules Do
The utility features are where this gets interesting. Here are the standouts:
StorageESP shows you what's inside nearby containers without opening them. Newer builds added shelf support. That means it works better with modern storage solutions. If you're running back and forth from your storage system, this cuts out repetitive clicking.
ChestCleaner (newest addition) automatically sorts and moves items according to rules you define. Set it up once, and your inventory management becomes hands-off. It's basic compared to some mod-pack utilities, but it works.
Backtrack

