LordZethh
|
  |
| Joined: 21 Aug 2013 |
| Total Posts: 389 |
|
|
| 29 Mar 2016 01:44 AM |
How do I open a GUI using TAB?
|
|
|
| Report Abuse |
|
Locard
|
  |
| Joined: 13 Apr 2014 |
| Total Posts: 3516 |
|
|
| 29 Mar 2016 01:50 AM |
You should be using UserInputService.
game:GetService'UserInputService'.InputBegan:connect(function(input,gpe)
if not gpe then if input.KeyCode == Enum.KeyCode.Tab then
-- code
end end
end)
|
|
|
| Report Abuse |
|