Local script helping GetChildren

local script:

for _,Players in pairs(game.Players:GetChildren()) do
    		if Players.Team == LPlayer.Team then
    			for _,CharacterEntitys in pairs(Players.Character:GetChildren()) do
    				print(CharacterEntitys)
    				if TeamESP == false then --ON TEAM ESP
    					if CharacterEntitys.ClassName == "Part" then
    						local ESPBlocks = Instance.new("BoxHandleAdornment",CharacterEntitys)
    						ESPBlocks.Size = Vector3.new(CharacterEntitys.Size.X,CharacterEntitys.Size.Y,CharacterEntitys.Size.Z)
    						ESPBlocks.Adornee = CharacterEntitys
    						ESPBlocks.ZIndex = 0
    						ESPBlocks.AlwaysOnTop = true

why only getting “Head” ?

If you’re using R15 then you need to look for MeshParts as well since that’s what the rest of a character’s body parts are made out of.

1 Like

You can change this to
CharacterEntitys:IsA(“BasePart”)
To include everything that is a physical part.