How to detect if thumbstick is hold to the left or right?

Currently making a 2D game and I am using A and D keys and custom mobile buttons to move left and right. I’m trying to add controller support to the game at the moment but I don’t know how to detect if holding to the left or right.

This is what I meant:
image

1 Like

use input.Delta.

local uis = game:GetService("UserInputService")

uis.InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.Thumbstick1 then
if input.Delta > 0 then
print("right")
elseif input.Delta < 0 then
print("left")
end
end
end)
1 Like