Advertisement
Guest User

fsfsaf

a guest
Jun 30th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. ublic class IfPlayerPickup : MonoBehaviour {
  2.  
  3. public int Armor_Value = 5;
  4.  
  5. void OnTriggerEnter(Collider other)
  6. {
  7. Destroy(gameObject);
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement