of     1   

EPICFACEHEAVEN
#161715186Thursday, May 07, 2015 8:23 PM GMT

I want a GUI to appear onTouch (I know the function) and when you press a certain key on your keyboard, something happens next. I don't know how to do this.
EPICFACEHEAVEN
#161715417Thursday, May 07, 2015 8:27 PM GMT

Like some text but not a print. Like for example: ____________________________ | Hello my name is (insert | |name here) | ------------------------------
Qorm
#161716156Thursday, May 07, 2015 8:41 PM GMT

player=game.Players.LocalPlayer mouse=player:GetMouse() mouse.KeyDown:connect(function(key) key=key:lower() if key=="r" then print("Hello "..player.Name..", you pressed 'r'") end end)

    of     1