Here is what I have so far but it instantiates at my player but I want the bullet going up at a constant speed while spawning at my player to begin with.
Variable(s):
public Transform bullet;
Update Function:
if (Input.GetKeyDown("space"))
{
Instantiate(bullet,transform.position,transform.rotation);
}