Detecting TouchTap with an ongoing screen input

Hi,

I want to know how I can detect a TouchTap input while, for example, the user is moving and so simultaneously holding down on the screen (on touchscreen devices)

I’m currently using this code, but it only works if there is no ongoing screen input at the same time:

UserInputService.TouchTap:Connect(function(pos,processed)
	
	if not processed then 
		--DO SOME STUFF
	end
end)

Any help is greatly appreciated, thanks!