Skip to content
Voltar ao Blog
LiquidBounce module menu interface showing toggleable utility features in Minecraft client

LiquidBounce: The Open-Source Utility Mod for Minecraft

ice
ice
@ice
Updated
88 visualizações
TL;DR:LiquidBounce is an open-source Fabric utility mod that injects customizable modules into your Minecraft client. Built with Kotlin and actively maintained, it's popular with players who want granular control over inventory management, entity rendering, and client behavior - but only for single-player or mod-friendly servers.
GitHub · Minecraft community project

LiquidBounce (CCBlueX/LiquidBounce)

A free Minecraft hacked client (utility mod) for Fabric

Star on GitHub ↗
⭐ 2,163 stars💻 Kotlin📜 GPL-3.0

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:

bash
git clone - recurse-submodules https://github.com/CCBlueX/LiquidBounce
cd LiquidBounce./gradlew genSources

That ` - 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:

bash
./gradlew runClient

This 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

Frequently Asked Questions

Is LiquidBounce safe to use on servers?
Only on servers that explicitly allow custom clients. Most vanilla multiplayer servers ban LiquidBounce and detect it immediately through anti-cheat. Always check server rules first. It's safe for single-player survival and private communities that welcome Fabric mods.
What's the difference between LiquidBounce and regular Fabric mods?
LiquidBounce uses mixins to inject code at runtime without shipping Minecraft's code, making it modular and lightweight. Individual features can be toggled on/off. Regular mods are self-contained. LiquidBounce is more like a framework of utilities than a single mod.
Does LiquidBounce work with the latest Minecraft version?
LiquidBounce is actively maintained and updates for current Minecraft versions. Check the GitHub releases page to confirm your specific version is supported. Building from source requires Gradle and Node.js to be installed.
What does GPL-3.0 licensing mean for LiquidBounce?
It's completely free and open-source. You can read the code, modify it, and share modifications - but any changes must also be GPL-3.0 licensed. You can't use LiquidBounce code in closed-source applications.
Can I use LiquidBounce alongside other Fabric mods?
Usually yes, but conflicts can happen if mods modify the same code. The mixin system lets LiquidBounce inject cleanly, but mixing with similar utility mods (Meteor, Wurst) can cause problems. Test your module combination and disable redundant features.