I would make a fully functional script...
using UnityEngine;
using System.Collections;
//Bulletspawnpoint MUST be named Bulletspawnpoint
public class Tryintoscriptpewpews : MonoBehaviour {
public Rigidbody Bullet; // Bullet, Bulletspawnpoint, Automatic, isShooting,Bulletsound, Magsize, Ammo, firerate, Blood, Range, Damage, Counter, Bullethole, Magsize, Ammo, Bulletsound, Bulletanim, Bulletholesmoke, Barrelflash
public GameObject Barrelflash;
public GameObject Bulletholesmoke;
public GameObject Bulletspawnpoint;
public GameObject Bullethole;
public GameObject Blood;
public bool Automatic;
public float Range = 100f;
public float Firerate = 8f;
public float Magsize = 30f;
public float Amountofclips = 4f;
public float Damage = 15f;
private float Ammo;
private float Counter = 0f;
private bool isShooting;
public AudioClip Bulletsound;
public AudioClip Reloadsound;
private RaycastHit hit;
public Animation Reloadanim;
// These are the customizable values.
// Create a spawnpoint and place it infront of the gun with a tag of "Bulletspawnpoint"
void Update(){
Counter += Time.deltaTime;
if(Automatic == true) {
if(Input.GetKey (KeyCode.Mouse0) && Firerate > Counter && Ammo > 0 && Amountofclips > -1){
isShooting = true;
if(isShooting == true){Fire();}
}
Counter = 0f;
}
else {
if(Input.GetKeyDown (KeyCode.Mouse0) && Ammo > 0 && Firerate > Counter && Amountofclips > -1){
isShooting = true;
if(isShooting == true){Fire();}
}
}
}
void Fire (){
Instantiate (Barrelflash, GameObject.Find ("Bulletspawnpoint").transform.position, GameObject.Find ("Bulletspawnpoint").transform.rotation);
Instantiate (Bullet, GameObject.Find ("Bulletspawnpoint").transform.position, GameObject.Find ("Bulletspawnpoint").transform.rotation);
Bullet.velocity = Vector3.forward * 8;
AudioSource.PlayClipAtPoint (Bulletsound, transform.position);
Ammo = Magsize;
Ammo --;
if (Ammo == 0 && Amountofclips > -1) {
}
if (Physics.Raycast (GameObject.Find ("Bulletspawnpoint").transform.position, transform.forward, Range)) {
if(hit.collider.gameObject.tag == "Player"){
Instantiate(Blood, hit.point, hit.transform.rotation);
hit.collider.gameObject.SendMessage("ApplyDamage", Damage);
}
else {
Instantiate(Bullethole, hit.point, Quaternion.FromToRotation(Vector3.up, hit.normal));
Instantiate(Bulletholesmoke, hit.point, Quaternion.identity);
}
}
}
void Reload(){
GetComponent().Play ("Reloadanim", PlayMode.StopAll);
AudioSource.PlayClipAtPoint(Reloadsound, transform.position);
}
}
just remember to reset the ammo when u respawn, OR (easier) in a health script destroy the object and in a game/network manager after X seconds intantiate the player
↧