You can make player unable to do anything ( even escape key not working ) except closing game via task manager or alt+f4 via code:
Code:
local web = CreateWebUI(0,0,0, 0, 1, 32) SetWebAlignment(web, 0, 0) SetWebAnchors(web, 0, 0, 1, 1) SetWebVisibility(web, WEB_VISIBLE) LoadWebFile(web, "http://asset/"..GetPackageName().."/index.html") ShowMouseCursor(true) SetWebVisibility(web, WEB_VISIBLE) SetInputMode(INPUT_UI)
Comment