local Pickup = createPickup (2498, -1685.3000488281, 13.39999961853, 0, 100)
addEventHandler ("onClientpickupHit", root,
function (player)
if source == Pickup then
if getElementType(player) == "player" and not isPedInVehicle(player) then
setElementHealth(player, 100)
outputChatBox("تم اعطائك دم", 255, 255, 255, true)
end
end
end
)