multiple people issue

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

anysad

Member
Apr 21, 2021
1
0
1
18
So I'm having a problem with my command for the mlg, when I run the command it shows it only for me, and the counting down will appear to my friend only when my runs out, any help?

command /mlg:
trigger:
loop all players:
loop 1 times:
send action bar "3" to loop-player
wait 1 second
send action bar "2" to loop-player
wait 1 second
send action bar "1" to loop-player
wait 1 second
send action bar "Good luck!" to loop-player
teleport loop-player to block 100 above block at location of loop-player
give loop-player water bucket
 
Hey! Its been a long time since I've used Skript, but this should work

Code:
command /mlg:
    trigger:
        send action bar "3" to all player's
        wait 1 second
        send action bar "2" to all player's
        wait 1 second
        send action bar "1" to all player's
        wait 1 second
        send action bar "Good luck!" to all player's
        loop all players:
            teleport loop-player to block 100 above block at location of loop-player
            give loop-player water bucket
 
Status
Not open for further replies.