using UnityEngine;
public class spawn : MonoBehaviour
{
public GameObject prefab;
void Start()
{
Instantiate(prefab, Vector3, Quaternion.identity);
}
}Vector3 is a type, and methods dont take type parameters directly that way.
Vector3