Minecraft command particles follow armorstand?

El
1

I wanted to know what a command looks like with which a particle effect in Minecraft 1.15.2 can be followed by an armorstand.

Fe

Here:

Create Armor Stand with:

/ summon minecraft: armor_stand ~ ~ ~ {CustomName: "\" particle holder \ ""}

and then on a clock or repeating command block:

/ execute as @e [type = minecraft: armor_stand, name = "particle holder"] at @e [type = minecraft: armor_stand, name = "particle holder"] run particle minecraft: angry_villager ~ ~ ~ 0 0 0 0.1 100

then you can do the Particle part as you want in the 2nd Command.

And you can move it with teleport:

/ execute as @e [type = minecraft: armor_stand, name = "particle holder"] at @e [type = minecraft: armor_stand, name = "particle holder"] run tp @s x y z

(you move it to x y z)

This command does the whole thing only on armor stands that have the name "particle holder". If you want to let that out you do:

/ execute as @e [type = minecraft: armor_stand] at @e [type = minecraft: armor_stand] run particle minecraft: angry_villager ~ ~ ~ 0 0 0 0.1 100

and the same for the teleport. If you want to use different names to replace different armor stands independently, simply replace the word particle holder in all commands with the new name.