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

How do I get the door to open after a certain npc dies?

Asked by 5 years ago

So im trying to make sorta like a dungeon crawler, but i need the door to open after the npc dies. This is my attempt the door opening script.

1script.Parent.Transparency = 0.5
2script.Parent.CanCollide = false
3wait(1)
4script.Parent.Transparency = 0
5script.Parent.CanCollide = true

and this is the script i made to open the door when the npc dies.

1local part1 = game.Workspace.part1
2local part2 = part1.you.Disabled
3function door()
4    local hp = script.Parent.Health
5    if hp <1 then
6        part2 = false
7    end
8script.Parent.Died:Connect(function(door)

(part 1 is the door) (the door opening script is disabled) (the second script is supposed to enable the first script when the npc dies) (i put the second script in the npc's humanoid)

2 answers

Log in to vote
0
Answered by
lunatic5 409 Moderation Voter
5 years ago

You shouldn't need two scripts for this. Here's a short script that should work when placed inside of the NPC:

1script.Parent.Humanoid.Died:Connect(function()
2    door.Transparency = 0.5
3    door.CanCollide = false
4end)

All you need to do is replace "door" with the actual door. For example, if it's in Workspace and called "Door" you would write the following:

1script.Parent.Humanoid.Died:Connect(function()
2    game.Workspace.Door.Transparency = 0.5
3    game.Workspace.Door.CanCollide = false
4end)

Hope this helps.

0
I LITTERALY JUST SOLVED IT RIGHT BEFORE U ANSWERED XD coolmanHDMI 72 — 5y
0
hmm my answer was a little different tho but i guess i can try yours coolmanHDMI 72 — 5y
0
If you don't mind sharing what was the solution you came up with? lunatic5 409 — 5y
0
sure im gonna post it as an answer ok? coolmanHDMI 72 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Heres what I got after troubleshooting.

01function door()
02local partsboi = game.Workspace.part1
03local LOL = script.Parent.Health
04if LOL <1 then
05    partsboi.Transparency = 0.5
06    partsboi.CanCollide = false
07    wait(5)
08    partsboi.Transparency = 0
09    partsboi.CanCollide = true
10end
11end
12script.Parent.Died:Connect(door)

Answer this question