make array in roblox code example
Example 1: array roblox
local array = {1, "Hello World", true} -- arrays can have all kinds of values
-- arrays are also known as tables
Example 2: roblox make arrays
-- Construct an array with three items
local testArray = {"A string", 3.14159, workspace.Part}
print(testArray[1])
print(testArray[2])
print(testArray[3])