Skip to main content
UWU Cat Café Job V2 exposes exports on both the client and server so you can query job status, duty state, grade, and XP from any other resource on your server.
All client exports run in a client-side script context and operate on the local player.

hasJob()

Checks whether the local player currently holds the UWU café job.Signature
Returns
  • booleantrue if the player has the job, false otherwise.
Example

getJob()

Retrieves the full job details table for the local player.Signature
Returns
  • table — The job data table if the player has the job.
  • false — If the player does not have the job.
Example

onDuty()

Checks whether the local player is currently clocked on duty.Signature
Returns
  • booleantrue if the player is on duty, false otherwise.
Example

hasJobAndGrade(grade)

Checks whether the local player has the job and holds at least the specified grade level.Signature
ParametersReturns
  • booleantrue if the player has the job and the specified grade, false otherwise.
Example

insideZone()

Checks whether the local player is currently inside a configured script zone (e.g. the café premises).Signature
Returns
  • booleantrue if the player is inside a zone, false otherwise.
Example