require('moonloader')
local sampev = require('samp.events')
local active = false
local models = {312, 8273, 326} -- Здесь твои айди моделек
function main()
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('del',function()
active = not active
end)
wait(-1)
end
function sampev.onCreateObject(objectId, data)
if active then
for i = 1,#models do
if data.modelId == models[i] then return false end
end
end
end