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
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local ds = DataStoreService:GetDataStore( "KillsDataSaver" ) |
05 | game.Players.PlayerAdded:Connect( function (plr) |
07 | local stats = Instance.new( "Folder" ) |
08 | stats.Name = "leaderstats" |
11 | local kills = Instance.new( "IntValue" ) |
15 | local deaths = Instance.new( "IntValue" ) |
16 | deaths.Name = "Deaths" |
19 | local gems = Instance.new( "IntValue" ) |
23 | local coins = Instance.new( "IntValue" ) |
27 | plr.CharacterAdded:connect( function (char) |
32 | humanoid = char:FindFirstChild( "Humanoid" ) |
36 | humanoid.Died:connect( function () |
38 | deaths.Value = deaths.Value + 1 |
40 | local tag = humanoid:FindFirstChild( "creator" ) |
44 | local killer = tag.Value |
48 | killer.leaderstats.Kills.Value = killer.leaderstats.Kills.Value + 1 |