Minecraft 1.21.11 · Fabric

Dusk

A hand-tuned ghost client for modern Minecraft. Crystal PvP, clean movement, and native visuals in one lightweight install for 1.21.11.

Pricing, soon.

Plans are still being finalized. Join the Discord to get notified the moment access opens.

Join the Discord →
80+Modules
1.21.11Latest Fabric
NativeCustom GUI
LuaScripting API
Configs, profiles & Lua

Flexible.

Save and hot-swap full setups, from subtle to blatant. When a module does not exist yet, write it in Lua, register callbacks, and reload live from the GUI.

Read the scripting docs
scripts / lowhop.lua
-- register a module in one file local m = client.module("LowHop", "Movement") local height = m:number("Height", 0.42, 0, 1) m:on("tick", function() if player.on_ground() then player.jump(height:get()) end end) return m -- live-reloads on save