Roblox脚本进入对话聊天

问题描述 投票:0回答:1

我需要一个脚本,以便当您按键盘上的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)
input lua dialog roblox
1个回答
0
投票
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)

© www.soinside.com 2019 - 2024. All rights reserved.