Jase
0
Q:

roblox get values of tables

local F = {"your","my","we","yeet",}

for i, v in pairs(F) do
	print(i)
end

--Lua Script language
0
local myTable = {"your","my","we","yeet",}

for i, v in pairs(myTable) do
	print("Index: "..tostring(i))
	print("Value: "..tostring(v))
end

-- i stands for Index
-- v stands for Value
-- You can name these variables as you wish, but you should know,-
-- -the first is Index and the second is the Value
--Lua Script language
0

New to Communities?

Join the community