
Stop Grinding.Start Scripting.
Write simple Lua scripts to automate the boring parts of Skyblock. Or use our pre-built macros and start right away.
Free in beta.
Pick a script, hit run
Pre-built macros for every Skyblock skill. Farming wheat, mining mithril, foraging wood, fishing — all tested and ready to go out of the box.

Navigate anywhere, automatically
Point-to-point navigation that handles jumps, ladders, and obstacles. Call `hexis.pathfind(x, z)` in your script and it figures out the rest.
How it works
Up and running in under 5 minutes
Sign Up
Sign in with Google or Discord. Takes about 10 seconds.
Download
Grab the Fabric mod from the dashboard. Drop it in your mods folder.
Automate
Pick a pre-built macro or write your own Lua script. AFK the rest.
Simple, powerfulLua scripting
Write your own automation with a clean Lua API. Pathfinding, crop detection, inventory management — it's all built in. Save your script, hit run.
- Lua — easy to pick up, even if you've never coded
- Built-in pathfinding, inventory, and crop APIs
- Hot-reload — edit scripts without restarting
- Docs at docs.usehexis.com
1-- Simple farming script2local hexis = require("hexis")34-- Configuration5local CROP = "wheat"6local FARM_AREA = {x1 = 100, z1 = 200, x2 = 150, z2 = 250}78-- Main farming loop9while hexis.isEnabled() do10 -- Navigate to farm11 hexis.pathfind(FARM_AREA.x1, FARM_AREA.z1)1213 -- Harvest and replant14 for x = FARM_AREA.x1, FARM_AREA.x2 do15 for z = FARM_AREA.z1, FARM_AREA.z2 do16 if hexis.getCrop(x, z) == CROP then17 hexis.harvest(x, z)18 hexis.plant(x, z, CROP)19 end20 end21 end2223 hexis.wait(1000)24endJoin the Community
Get help, share scripts, and connect with other players
Ready toautomate?
Free while we're in beta. Sign up, install the mod, pick a script.
No credit card needed.