Recent content by GooMooPunch

  • 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. G

    How to make a negative condition

    You could just make it so you only get slowness while walking on dirt or grass. on walking on dirt or grass: if {uuid::slow%player%} is false: apply slowness to player for 1 second set {uuid::slow%player%} to true wait 0.999999 seconds set {uuid::slow%player%}...
  2. G

    How to check if a name has been taken

    Maybe this will do it? command /example <text>: trigger: if {taken::*} contains arg-1: send "&c&lThis is taken!" stop else: send "&4&lDid world thing!" add arg-1 to {taken::*} You just gotta add like make console execute...