MouseEnter no longer firing for mobile

For Arsenal, we used MouseEnter for shooting on mobile.

Randomly shutoff with no warning and no longer functions.

I’m not sure why MouseEnter wouldn’t fire for mobile at all anymore? It basically performed as if it was a button and we used it so people can move their cursor around and continue shooting. (Granted it does say Mouse Enter)

We’ve come up with a quick patch to it but I’m sort of curious why this is completely turned off for mobile

This is how we did it in case your curious :

local frame = Buttons.ShootFrame
frame.MouseEnter:Connect(function()
   Held=true
 end)

UIS.TouchEnded:Connect(function(touch)
   Held=false
end)

Please search before posting: