reset position unity code example
Example 1: unity reset scene
//for unity c#
using UnityEngine.SceneManagement;
...
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
Example 2: unity set position
// To set the position of a gameobject use the following
GameObject.transform.position = new Vector3(x, y, z);