> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# firesignal

> Runs the local connections for an RBXScriptSignal with the provided arguments. The first argument must be a valid signal. Invalid signal values raise an error.

<div className="real-function-page">
  ```lua theme={null}
  firesignal(signal: RBXScriptSignal, ...arguments?: ...any)
  ```

  ## Аргументы

  <ParamField path={"signal"} type={"RBXScriptSignal"} required>
    Signal passed to getconnections. Missing or nil values raise "firesignal expects a valid connection".
  </ParamField>

  <ParamField path={"...arguments"} type={"...any"}>
    Values passed to each local signal connection.
  </ParamField>

  ## Пример

  Run local Lua connections attached to an RBXScriptSignal and pass extra values to each eligible connection.

  ```lua theme={null}
  local button = script.Parent

  firesignal(button.Activated, "manual")
  ```
</div>
