Some UGC uploaders are abusing engine bugs which allow characters to turn almost completely invisible in almost any game as such:
This allows players to gain an unfair advantage in games and allows the UGC uploader to profit off of Roblox’s vulnerabilities. Steps to reproduce this issue will be shared privately.
For anyone who would like a quick fix while Roblox works on this issue, paste this code into your game:
local function fixCharacter(character)
for _, part in character:GetDescendants() do
if part:IsA("SurfaceAppearance") then
part.Parent.Transparency += 0.0001
end
end
end
game:GetService("Players").PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(fixCharacter)
if player.Character then
fixCharacter(player.Character)
end
end)
A private message is associated with this bug report