of     1   

enjoyablegamer321
#140881487Saturday, July 19, 2014 9:51 PM GMT

Very long but here the script is. game.Players.PlayerAdded:connect(function(plr) local level = Instance.new("StringValue") level.Value = "lobby" level.Parent = plr level.Name = "Level" local chkpt = Instance.new("IntValue") chkpt.Parent = plr chkpt.Value = 0 chkpt.Name = "Checkpoint" ID=plr.userId ds=game:GetService("DataStoreService"):GetDataStore("HighLevel") data=ds:GetAsync(ID) or ds:SetAsync(ID,{ HighLevel=0; }) plr.CharacterAdded:connect(function(char) local chkptGroup = Workspace:FindFirstChild(level.Value:sub(1, 1):upper() .. level.Value:sub(2):lower() .. "Checkpoints") if chkptGroup then print("Found " .. chkptGroup.Name) local spawn = chkptGroup:FindFirstChild(tostring(chkpt.Value)) if spawn then print("Found spawn, " .. spawn:GetFullName()) wait(.25) char:WaitForChild("Torso").CFrame = spawn.CFrame + Vector3.new(0, 4, 0) end end end) end)
enjoyablegamer321
#140890710Saturday, July 19, 2014 11:32 PM GMT

bump
enjoyablegamer321
#141012682Monday, July 21, 2014 2:23 AM GMT

bump2

    of     1