Garry's Mod Wiki

BroadcastLua

  BroadcastLua( string code )

Description

Sends the specified Lua code to all connected clients and executes it.

If you need to use this function more than once, consider using net library. Send net message and make the entire code you want to execute in net.Receive on client.
If executed clientside it won't do anything.

Arguments

1 string code
The code to be executed. Capped at length of 254 characters.

Example

Print "Hello World!" in the clients' console

BroadcastLua( "print( 'Hello World!' )" )
Output: Hello World!