ScoreBoard No work, help.

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

Shoded

Member
Oct 10, 2022
1
0
1
21
What the problem?:


The scoreboard no show up.

Script:


on join:
if {deaths::%player's uuid%} is not set:
set {deaths::%player's uuid%} to 0
if {kills::%player's uuid%} is not set:
set {kills::%player's uuid%} to 0
while player is online:
set title of player's scoreboard to "&#e7e513G&#e3d212O&#dfc011D&#dcad0fS&#d89a0eO&#d4870dF&#d0750cT&#cc620aH&#c84f09E&#c53c08S&#c12a07A&#bd1705N&#b90404D"
set line 1 of player's scoreboard to " &8&l» &eDeaths: &7%{deaths::%player's uuid%}%"
set line 2 of player's scoreboard to " &8&l» &eKills: &7%{kills::%player's uuid%}%"
set line 3 of player's scoreboard to "&eStats"
set line 4 of player's scoreboard to " "
set line 5 of player's scoreboard to " &8&l» &7%size of all players%&8/&7%max players% &ePlayers"
set line 6 of player's scoreboard to " &8&l» &ePlayer: &7%player%"
set line 7 of player's scoreboard to "&eInfo"
wait 1 second

on death:
attacker is a player
add 1 to {kills::%attacker's uuid%}

on death:
victim is a player
add 1 to {deaths::%victim's uuid%}
 
upload_2022-10-10_20-0-11.png
 
Whats the problem?
The scoreboard not showing up.

Script:
Code:
on join:
  if {deaths::%player's uuid%} is not set:
    set {deaths::%player's uuid%} to 0
  if {kills::%player's uuid%} is not set:
    set {kills::%player's uuid%} to 0
  while player is online:
    set title of player's scoreboard to  "Title"
    set line 1 of player's scoreboard to "Line1"
    set line 1 of player's scoreboard to "Line2"
    set line 1 of player's scoreboard to "Line3"
  wait 1 second

on death:
  attacker is a player
  add 1 to {kills::%attacker's uuid%}

on death:
  victim is a player
  add 1 to {deaths::%victim's uuid%}

Btw might try do "toggle player's scoreboard on"
 
Status
Not open for further replies.