1
0
Fork 0
forked from Simnation/Main
Main/resources/[Developer]/[Mark]/Ped Script/html/client.lua

18 lines
404 B
Lua
Raw Normal View History

2025-06-07 08:51:21 +02:00
RegisterCommand("pedmenü", function()
SetNuiFocus(true, true)
SendNUIMessage({
type = "showUI",
show = true
})
end, false)
RegisterNUICallback("SetPed", function(data, cb)
TriggerServerEvent("pyrion:setPedFromUI", data.ped)
cb({})
end)
RegisterNUICallback("ResetPed", function(_, cb)
TriggerServerEvent("pyrion:resetPedFromUI")
cb({})
end)