Recent content by TadaFireworks

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

  1. TadaFireworks

    Can't create a new book with skellett

    I have the following code: command /help: trigger: set {_book} to new book add page "Testing" to {_book} open book {_book} to player That gives the error that it can't understand expression: new book What is the problem, and how do i make it work?
  2. TadaFireworks

    Move location in a straight line

    That's cool and all, but i will have a delay after every iteration and the particle is going to play the whole way. Like a bullet. I actually figured out how to dhttpso this properly, so if anyone wonders: command /test: trigger: set {location} to head location of player set {yaw} to...
  3. TadaFireworks

    Move location in a straight line

    I have the following code, that i expect to move 10 blocks and every step create a particle effect. The thing is, that it doesn't do that, resetting it's rotation after the first step. command /test: trigger: set {location} to location of player loop 10 times: set {location} to...