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.
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)