Make everyone say something

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

Deleted member 6377

Skript Version: 2.2
Minecraft Version: 1.7.10 and 1.8.9

Code:
code_language.skript:
command /guccigang:
    permission: guccigang.use
    permission message: &cyou ain't got any perms buddy L
    trigger:
        loop all players:
            make loop-players say "Gucci Gang"
            execute console command "title @a title {text:'Gucci Gang',color:'red',bold:true}"
            wait 12 ticks
            make loop-players say "Gucci Gang"
            execute console command "title @a title {text:'Gucci Gang',color:'light_purple',bold:true}"
            wait 12 ticks
            make loop-players say "Gucci Gang"
            execute console command "title @a title {text:'Gucci Gang',color:'yellow',bold:true}"
            wait 12 ticks
            make loop-players say "Gucci Gang"
            execute console command "title @a title {text:'Gucci Gang',color:'green',bold:true}"
            wait 12 ticks
            make loop-players say "Gucci Gang"
            execute console command "title @a title {text:'Gucci Gang',color:'aqua',bold:true}"
            wait 12 ticks
            make loop-players say "Gucci Gang"
            execute console command "title @a title {text:'Gucci Gang',color:'dark_aqua',bold:true}"
            wait 12 ticks
            execute console command "title @a title {text:'Gucci Gang',color:'blue',bold:true}"
            make loop-players say "Gucci Gang"
            wait 6 ticks
            execute console command "title @a title {text:'Gucci',color:'blue',bold:true}"
            wait 6 ticks
            execute console command "title @a title {text:'Gang',color:'light_purple',bold:true}"
            make loop-players say "Gucci Gang"
            wait 6 ticks
            execute console command "title @a title {text:'Gucci',color:'gold',bold:true}"
            wait 6 ticks
            execute console command "title @a title {text:'Gang',color:'dark_red',bold:true}"
            make loop-players say "Gucci Gang"
            wait 6 ticks
            execute console command "title @a title {text:'Gucci',color:'gray',bold:true}"
            wait 6 ticks
            execute console command "title @a title {text:'Gang',color:'dark_gray',bold:true}"
            make loop-players say "Gucci Gang"
            wait 6 ticks
            execute console command "title @a title {text:'Gucci',color:'green',bold:true}"
            wait 6 ticks
            execute console command "title @a title {text:'Gang',color:'yellow',bold:true}"
            make loop-players say "Gucci Gang"
            wait 15 ticks
            execute console command "title @a reset"
        stop

No errors on reload.
No console errors.

Add-ons:

skQuery
skRayFall (I don't think this is needed)
Umbaska (I don't think this is needed)

Problem:
The problem was when 2 players or more are on, it does the whole Skript for each player. Here's a picture:

Gucci Gang Skript.png


Yes I got this command idea from the /loganpaul video LOL
 
When you loop a players and add delay to it, it will delay every time you loop a player.
For example
code_language.skript:
loop all players:
    make loop-player say "hi"
    wait 1 second
That will wait 1 second after 1 player is looped.

So you have to use loop-player several times.
For example
code_language.skript:
loop all players:
    make loop-player say "message1"
wait 12 tick
loop all players:
    make loop-player say "message2"
Etc.

A think you could also do is this (I'm not sure if this is working)
code_language.skript:
make all players say "message 1"
wait 12 tick
make all players say "message 2"
I prefer you to choose this one if it is working, this because it causes less lag.

- DieHollander
 
Last edited:
Yes I got this command idea from the /loganpaul video LOL???????????????????

I'm not bent nor am i 9 years old so i've no clue what this means
 
Yes I got this command idea from the /loganpaul video LOL???????????????????

I'm not bent nor am i 9 years old so i've no clue what this means
I'm 14 fyi

There was a video uploaded by Spifey and it was /loganpaul and it made every person on the server say the lyrics of one of his songs
 
@D0XY Maybe this will solve it?

code_language.skript:
command /guccigang:
    permission: guccigang.yell
    permission message: &cYou cannot execute this command!
    trigger:
        make all players say "Gucci Gang"
        stop
 
Status
Not open for further replies.