wait(1) local gui = script.Parent local ply = gui.Parent.Parent local hum = ply.Character.Humanoid
local function Msg(txt) gui.TextLabel.Visible = true gui.TextLabel.Text = txt end
hum.Died:wait()
if hum:findFirstChild("creator") then if hum.creator.Value then if hum.creator.Value.TeamColor == ply.TeamColor then Msg("You were teamkilled by: "..hum.creator.Value.Name) else Msg("You were killed by: "..hum.creator.Value.Name) end end end
But this does not seem to work.