game.ContextActionService:BindAction("keyPress", select false, Enum.KeyCode.Q) game.ContextActionService:BindAction("keyPress", toggle, false, Enum.KeyCode.E)
when ever i run this only e is working its like it overrights the other keybind
If you look at the keybinding for the letter "Q", notice how it requires 4 parameters but you only supplied three, as you forgot a comma after the word "select"! Make sure you don't forget those essential characters!