#how could i make particles like this?
1 messages · Page 1 of 1 (latest)
permission: sword.op
trigger:
set {_team} to "purple-glow"
execute console command "team remove %{_team}%"
execute console command "team add %{_team}%"
execute console command "team modify %{_team}% color light_purple" # Light purple nametag
execute console command "team modify %{_team}% nametagVisibility always"
execute console command "team join %{_team}% %player%"
apply glowing to player for 100 seconds
send "&dYour purple glow effect is now active for 100 seconds!"
set {_player} to player
loop 5000 times:
set {_trailLoc} to location of {_player}
add vector(0, 0.3, 0) to {_trailLoc} # Adjust height
loop 3 times:
set {_offset} to vector(random number between -0.05 and 0.05, random number between -0.05 and 0.05, random number between -0.05 and 0.05)
draw 1 of soul_fire_flame at {_trailLoc} with offset {_offset} with extra 0.02
draw 1 of portal at {_trailLoc} with offset {_offset} with extra 0.02
draw 1 of witch at {_trailLoc} with offset {_offset} with extra 0.02
wait 2 ticks ```
Why console commands and not team syntax
loop 5000 times 
when we want it to be infinte but havent discovered while loops
loop 5000 times 💀
why wouldnt u just use like some cosmetics plugin :D (yeah im not trying to make anyone stop coding and learning but... always an option :D)