note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
TextDrawHideForAll
Description
Hides a text draw for all players.
Name | Description |
---|---|
text | The ID of the textdraw to hide (returned by TextDrawCreate). |
Returns
This function does not return any specific values.
Examples
new Text: gMyTextdraw;
gMyTextdraw = TextDrawCreate(...);
//Later on
TextDrawShowForAll(gMyTextdraw);
//Even later on
TextDrawHideForAll(gMyTextdraw);
Related Functions
- TextDrawShowForPlayer: Show a textdraw for a certain player.
- TextDrawHideForPlayer: Hide a textdraw for a certain player.
- TextDrawShowForAll: Show a textdraw for all players.