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

    How to make a player take less damage?

    So, I've been trying to make a skript where a player takes less damage depending on how much their {presistance::%attacker's uuid%} is (1 is the least and 20 is the most) Now I've tried many different codes but the best I've came up with is this: on damage: if victim is a player...
  2. V

    Solved issue with disabling a command

    So I want to make a skript where if {lobbyspawn::%player's uuid%} is true you can not execute the command /spawn and it sends an action bar that says "&cYou need to unlock a world first" and if {lobbyspawn::%player's uuid%} is false you can use /spawn, I have tried many ways but it doesn't seem...
  3. V

    Problem with Personal and Serverwide boosters

    Hey! So I have this skript: The problem is that these only work for 1 player, the player who activated it, so I want it to work for everyone on the server if one player activated it. How should I try to do that or how do I do thats? Pls help and note that I'm a starter skripter and don't know...
  4. V

    Can't compare 'name of clicked item' with a text

    Hey! So I have this booster skript I just started and it has some issues, I'm a starter skripter so I don't know much about skript. It has the error: Can't compare 'name of clicked item' with a text: on right-click with orange dye: HERE --> if name of clicked item is "&b2x...
  5. V

    Skript Skript Egg Hunt Issue

    So this is my skript: on right click on turtle egg: if {foundeggs.%player%} contains "%location of event-block%": send "&cYou've already found this egg!" to player else: if {eggcount.%player%} is not set: set {eggcount.%player%} to 1 else if {eggcount.%player%} is 29...