(Text3D:id, color, text[])
public OnGameModeInit()
{
new Text3D:mylabel;
mylabel = Create3DTextLabel(\"I\'m at the coordinates:\\n30.0,40.0,50.0\",0x008080FF,30.0,40.0,50.0,40.0,0);
Update3DTextLabelText(mylabel, 0xFFFFFFFF, \"New text.\");
return 1;
}