how to reload same scene unity code example
Example: how to load the active scene unity
using UnityEngine.SceneManagement;
using UnityEngine;
public class PlayerMovement : MonoBehaviour
{
void LoadScene()
{
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex);
}
}