lua中的字母数字是多少?
What are the numbers of the alphabet in lua?
我正在尝试创建我的第一个脚本,我知道这很模糊,但我正在尝试让我的脚本在一个名为 ROBLOX 的游戏中设置我的步行速度,这就是我目前所获得的。
ws = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
while true do
if keyPress(27)==true then
ws = 100
wait(5)
ws = 16
end
end
有人可以 post 字母表中的数字吗?我在互联网上的任何地方都找不到这个。
例如:Escape
= 27
这些被称为键码。 Here is the list for 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
有人可以 post 字母表中的数字吗?我在互联网上的任何地方都找不到这个。
例如:Escape
= 27
这些被称为键码。 Here is the list for Roblox.