How to load a Script? - LucFr1746/Minecraft-Coding GitHub Wiki

Scripts are not loaded when you save their sk files. Instead, they are loaded on the server startup or when you use the /sk reload command:

/sk reload hello # loads the script with the name "hello"
 
/sk reload subFolder/hello.sk # loads the script with the name "test", in 'scripts/subFolder/'
/sk reload subFolder/ # loads all scripts in 'scripts/subFolder/'
/sk reload scripts # loads all scripts

Go on trying it! Now when joining your server "Welcome to Skript!" will be broadcast to all users!

Any errors with your script will be shown in the chat to the user who typed the reload command or the server console. Unlike plugins, with scripts, you don't need to restart your server to add or update features. It can all happen through the reload command. However, be careful as this can also cause a small freeze on your server that your players might experience when loading large scripts.

Now that you can create and load scripts, let's get into the core concepts of Skript!