Need help with Roblox Id's!

This is my second post on the forums, so please correct me if I have put this in the wrong category or said something inappropriate.

I’m currently developing a game, and have just come across this issue. I can’t find anything online to help me. What ID Number is the classic bloxy torso, left arm and other body parts. What I’m talking about is this:
https://gyazo.com/a1e972a9216eca982007e86842d08e91
https://gyazo.com/c0632887253169b85d30b0f82281372a

Thank you.

2 Likes

Hey there softdevv,

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.

3 Likes