Multiple turples

I want to make multiple turples without overriding the original is there a built in method or do i have to just save it

A tuple is just multiple values, so multiple tuples would just be a single tuple. Would you mind sharing your code?

1 Like

heres what im doing effectively

event:connect(function(...)
     eventb:connect(function(...)

     end)
end)
local function f1(...)
	local args1 = {...}
	local function f2(...)
		local args2 = {...}
		for _, v in ipairs(args2) do
			table.insert(args1, v)
		end
		for i, v in ipairs(args1) do
			print(i, v)
		end
	end
	
	f2(4, 5, 6)
end

f1(1, 2, 3)

image

1 Like