1. 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!

  2. LOOKING FOR A VERSION OF SKRIPT?

    You can always check out our Wiki for downloads and any other information about Skript!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

frozen scythe like from hypixel skyblock

Discussion in 'Skript' started by Grandfish, Mar 23, 2021.

Thread Status:
Not open for further replies.
  1. Grandfish

    Grandfish Member

    Joined:
    Feb 8, 2021
    Messages:
    13
    Likes Received:
    0
    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 (Text):
    1. on right click:
    2.     player is holding diamond hoe named "Frost Scythe":
    3.         spawn a armor stand at location in front of player's eyes
    4.         set {_fs} to last spawned armor stand
    5.         thrust {_fs} in direction of player with force 3
    6.         add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
    7.         set the held item of {_fs} to ice
    8.         clear {_fs}
    9.         wait 2 tick
    10.         spawn a armor stand at location in front of player's eyes
    11.         set {_fs} to last spawned armor stand
    12.         thrust {_fs} in direction of player with force 3
    13.         add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
    14.         set the held item of {_fs} to packed ice
    15.         clear {_fs}
    16.         wait 2 tick
    17.         spawn a armor stand at location in front of player's eyes
    18.         set {_fs} to last spawned armor stand
    19.         thrust {_fs} in direction of player with force 3
    20.         add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
    21.         set the held item of {_fs} to blue ice
    22.         clear {_fs}
    23.         wait 2 tick
    24.         spawn a armor stand at location in front of player's eyes
    25.         set {_fs} to last spawned armor stand
    26.         thrust {_fs} in direction of player with force 3
    27.         add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
    28.         set the held item of {_fs} to ice
    29.         clear {_fs}
    30.         wait 2 tick
    31.         spawn a armor stand at location in front of player's eyes
    32.         set {_fs} to last spawned armor stand
    33.         thrust {_fs} in direction of player with force 3
    34.         add "{Invisible:1b,Invincible:1b,Small:1b}" to nbt of {_fs}
    35.         set the held item of {_fs} to packed ice
    36.         clear {_fs}
    --- Double Post Merged, Mar 23, 2021, Original Post Date: Mar 23, 2021 ---
    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.
     
  2. Shadow Klassic

    Joined:
    Sep 19, 2020
    Messages:
    20
    Likes Received:
    0
  3. Grandfish

    Grandfish Member

    Joined:
    Feb 8, 2021
    Messages:
    13
    Likes Received:
    0
Thread Status:
Not open for further replies.

Share This Page

Loading...