saving leaderstats script roblox

Solutions on MaxInterview for saving leaderstats script roblox by the best coders in the world

showing results for - "saving leaderstats script roblox"
Theo
30 Jan 2021
1game:BindToClose(function()
2	wait(3)
3end)
4
Rayan
13 Sep 2016
1pcall(function() 
2    ContentProvider:PreloadAsync(Thing,function() end)
3    DataStore:SetAsync(UserId, Data)
4    local Thing = DataStore:GetAsync(UserId)
5end)
6
Alecia
12 Jul 2020
1local data
2local success,errmessage = pcall(function()
3    data = getasync(yoursave)
4end)
5if success then
6    intvalue.Value = data or starterdata
7end
8--just an example
9