local myTable = {["data"]="rwuibewruyebfe"}
local http = game:GetService("HTTPService")
local tableValue = Instance.new("StringValue", game.Workspace)
tableValue.Name = "aTableValue"
tableValue.Value = http:JSONEncode(myTable)
-- there you go, store tables into a string value |