I am currently working on a game, and when a boss dies, a door will open. I need a script that detects the boss's health and if it's zero, the door will open. The boss's name is "Boss" by the way.
You could do,
Boss.Humanoid.Died:connect(function() --Door open end)