frozen scythe like from hypixel skyblock

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

Grandfish

Member
Feb 8, 2021
13
0
1
22
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.
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}
[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.
 
Status
Not open for further replies.