local Players = game:GetService("Players") local player = Players.LocalPlayer local function resetAppearance(character) if character then for _, part in pairs(character:GetChildren()) do if part:IsA("BasePart") then part.Color = Color3.fromRGB(163, 162, 165) end end for _, item in pairs(character:GetChildren()) do if item:IsA("Clothing") or item:IsA("Accessory") or item:IsA("Shirt") or item:IsA("Pants") or item:IsA("ShirtGraphic") then item:Destroy() end end local head = character:FindFirstChild("Head") if head then local face = head:FindFirstChild("face") if face then face.Texture = "rbxasset://textures/face.png" end end end end if player.Character then resetAppearance(player.Character) end player.CharacterAdded:Connect(function(character) task.wait(2) -- resetAppearance(character) end)