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

How would i fix this DataStore script? First DataStore.

Asked by 4 years ago

So i'm making a game that requires saving but i cant find out how to make a working DataStore, I got this script from Alvinblox on Youtube but it still doesn't work.

01local DataStoreService = game:GetService("DataStoreService")
02 
03local MyDataStore = DataStoreService:GetDataStore('MyDataStore')
04 
05 
06 
07 
08 
09game.Players.PlayerAdded:Connect(function(player)
10    local stats = Instance.new("Folder")
11    stats.Name = 'leaderstats'
12    stats.Parent = player
13 
14    local cash = Instance.new("NumberValue")
15    cash.Name = 'Cash'
View all 47 lines...

What am i doing wrong?

Note - This is a server script in ServerScriptService

Thanks for reading.

0
What error does it show? AM910sk 22 — 4y
0
No errors it just doesn't work. EllaTheFloofyFox 106 — 4y
0
DataStores needs to be enabled on game settings to work on studio. Do it works on the real game? Leamir 3138 — 4y

1 answer

Log in to vote
1
Answered by 4 years ago

I think it doesn't work because you didn't add an if statement asking if there was data. It wouldn't work because the player wouldn't have any data, so their cash would be equal to nil. Try this:

01local DataStoreService = game:GetService("DataStoreService")
02 
03local MyDataStore = DataStoreService:GetDataStore('MyDataStore')
04 
05 
06 
07 
08 
09game.Players.PlayerAdded:Connect(function(player)
10    local stats = Instance.new("Folder")
11    stats.Name = 'leaderstats'
12    stats.Parent = player
13 
14    local cash = Instance.new("NumberValue")
15    cash.Name = 'Cash'
View all 50 lines...

If that doesn't work, then it means you haven't enabled API Services in your game.

Ad

Answer this question