Compatibility
Minecraft: Java Edition
Platforms
Creators
Details
Skript
Skript is a Minecraft plugin for Paper, which allows server owners and other people to modify their servers without learning Java. It can also be useful if you do know Java; some tasks are quicker to do with Skript, and so it can be used for prototyping etc.
command /sethome:
permission: skript.home # Permission required for this command
description: Set your home # Description of this command
executable by: players # Console won't be able to run this command
trigger: # The actual trigger/code that will run when someone do /sethome
# Set a unique variable to sender's location
set {home::%uuid of player%} to location of player
# Send a message to the sender
message "Set your home to <grey>%location of player%<reset>"
command /home:
permission: skript.home
description: Teleport yourself to your home
trigger:
# Check if that variable we used in /sethome has been set (in other words, if player ever ran /sethome)
if {home::%uuid of player%} is not set:
message "You have not set your home yet!"
stop trigger # stop the code here, lines below won't run
# Teleport the player to their home
teleport player to {home::%uuid of player%}
send "&aYou have been teleported."
This Github fork of Skript is based on Mirreski's improvements which was built on Njol's original Skript.
Requirements
Skript requires Paper to work. You heard it right, Spigot does not work.
Skript supports the last 18 months of Minecraft versions, counting from the release date of Skript's newest version. For example, this means that 1.20.4 is supported, but 1.20.3 is not.
New Minecraft versions will be supported as soon as possible.
Download
You can find the downloads for each version with their release notes in the releases page.
Four major feature updates are expected each year in January, April, July, and October, with monthly patches occurring in between. For full details, please review our release model.
Documentation
Documentation is available here for the latest version of Skript.
Reporting Issues
Please see our contribution guidelines before reporting issues.
Help Us Test
Wanting to help test Skript's new features and releases? You can head on over to our Official Testing Discord, and whenever we start testing new features/releases you will be the first to know.



