I got it on my own! It is in the multiboard on the last row, whenever there is multi ppl it automaticly goes to the last row. All I had to do is change the player_count variable and whatever one that used to +2 instead of +1.
GameTime
Events
Time - Every 1.00 seconds of game time
Conditions
Actions
Set Seconds = (Seconds + 1)
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Seconds Equal to 60
Then - Actions
Set Seconds = 0
Set Miniutes = (Miniutes + 1)
Else - Actions
Do nothing
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
If - Conditions
Seconds Less than 10
Then - Actions
Multiboard - Set the text for (Last created multiboard) item in column 3, row (Player_Count + 2) to (((String(Miniutes)) + + (0 + (String(Seconds))))
Else - Actions
Multiboard - Set the text for (Last created multiboard) item in column 3, row (Player_Count + 2) to ((String(Miniutes)) +

+ (String(Seconds))))
That is the source code for the game timer in the multiboard to anyone who uses the multiboard ryoko has posted in the free code sticky on the forums.
All you need to do is make the first trigger yourself by copying me, and then just change your Create Multiboard trigger by, adding these 2 lines to the bottom before show last created multiboard
Multiboard - Set the text for (Last created multiboard) item in column 2, row (Player_Count + 2) to Game Time
Multiboard - Set the text for (Last created multiboard) item in column 3, row (Player_Count + 2) to 00.00
and then all you need to change is change the values in areas where it says ((Player_Count) + 1) to ((Player_Count) + 2)