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
1 | local player = game.Players.LocalPlayer |
2 | local workplayer = game.Workspace:WaitForChild(player.Name) |
3 | local humanoid = workplayer.Humanoid |
4 | local remote = game.ReplicatedStorage.Playerhealth 0 |
5 |
6 | repeat wait() |
7 |
8 | until humanoid.Health < = 0 |
9 | remote:FireServer() |
1 | local player = game.Players.LocalPlayer |
2 | local workplayer = player.Character or player.CharacterAdded:Wait() |
3 | local humanoid = workplayer:WaitForChild( "Humanoid" ) |
4 | local remote = game.ReplicatedStorage:WaitForChild( "Playerhealth0" ) |
5 |
6 | humanoid.Died:Connect( function () |
7 | remote:FireServer() |
8 | end ) |
Instead of using a loop, use the humanoid.Died
event.
Place this in StarterCharacterScripts
under the StarterPlayer folder.
01 | repeat wait() until game.Players.LocalPlayer |
02 | repeat wait until game.Players.LocalPlayer.Character:IsDescendantOf(workspace) |
03 | ---------------------------------------------------------------------------------------------------------- |
04 |
05 | local player = game.Players.LocalPlayer |
06 | local workplayer = game.Workspace:WaitForChild(player.Name) |
07 | local humanoid = workplayer.Humanoid |
08 | local remote = game.ReplicatedStorage:WaitForChild( 'Playerhealth0' ) |
09 |
10 |
11 | function ON_DEATH() |
12 | remote:FireServer() |
13 | print (player.Name .. " died" ) |
14 | end |
15 |
16 | humanoid.Died:connect(ON_DEATH) |