There's a new update out the API today. In particular: toFront/toBack You can now use the toFront(obj) and toBack(obj) commands to move objects to the front/back of the page. Note that this doesn't translate across layers, so for example calling toFront on a map layer object still doesn't put it above the GM Layer objects. This should be functionally similar to the way that right-clicking and hitting toFront/toBack in-game works. Better Optimized Saving Now if you rapidly update the same object really quickly (so for example, you issue a bunch of individual set() calls on an object in the same function), the API server will be smart enough to combine those into a single update call so that all of them are sent to the players at once. This is a small optimization that should just make it easier for you to not have to worry about grouping your set() calls together if it makes more sense to do them in different places throughout your scripts. Thanks!