Copies a geometry onto every point from the right input.




## Description
no description
## Parameters

<table>
<thead>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Description</th>
	</tr>
</thead>
<tr>
	<td>count</td>
	<td><div class='bg-orange-800 px-2 py-px text-white rounded-sm'>integer</div></td>
	<td>copies count, used when the second input is not given</td>
</tr>
<tr>
	<td>t</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>translate each copy</td>
</tr>
<tr>
	<td>r</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>rotate each copy</td>
</tr>
<tr>
	<td>s</td>
	<td><div class='bg-blue-800 px-2 py-px text-white rounded-sm'>vector3</div></td>
	<td>scale each copy</td>
</tr>
<tr>
	<td>scale</td>
	<td><div class='bg-yellow-800 px-2 py-px text-white rounded-sm'>float</div></td>
	<td>scale multiplier for each copy</td>
</tr>
<tr>
	<td>useCopyExpr</td>
	<td><div class='bg-emerald-800 px-2 py-px text-white rounded-sm'>boolean</div></td>
	<td>toggle on to use the `copy` expression, which allows to change how the left input is evaluated for each point</td>
</tr>
</table>