[SerializeField] private GameObject pfp;
[SerializeField] private GameObject avaliableMoveArea;
private void MovePfpInRandomPlace()
{
float height = Camera.main.orthographicSize;
float width = height * Camera.main.aspect;
pfp.transform.position = new Vector3(Random.Range(-width, width), Random.Range(-height, height), 0);
pfp.gameObject.SetActive(true);
}