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

I'm Stuck, I Don't Know How To Save Data!?

Asked by 5 years ago
Edited 5 years ago

I've been trying to save my Data using DataStores but I'm not sure where to start?

Leaderstats

01local DataStoreService = game:GetService("DataStoreService")
02local ds = DataStoreService:GetDataStore("KillsDataSaver")
03 
04 
05game.Players.PlayerAdded:Connect(function(plr)
06 
07    local stats = Instance.new("Folder")
08    stats.Name = "leaderstats"
09    stats.Parent = plr
10 
11    local kills = Instance.new("IntValue")
12    kills.Name = "Kills"   
13    kills.Parent = stats
14 
15    local deaths = Instance.new("IntValue")
View all 54 lines...

1 answer

Log in to vote
0
Answered by 5 years ago

Have you watched this tutorial? https://www.youtube.com/watch?v=DkYupSBUpes

0
I have, I'm looking for a way to save all Stats not just one. If I try using that w/ all of those it will just add my request to Queue. Jomeliter 55 — 5y
Ad

Answer this question