Solved Fire Trail behind player?

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

JustADev

Well-Known Member
Apr 8, 2017
379
9
18
22
How do I fix my skript I made to make it so that when right clicking an item, whenever the player runs, a fire trail is behind the player, ie Flint and Steel Fire (Not Particles)

Code:
code_language.skript:
on rightclick with blaze powder:
    name of player's tool is "&eFire Dash &7(Right Click)":
        set {_loc} to location 2 meters behind player
        loop 10 times:
            spawn falling block of fire at {_loc}
 
code_language.skript:
on rightclick with blaze powder:
    name of player's tool is "&eFire Dash &7(Right Click)":
        loop 10 times:
            set block at block 1 blocks backwards player to fire
            wait 8 ticks
 
  • Like
Reactions: JustADev
code_language.skript:
on rightclick with blaze powder:
    name of player's tool is "&eFire Dash &7(Right Click)":
        loop 10 times:
            set {_block} to block 1 blocks backwards player
            set block at {_block} to fire
            wait 8 ticks
            set block at {_block} to air
 
Status
Not open for further replies.