How to check if a player presses ctrl and left shift in roblox studio

Hi so I would like to know if its possible to check if a player presses ctrl and left shift and the same time

Use UserInputService, UserInputService.InputBegan (roblox.com)

local uis = game:GetService("UserInputService")

uis.InputBegan:Connect(function(input)
	if input.KeyCode == Enum.KeyCode.LeftShift and Enum.KeyCode.LeftControl then
		print(1)
	end
end)

I tried this before and It did not work

Wait nevermind I did not put the input.KeyCode == in the front

Otherwise use UserInputService:IsKeyDown (roblox.com)