How To Add Particles

  • 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 community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Pykaxe

Member
Jul 26, 2017
32
1
0
I have skDragon but don't know how to add this exact particle to my server:

Muttvcj.png


I want this particle effect to show up when the victim dies, and it only appears for 1 second.

Thanks
 
It looks like redstone block break particles I think? Most servers use those for death particles as well. Here's my set up. to adjust the time, change the keepFor ticks at the end. the location variable makes it so that the particles display in the middle of the player and not their feet.
code_language.skript:
on damage of player:
    set {_loc} to the location 1 meter above the victim
    drawDot count 5, particle "blockcrack", material redstone block, XYZ 0, 0, 0, center {_loc}, visibleRange 320, pulseDelay 0, keepFor 10 ticks
 
@Wynnevir Thanks but thats redstone block not redstone item
You didn't mention you wanted the item x3 but just change the material and particle for whatever one you want. the SKDragon documentation has a list of all available particle types.
 
  • Like
Reactions: Elsmok
Status
Not open for further replies.