DataStore Saving Table?

I have seen some datastores save tables but when I tried, I get the Datastores can only accept valid UTF-8 characters error.

Code:

	local savedTable = {}

-- Adding stuff to savedTable

	local success, err = pcall(function()
		db:SetAsync(player.UserId, savedTable)
	end)
	
	if err then
		error(err)
	end

Did the table contain anything like CFrames, Vector3s, or anything else of that sort?

Yeah, I had it saving models, i meant to be saving the name lol

Can we see your script please. You can’t save instances into a datastore, but you can save all of the properties into a table.