This is probably such a dumb question and I have probably looked over somthing obvious but when I press the left arow key it only moves like 10 pixles over and does not continue to move to the right.
`public class BulletController : MonoBehaviour
{
public float moveSpeed;
private void Update()
{
if (Input.GetKeyDown(KeyCode.RightArrow))
{
transform.Translate(Vector3.right * moveSpeed * Time.deltaTime);
}
}
}