- Fe - Roblox Chat Tags Remover Script Online |
A shell extension that adds preview thumbnails for STL files to Windows Explorer. Runs on Windows 7 or later.
Can also be used with Total Commander and FreeCommander.
Feel free to donate if you like my program!
recommended
for old systems
Michael from Teaching Tech made a video guide about the installation. He was so kind to allow me to embed it here! Thumbnail installation starts at 1:49.
Thumbnail generation is based on the fastest STL viewer available. Folders full of STL files are no problem, and most STL thumbnails are generated as fast as those of JPG photos.
endsolid markers (123D, IRONCAD)![]()
For automation and easy deployment, the color settings are loaded from the registry key HKEY_CURRENT_USER\SOFTWARE\Papa’s Best. Create values according to the following table. If a value is missing, its default is assumed.
| Name | Type | Default | Meaning |
|---|---|---|---|
| DefaultBackgroundColor | DWORD | 0x00000000 |
Background color for thumbnails. Format is 0xRRGGBBAA. |
| DefaultObjectColor | DWORD | 0xffffffff |
Object color for files without built-in color information. Format is 0xRRGGBBAA. Transparency is not supported. |
| InitialEyeYawDegrees | DWORD | 28 |
Horizontal rotation of the viewer, in degrees. Positive rotates right. |
| InitialEyePitchDegrees | DWORD | 331 |
Vertical rotation of the viewer, in degrees. Positive rotates down. |
Papa’s Best STL Thumbnails installs for the current user by default. To install for all users on a system, open a command prompt or a PowerShell and run msiexec /i "Papas Best STL Thumbnails.msi" MSIINSTALLPERUSER="".
-- Hook into incoming messages local function onIncomingMessage(message: ChatMessage) if not message or not message.TextSource then return nil -- allow message to pass unchanged end
Roblox, FilteringEnabled, Chat Tags, TextChatService, OnIncomingMessage, Client-Side Scripting 1. Introduction Roblox’s transition to FilteringEnabled (FE) mandated that all replicable actions originate from the server. The legacy Chat service allowed direct modification of message contents locally, but FE deprecates this. The modern TextChatService (introduced in 2020–2022) processes messages server-side, making client-side tag removal non-trivial.
local originalSender = message.TextSource local strippedSender = stripTagsFromName(originalSender) - FE - Roblox Chat Tags Remover Script
local cleaned = rawName -- Keep removing leading tags until none left while true do local newName = cleaned:gsub(TAG_PATTERN, "") if newName == cleaned then break end cleaned = newName end
Game developers and utility scripters need a reliable method to strip chat tags (e.g., ranks, badges, group names) from displayed messages without violating FE principles or requiring server-side privileges. Tags will be stripped
-- Connect if service is available if TextChatService then TextChatService.OnIncomingMessage = onIncomingMessage print("[ChatTagRemover]: Loaded successfully. Tags will be stripped.") else warn("[ChatTagRemover]: TextChatService not found. Script aborted.") end -- Advanced: Remove all tags except specific ones (e.g., [OWNER]) local WHITELIST_TAGS = "[OWNER]" local function advancedStrip(rawName: string): string local parts = {} for part in rawName:gmatch("%b[]") do table.insert(parts, part) end
-- Return the (potentially) modified message return message end due to FilteringEnabled (FE) architecture
return cleaned end
-- Edge case: if entire name was tags, return original as fallback if cleaned:match("^%s*$") then return rawName end
Author: Technical Research Division, Game Security & Modding Date: April 18, 2026 Version: 1.0 Abstract Roblox’s chat system enforces player identity through chat tags —visual prefixes displayed before usernames (e.g., [ADMIN] , [DEV] , or group ranks). While tags serve moderation and recognition purposes, certain game environments require their suppression for immersive UI/UX design. However, due to FilteringEnabled (FE) architecture, client-side tag removal attempts are rejected by the server. This paper dissects the FE-compliant methodology for removing chat tags via a LocalScript that manipulates the TextChatService and intercepts OnIncomingMessage . We present a fully functional script, analyze its security limitations, and evaluate its practical applications in roleplay, cinematics, and UI-cluttered scenarios.
![]()
Clear your Explorer thumbnail cache (see above) or copy the file to a different location.
This is a bug in Windows 10 that also affects other thumbnails – for example transparent PNG images here and here.
I can’t do anything in my program to work around it, I’m afraid. Please use the Windows 10 feedback function to report this to Microsoft. If enough users do it, they may eventually fix it. Windows 7 does not have this bug.