Hi All!
How can I do so when my respawns character stops moving, I have teleported after a fall and the character goes ahead (the Player is a Ball).
public Transform respawnTarget;
public GameObject thePlayer;
void OnTriggerEnter(Collider other)
{
thePlayer.transform.position = respawnTarget.position;
}