Will this reduce lag script is better than nomal?

ServerScript in startercharacterscrips

local Character = script.Parent

for _, v in pairs(Character:GetChildren()) do
if v:IsA(“MeshPart”) then
v.CanQuery = false
v.CanTouch = false

	if v.Name == "HumanoidRootPart" then
		local Hitbox = game.ServerStorage.Hitbox:Clone()
		Hitbox.Parent = Character
		Hitbox.Weld.Part0 = v
	end
end

end