Search results

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. Skriptex

    Script Kits 1.0

    Kits is a simple script that allows you to create your own kits. The main command is "kits". You can also use "kit." To create a kit, use: /kits create <name>. To delete a kit, use: /kits delete <name>. You have to be an op to create and delete kits. Now, to get a kit, use: /kits get...
  2. Skriptex

    Tag/Color in nametag of player

    You can't.
  3. Skriptex

    Custom Command In World

    options: world: "spawn" command /fly: executable by: players trigger: if the player's world isn't {@world}: send message "Unknown command. Type ""/help"" for help." to the player else: if the player can't fly: allow flight to...
  4. Skriptex

    help config file

    # File 1: options: message: "Hello!" on script load: set {message} to {@message} # File 2: command /s: trigger: send {message}
  5. Skriptex

    Script Moderation - New feature: you can punish players

    Notes: Banishments has been renamed. Now it's Moderation. New features: You can punish (which is a temporary ban) players. You have to be an op to punish players. New commands: /punish <player> <time> [reason]
  6. Skriptex

    Script Moderation 2.0

    Moderation is a simple script that includes some moderation features for you server. Moderation currently allows you to ban and punish (which is a temporary ban) players from the server. Commands: /ban <player> [reason] /punish <player> <time> [reason] /pardon <player> You have to be an op...
  7. Skriptex

    Kits

    Kits is a simple script that allows you to create your own kits. The main command is "kits". You can also use "kit." To create a kit, use: /kits create <name>. To delete a kit, use: /kits delete <name>. You have to be an op to create and delete kits. Now, to get a kit, use: /kits get...
  8. Skriptex

    Banishments

    Banishments is a simple script that allows you to ban players from your server. You can ban a player: /ban <player> [reason]. To pardon a player: /pardon <player>. You have to be an op to use these commands.
  9. Skriptex

    Solved Teleport player in world?

    This should work: command /survival: executable by: players trigger: set {_x} to -67 set {_y} to 67 set {_z} to 58 set {_world} to "survival" set {_location} to the location at {_x}, {_y}, {_z} in {_world} teleport the player to {_location}