Okay so for a while now I been working on my 3d fps game, And I have been having some problems with my health and damage system. Its not working and I really want to finish it before playing around with the partical and effect system. This is my first post and im pretty new to programing have just been playing around with it.
Need help with bullet script
Code (CSharp):
- public class Health : MonoBehaviour
- {
- public float maxHealth = 100f;
- float currentValue;
- public float minHealth = 0;
- // Start is called...