Hi I made a little script for FPSController teleportation but script makes teleporting and teleporting back to old location only for a moment. What is blocking this script
case "f":
{
_oyuncu = GameObject.Find("FPSController").GetComponent<Transform>();
Vector3 asa = new Vector3(-52, 15, -21);
_oyuncu.transform.position = asa;
break;
}