Webhooks and Tables

Hi,

I’m currently looking for an efficient way to print a list of values from a table to a webhook. Obviously, this is impossible with just setting the description as the table variable, and I can’t seem to find any alternative ways that work. Any help would be appreciated.

function DumpCalled(player, descendantsTable, cleanTable)
local data = 
	{
		['embeds'] = 
		{{
			['title'] = player.Name.." Client Dump",
			['description'] = descendantsTable
		}}
	}

local sendData = http:JSONEncode(data)
http:PostAsync(webhook, sendData)
end

event.OnServerEvent:Connect(DumpCalled)