If on the eventsheet, you can do the picking in the conditions and then use
runtime.objects.H1.getPickedInstances()
Outside of the evensheet you can do
let instances = runtime.objects.Sprite.getAllInstances(); //returns an array of all instances
let pick = instances.filter(i => i.uid === 3)[0]; //filter the array based on UID. Just replace "3" with your variable.
pick.angle += 1; // do whatever you wanna do with the object