i have this script that shows the players name and there icon but i want to add there tools icon too is there any way
here’s the image
heres the script i got
local KillText = script.Parent.KillText
local plr = game.Players.LocalPlayer or game.Players.PlayerAdded:Wait()
local char = plr.Character or plr.CharacterAdded:Wait()
local hum = char:WaitForChild("Humanoid")
local ImageLabel = KillText.PlayerIcon
local Green = Color3.fromRGB(0, 255, 0)
local Red = Color3.fromRGB(255, 0, 4)
hum.Died:Connect(function()
local mur = char.Humanoid:FindFirstChild("creator")
local murChar = mur.Value.Character
local tool = mur:GetChildren()
local murHealth = murChar:FindFirstChild("Humanoid").Health
local murId = mur.Value.UserId
local roundValue = (math.floor(murHealth))
local maxH = murChar:FindFirstChild("Humanoid").MaxHealth
if mur.Value then
KillText.Visible = true
KillText.MuderName.Text = mur
KillText.MurderHP.Text = roundValue
KillText.MurderHP.TextColor3 = Red:lerp(Green, roundValue / maxH)
ImageLabel.Image = game.Players:GetUserThumbnailAsync(murId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420)
KillText.MurderHP.Text = roundValue
wait(3)
KillText.Visible = false
end
end)