You can support our new channel by subscribing.
Code:
public float speed=10f;
void Update()
{
float xHorizontal = Input.GetAxis("Horizontal");
float zVertical = Input.GetAxis("Vertical");
Vector3 moveSystem = new Vector3(xHorizontal, 0.0f, zVertical);
transform.position += moveSystem * speed * Time.deltaTime;
}