From the reference libraryFiveM

emit-server

fivem-docs/docs/scripting-reference/runtimes/javascript/functions/emit-server.md

emit-server


title: Emit - server

Use emit function when you want to trigger an event from the server to the server.
You need to declare the event on the server with on or onNet first.

Signature

function emit(eventName: string, ...args?: any ) => void

Signature > Required argument

  • eventName: The event name you want to trigger.

Signature > Optional arguments

  • ...args: The arguments you want to pass.

Examples

// No arg
emit("foo:playerIsHere");

// With args
emit("foo:thisPlayerIsHere", playerId, playerLicense);
Back to documentation