我需要一个脚本,以便当您按键盘上的E时,它将打开与npc的聊天,我已经在想要使用的对话框中显示了对话框。我也已经有了用于检测何时按E的代码。
game:GetService("UserInputService").InputEnded:Connect(function(input,event)
if input.KeyCode == Enum.KeyCode.E then
print("Activated")
workspace.NPC.Head.Dialog.InUse = true --This is the code I expect to open up the dialog.
end
end)
game:GetService("UserInputService").InputEnded:Connect(function(input,event)
if input.KeyCode == Enum.KeyCode.E then
print("Activated")
workspace.NPC.Head.Dialog.SomeGui.Visible= true -- example
end
end)