How do i make an object have the same exact position as an other object’s position.But NOT rotation,
so im guessing that parenting an object wont work.
If the object you wish to have no rotation has a Rigidbody applied just limit the rotation contraraints on the axis you require
Simplest way is to just use a script which makes your object always follow the position of another object. You don’t need a rigidbody or a joint of any kind, just this script:
var target : Transform;
function LateUpdate()
{
transform.position = target.position;
}