Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Creators
Details
š® Kashub ā InāGame Scripting Engine for Minecraft
Ināgame scripting and automation framework with a builtāin VSCodeāstyle editor
Tired of repetitive tasks? Want to automate farming, building, or grinding? Kashub adds a powerful scripting layer to Minecraft with a beautiful builtāin code editor inspired by VSCode.
ā” Why Kashub?
Unlike other automation mods that require external tools or complex setups, Kashub gives you everything ināgame:
- No external editors needed ā Open the editor with
K - Easy to learn ā KHScript with Lua/JavaScriptāinspired syntax
- Beautiful UI ā 10+ professional editor themes
- Multiplayerāproven ā Used on real servers in real scenarios
- Open source ā MIT License, fully transparent
š„ Key Features
Builtāin Code Editor
- Syntax highlighting for KHScript
- Autoācompletion (Ctrl+Space)
- 10+ themes ā Dracula, One Dark Pro, Tokyo Night, Cyberpunk, and more
- Search & script browser ā Find and manage scripts quickly
- Keybind support ā Launch scripts with hotkeys
Scripting Engine
- 44+ commands ā Movement, interaction, basic combat logic, inventory, world utilities
- Event system ā React to damage, ticks, chat, deaths and more
- Variables & logic ā
if/else,for,while, simple control flow - Environment variables ā e.g.
$PLAYER_HEALTH,$PLAYER_X,$PLAYER_Y,$PLAYER_Z
Developer Tools
- Logging system ā Track script execution and debug output
- Task manager ā Run multiple scripts at the same time
- Clear error handling ā Helpful error messages instead of silent failures
š” FairāPlay & Server Control
Kashub is designed to be serverāfriendly:
- Planned serverāauthoritative control (will be in update
v0.9.0-beta):- Serverāside config that can override client settings
- Ability to disable the editor on specific servers
- Ability to block specific commands / namespaces from running on the client
- The client respects server decisions and does not try to bypass them
This lets server owners decide how much automation is allowed on their server (or disable it entirely) while still letting players enjoy Kashub in singleplayer or private worlds.
š Quick Start
- Install Fabric 1.21.1 and Fabric API
- Drop Kashub into your
modsfolder - Launch Minecraft and press
Kto open the editor

- Write your first script:
// Auto-heal when low HP
onEvent onDamage {
if ($PLAYER_HEALTH < 10) {
eat golden_apple
print "Emergency heal!"
}
}
- Press F5 to run!
š” Example Scripts
AutoāFarm
// Tree farm automation
loop 100 {
lookAt nearest oak_log
mine
wait 500
}
AutoāCombat (PvEāstyle)
// Auto-attack nearby mobs
onEvent onTick {
if (nearestEntity zombie < 5) {
attack entity zombie
}
}
Smart Mining
// Mine only diamond ore
scanner start diamond_ore
loop {
if ($SCANNER_FOUND) {
pathTo $SCANNER_X $SCANNER_Y $SCANNER_Z
mine
}
wait 1000
}
šØ Customization

š InāGame Docs

š Technical Details
- Language: KHScript (custom scripting language)
- Commands: 44+ builtāin automation commands
- Loader: Fabric 1.21.1
- Dependencies: Fabric API
- License: MIT
ā Beta Notice
This is a BETA release:
- Core features are stable and usable
- Some edge cases may still exist
- Feedback and bug reports are very welcome
Please report issues on GitHub Issues.
š Links
- GitHub: https://github.com/KasperStudios/Kashub
- Documentation: Ināgame via the āDocsā button (all commands listed)
- Discord: KasHub Community
š License
MIT License ā feel free to fork, contribute, and build ports for other loaders (with proper credit).
Made with ā¤ļø by KasperStudios
Ināgame scripting and automation for power users and server owners



