Tables into func's paremeters/arguements (thing u put in calling funcs)

basically i want to convert a table into an arguments of a functions like this

Func("str") -- this is an argument

what i wanna achieve

table = {"what", "poopoo"}

Func(table) -- this doesnt actually work

-- output: what poopoo

is this what youre looking for?
Func(unpack(table))

oh wow lol i didnt think it was that easy i think that is it thanks alot :sob::raised_hand_with_fingers_splayed:t2:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.