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

Why is :GetAsync() now working correctly? [SOLVED BECAUSE YOU ALL DIDN'T HELP]

Asked by 6 years ago
Edited 6 years ago

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,

01function SaveData(player)
02print("Saving Data From "..player.Name)
03local PlayerFolder = game.ReplicatedStorage["Player Data"]:FindFirstChild(player.Name.." Data")
04local OriginalData = PrimaryData:GetAsync("user_"..player.UserId)
05local TableData = HttpService:JSONDecode(OriginalData)
06TableData.ClassType = PlayerFolder["Class Type"].Value
07TableData.Tier = PlayerFolder["Tier Folder"].Tier.Value
08TableData.Level = PlayerFolder["Tier Folder"].Level.Value
09TableData.ArmorLevel = PlayerFolder["Armor Level"].Value
10TableData.Wins = PlayerFolder.Statistics.Wins.Value
11TableData.Losses = PlayerFolder.Statistics.Losses.Value
12TableData.Kills = PlayerFolder.Statistics.Kills.Value
13TableData.Deaths = PlayerFolder.Statistics.Deaths.Value
14TableData.Coins = PlayerFolder.Coins.Value
15TableData.Weapons = {}
View all 24 lines...

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--
003local PlayersService = game:GetService("Players")
004local PrimaryData = game:GetService("DataStoreService"):GetDataStore("PrimaryDatav5")
005local PrimaryEvent = Instance.new("RemoteEvent",game.ReplicatedStorage)
006PrimaryEvent.Name = "Primary Event"
007local HttpService = game:GetService("HttpService")
008--Functions--
009function CreateDataFolders(player)
010local CurrentData = PrimaryData:GetAsync("user_"..player.UserId)
011local TableData = HttpService:JSONDecode(CurrentData)
012local PlayerFolder = Instance.new("Folder",game.ReplicatedStorage["Player Data"])
013PlayerFolder.Name = player.Name.." Data"
014local ClassType = Instance.new("StringValue",PlayerFolder)
015ClassType.Value = TableData.ClassType
View all 112 lines...

Thank you!

2
It would be a great help to yourself and others if you indented your code. It can also help you spot problems before they arise. This is just a note not an answer User#21908 42 — 6y
0
Sorry about that, it's been a habit of mine to format it similar to a novel. McRocketNuggets 65 — 6y

1 answer

Log in to vote
0
Answered by
theCJarmy7 1293 Moderation Voter
6 years ago
Edited 6 years ago

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

The issue was resolved and it turned out to be not an issue at all.

Ad

Answer this question