Solved particle

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

Status
Not open for further replies.

loadka95

Active Member
Feb 24, 2017
78
6
8
my problem is, the particles only shows up for the player who is shooting, but other players cant see the particle, is there any way to fix it?
code_language.skript:
on shoot:
    if projectile is egg:
        loop 10 times:
            wait 2 tick
            show 1 "heart" particles at the projectile for shooter offset by 0, 0, 0
 
Last edited:
my problem is, the particles only shows up for the player who is shooting, but other players cant see the particle, is there any way to fix it?
code_language.skript:
on shoot:
    if projectile is egg:
        loop 10 times:
            wait 2 tick
            show 1 "heart" particles at the projectile for shooter offset by 0, 0, 0

code_language.skript:
on shoot:
    if projectile is egg:
        loop 10 times:
            wait 2 tick
            show 1 "heart" particles at the projectile for all players offset by 0, 0, 0
 
its says: show 1 "heart" particles at the projectile for all players offset by 0, 0, 0 can only accept a single player not more
 
its says: show 1 "heart" particles at the projectile for all players offset by 0, 0, 0 can only accept a single player not more

code_language.skript:
on shoot:
    if projectile is egg:
        loop all players:
            loop 10 times:
                wait 2 tick
                show 1 "heart" particles at the projectile for loop-player offset by 0, 0, 0
 
  • Like
Reactions: loadka95
code_language.skript:
on shoot:
    if projectile is egg:
        loop all players:
            loop 10 times:
                wait 2 tick
                show 1 "heart" particles at the projectile for loop-player offset by 0, 0, 0
Thanks !
 
It's hilarious how skDragon makes this alot easier and efficient:
code_language.skript:
on shoot:
    if the projectile is an egg:
        drawDot count 1, particle heart, count 1, center all players, visibleRange 16, pulseDelay 2, keepFor 1 second
 
Status
Not open for further replies.