onPickupUse
Client-side
 Server-side
 Shared
           Tip   
 Pickups use colshapes , you can get the colshape of the pickup with getElementColShape and use colshape events to it.
Parameters
player playerWhoUsed- playerWhoUsed: a player element referring to the player who used the pickup.
Source
element: The source of this event is the pickup that is getting used by the player.
Canceling
If this event is canceled, the player will not be given the item they picked up.
Code Examples
 server   
 This example outputs a message to the chatbox when a player uses a pickup.
function pickupUse( thePlayer )    outputChatBox( getPlayerName( thePlayer ) .. " used a pickup!" )endaddEventHandler( "onPickupUse", root, pickupUse ) 
 