Arrays
https://www.lukeko.com/33/arrays 0An array is a simple list of ordered values -- simply store the values sequentially, separated by commas
local testArray = {"A string", 3.14159, workspace.Part}
print(testArray[2])
An array is a simple list of ordered values -- simply store the values sequentially, separated by commas
local testArray = {"A string", 3.14159, workspace.Part}
print(testArray[2])