I have no idea how to get started with that. Could someone give me a major hint or point me to a robloxwiki for that?
There is a function which focuses on the text box when called, :CaptureFocus(). Here is an example:
local player = script.Parent.Parent.Parent.Parent local mouse = player:GetMouse() local textbox = script.Parent mouse.KeyDown:connect(function(key) if key == "/" then--if the key is '/' then textbox:CaptureFocus() --User can type end end)
If you are new to keys you can go to this link here : http://wiki.roblox.com/index.php?title=Taking_keyboard_input Which shows how to get keyboard input. Hope i helped!