Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to use tables in a local script?

Asked by 3 years ago

How can we use the table in roblox studio in local scripts.

0
local t = {} in any type of script greatneil80 2647 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

Tables are the same in local, module and server scripts. They can be written like this:

local tabletest = { — table
“E”, — contents 
“E”
}
Ad

Answer this question