Hey Guys im Having problems with this part what did i do wrong?
the player and the atv transform position is not working.
void Update ()
{
if (Input.GetKey(KeyCode.F))
{
Player.SetActive(true);
ATVplayer.SetActive(false);
ATV.SetActive(true);
Trigger.SetActive(true);
TriggerATV.SetActive(true);
Player.transform.position = ATVplayer.position.rotation;
ATV.transform.position = ATVplayer.position.rotation;
}
}
}