Garry's Mod Wiki

Garry's Mod Wiki

  chat.AddText( ... )

Description

Adds text to the local player's chat box (which only they can read).

Arguments

1 vararg arguments
The arguments. Arguments can be:
  • table - Color. Will set the color for all following strings until the next Color argument.
  • string - Text to be added to the chat box.
  • Player - Adds the name of the player in the player's team color to the chat box.
  • any - Any other type, such as Entity will be converted to string and added as text.

Example

Prints the player's name and current weapon to their chat area.

local ply = LocalPlayer() chat.AddText( Color( 100, 100, 255 ), ply, ", you are holding ", Color( 100, 255, 100 ), ply:GetActiveWeapon():GetClass() )
Output:

This site is a community mirror of the official Garry's Mod wiki.. This site is not maintained by Facepunch Studios.

Page content is automatically updated twice a day. Edits and history are not available.

Last Parsed: Loading...