Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Links
Tags
Creators
Details
Fabric.SK is a serverâside Skript engine for Fabric, allowing you to write simple, readable .sk scripts to automate gameplay, create commands, react to events, and build lightweight server logic â all without plugins or mods on the client.
Fabric.SK brings the spirit of Bukkit Skript to the modern Fabric ecosystem with a clean parser, AST engine, and runtime designed specifically for 1.21+.
⨠Features
-
â Serverâside only â no client mod required
-
â Skriptâstyle syntax (command, on join, broadcast, if, etc.)
-
â Full parser + AST engine
-
â Dynamic command registration (/skcmd <name>)
-
â Event system (on join, on chat, etc.)
-
â Variables + execution context
-
â Hot reload with /fabricsk reload
-
â Scripts stored in
config/fabricsk/scripts/(May be changed in some versions)
đ Example Script
# example.sk
broadcast "Fabric.SK is running!"
command hello:
trigger:
broadcast "Hello from Skript on Fabric!"
on join:
broadcast "%player% joined the server!"
if true:
broadcast "This condition is true!"
else:
broadcast "This will not run."
đ Script Location
Place .sk files in config/fabricsk/scripts/
Reload with:
/fabricsk reload
đ§ Roadmap Variables with persistence
More events (chat, death, block break, etc.)
Expressions (player name, location, etc.)
Conditions (player is op, name is "DemoMC___", etc.)
Effects (kick, teleport, give, etc.)
Addon API
Fabric.SK - Create scripts in Fabric.


