I have a Gui frame and am trying to have it so it detects swipes for left and right. It currently works but it only works when the mobile player keeps doing individual swipes where their finger has to move off of the screen in order to do another one.
Is there a way to have it so the player can just do multiple swipes as one singular motion and have it all register accordingly?
Dumbed down Local script below:
DetectorMobile.TouchSwipe:Connect(function(direction)
if direction == Enum.SwipeDirection.Left then
print("left")
elseif direction == Enum.SwipeDirection.Right then
print("right")
end
end)