Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. var members = 143415;
  2. function sendMsg(uid, username) {
  3. function send() {
  4. $.post("https://www.roblox.com/messages/send",{
  5. subject: 'Want to earn 500R$ a week for being active in a fun medieval roleplay group?',
  6. body: 'Hey, ' + username + ' \n\n I believe I saw you ingame and liked your sense of gameplay, and I observed you before sending this message. You may be like "What the? How?", I have only been selecting a handful of people to invite to this group in which they can earn 500R$ for patrolling and being active. If you are not active however, you will not earn R$ and you will likely be removed from the group for inactivity. If you are interested in the weekly payment, you can join the group here: https://www.roblox.com/My/Groups.aspx?gid=3605196\n\nAlso, to earn rewards, you must attend the events hosted at convenient times or you will be EXILED or BANNED.\n\n\nFarewell.',
  7. recipientid: uid,
  8. cacheBuster: new Date().getTime()
  9. }).done(function(response) {
  10. if (response.success == true) {
  11. console.log('Message Sent: ' + username);
  12. } else {
  13. console.log('Error Sending: ' + username);
  14. console.log(response);
  15. }
  16. });
  17. }
  18. send();
  19. }
  20.  
  21. var times = Math.round((members) / 10);
  22. function run() {
  23. setTimeout(function(){
  24. var i = 0;
  25. while(i < 10){
  26. if(document.getElementById("ctl00_cphRoblox_rbxGroupRoleSetMembersPane_dlUsers_ctrl" + i + "_hlAvatar")){
  27. var usernames = document.getElementById("ctl00_cphRoblox_rbxGroupRoleSetMembersPane_dlUsers_ctrl" + i + "_hlAvatar").title;
  28. var id = document.getElementById("ctl00_cphRoblox_rbxGroupRoleSetMembersPane_dlUsers_ctrl" + i + "_hlAvatar").href.replace('https://www.roblox.com/users/', '').replace('/profile', '');
  29. sendMsg(id, usernames);
  30. }
  31. i++;
  32. }
  33. if(times >= 0){
  34. run();
  35. }
  36. times = times-1;
  37. javascript:__doPostBack('ctl00$cphRoblox$rbxGroupRoleSetMembersPane$dlUsers_Footer$ctl02$ctl00','');
  38. }, 1000);
  39. return;
  40. }
  41. run();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement