im really confused how to do it with a script can u help me?
To create a table you do local Table_Name = {}
and to add to a table you can do many things such as table.Insert(Table_Name,value)
or Table_Name[3] = value
or Table_Name[#Table_Name+1] = value
Heres the DevHub page: Tables