Lua Tables

PHOTO EMBED

Fri Jan 08 2021 19:28:53 GMT+0000 (Coordinated Universal Time)

Saved by @TheCoderrrrrrrr #lua

local testArray = {"A string", 3.14159, workspace.Part}
 
testArray[2] = 12345
testArray[4] = "New string"
 
print(testArray[2])
print(testArray[4])
content_copyCOPY

https://developer.roblox.com/en-us/articles/Table