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
01 | local GetSave = DataStore:GetAsync(key) |
03 | local leaderstats = Instance.new( "Folder" , player) |
04 | leaderstats.Name = "leaderstats" |
06 | local checkpoint = Instance.new( "IntValue" , leaderstats) |
07 | checkpoint.Name = "Level" |
10 | checkpoint.Value = GetSave |
11 | print ( "Data Loaded For " .. player.Name) |
14 | print ( "New Data Created For " .. player.Name) |
17 | player.CharacterAdded:Connect( function (character) |
18 | repeat wait() until workspace:FindFirstChild(character.Name) |
20 | local player = game.Players:GetPlayerFromCharacter(character) |
21 | local checkpoint = cpFolder [ player.leaderstats.Level.Value ] |
23 | character.HumanoidRootPart.CFrame = checkpoint.CFrame + Vector 3. new( 0 , 2 , 0 ) |
end)
game.Players.PlayerRemoving:Connect(function(player)
local key = "player-" .. player.UserId
1 | DataStore:SetAsync(key, player.leaderstats.Level.Value) |
3 | print ( "Data Successfully Saved For " .. player.Name) |
end)
The problem is WaitForChild("Level")
is there anything you guys can help me