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

dialog killscript does not kill?

Asked by 6 years ago
Edited 6 years ago
1script.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
7end)

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.

0
Try using FindFirstChild() Instead of findFirstChild() MahadTheIronSword 98 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

This is because the first parameter to DialogChoiceSelected is the player that selected the dialog.

1script.Parent.DialogChoiceSelected:Connect(function(Player, Dialog)
2    if Dialog.Name == 'talk2' then
3        Player.Character.Humanoid.Health = 0
4    end
5end)
Ad

Answer this question