Basically, I have a system that saves the player's data whenever they leave and loads it whenever they join. For some unknown reason, whenever a value is changed from the player's data, it fails to to get the player's data (GetAsync) and it doesn't move on to the next piece of code. This is strange behavior as I have never encountered it before, but this is the first time I'm saving all the player's data into one data store. I'm using a dictionary to save the player's data, and I'm loading their data into folders. Here's a snippet of the code that saves the player's data,
01 | function SaveData(player) |
02 | print ( "Saving Data From " ..player.Name) |
03 | local PlayerFolder = game.ReplicatedStorage [ "Player Data" ] :FindFirstChild(player.Name.. " Data" ) |
04 | local OriginalData = PrimaryData:GetAsync( "user_" ..player.UserId) |
05 | local TableData = HttpService:JSONDecode(OriginalData) |
06 | TableData.ClassType = PlayerFolder [ "Class Type" ] .Value |
07 | TableData.Tier = PlayerFolder [ "Tier Folder" ] .Tier.Value |
08 | TableData.Level = PlayerFolder [ "Tier Folder" ] .Level.Value |
09 | TableData.ArmorLevel = PlayerFolder [ "Armor Level" ] .Value |
10 | TableData.Wins = PlayerFolder.Statistics.Wins.Value |
11 | TableData.Losses = PlayerFolder.Statistics.Losses.Value |
12 | TableData.Kills = PlayerFolder.Statistics.Kills.Value |
13 | TableData.Deaths = PlayerFolder.Statistics.Deaths.Value |
14 | TableData.Coins = PlayerFolder.Coins.Value |
15 | TableData.Weapons = { } |
If you want to test this out yourself or you need more information, here's my whole piece of code,
001 | --// Created by McRocketNuggets //-- |
002 | --Variables-- |
003 | local PlayersService = game:GetService( "Players" ) |
004 | local PrimaryData = game:GetService( "DataStoreService" ):GetDataStore( "PrimaryDatav5" ) |
005 | local PrimaryEvent = Instance.new( "RemoteEvent" ,game.ReplicatedStorage) |
006 | PrimaryEvent.Name = "Primary Event" |
007 | local HttpService = game:GetService( "HttpService" ) |
008 | --Functions-- |
009 | function CreateDataFolders(player) |
010 | local CurrentData = PrimaryData:GetAsync( "user_" ..player.UserId) |
011 | local TableData = HttpService:JSONDecode(CurrentData) |
012 | local PlayerFolder = Instance.new( "Folder" ,game.ReplicatedStorage [ "Player Data" ] ) |
013 | PlayerFolder.Name = player.Name.. " Data" |
014 | local ClassType = Instance.new( "StringValue" ,PlayerFolder) |
015 | ClassType.Value = TableData.ClassType |
Thank you!
Now this is a story all about how My life got flipped turned upside down And I'd like to take a minute, just sit right there I'll tell you how I became the prince of a town called Bel-Air
In West Philadelphia, born and raised On the playground is where I spent most of my days Chillin' out, maxin', relaxin' all cool And all shootin' some b-ball outside of the school When a couple of guys who were up to no good Started makin' trouble in my neighborhood I got in one little fight and my mom got scared And said "You're movin' with your auntie and uncle in Bel-Air"
I whistled for a cab and when it came near The license plate said 'Fresh' and it had dice in the mirror If anything I could say that this cab was rare But I thought "Nah, forget it, yo holmes, to Bel-Air!"
I pulled up to the house about 7 or 8 And I yelled to the cabbie "Yo holmes, smell ya later" Looked at my kingdom, I was finally there To sit on my throne as the Prince of Bel-Air