i need to change these two value in one component
"width": 0.6,
"height": 1.8
},```
i have this simple script here but the thing is it has 2 value in one component so idont know how to change it
```js
system.runInterval(() => {
for (const player of world.getPlayers()) {
var hitbox=player.isSprinting
if (!hitbox && player.hasTag("clutch")) {
let hitboxwidth = player.getComponent( 'minecraft:collision_box' )
hitboxwidth.setCurrentValue( 500 )
}
}
});```