#If it is false than it will rotate through them and you can make some animations with it.
      random: false
      #The time between updates, 20 ticks is 1 second.
      #Every x ticks it will go to the next line, if random is false, once all lines are displayed it will go to the first line.
      interval: 2
    #This section is the first line, here you set the data of that line. It doesn't matter what the name of the section is, as long
    # as there is no other section with the exact same name
    line-1:
      #Same as with the title, no limit on text. If you just put " " here it will display a blank line on the scoreboard.
      text:
      - " "
      #If it should be random or not.
      random: false
      #The time between updates, 20 ticks is 1 second.
      #Every x ticks it will go to the next line, if random is false, once all lines are displayed it will go to the first line.
      interval: 200
      #The score display next to the text, this can only be a number and not removed.
      # If the score of the other lines are higher than this one, they will be displayed above this one.
      score: 99  
    line-2:
      text:
      - "&a&lHoşgeldin {%player_name}%"
      - "&b&lHoşgeldin {%player_name%}"
      - "&c&lHoşgeldin {%player_name%}"  
      random: false
      interval: 5
      score: 98
    line-3:
      text:
      - " "
      random: false
      interval: 20
      score: 97
    #This animation works together with the line below it. The interval is the same so it displays the data at the same time.    
    line-4:
      text:
      - "&aÖldürdüğün Oyuncular:{Kills.%player%}:"
      - "&aÖldürdüğün Oyuncular:{Kills.%player%}:"
      - "&aÖldürdüğün Oyuncular:{Kills.%player%}:"  
      random: false
      interval: 60
      score: 96
    #This animation shows the actual data of the player
    line-5:
      text:
      - "  &b{Kills.%player%}"
      - "  <update ticks=1>&bX:%player_x% Y:%player_y% Z:%player_z%</update>"
      - "  &b{Kills.%player%}"  
      random: false
      interval: 60
      score: 95
    #This is another blank line to split up the scoreboard in multiple parts, you can have multiple lines with the same text displayed on the scoreboard.
    line-7:
      text:
      - " "
      random: false
      interval: 200
      score: 95
    #In this animation random is set to true so it will go randomly through all the text and display it on the scoreboard.
    #In this case it will just change the color of the text but it could be anything and you are also able to use placeholders here.
    line-8:
      text:
      - "&1DarkKingsCraft.net"
      - "&2DarkKingsCraft.net"
      - "&3DarkKingsCraft.net"
      - "&4DarkKingsCraft.net"
      - "&5DarkKingsCraft.net"
      - "&6DarkKingsCraft.net"
      - "&7DarkKingsCraft.net"
      - "&8DarkKingsCraft.net"
      - "&9DarkKingsCraft.net"
      - "&aDarkKingsCraft.net"
      - "&bDarkKingsCraft.net"
      - "&cDarkKingsCraft.net"
      - "&dDarkKingsCraft.net"
      - "&eDarkKingsCraft.net"
      - "&kDarkKingsCraft.net"
      - "&lDarkKingsCraft.net"
      - "&mDarkKingsCraft.net"
      - "&nDarkKingsCraft.net"
      - "&oDarkKingsCraft.net"
      - "&rDarkKingsCraft.net"      
      random: true
      interval: 1
      score: 94
    line-9:
      text:
      - " "      
      random: true
      interval: 1
      score: 93
    #It will display the player's health here with hearts, you can also use score=%placeholder% if you have PlaceholderAPI installed
    line-10:
      text:
      - "<health full=&4 half=&c empty=&f update=5>❤</health>"      
      random: false
      interval: 10
      score: "0"
    #Here we will repeat | 10 times, you can also use times=%placeholder% if you have PlaceholderAPI installed
    line-11:
      text:
      - "<repeat times=10>|</repeat>"      
      random: false
      interval: 10
      score: 0
    line-12:
      text:
      - ""      
      random: false
      interval: 10
      score: "-1"
    line-13:
      text:
      - "<scroll space=5 width=16 update=10>&6</scroll>"
      random: true
      interval: 1
      score: "-2"
    #1.13+ supports up to 128 characters per scoreboard line!
    line-14:
      text:
      - "&4&lDarkKingsCraft Survival"
      random: true
      interval: 1
      score: "-2"
#You are able to add more lines to the scoreboard if you want, this scoreboard is just to explain all the possibilities of this plugin.