1 | script.Parent.DialogChoiceSelected:Connect( function (Dialog) |
2 | if Dialog.Name = = 'talk2' then |
3 | if Dialog.Parent:findFirstChild( "Humanoid" ) then |
4 | Dialog.Parent.Humanoid.Health = 0 |
5 | end |
6 | end |
7 | end ) |
there are two dialog choices, one of them being talk2
how does one make the dialog script kill?
edit: due to the new fe implementation into all roblox games, the script is not fe compatible.
DialogChoiceSelected
is the player that selected the dialog.1 | script.Parent.DialogChoiceSelected:Connect( function (Player, Dialog) |
2 | if Dialog.Name = = 'talk2' then |
3 | Player.Character.Humanoid.Health = 0 |
4 | end |
5 | end ) |