local Img = "Image.png" -- Your Image and don't remove .png
function Dx()
dxDrawImage(1072, 209, 208, 408, Img, 0, 0, 0, tocolor(255, 255, 255, 255), false)
dxDrawRectangle(1083, 298, 187, 27, tocolor(0, 1, 0, 176), false)
dxDrawRectangle(1083, 266, 187, 27, tocolor(137, 255, 137, 191), false)
dxDrawText("1", 1087, 299, 1270, 325, tocolor(255, 255, 255, 255), 1.30, "default-bold", "left", "center", false, false, true, false, false)
dxDrawText("2", 1087, 267, 1270, 293, tocolor(255, 255, 255, 255), 1.30, "default-bold", "left", "center", false, false, true, false, false)
end
addEventHandler( "onPickupHit", root,function ()
if ( source == YourPickup ) then
addEventHandler ( "onClientRender", root, Dx)
end
end
)