Just out of curiosity, is it possible to add images or icons to a players chat without forking it? I currently do this to give players tags/colored chat etc.
ExtraData = {
ChatColor = Color3.fromRGB(255, 255, 255),
NameColor = Color3.fromRGB(255, 255, 255),
Tags = {
{
TagText = Role,
TagColor = Tags[Rank],
}
}
}
for i, v in pairs(ExtraData) do
Speaker:SetExtraData(i, v)
end
And I tried like ‘Icons = {’‘}’ but that did nothing (didn’t error either) So just out of curiosity, is there a value that goes inside ExtraData for image icons? Are there any other values that can go in ExtraData that I’m not aware of?