Files
Elite-Gaming-FiveM/resources/Laptop-UI/client/main.lua
T
2021-12-03 01:05:09 +00:00

17 lines
421 B
Lua

RegisterNetEvent('laptop:client/openUI')
AddEventHandler('laptop:client/openUI', function()
print('open')
SetNuiFocus(true, true)
SendNUIMessage({
action = "openLaptop",
iframe = Laptop.webPage,
pagetitle = Laptop.webPageTitle,
pageurl = Laptop.webPageUrl,
})
end)
closeLaptop = function()
SetNuiFocus(false, false)
end
RegisterNUICallback('closeLaptop', closeLaptop)