ive been looking for a good movment script. ive tried making my own but i cant seem to get it right. does anyone have one thats good and free to use. i know
using UnityEngine;
public class Movement : MonoBehaviour
{
void Update ()
{
transform.position += Vector3.right * Time.deltaTime;
}
}
1 Like