*sigh* alright, ill help ur noob ass.
First of all, you can't create multiboards at map initialization, it just doesn't work.
[size=15pt]Melee Initialization <-[Name of Trigger; Does not effect what happends]
Events
Time - Elapsed game time is 0.50 seconds
Conditions
Actions
Leaderboard - Create a leaderboard for (All players) titled Player Kills
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
Leaderboard - Add (Picked player) to (Last created leaderboard) with label (Name of (Picked player)) and value 0[/size]
The thing you want is called leaderboard, not multiboard.
Use a player group command to add all players. You can trigger it to where its only actual players, like that below
[size=15pt]Melee Initialization <-[Name of Trigger; Does not effect what happends]
Events
Time - Elapsed game time is 0.50 seconds
Conditions
Actions
Leaderboard - Create a leaderboard for (All players) titled Player Kills
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
Leaderboard - Add (Picked player) to (Last created leaderboard) with label (Name of (Picked player)) and value 0
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
((Picked player) controller) Equal to User
Then - Actions
Do nothing
Else - Actions
Leaderboard - Remove (Picked player) from (Last created leaderboard)[/size]
To get the kills, make a seperate trigger.
[size=15pt]Kills
Events
Unit - A unit Dies
Conditions
((Triggering unit) is A Hero) Equal to True
Actions
Leaderboard - Change the value for (Owner of (Killing unit)) in (Last created leaderboard) to (TestVar + 1)[/size]
Because of the fact the GUI doesnt have leaderboard values for your comparison, make variables and set them to the value you want from the start, then modify the variables, and if you have a trigger set up, you can automatically change a players value to the variable (make sure its type is interger)
[size=15pt]Values2
Events
Time - Every 1.00 seconds of game time
Conditions
Actions
Player Group - Pick every player in (All players) and do (Actions)
Loop - Actions
Leaderboard - Change the value for Player 1 (Red) in (Last created leaderboard) to EndScore[/size]
Thats for red, just copy the leaderboard action you made for red, make a new variable (if you didn't make the variable replacing "EndScore" an array) for each player, and plug it in, easy.