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

    Skript mirror spawn ice block dust particle

    Im trying to spawn an ice break particle but for some reason passing Particle.BLOCK_DUST and Material.REDSTONE_BLOCK.getData() (using redstone cause i copied this and not important), but the console keeps giving me the error: 10.05 17:38:26 [Server] [Skript] No matching non-static field...
  2. I

    Check player that is riding said mount?

    How do i find the player that is riding a select mount, if there is one. Thanks!
  3. I

    PLZ HELP WHY THIS IS NOT WORKING!

    So i wrote a script for temporary platforms for a kit im making and here it is: on right click: if offhand tool of player is clay: player is wearing diamond boots block below player is air set {checkblock.%player%} to block below player block south of {checkblock.%player%} is air...
  4. I

    Help stop placement on lava

    Im looking for a script that stops block placement if it were to cover up a lava block and other things. ive written this script: on block place: player is wearing diamond boots if targeted block is lava or nether sprouts: cancel event send "dont ruin our builds k?" to player The issue...
  5. I

    Solved How to make enchantment level based on variable

    I want to write a line of skript that sets the enchantment someone recieves to their {rebirths.%player%} variable. I tried: command /test: trigger: enchant player's tool with sharpness {rebirths.%player%} didnt work... plz help
  6. I

    Not killing event-entity

    on vehicle exit: if event-entity is a horse: kill event-entity this does not kill the horse for some reason... PLEASE HELP! TYSM!! im trying to make a horserider kit that debuffs the horserider when it leaves the horse, but it seems to not execute any code beyons if event-entity is a...
  7. I

    ):< WHY DOES THIS NOT WORK

    on rightclick with wither skeleton spawn egg: cancel event remove wither skeleton spawn egg from player spawn wither at location of player set name of last spawned wither to "&b%player%'s Wither" add last spawned entity to {target.%player%::*} set max health of last spawned entity to 20...
  8. I

    Solved Ok so this is a request...

    OK, so dont feel obligated to do this, but... Basically I want to make it so that when someone places a Lightning Rod named "&e&lLightning Striker" it plays a warning sound around it (in radius of 3) for 2 seconds, then lightning strikes it and kills any entity around it (in radius of 2) and...
  9. I

    Solved Help me weaken/remove melee attacks from tridents on my server

    Hi, i want to make it so that when you melee with a trident that it does significantly less damage, or does not do damage at all. Here is the code i have written, but it does not work: on left click: if player's held item is trident: send "You cant melee with this item" to player...
  10. I

    Solved How do you make a loop run until you run a command and then terminate the second that command is run

    And make it so no matter what the thing will not happen again you see, im tryin to make it so that random events occur in my kitpvp, but when i made a while script with a varible, when i quickly toggle on and off the script, it runs two of them, because the while loop resumes when i run the...