> For the complete documentation index, see [llms.txt](https://stellardocs.bulkgames.us/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stellardocs.bulkgames.us/network/signal.md).

# Signal

Fires the RemoteEvent endpoint with the specified name and arguments

## On the server

```lua
Network:Signal(name, player, ...)
```

Example code:

```lua
Network:Signal("DetainEvent", detainer, "SetDetaining", true)
```

## On the client

```lua
Network:Signal(name, ...)
```

Example:

```lua
Network:Signal("DetainEvent", "arrest", targetPlayer, Player)
```
