A script that resets people when they join

local TIME = 2

game.Players.PlayerAdded:Connect(function(Player)

repeat wait() until

game.Workspace:FindFirstChild(Player.Name)

wait(TIME)

Player.Character:WaitForChild("Humanoid"):TakeDamage(100)


end)

put in a server script

1 Like