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

I have a great question im trying to build a parkour map and I cant figure this out?

Asked by 4 years ago
Edited 4 years ago

local DataService = game:GetService("DataStoreService") local DataStore = DataService:GetDataStore("data1")

local cpFolder = game.Workspace:WaitForChild("Level")

game.Players.PlayerAdded:Connect(function(player) local key = "player-" .. player.UserId

01local GetSave = DataStore:GetAsync(key)
02 
03local leaderstats = Instance.new("Folder", player)
04leaderstats.Name = "leaderstats"
05 
06local checkpoint = Instance.new("IntValue", leaderstats)
07checkpoint.Name = "Level"
08 
09if GetSave then
10    checkpoint.Value = GetSave
11    print("Data Loaded For " .. player.Name)
12else
13    checkpoint.Value = 1
14    print("New Data Created For " .. player.Name)
15end
View all 24 lines...

end)

game.Players.PlayerRemoving:Connect(function(player) local key = "player-" .. player.UserId

1DataStore:SetAsync(key, player.leaderstats.Level.Value)
2 
3print("Data Successfully Saved For " .. player.Name)

end)

The problem is WaitForChild("Level") is there anything you guys can help me

1 answer

Log in to vote
0
Answered by 4 years ago

Level isn't a member of workspace, it's a leaderstat

Ad

Answer this question