What's wrong with this scoreboard

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

Mc28

Member
Sep 8, 2021
1
0
1
21
Code:
every 20 tick:
    loop all players:
        if {scoreboard.%loop-player%} is true:
            wipe loop-player's sidebar
            set name of sidebar of loop-player to "&e&l◈ FUN ◈  "
            set score "&e&l▶ &b&lnickname " in sidebar of loop-player to 9
            set score "- %loop-player%" in sidebar of loop-player to 8

            
command /sb [<string>]:
    trigger:
        if arg 1 is "on":
            set {scoreboard.%player%} to true
            message "scoreboard on"
            
        if arg 1 is "off":
            set {scoreboard.%player%} to false
            message "scoreboard off"
            wipe player's sidebar
Only one user's information is displayed on the scoreboard of all users
Can you help me?
 
Code:
every 20 tick:
    loop all players:
        if {scoreboard.%loop-player%} is true:
            wipe loop-player's sidebar
            set name of sidebar of loop-player to "&e&l◈ FUN ◈  "
            set score "&e&l▶ &b&lnickname " in sidebar of loop-player to 9
            set score "- %loop-player%" in sidebar of loop-player to 8

           
command /sb [<string>]:
    trigger:
        if arg 1 is "on":
            set {scoreboard.%player%} to true
            message "scoreboard on"
           
        if arg 1 is "off":
            set {scoreboard.%player%} to false
            message "scoreboard off"
            wipe player's sidebar
Only one user's information is displayed on the scoreboard of all users
Can you help me?

Every 20 tick, not recommended.
SkRayFalls scoreboards are bad, SkBee or Skore are good.
 
  • Like
Reactions: Minecoll_YT
Status
Not open for further replies.