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 skBee ↗Adds 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
copy or download
grab the .sk file with the buttons up top.
join-particles.sk· ready to drop in - 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
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
cosmetic
custom death messages
replace the default death messages with custom colored variants. different message per damage type (pvp, fall, lava, drown, etc.)
cosmeticevent countdown bossbar
display a server-wide bossbar counting down to a timed event. color shifts from green → yellow → red as time runs out.
cosmetichex gradient chat text
send chat messages with smooth hex-color gradients (think rainbow ranks or fade-from-red-to-yellow). Skript 2.7+ supports the syntax — this template wraps it in a reusable function.