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

Datastore Not Saving all Values?

Asked by 5 years ago
Edited 5 years ago

So I'm working with a data store in a racing game. The datastore is suppose to save the players money and miles driven and their rank. Also in a folder thats not leaderstats it's suppose to save cars that they buy. The script has been working fine for months but now all of the sudden it stopped saving everything in leaderstats, so the money{Rowg Coins} miles driven and rank. But it still saves the cars. Any suggestions would be greatly appreciated.

001local DSS = game:GetService("DataStoreService")
002local RepStorage = game:GetService("ReplicatedStorage")
003 
004local RedlinePlayerDS = DSS:GetDataStore("RedLineRacing-DS")
005local EventTutorial = RepStorage.TutorialEvent
006 
007local PlayerDataTemplate = {
008    --["Name"] = {"ValueObject", defaultValue},
009    ["Rowg Coins"] = {"NumberValue", 15000},
010    ["Miles Driven"] = {"NumberValue", 0},
011    ["Rank"] = {"StringValue", "Permit"},
012    ["Ae86"] = {"BoolValue", false},
013    ["180SX"] = {"BoolValue", false},
014    ["1968 Challenger"] = {"BoolValue", false},
015    ["911"] = {"BoolValue", false},
View all 108 lines...
0
Also I suck with datastores so that's probably why this is not working lol. Babyseal1015 56 — 5y

Answer this question