I'm currently working on an fps and when I test it with my friends we found a bug where you can still use the gun after you have died. So I need the gun to stop working once your health reaches 0 and it needs to start working again once you respawn.
01 | local maxAmmo = 10 |
02 | local Ammo = maxAmmo |
03 | local reloading = false |
04 | local player = game.Players.LocalPlayer |
05 | local playerGui = player:WaitForChild( "PlayerGui" ) |
06 | local textLabel = playerGui:WaitForChild( "AmmoDisplay" ):FindFirstChild( "AmmoText" ) |
07 |
08 |
09 |
10 |
11 | script.Parent.Equipped:Connect( function (Mouse) |
12 | local function reload() |
13 | reloading = true |
14 | wait( 2 ) |
15 | Ammo = maxAmmo |
Humanoid of player's character has an event called Died, you can connect it to a function and disable the gun every time it fires. Example:
1 | local gunEnabled = true |
2 | local humanoid = player.Character.Humanoid |
3 |
4 | humanoid.Died:Connect( function () |
5 | gunEnabled = false |
6 | end ) |
To enable it after respawning, player
has an event called CharacterAdded
, it fires every time the character is added.
1 | player.CharacterAdded:Connect( function (character) |
2 | -- character in this case is the new character that has been added |
3 | gunEnabled = true |
4 | end ) |