I would like to use CollectionService to clone a script instance and paste it into multiple models. No, I do not want to run the script directly through CollectionService. I just want to paste the script instance I have into multiple models that I already have in a table.
I tried to do this:
local npcModels = CollectionService:GetTagged("NPC")
local AI = script.AI:Clone()
AI.Parent = npcModels
It did not work because I can only parent an instance to another instance, and not to a table. How could I achieve this?