01 | local living = true -- This is what I use for the debounce |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if living = = true then -- Since it's true this part will run |
05 | local Player = game.Players [ hit.Parent.Name ] |
06 | local frame = Player.PlayerGui.DeathGui.Frame |
07 | local Countdown = frame.Countdown |
08 | if Player.Backpack.Lives.Value > 0 then -- The Lives value was set to 4 |
09 | living = false -- But It does not change living to false |
10 | wait( 1 ) |
11 | Player:LoadCharacter() |
12 | local getSpawns = workspace.Start:GetChildren() |
13 | local Spawn = getSpawns [ math.random( 1 , #getSpawns) ] |
14 |
15 | workspace [ Player.Name ] :MoveTo(Spawn.Position) |
How to fix this?
This is what Killerbrenden was trying to say:
01 | local living = true -- This is what I use for the debounce |
02 | local time = 2 -- change it if you want |
03 | -- time is the amount of time before living = true again |
04 |
05 | script.Parent.Touched:Connect( function (hit) |
06 | if game.Players:GetPlayerFromCharacter(hit.Parent) then |
07 | -- checks if it is a player that touched it |
08 | if living = = true then -- Since it's true this part will run |
09 | local Player = game.Players:GetPlayerFromCharacter(hit.Parent) |
10 | -- that is a better way of getting player for this case |
11 | local frame = Player.PlayerGui.DeathGui.Frame |
12 | local Countdown = frame.Countdown |
13 | if Player.Backpack.Lives.Value > 0 then |
14 | living = false |
15 | -- got rid of this line because it has to be directly before |