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

How do you assign a saving variable to a player? [UNANSWERED]

Asked by 10 years ago

Ok. So, I understand this as a very basic idea of assigning a variable, but I want to be able to have the ability to update and save. I've read up on the DataStoreService and I am just confused on how I do this in reality for my script. I just want to be able to store a numerical value.

So far, I have basically this. I need help assigning the value to the actual player. Im not sure how to effectively assign the number to the particular player when they touch the block.

01local game = game:GetService("DataStoreService"):GetDataStore("StageNumber")
02 local key = "user_" .. player.userId
03 
04function PlayerAdded ()
05 game.Players.PlayerAdded:connect(function(player)
06    player = workspace:FindFirstChild("Player")
07    if (game:GetAsync(key) >= 1)
08     then print ("Welcome Back " .. player.GetFullName())
09    else game:SetAsync(key, 1)
10        print ("Welcome " .. player.GetFullName())
11    end
12end)
13end
14for _, player in pairs(game.Players:GetPlayers()) do
15    PlayerAdded(player) -- Use your player added handling function here.
16end
17 
18if (game.Players:FindFirstChild("Player1") == true) then
19    game:GetService("DataStoreService"):GetDataStore("StageNumber"):SetAsync("Player1", 1)
20end

Please help me understand this.

Thanks for your time, -rider

Answer this question