Client Events
Listener for Freecam
Triggered when freecam mode is activated. Use this event to temporarily disable or adjust anti-cheat checks (e.g., freecam detection) to avoid false bans.
AddEventHandler('vms_housing:cl:enteringFreecam', function()
-- Your bypass to anticheat
end)
Triggered when exiting freecam mode. Use this event to re-enable normal anti-cheat checking.
AddEventHandler('vms_housing:cl:exitingFreecam', function()
-- Restore anti-freecam checking
end)
Last updated
Was this helpful?