Remove the box.
from arena import * scene = Scene(host="arenaxr.org", scene="example") @scene.run_once def remove_box(): # make a box box = Box(object_id="my_box") # delete box scene.delete_object(box) scene.run_tasks()