So i have a code that opens a door when 1 npc dies but i need it to only open when 2 or more certain npcs die. So for example, when 1 npc dies the door stays closed, but when the other one dies the door opens.
1 | function door() |
2 | local open = script.Parent.Health |
3 | local doorr = game.Workspace.part 3 |
4 | if open < 1 then |
5 | doorr.Transparency = 0.5 |
6 | doorr.CanCollide = false |
7 | end |
8 | end |
9 | script.Parent.Died:Connect(door) |
I put this in the npc's humanoid
Try this:
01 | local npc 1 = workspace.NPC 1 -- Change NPC1 to the name of your npc |
02 | local npc 2 = workspace.NPC 2 -- Change NPC2 to the name of your npc |
03 | local door = workspace.part 3 |
04 |
05 | local died = 0 |
06 |
07 | npc 1. Humanoid.Died:Connect( function () |
08 | died = died + 1 |
09 | end ) |
10 |
11 | npc 2. Humanoid.Died:Connect( function () |
12 | died = died + 1 |
13 | end ) |
14 |
15 | coroutine.wrap( function () |
Whenever an NPC dies, the died value gets increased. Then the while loop inside the coroutine constantly checks if the died value is equal to 2. If it is, the door opens and the while loop breaks. Make the script a regular/server script inside Workspace
or ServerScriptService
.