Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i make the script detect the player being dead?

Asked by
Plieax 66
6 years ago

This is what I have to make the script detect the players health constantly. But I dont know how to make it work over and over

1local player = game.Players.LocalPlayer
2local workplayer = game.Workspace:WaitForChild(player.Name)
3local humanoid = workplayer.Humanoid
4local remote = game.ReplicatedStorage.Playerhealth0
5 
6repeat wait()
7 
8until humanoid.Health <= 0
9remote:FireServer()

2 answers

Log in to vote
0
Answered by 6 years ago
1local player = game.Players.LocalPlayer
2local workplayer = player.Character or player.CharacterAdded:Wait()
3local humanoid = workplayer:WaitForChild("Humanoid")
4local remote = game.ReplicatedStorage:WaitForChild("Playerhealth0")
5 
6humanoid.Died:Connect(function()
7    remote:FireServer()
8end)
0
MAKE SURE TO PUT IT IN STARTER CHARACTER FOLDER! Plieax 66 — 6y
Ad
Log in to vote
2
Answered by
hellmatic 1523 Moderation Voter
6 years ago

Instead of using a loop, use the humanoid.Died event.

Place this in StarterCharacterScripts under the StarterPlayer folder.

01repeat wait() until game.Players.LocalPlayer
02repeat wait until game.Players.LocalPlayer.Character:IsDescendantOf(workspace)
03----------------------------------------------------------------------------------------------------------
04 
05local player = game.Players.LocalPlayer
06local workplayer = game.Workspace:WaitForChild(player.Name)
07local humanoid = workplayer.Humanoid
08local remote = game.ReplicatedStorage:WaitForChild('Playerhealth0')
09 
10 
11function ON_DEATH()
12    remote:FireServer()
13    print(player.Name .. " died")
14end
15 
16humanoid.Died:connect(ON_DEATH)
0
make sure its in the StarterCharacterScripts folder so the script loads in when a player respawns hellmatic 1523 — 6y
0
LocalPlayer will never be nil and new characters will always be inside workspace. cabbler 1942 — 6y
0
Ohhh ok tysm Plieax 66 — 6y
0
I was putting the script in start player Plieax 66 — 6y
0
@cabbler just a habit I have when I make local scripts :p hellmatic 1523 — 6y

Answer this question