addEvent("scoreB1", true)
addEventHandler("scoreB1", root,
function()
local kill = getElementData(source, "Kills")
local death = getElementData(source, "Deaths")
if (kill ~= false) and (death ~= false) then
outputChatBox("Your Kill: "..kill.." | Your Death: "..death, root, 255, 255, 0, true)
end
end)