How would I use a / key for a custom made chatbar.... Does this have to do with something like that.. Enum.KeyCodes.Slash.Value
--In a LocalScript function Pressed(key)--Inside the parameters we put the argument we want to use Outside the word "Pressed" connects the function to the event. if key == Enum.KeyCode.Slash then--We are checking if key presses the Slash key code this relates to user input service in the connection line. --Your code here relating to the custom made chat bar. end; end; game:GetService("UserInputService").InputBegan:connect(Pressed)--We connect the service UserInputService and the right event used to use KeyCodes from user input service --If this helped give me a check thank you