|
| 26 Feb 2015 05:57 PM |
So I can't find script helpers anywhere, so sorry but I guess I will just use this.
Anyways, I was wondering if it is possible to use key functions out of a GUI without selecting a tool. Is this possible? And if so how? Thanks. |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2015 06:01 PM |
| UserInputService or GetMouse. |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2015 06:05 PM |
function okKeyDown(key) if key == q then
end end
If I could just get some help from this point, I could handle the rest. I don't know much about the get service stuff. Thanks. |
|
|
| Report Abuse |
|
|
|
| 26 Feb 2015 06:07 PM |
games.Player.PlayerAdded:connect(function(plr) mouse = plr:GetMouse() mouse.KeyDown:connect(function(key) if key == "q" then --do this end end) end) |
|
|
| Report Abuse |
|
|