Issue Description
Some Roblox icons resembling emojis are censored in in-game chat, experience titles, and descriptions. The icons are recognized as regular text in Studio but flagged as inappropriate in other contexts. Affected icons include:
- Beetle
- Blueberries
- Bell Pepper
- Tamale
- Box
- Roller Skate
This inconsistency can confuse developers and players when creating or interacting with content.
Reproduction Steps
- Create a new experience in Roblox Studio.
- Add the affected icons to:
- Experience title or description.
- In-game chat using a script that inserts the icons into the chat messages.
- Publish the experience and test the icons in both the title/description and in-game chat.
Expected Behavior
Icons resembling standard emojis should not be censored in titles, descriptions, or in-game chat unless they explicitly violate Robloxโs Community Standards.
Visual Aids:
-
Title Example:
Attempted Title: โ Bug Adventures Blueberry Questโ
-
In-Game Chat Example 1:
Message:"Your ๐ผ Roller Skate is ready!"
-
In-Game Chat Example 2:
Script Code:
-- Services
local TextChatService = game:GetService("TextChatService")
-- Function to send a message to the in-game chat
local function sendMessageToChat(message)
if TextChatService then
TextChatService.TextChannels.RBXGeneral:DisplaySystemMessage(message)
else
warn("TextChatService.ChatInput is not enabled")
end
end
-- Full Emoji List with Names
local emojiList = {
-- Smileys & People
"๐ - Grinning Face", "๐ - Grinning Face with Big Eyes", "๐ - Grinning Face with Smiling Eyes", "๐ - Beaming Face with Smiling Eyes",
"๐ - Grinning Squinting Face", "๐
- Grinning Face with Sweat", "๐ - Face with Tears of Joy", "๐คฃ - Rolling on the Floor Laughing",
"๐ - Smiling Face with Smiling Eyes", "๐ - Smiling Face with Halo", "๐ - Slightly Smiling Face", "๐ - Upside-Down Face",
"๐ - Winking Face", "๐ - Relieved Face", "๐ - Heart Eyes", "๐ฅฐ - Smiling Face with Hearts", "๐ - Face Blowing a Kiss",
"๐ - Kissing Face", "๐ - Kissing Face with Smiling Eyes", "๐ - Kissing Face with Closed Eyes", "๐ - Face Savoring Food",
"๐ - Face with Stuck-Out Tongue and Winking Eye", "๐คช - Zany Face", "๐ - Face with Stuck-Out Tongue", "๐ค - Money-Mouth Face",
"๐ค - Hugging Face", "๐ค - Thinking Face", "๐คญ - Face with Hand Over Mouth", "๐คซ - Shushing Face", "๐คฅ - Lying Face", "๐ถ - Face Without Mouth",
"๐ - Neutral Face", "๐ - Expressionless Face", "๐ - Unamused Face", "๐ - Face with Rolling Eyes", "๐ฌ - Grimacing Face", "๐ค - Zipper-Mouth Face",
"๐คจ - Face with Raised Eyebrow", "๐ - Pensive Face", "๐ช - Sleepy Face", "๐คค - Drooling Face", "๐ด - Sleeping Face", "๐ท - Face with Medical Mask",
"๐ค - Face with Thermometer", "๐ค - Face with Head-Bandage", "๐คข - Nauseated Face", "๐คฎ - Face Vomiting", "๐คง - Sneezing Face", "๐ฅต - Hot Face",
"๐ฅถ - Cold Face", "๐ต - Dizzy Face", "๐คฏ - Exploding Head", "๐ค - Cowboy Hat Face", "๐ฅณ - Partying Face", "๐ - Smiling Face with Sunglasses",
"๐ค - Nerd Face", "๐ง - Face with Monocle", "๐ - Confused Face", "๐ - Worried Face", "๐ - Slightly Frowning Face", "๐ฎ - Face with Open Mouth",
"๐ฏ - Hushed Face", "๐ฒ - Astonished Face", "๐ณ - Flushed Face", "๐ฅบ - Pleading Face", "๐ข - Crying Face", "๐ญ - Loudly Crying Face",
"๐ค - Face with Steam From Nose", "๐ - Angry Face", "๐ก - Pouting Face", "๐คฌ - Face with Symbols on Mouth", "๐คฏ - Exploding Head",
"๐ณ - Flushed Face", "๐ฑ - Face Screaming in Fear", "๐จ - Fearful Face", "๐ฐ - Anxious Face with Sweat", "๐ฅ - Sad but Relieved Face",
"๐ - Downcast Face with Sweat", "๐ค - Hugging Face",
-- Animals & Nature
"๐ถ - Dog Face", "๐ฑ - Cat Face", "๐ญ - Mouse Face", "๐น - Hamster Face", "๐ฐ - Rabbit Face", "๐ฆ - Fox Face", "๐ป - Bear Face",
"๐ผ - Panda Face", "๐จ - Koala Face", "๐ฏ - Tiger Face", "๐ฆ - Lion Face", "๐ฎ - Cow Face", "๐ท - Pig Face", "๐ฝ - Pig Nose", "๐ธ - Frog Face",
"๐ต - Monkey Face", "๐ - See-No-Evil Monkey", "๐ - Hear-No-Evil Monkey", "๐ - Speak-No-Evil Monkey", "๐ - Monkey", "๐ - Chicken",
"๐ง - Penguin", "๐ฆ - Bird", "๐ค - Baby Chick", "๐ฃ - Hatching Chick", "๐ฅ - Front-Facing Baby Chick", "๐ฆ - Duck", "๐ฆ
- Eagle",
"๐ฆ - Owl", "๐ฆ - Bat", "๐บ - Wolf", "๐ - Boar", "๐ด - Horse Face", "๐ฆ - Unicorn Face", "๐ - Honeybee", "๐ชฒ - Beetle",
"๐ - Bug", "๐ฆ - Butterfly", "๐ - Snail", "๐ - Lady Beetle",
-- Food & Drink
"๐ - Grapes", "๐ - Melon", "๐ - Watermelon", "๐ - Tangerine", "๐ - Lemon", "๐ - Banana", "๐ - Pineapple", "๐ฅญ - Mango",
"๐ - Red Apple", "๐ - Green Apple", "๐ - Pear", "๐ - Peach", "๐ - Cherries", "๐ - Strawberry", "๐ซ - Blueberries", "๐ฅ - Kiwi Fruit",
"๐
- Tomato", "๐ฅฅ - Coconut", "๐ฅ - Avocado", "๐ - Eggplant", "๐ฅ - Potato", "๐ฅ - Carrot", "๐ฝ - Ear of Corn", "๐ถ๏ธ - Hot Pepper",
"๐ซ - Bell Pepper", "๐ฅ - Cucumber", "๐ฅฌ - Leafy Green", "๐ฅฆ - Broccoli", "๐ง - Garlic", "๐ง
- Onions", "๐ - Mushroom", "๐ฅ - Peanuts",
"๐ฐ - Chestnut", "๐ - Bread", "๐ฅ - Croissant", "๐ฅ - Baguette Bread", "๐ฅจ - Pretzel", "๐ฅฏ - Bagel", "๐ฅ - Pancakes", "๐ง - Waffle",
"๐ง - Cheese", "๐ - Meat on Bone", "๐ - Poultry Leg", "๐ฅฉ - Cut of Meat", "๐ฅ - Bacon", "๐ - Hamburger", "๐ - French Fries", "๐ - Pizza",
"๐ญ - Hot Dog", "๐ฅช - Sandwich", "๐ฎ - Taco", "๐ฏ - Burrito", "๐ซ - Tamale", "๐ฅ - Green Salad", "๐ฅ - Shallow Pan of Food", "๐ฅซ - Canned Food",
"๐ - Spaghetti", "๐ - Bowl of Noodles", "๐ฒ - Pot of Food", "๐ - Curry Rice",
-- Activities & Sports
"โฝ - Soccer Ball", "๐ - Basketball", "๐ - American Football", "โพ - Baseball", "๐ฅ - Softball", "๐พ - Tennis", "๐ - Volleyball",
"๐ - Rugby Football", "๐ฅ - Flying Disc", "๐ฑ - Pool 8 Ball", "๐ช - Yo-Yo", "๐ - Ping Pong", "๐ธ - Badminton", "๐ฅ
- Goal Net",
"๐ณ - Bowling", "๐ - Field Hockey", "๐ - Ice Hockey", "๐ - Cricket Bat and Ball", "๐ช - Box", "๐ฅ - Lacrosse", "๐น - Bow and Arrow",
"๐ฃ - Fishing Pole", "๐คฟ - Diving Mask", "๐ฅ - Boxing Glove", "๐ฅ - Martial Arts Uniform", "๐ฝ - Running Shirt", "๐น - Skateboard",
"๐ผ - Roller Skate", "๐ถ - Canoe", "โธ๏ธ - Ice Skate", "๐ฅ - Curling Stone", "๐ฟ - Skis", "โท๏ธ - Skier", "๐ - Snowboarder", "๐ช - Parachute",
"๐๏ธ - Weight Lifter", "๐คผ - Wrestlers", "๐คธ - Gymnast", "โน๏ธ - Person Bouncing Ball", "๐คพ - Person Playing Handball",
-- Symbols
"โค๏ธ - Red Heart", "๐งก - Orange Heart", "๐ - Yellow Heart", "๐ - Green Heart", "๐ - Blue Heart", "๐ - Purple Heart", "๐ค - Brown Heart",
"๐ค - Black Heart", "๐ค - White Heart", "๐ - Broken Heart", "โฃ๏ธ - Heart Exclamation", "๐ - Two Hearts", "๐ - Revolving Hearts",
"๐ - Heart with Ribbon", "๐ - Growing Heart", "๐ - Sparkling Heart", "๐ - Heart with Arrow", "๐ - Heart with Gift", "๐ - Heart Decoration",
"โฎ๏ธ - Peace Symbol", "โ๏ธ - Latin Cross", "โช๏ธ - Star and Crescent", "๐๏ธ - Om", "โธ๏ธ - Wheel of Dharma", "โก๏ธ - Star of David",
"๐ฏ - Six Pointed Star with Middle Dot", "๐ - Menorah with Nine Branches", "โฏ๏ธ - Yin Yang", "โฆ๏ธ - Orthodox Cross", "๐ - Place of Worship",
"โ - Ophiuchus", "โ - Aries", "โ - Taurus", "โ - Gemini", "โ - Cancer", "โ - Leo", "โ - Virgo", "โ - Libra", "โ - Scorpio",
"โ - Sagittarius", "โ - Capricorn", "โ - Aquarius", "โ - Pisces", "๐ - Identification Card", "โ๏ธ - Atom Symbol", "๐ - Circled Ideograph Accept",
"โข๏ธ - Radioactive Sign", "โฃ๏ธ - Biohazard Sign", "๐ด - No Mobile Phones", "๐ณ - Vibrate Mode", "๐ถ - Japanese โAvailableโ Button",
"๐ - Japanese โFree of Chargeโ Button", "๐ธ - Japanese โApplicationโ Button", "๐บ - Japanese โReservedโ Button", "๐ท๏ธ - Japanese โMonthly Amountโ Button",
"๐ฏ - Japanese โReservedโ Button", "๐ - Japanese โYouโ Button", "ใ๏ธ - Japanese โSecretโ Button", "ใ๏ธ - Japanese โCongratulationsโ Button"
}
-- Printing all emojis to chat
for _, emoji in ipairs(emojiList) do
sendMessageToChat(emoji)
task.wait(0.1) -- Short delay to avoid spamming too quickly
end