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.
1 | script.Parent.Transparency = 0.5 |
2 | script.Parent.CanCollide = false |
3 | wait( 1 ) |
4 | script.Parent.Transparency = 0 |
5 | script.Parent.CanCollide = true |
and this is the script i made to open the door when the npc dies.
1 | local part 1 = game.Workspace.part 1 |
2 | local part 2 = part 1. you.Disabled |
3 | function door() |
4 | local hp = script.Parent.Health |
5 | if hp < 1 then |
6 | part 2 = false |
7 | end |
8 | script.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)
You shouldn't need two scripts for this. Here's a short script that should work when placed inside of the NPC:
1 | script.Parent.Humanoid.Died:Connect( function () |
2 | door.Transparency = 0.5 |
3 | door.CanCollide = false |
4 | end ) |
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:
1 | script.Parent.Humanoid.Died:Connect( function () |
2 | game.Workspace.Door.Transparency = 0.5 |
3 | game.Workspace.Door.CanCollide = false |
4 | end ) |
Hope this helps.
Heres what I got after troubleshooting.
01 | function door() |
02 | local partsboi = game.Workspace.part 1 |
03 | local LOL = script.Parent.Health |
04 | if LOL < 1 then |
05 | partsboi.Transparency = 0.5 |
06 | partsboi.CanCollide = false |
07 | wait( 5 ) |
08 | partsboi.Transparency = 0 |
09 | partsboi.CanCollide = true |
10 | end |
11 | end |
12 | script.Parent.Died:Connect(door) |