Share Pastebin
Guest
Public paste!

blobbyblob

By: a guest | Feb 9th, 2010 | Syntax: JavaScript | Size: 0.64 KB | Hits: 29 | Expires: Never
Copy text to clipboard
  1. // ==UserScript==
  2. // @name           AmbassadorHax
  3. // @namespace      Dunno
  4. // @description    Changes the text in the HTML Text Link Textbox for the ambassador links.
  5. // @include        http://www.roblox.com/my/linkregistration.aspx
  6. // ==/UserScript==
  7. var elemStatus = document.getElementById("ctl00_ctl00_cphRoblox_cphMyRobloxContent_TabbedLinks_TabPanelHTML_HTMLCode"), i;
  8. if (elemStatus) {
  9.    elemStatus.textContent = 'All the <a href="http://www.roblox.com/User.aspx?ID=1365851&userid=1365851&rbx_source=ambassador&rbx_medium=Direct&rbx_campaign=ambpro">beatiful aircraft</a> at ROBLOX are ROFL on ROBLOX, a amazing on-line universe';
  10. }