SS:
JavaScript:
const texts = [
[[255, 255, 255, 255], "Text 1 "],
[[115, 107, 255, 255], "Text 2 "]
];
function string() {
Render.StringMultiColor(700, 400, 0, texts, Render.AddFont('Verdana', 9, 0));
}
Cheat.RegisterCallback("Draw", "string");
Render.StringMultiColor = function (x, y, centered, text, font) {
var xx = 0;
for (var i = 0; i < text.length; i++) {
Render.StringCustom(x + xx, y, centered, text[i][1], text[i][0], font);
xx = Render.TextSize(text[i][1], font)[0];
}
}