I don’t think the game settings window will help. Because the classic torso and other body parts are all actually the default and absence of any characterMeshes.
If you’d like to remove them from characters then I suggest putting a script into your game like this:
local RunService = game:GetService("RunService")
local Players=game:GetService('Players')
Players.PlayerAdded:Connect(function (plr)
plr.CharacterAdded:Connect(function (char)
RunService.Stepped:wait()
local objs = char:GetDescendants()
for _,obj in pairs(objs) do
if obj:IsA('CharacterMesh') then
obj:Destroy()
end
end
end)
end)
Hope this helps, I’m not an expert on the topic of roblox character meshes. But pair this script with R6 characters set in your game settings. If ya run into trouble, let me know.