Client Events
Listener for Freecam
AddEventHandler('vms_housing:cl:enteringFreecam', function()
-- Your bypass to anticheat
end)AddEventHandler('vms_housing:cl:exitingFreecam', function()
-- Restore anti-freecam checking
end)Listener for Teleport
AddEventHandler('vms_housing:cl:teleport', function(status)
if status == 'start' then
-- Your bypass to anticheat
elseif status == 'end' then
-- Restore anti-freecam checking
end
end)Listener for Property Zone
Listener for Property
Last updated