
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
A growing library of Hypixel SkyBlock scripts covering combat, foraging, utilities, and more — all tested and ready to go out of the box. Write your own with the Lua API or grab a pre-built one and hit run.

Navigate anywhere, automatically
A* pathfinding for Minecraft that handles jumps, ladders, and obstacles. Call `hexis.pathfind(x, z)` in your Lua 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 Minecraft Fabric mod from the dashboard. Drop it in your mods folder.
Automate
Pick a pre-built SkyBlock 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?
Discounted while we're in beta. Sign up, install the Minecraft mod, and automate Hypixel SkyBlock.