Please help with data store help Array issue
Output [ table: 00000281E3571EB0] [103: Array is not allowed in data stores.] [Line 23]
local data_saveA=game:GetService("DataStoreService") local data_save=data_saveA:GetOrderedDataStore("Potiontylerfire") local Player=script.Parent.Parent.Parent local storage=game.ServerStorage local datasavepotion=data_save:GetAsync(Player.Name) --checking if save if datasavepotion then else local clone=storage.Potions:FindFirstChild("StarterPotion"):Clone() clone.Parent=Player.Backpack local savetable = { "StarterPotion" } print(savetable) data_save:SetAsync(Player.Name,savetable) end