I know how to make it so that if you click a key, than a certain thing will happen. What if I want it to be that if you click two keys than something will happen? I'm not requesting I'm asking for the method.
Here you are. Free of charge.
local keyQ = false local keyE = false local plr = game.Players.LocalPlayer local mouse = plr:GetMouse() mouse.KeyDown:connect(function(key) if key == "q" then keyQ = true elseif key == "e" then keyE = true end end) mouse.KeyUp:connect(function(key) if key == "q" then keyQ = false elseif key == "e" then keyE = false end end)