Im using a grenade that can stick to certain enemies, problem is sometimes the grenade scale gets messed up by the enemy scale, is there to attach a gameobject to another without missing its scale?
Right now im using some code like this:
onCollisionEnter(Collision col){
grenade.transform.parent=col.collider.transform;
}