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

    Leashing two armor stands

    Hi, is there a way for me to connect a leash between two armour stands that have a certain name, if so could you point me in the right direction? Thanks
  2. J

    Hats

    Hi, I'm making a hat system where a player will right-click on an item and that item will then get removed from the players tool slot and be set to their head slot. I've got that part working just fine but my issue is, how would I be able to set a new hat on the player If they already have a...
  3. J

    Destroy Blocks

    Hi there, is there a way to remove a certain type of block that the player clicks on and any blocks connected to that one? In other words, A player hits a block of stone that block along with every stone block connected to it gets removed
  4. J

    Solved Not hurting certain players

    Thank you, this is exactaly what I'm looking for!
  5. J

    Solved Not hurting certain players

    Thanks, I'm still not 100% sure how this would work though I have this but I need it so that if the player who shot the snowball is also in the same team it won't hurt them on damage: if damage cause is block explosion: if {%victim%.team} is 1: cancel event broadcast "True"
  6. J

    Solved Not hurting certain players

    Hi there, I'm working on this new system where you can throw a snowball and when it falls it creates an explosion. Is there a way to make it that if a player is a certain variable it wont hurt them? on projectile hit: projectile is a snowball create safe explosion of force 3 at location
  7. J

    Solved Custom projectiles

    Thanks, the loop doesn't seem to be working though. Do you know how to fix that?
  8. J

    Solved Custom projectiles

    Hi there, I was wondering if there was a way to summon a snowball or something with a custom name. Then make an armor stand follow it and if the ball hits a player they take damage. I am trying to make a custom 3D model item (like a bullet) fly through the air when someone uses it. I also need...
  9. J

    Adding an effect to a damaged player

    Hellow, I have been working on this new system where a player can shoot a snowball at a player, however, I would like the player that gets hit to get slowness for 5 seconds. Here is my current code: on rightclick: player is holding wooden hoe shoot a snowball at speed 1
  10. J

    Solved Teleporting an Armor Stand above a player

    Hello, I was wondering if there was a way to make a skript at would teleport an armor stand to the player's location but have a set y value of 70. The command doesn't need to loop, Thanks
  11. J

    Solved Checking if a variable has a certain value

    Hey there, I was wondering if there was a way to check if the variable has a value of 1 here is my code if arg 1 is "check": if {var.Right} is at 1: make console execute command "bc Hi"
  12. J

    Displaying colored leather armor

    Hey there, I was wondering if there was a way to display colored leather armor in a GUI. Any help would be great. Thanks :)
  13. J

    Moving armorstands around in a circle

    Hey there, I was wondering if someone could please help me or make me a skript that would allow me to set the coords of a center block and then the radius and how many carts I wish to have and it would spawn that amount of carts in a circle around the center point. Then it would start moving...
  14. J

    Setting a count

    Thanks for your help and I'm sure it's fine but I just don't really know Skripts all that well
  15. J

    Setting a count

    Alright, thanks. But I don't understand sorry
  16. J

    Setting a count

    Thanks but how would I keep each players points recorded?
  17. J

    Setting a count

    Hey, so I was wondering if there was a way to make it so when a player (who has perms) runs a command say /countlist playername topic they can see how many points they have in that area and then another command can do /countset playername topic points to add points to the player in the topic...
  18. J

    Testing for a block

    Hey there, I was wondering if there was a way where I could do a command say /block [Coords] or something like that and in the code, there would be if the block at the coordinates that were entered was a green wool block it would broadcast a message.
  19. J

    Not allowing players to exit an armorstand

    Hey there, I have this system where a player can sit on an armorstand but they can press shift to get off. I want it so they will be stuck on the armorstand untill the entity is kill. Overall - Can someone please help me make a system when a player is sitting on an armorstand and tries to leave...