Create a local script with the following code on any mobile device emulator:
The script
local UserInputService = game:GetService("UserInputService")
print(UserInputService.ModalEnabled) -- Prints false
wait(1)
UserInputService.ModalEnabled = true
print(UserInputService.ModalEnabled) -- Prints true yet the buttons are still visible.