-- simple bifighter script by mine my first script -- moves objects to the inputed location -- by amgine -- function getArgsMenu() return "Move objects", -- Menu title { TextEntryMenuItem.new("X location", "0", " ", 10, "x location"), TextEntryMenuItem.new("Y location", "0", " ", 10, "y location") } end function main() objects = plugin:getSelectedObjects() for i=1,#things do objects[i]:setPos(point.new(arg[1], arg[2])) end end