I am trying to make a command bar so you can type commands and run stuff even though you are not the owners. I already got the tween function down but I wanna know how to do the key bind. I used this code
1 | game:service 'UserInputService' .InputBegan:connect( function (inputObject, gameProcessedEvent) |
2 | if (inputObject.KeyCode = = 'W' ) then |
3 | print 'Hi.' ; |
4 | end ; |
5 | end ); |
Here you go, also your script is full of deprecated ways my man
01 | local UIS = game:GetService( "UserInputService" ) |
02 | local Player = game.Players.LocalPlayer |
03 |
04 | function InputBegan(input, typing) |
05 | if (input.KeyCode = = Enum.KeyCode.W) and not typing then |
06 | GuiObject:Clone().Parent = Player:WaitForChild( "PlayerGui" ) |
07 | end |
08 | end |
09 |
10 | UIS.InputBgan:Connect(InputBegan) |
And if you're looking forward to using a more unique way, I recommend learning about ContextActionService