Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to open a UI when a key is pressed? (SOLVED BY KINGDOM5)

Asked by 6 years ago
Edited 6 years ago

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

1game:service'UserInputService'.InputBegan:connect(function(inputObject, gameProcessedEvent)
2    if (inputObject.KeyCode=='W') then
3    print'Hi.';
4    end;
5    end);

1 answer

Log in to vote
0
Answered by
blockmask 374 Moderation Voter
6 years ago

Here you go, also your script is full of deprecated ways my man

01local UIS = game:GetService("UserInputService")
02local Player = game.Players.LocalPlayer
03 
04function InputBegan(input, typing)
05    if (input.KeyCode == Enum.KeyCode.W) and not typing then
06        GuiObject:Clone().Parent = Player:WaitForChild("PlayerGui")
07    end
08end
09 
10UIS.InputBgan:Connect(InputBegan)

And if you're looking forward to using a more unique way, I recommend learning about ContextActionService

0
Nevermind, just realised this was answerd blockmask 374 — 6y
Ad

Answer this question