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.

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) 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.

Lua Scripting

Simple, powerful
scripting

Write your own automation with a clean Lua API. Combat, pathfinding, inventory management — it's all built in.

  • Lua — easy to pick up, even if you've never coded
  • Built-in combat, pathfinding, and inventory APIs
  • Hot-reload — edit scripts without restarting
  • Docs at docs.usehexis.com
mob_hunter.lua
1hexis.script({
2 name = "Mob Hunter", version = "8.0",
3 category = "Combat",
4})
5
6local config = hexis.config({
7 mob_type = hexis.config.dropdown("Mob Type",
8 {"zombie", "wolf", "enderman"}, "wolf"),
9 radius = hexis.config.slider(
10 "Search Radius", 16, 64, 32, 8),
11 range = hexis.config.slider(
12 "Attack Range", 2.0, 4.0, 3.0, 0.5),
13})
14
15function hexis.main()
16 while true do
17 hexis.combat.hunt({
18 type = config.mob_type,
19 search_radius = config.radius,
20 attack_range = config.range,
21 })
22 hexis.wait(1.0)
23 end
24end

Join the Community

Get help, share scripts, and connect with other players

Join Discord
Active community
24/7 support
Script sharing
HEXIS

Ready toautomate?

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