Skip to content

Client Exports

All client exports can be called from other client-side resources using the exports function.

Check whether the local player is currently inside a redzone

local inZone = exports['senor_redzones']:isInRedzone()

Returns:

  • boolean - true if the player is inside an active redzone, false otherwise

Example:

if exports['senor_redzones']:isInRedzone() then
print("You are in a redzone!")
end