Hexis

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.

Pre-built Macros

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.

3
Combat
3
Foraging
3
Utilities
Hexis pre-built SkyBlock macros for farming, mining, and foraging in Minecraft
Smart Pathfinding

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.

Obstacle avoidance
Smart navigation around blocks and entities
Multi-level support
Works across different heights and layers
Optimized routes
Finds the fastest path to your destination

How it works

Up and running in under 5 minutes

01

Sign Up

Sign in with Google or Discord. Takes about 10 seconds.

02

Download

Grab the Minecraft Fabric mod from the dashboard. Drop it in your mods folder.

03

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
farming.lua
1-- Simple farming script
2local hexis = require("hexis")
3
4-- Configuration
5local CROP = "wheat"
6local FARM_AREA = {x1 = 100, z1 = 200, x2 = 150, z2 = 250}
7
8-- Main farming loop
9while hexis.isEnabled() do
10 -- Navigate to farm
11 hexis.pathfind(FARM_AREA.x1, FARM_AREA.z1)
12
13 -- Harvest and replant
14 for x = FARM_AREA.x1, FARM_AREA.x2 do
15 for z = FARM_AREA.z1, FARM_AREA.z2 do
16 if hexis.getCrop(x, z) == CROP then
17 hexis.harvest(x, z)
18 hexis.plant(x, z, CROP)
19 end
20 end
21 end
22
23 hexis.wait(1000)
24end

Join the Community

Get help, share scripts, and connect with other players

Join Discord
Active community
24/7 support
Script sharing

Ready toautomate?

Discounted while we're in beta. Sign up, install the Minecraft mod, and automate Hypixel SkyBlock.