#How to make rotating particles around the marker and make it go up and down using sine motion?

1 messages · Page 1 of 1 (latest)

marsh valve
#

Hey guys, I am making a custom world and I need help with this to make it like these two pictures

#

I took those pictures from kiwismp.fun Minecraft oneblock server.

teal vapor
uncut jungle
#

for better readability

tp @s ~ ~ ~ ~10 ~
particle totem_of_undying ^ ^ ^1 0 0 0 1 0 normal
particle totem_of_undying ^ ^ ^-1 0 0 0 1 0 normal
marsh valve
#

So how can i make it go up and down using sine motion?
Because when I was on the server the particles were going up and down repeatedly

#

If you want I can record a video and send it to you.

uncut jungle
#

execute this function as and at the marker

scoreboard players add @s <Scoreboard> 1
execute if score @s <Scoreboard> matches 21.. run scoreboard players set @s <Scoreboard> 0
execute if score @s <Scoreboard> matches ..10 run tp ~ ~.07 ~
execute if score @s <Scoreboard> matches 11.. run tp ~ ~-.07 ~
marsh valve
#

Doesn't it need any reseting scoreboard?

uncut jungle
marsh valve
#

How can I do it?
Could you please show the command?

uncut jungle
#

this command creates a new scoreboard with the name temp

scoreboard objectives add temp dummy
#

make sure you put this command in the load function

marsh valve
#

Ok, thanks a lot 🙂