Like the title said I'm trying to make a text box a player can type in. This player will specifically be able to type a letter into it and once they do they will be able to use in game. As in when the player does press the button that is equaled to the button the game will detect it. Though I'm not sure how to do this. I've seen some examples. One example is Strucid. In Strucid your able to exactly what I just said. Any help will be very appreciated. This is my attempt.
Local Script
01 | local keybindbox = script.Parent |
02 | local Player = game.Players.LocalPlayer |
03 | local UIS = game:GetService( "UserInputService" ) |
04 |
05 |
06 |
07 |
08 | UIS.InputBegan:Connect( function (Input,gpe) |
09 | local T = keybindbox.Text |
10 | if Input.KeyCode = = Enum.KeyCode.T and not gpe then |
11 | print ( "Player pressed whatever was in keybindbox" ) |
12 | end |
13 | end ) |
Hmm, Im sorta new to this but I'll try.
01 | local keybindbox = script.Parent |
02 | local Player = game.Players.LocalPlayer |
03 | local UIS = game:GetService( "UserInputService" ) |
04 |
05 | UIS.InputBegan:Connect( function (Input) |
06 | local Pressed = Input.KeyBind |
07 | if Pressed = = Enum.KeyCode..keybindbox.Text then |
08 | print ( "Something" ) |
09 | end |
10 | end ) |
This could not really work but give it a try, you never know!