How to reach to gltf model

Hi. I loaded gltf model and it works great. But i want to use it with gsap so i need to reach position or rotation of model but is there any way to reach it? (i mean i want to use it like
→ model.position.set(x,y,z))
`
const loader = new THREE.GLTFLoader();

loader.load( ‘./model/spafecard-small.glb’, function ( gltf ) {

 scene.add( gltf.scene );

}, undefined, function ( error ) {

console.error( error );

} );
`

Yes, gltf.scene is the model / wrapper of everything within the GLTF - you can access it’s position and rotation directly (ie. gltf.scene.position will give you the position of the model origin point.)