lua中的字母数字是多少?

时间:2016-09-06 02:37:38

标签: lua roblox

我正在尝试创建我的第一个脚本,我知道这很模糊,但我正在尝试让我的脚本在一个名为ROBLOX的游戏中设置我的速度,这就是我到目前为止所拥有的。

ws = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
while true do
    if keyPress(27)==true then
        ws = 100
        wait(5)
        ws = 16
    end
end

有人可以发布字母表的数字吗?我无法在互联网上找到它。

例如:Escape = 27

1 个答案:

答案 0 :(得分:2)

这些被称为密钥代码。 Here is the list for Roblox