Checkpoint system when part touched

Hi devs, i tried to make a checkpoint systeme when the player touch the part but am stuck actually. I don’t want a system with Leaderstats etc… I just want that when a player touch the part , the part is now is spawn. So when he will die he will respawn on this same part , and it will change if he touch another one with the same script.

So if anyone got an idea.
-Tnks

– General outline –
Add a script in StarterPlayerScripts.
In the script:

  • Make a table of all the spawns (ex: have them all in a folder then do :GetChildren())
  • Create a spawn variable that will hold the part to spawn at
  • For each of the spawns in the table, create a touched connection that checks if the hit part is part of the player.Character and if it is then update the spawn variable
  • Create a connection to Player.CharacterAdded, and in the callback wait for the character to be parented into Workspace and load enough then set the HRP.CFrame to be slightly above the the part that is spawn’s CFrame (optionally if spawn is nil do nothing, of you can just fill spawn with a default value)

Note: For the script, player is script.Parent.Parent

1 Like

The problem actually is, I don’t want to create a folder, etc., because in my game there is an autogenerating room system . So, I want on all models a part that when players touch it, it makes them the new spawn. So, it can’t be in a folder because it’s randomly generated (so it needs to be a simple part, and when a player touches it, it’s the new spawn).

1 Like

There is a property in the Player Instance called “RespawnLocation”, but this only works with the SpawnLocation Instance.

So what you want to do is set the Property to the SpawnLocation if the player touches it

*edit I just tried this and its not working, weird

*edit 2, nvm it will work but you have to set it by script:

2 Likes

You can use teams, and associate different SpawnLocations to the teams. Then, there is a property of those spawns that allows team change on touch. Tick that.

2 Likes

Team is like leaderstats i don’t want that

1 Like

A very simple way to do this would be to simply set an attribute on the Player when the player touches the checkpoint:

local part=script.Parent
part.Touched:Connect(function(tp) if tp.Parent:FindFirstChild("Humanoid") then local Plr=game:GetService("Players"):GetPlayerFromCharacter(tp.Parent) if Plr then Plr:SetAttribute("Respawn", part.Position) end end end)

and have this in the StarterCharacterScripts to check and move the player to the checkpoint:

local Plr=game:GetService("Players").LocalPlayer
local Char=script.Parent
if Plr:GetAttribute("Respawn") then Char:SetPrimaryPartCFrame(CFrame.new(Plr:GetAttribute("Respawn"))) end
1 Like

If anyone need the solution

StarterCharacterScripts :

 local Players = game:GetService("Players")
local player = Players.LocalPlayer or Players:GetPlayerFromCharacter(script.Parent.Parent)
local character = script.Parent
if player and player:GetAttribute("Respawn") then
	character:SetPrimaryPartCFrame(CFrame.new(player:GetAttribute("Respawn")))
end

In the part :

local part = script.Parent
local SpawnPos = part.SpawnPos.Position

part.Touched:Connect(function(hit)
	local humanoid = hit.Parent:FindFirstChildOfClass("Humanoid")
	if humanoid then
		local player = game.Players:GetPlayerFromCharacter(hit.Parent)
		if player then
			player:SetAttribute("Respawn", SpawnPos)
		end
	end
end)
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.