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

    Solved Stop fire charge launch

    How can i stop fire charge launch with dispensers?
  2. F

    Solved Set block problem.

    Well, i tried to do a "/blocks" command, just to make the player place "hidden blocks". I tried with the full stone slab block, and it worked, but with the "4 faced oak block" it doesn't seem to work. Here is my code: on place: if player's tool is oak log named "&7Full faced oak block"...
  3. F

    Solved Problem with inventory click

    When i try to click a slot in the inventory, when i click it, it does what the next slot of the inventory do. See what i'm doing wrong: if inventory name of player's current inventory is "&bEnchantements": if clicked inventory is not player's inventory: cancel event...
  4. F

    Solved Give enchanted books without the console

    Hi guys, i'm trying to give to players enchanted books without the console. I tried this: command /givebook: trigger: give an enchanted book to player But... Nothing. I tried many different ways, but none of these is great. The question is: How to give enchanted books (enchantement...
  5. F

    How to check an entity name?

    Hello. I want to check the name of an entity that was killed to regenerate it. Just like.. MMORPGs. I have a foundation to do it, but it doesn't check the name of the killed entity, then i can't do nothing.. That's the skript: on death: if victim is a pig named "&7Pig [Lvl.&a1&7]"...
  6. F

    How to make zombie barricate?

    I want to make a zombie barricate system like hypixel: every 1 second: loop all players: if block under the loop-player is sponge: if loop-player is sneaking: if {locazione1} > 0: if {locazione1} is 6: set...
  7. F

    Solved How to make an entity follow a path?

    I want to spawn a zombie and to make this zombie follow a way. Do i need to make him teleport? EXAMPLE: command /spawnzombie: trigger: spawn a zombie at {zombielocation::1} loop 200 times: teleport last spawned zombie to {zombielocation::%1 + loop num%} command...
  8. F

    Solved Walk on water?

    I need to do a skript when you walk on water, it sets a block under you for 2 seconds to make you walk on it. This is the code: on any move: if block 1 blocks forwards player is water: set {_block1} to block 1 forwards player set block at {_block1} to glass set...
  9. F

    Solved How to check if a entity is hitted by player?

    Do you know the server Mineplex? If yes, i want to know how to check if a slime is hitted by player just by walking. (like slimeball)
  10. F

    Solved Doing an Hologram?

    Hi guys, i'm LoryWasHere and today i'm asking you something that i'm looking for in the skunity docs and in the forum for months. I'm asking you how to create an Hologram then how to delete it, because if i use Umbaska's syntax, i get an error... Like if it doesn't seem to be in the syntax...
  11. F

    Solved Random element out of.

    I want to create a murder skript, but i'm in trouble.. I need to do that the skript select a random player in the server, and make it murder or detective.. I already do it, but the thing can make a player both murder and detective.. Please help
  12. F

    Solved Player's tool problem

    How can i remove 1 of player's tool from player's hand?
  13. F

    Solved How to loop all players at the same time?

    Hi guys. I'm ""new"" at scripting, and i'm here because i need help. I made a speedrun skript, where the players, with a command, are teleported in a location. The problem is that the "loop all players" doesn't work at the same time, because it teleports all players one by one, doing the trigger...