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

How do I make my gun stop working after death?

Asked by 4 years ago
Edited 4 years ago

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.

01local maxAmmo = 10
02local Ammo = maxAmmo
03local reloading = false
04local player = game.Players.LocalPlayer
05local playerGui = player:WaitForChild("PlayerGui")
06local textLabel = playerGui:WaitForChild("AmmoDisplay"):FindFirstChild("AmmoText")
07 
08 
09 
10 
11script.Parent.Equipped:Connect(function(Mouse)
12    local function reload()
13        reloading = true
14        wait(2)
15        Ammo = maxAmmo
View all 44 lines...

1 answer

Log in to vote
0
Answered by
imKirda 4491 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

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:

1local gunEnabled = true
2local humanoid = player.Character.Humanoid
3 
4humanoid.Died:Connect(function()
5    gunEnabled = false
6end)

To enable it after respawning, playerhas an event called CharacterAdded, it fires every time the character is added.

1player.CharacterAdded:Connect(function(character)
2    -- character in this case is the new character that has been added
3    gunEnabled = true
4end)
0
It didnt work WheatMealLoaf -2 — 4y
0
it is not supposed to work, it is supposed to show you how to do it. I made code example of how you could make fix for your gun. imKirda 4491 — 4y
0
i know but it still didnt work WheatMealLoaf -2 — 4y
Ad

Answer this question