Help on how to use DataStores, retrieving and storing?
Asked by
8 years ago Edited 8 years ago
I'm trying to make a saving database of someone's department in a group, I have a GUI which successfully changes the Department depending on the entry, but then here's my hard part, how to save it to a DataStore and retrieve it afterwards.
My attempt (Store)
1 | local DataStore = game:GetService( "DataStoreService" ):GetDataStore( "Departments" ) |
2 | local key = "user_" .. script.Parent.Parent.userId |
4 | script.Parent.Parent:WaitForChild( "leaderstats" ).Department.Changed:connect( function () |
5 | DataStore:UpdateAsync(key,script.Parent.Parent:WaitForChild( "leaderstats" ).Department.Value) |
(Retrieve)
02 | local DataStore = game:GetService( "DataStoreService" ):GetDataStore( "Departments" ) |
04 | game.Players.PlayerAdded:connect( function (player) |
05 | local leadrsts = Instance.new( "IntValue" ,player) |
06 | leadrsts .Name = "leaderstats" |
07 | local rank = Instance.new( "StringValue" ,leadrsts ) |
09 | local department = Instance.new( "StringValue" ,leadrsts ) |
10 | department.Name = "Department" |
11 | local key = "user_" .. player.userId |
12 | department.Value = DataStore:GetAsync(key) |
Any help?
They're both server scripts