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

Pre-built macros for every Skyblock skill. Farming wheat, mining mithril, foraging wood, fishing — all tested and ready to go out of the box.

12+
Farming Scripts
8+
Mining Macros
6+
Foraging Tools
10+
Fishing Bots
Pre-built Macros Preview
Smart Pathfinding

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.

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 Fabric mod from the dashboard. Drop it in your mods folder.

03

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
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?

Free while we're in beta. Sign up, install the mod, pick a script.

No credit card needed.