Why is this script only unpacking 1 value in this table on the gui?

My script keeps unpacking 1 value in the table not all values.

Code:

commands.cmds = function(sender, arguments)	
	sender.PlayerGui.Cmds.Enabled = true
	sender.PlayerGui.Cmds.Message.TEXT.Text = unpack(cmdlist)
end

You will want to use table.concat instead.

1 Like

Oh thank you! It worked. Appricate it