I have been trying to add mobile support into my game. On PC when you click on a slot it equips it using uielement.InputBegan(bla bla bla)
There is a Enum.UserInputType.Touch but that doesnt seem to work at all on mobile. Currently this is what I tried on the Frame:
v.TouchTap:Connect(function()
print("HEYYYYY")
end)
That doesn’t work, neither does this:
v.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.Touch then
print("HEEEEEEEELLLLLOOOOOOOOOOO")
end
end)
Has anyone else had a problem with this??? I’ve made sure all of my frames are Active and Selectable