SpecialKeyPressed (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
m Text replacement - "<code lua>" to "<SyntaxHighlight code="lua">" Tags: mobile web edit mobile edit |
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">" |
||
(One intermediate revision by the same user not shown) | |||
Line 12: | Line 12: | ||
{{Example| | {{Example| | ||
Everytime a special key is pressed, if the key was added using the [[AddSpecialKey]] method, this code would print the [[SpecialKey|key's enum]] and its modifiers. | Everytime a special key is pressed, if the key was added using the [[AddSpecialKey]] method, this code would print the [[SpecialKey|key's enum]] and its modifiers. | ||
< | <syntaxhighlight lang="lua"> | ||
game.GuiService.SpecialKeyPressed:connect(function(key, modifiers) | game.GuiService.SpecialKeyPressed:connect(function(key, modifiers) | ||
print(key, modifiers) | print(key, modifiers) | ||
end) | end) | ||
</ | </syntaxhighlight>}} | ||
[[Category:Events]] | [[Category:Events]] |
Latest revision as of 06:18, 27 April 2023
Protected:This item is protected. Attempting to use it in a Script or LocalScript will cause an error.
![]() | |
Description | Fired after a special key is pressed. |
---|---|
Member of: | GuiService |
Example
Everytime a special key is pressed, if the key was added using the AddSpecialKey method, this code would print the key's enum and its modifiers.
game.GuiService.SpecialKeyPressed:connect(function(key, modifiers)
print(key, modifiers)
end)