SpecialKeyPressed (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Popinman322
No edit summary
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
 
(4 intermediate revisions by 2 users 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.
<code lua>
<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)
</code>}}
</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.
SpecialKeyPressed ( SpecialKey (Enum) key, string modifiers )
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)