Skip to content
home/templates/custom join particles
cosmeticBeginnernewmc 1.20.x – 1.21.x15 lines

custom join particles

when a player joins, spawn a ring of particles around them and play a sound. vips get a fancier effect.

required addons — install before reloading
  • download skBeeAdds scoreboards, hologram text, and other things Skript can't do on its own.
Drop each .jar into your plugins/ folder, then restart your server.
join-particles.sk15 lines
on join:
    play sound "entity.player.levelup" with pitch 1.5 to player
    set {_loc} to location of player
    # Ring of particles around the player
    loop 36 times:
        set {_angle} to loop-number * 10
        set {_x} to cos({_angle}) * 1.5
        set {_z} to sin({_angle}) * 1.5
        draw 1 of happy_villager at {_loc} ~ vector({_x}, 0, {_z})
    if player has permission "vip.particles":
        # Fancier VIP effect — column of fireworks particles
        loop 5 times:
            draw 5 of firework at {_loc} ~ vector(0, loop-number, 0)
        play sound "entity.firework_rocket.launch" to player

get it running

join-particles.sk · 15 lines · needs skBee
  1. 1

    copy or download

    grab the .sk file with the buttons up top.

    join-particles.sk· ready to drop in
  2. 2

    drop it in your scripts folder

    save it exactly here on your server — no typos, just copy the path:

    …/plugins/Skript/scripts/join-particles.sk
  3. 3

    reload in-game

    run this in chat or console — your script goes live instantly:

    /sk reload join-particles
that's it — your script is live. hop in-game to try it.
/ related templates

more cosmetic templates

comments