so im trying to re-create the frozen scythe from hypixel skyblock in skript. so basically what is does is it shoots a couple of armor stands holding blocks of ice, in like a dart formation, and it deals damage and slows things. There are also like snow/spit particles. This is my current code, but when i try to put it the no gravity nbt tag, the armor stand just floats there.
[doublepost=1616519641,1616519308][/doublepost]ok so what i want is a thing that shoots a ice dart that deals damage, pierces things, and slows down the things that it hits.
Code:
on right click:
player is holding diamond hoe named "Frost Scythe":
spawn a armor stand at location in front of player's eyes
set {_fs} to last spawned armor stand
thrust {_fs} in direction of player with force 3
add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
set the held item of {_fs} to ice
clear {_fs}
wait 2 tick
spawn a armor stand at location in front of player's eyes
set {_fs} to last spawned armor stand
thrust {_fs} in direction of player with force 3
add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
set the held item of {_fs} to packed ice
clear {_fs}
wait 2 tick
spawn a armor stand at location in front of player's eyes
set {_fs} to last spawned armor stand
thrust {_fs} in direction of player with force 3
add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
set the held item of {_fs} to blue ice
clear {_fs}
wait 2 tick
spawn a armor stand at location in front of player's eyes
set {_fs} to last spawned armor stand
thrust {_fs} in direction of player with force 3
add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
set the held item of {_fs} to ice
clear {_fs}
wait 2 tick
spawn a armor stand at location in front of player's eyes
set {_fs} to last spawned armor stand
thrust {_fs} in direction of player with force 3
add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
set the held item of {_fs} to packed ice
clear {_fs}