"make player" not working...

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

    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!

N4ta

Member
Jul 20, 2023
1
0
1
Hello, I am making a FPS Minigame where I have a weapon that throws explosives.
I did this by making the shooter summon a potion that upon landing create an explosion
Code:
on projectile hit:
    if "%projectile%" is "thrown potion":
        create a safe explosion of force 3 at projectile

However, I wanted the shooter to get credit for the explosion, so I did this:
Code:
make shooter create a safe explosion of force 3 at projectile

But when I reload a skript, it says that this expression isn't understood. Do I need a library to do this, or is there a different syntax? Thanks for the help.