I want to be able to do
local function CallFunction(...) print(...) -- Prints "Player1 Player2" end local table = {"Player1", "Player2"} CallFunction(InsidesOfTable)
I'm going to have a table full of functions and they can have infinite parameters so I would like to send them without just sending the table but I can't think of a way without doing that
If I remember correctly, you could either just pass the table through, or make a loop inside the function to go through the arguments passed in.