I have Ai and I want them to instantiate an object then I want them to find that object to use in their script
If you instantiate an object you will already have a reference to it.
GameObject go = Instantiate(theObject);
go.GetComponent<FakeScript>();
that’s all you have to do