So I made a script that contains a dictionary with 3 names, and I would like to know how to do so that 3 instances are created with these respective names
I made a script related to this (which is not finished) however I don’t know if I should do it this way:
script:
local dictionary = {“name1”,“name2”,“name3”}
for i = 1,#dictionary do
–create the number of instances according to the number of names in the dictionary
end
In short: How do I create 3 instances for the respective name?