using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Run : MonoBehaviour
{
public float speed = 0.01f;
private void Update()
{
transform.position += new Vector3(0, speed, 0) * Input.GetAxis("Vertical");
}
}