Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

"Cannot store Array in data store. Data stores can only accept valid UTF-8 characters." How to fix?

Asked by 6 years ago
Edited 6 years ago

Uh hello, Also I tried to do a Value saving script also it saves multiple and I became this error: Cannot store Array in data store. Data stores can only accept valid UTF-8 characters. How could I fix this?

Script:
l

01ocal DS = game:GetService("DataStoreService")
02 
03local PetDS = DS:GetDataStore("PetDataStore")
04 
05local PetsTable = {}
06 
07local AUTOSAVE_INTERVAL = 60
08 
09   
10 
11game.Players.PlayerAdded:Connect(function(Player)
12 
13local PetsFolder = Instance.new("Folder")
14 
15PetsFolder.Name = "Pets"
16 
17PetsFolder.Parent = Player
18 
19local key = Player.UserId
20 
21PetsTable = PetDS:GetAsync()
22 
23if PetsTable then
24 
25for _,p in pairs (PetsTable) do
26 
27local In = Instance.new("IntValue")
28 
29In.Name = p["Name"]
30 
31In.Parent = PetsFolder
32 
33In.Value = p["Value"]
34 
35end
36 
37end
38 
39end)
40 
41   
42 
43game.Players.PlayerRemoving:Connect(function(Player)
44 
45for _,p in pairs (PetsTable) do
46 
47table.remove(PetsTable,p)
48 
49end
50 
51for _,i in pairs (Player.Pets:GetChildren()) do
52 
53if i then
54 
55table.insert(PetsTable,i)
56 
57PetsTable[i] = {}
58 
59table.insert(PetsTable[i],"Name")
60 
61table.insert(PetsTable[i], "Value")
62 
63PetsTable[i]["Name"] = i.Name
64 
65PetsTable[i]["Value"] = i.Value
66 
67print(PetsTable[i]["Name"])
68 
69PetDS:SetAsync(Player.UserId, PetsTable)
70 
71end
72 
73end
74 
75end)

Would be great!

0
call SetAsync outside after the loop hellmatic 1523 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Since arrays aren’t allowed in datastores, you can get around this by encoding them.

1-- Change line 69
2 
3PetDS:SetAsync(Player.UserId, PetsTable) -- Not allowed
4PetDS:SetAsync(Player.UserId,game:GetService("HttpService"):JSONEncode(PetsTable)) -- Allowed

This will turn your array into a string, allowing it to be used in datastores.

Ad

Answer this question