make some block falling with animation

  • 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.

AlfaLe0

Member
Mar 2, 2018
25
0
0
34
I need a script that create some falling block like Meteor in the sky... they don't have only to fall in vertical but like that
-
. ......-
. ............ -
. ................ -
. ....................... -
- -- ---------------- --- - -
is it possible?
 
Last edited:
Last edited:
If you spawn the falling block and then push it to the right until its it the ground
 
code_language.skript:
command /meteor [<text>]:
    trigger:
        if arg-1 is "loc":
            set {meteor::startloc} to location of player
            message "meteor location set"
            stop
        if {meteor::startloc} is not set:
            message "use &e/meteor loc &rfirst"
            stop
        if arg-1 is not set:
            message "meteor starting!"
            spawn falling block of stone at {meteor::startloc}
            set {_fb} to last spawned falling block
            while ground state of {_fb} is false:
                push {_fb} west at speed 0.07
                wait 2 ticks
            message "meteor landed!"
requires SkQuery and Skellett
 
Status
Not open for further replies.