I’m trying to make it so the player username appears as bold but i don’t know how
['content'] = player.Name.. ' Has issued an report: '..feedback;
If someone can help me i will be very thankful!
I’m trying to make it so the player username appears as bold but i don’t know how
['content'] = player.Name.. ' Has issued an report: '..feedback;
If someone can help me i will be very thankful!
['content'] = '**'..player.Name.. '** Has issued an report: '..feedback;
There you go! You have to just put 2 **
in the string next to ..Player.Name..
in right and left just like what you sending messages with bold!
Thank you very much! this actually helped me