of     1   

anaIyze
#144998485Sunday, August 31, 2014 7:30 PM GMT

is it possible to make a Hotkey? I can't seem to do it.
anaIyze
#144998934Sunday, August 31, 2014 7:35 PM GMT

b
icanxlr8
#144998947Sunday, August 31, 2014 7:35 PM GMT

Please explain the term "Hotkey" to me. Have a nice day :)
anaIyze
#145002144Sunday, August 31, 2014 8:10 PM GMT

A hotkey is a sequence of keys needed to be pressed to perform a single or multi-function. I want to do CTRL+Q, and it would open up a gui
WrathOfTheElvhen
#145002543Sunday, August 31, 2014 8:14 PM GMT

It depends. Do you want a script that'll do something when you press a button, or do you want to set a Hotkey for in studio? http://wiki.roblox.com/index.php?title=Keyboard_Shortcuts Or... http://wiki.roblox.com/index.php?title=KeyDown_(Event) http://wiki.roblox.com/index.php?title=Taking_keyboard_input
Nexure
#145002743Sunday, August 31, 2014 8:16 PM GMT

use LocalPlayer:GetMouse() so you can do something like local LocalPlayer = Game:GetService("Players").LocalPlayer local Mouse = LocalPlayer:GetMouse() local key = Mouse.KeyDown:wait() if key:byte() == 50 then -- control print("Key has been pressed") end Just do something like that, if you do use GetMouse then you would need a loop.

    of     1