message bot pastebin roblox /* Change placeId to the place you want to scan for and message players. Inspect Element->Console and copy and paste the code. Wait time can be adjusted and the bot will attempt to send messages super fast, but it's good to keep the time high or ROBLOX will detect flooding. You can change the group number to the group you are recruiting for so that it doesn't send the message to people in that group. Built off of (but in the end most of that code was removed): http://pastebin.com/s2nR7tha */ message bot pastebin roblox PasteShr message bot pastebin roblox var placeId = 218248596; // Place to check and message var waitTime = 5; // In seconds var group = 0; // 0 for no group check, otherwise people in this group will not receive the message function sendMsg(userId, username) { function send() { $.post('/messages/send',{ subject: 'wassup m9er', body: 'Hello, ' + username + '.\n\nu ok m9?????', recipientid: userId, message bot pastebin roblox How to get it? message bot pastebin roblox cacheBuster: new Date().getTime() }).done(function(response) { if (response.success == true) { console.log('Sent message to ' + username + ' (' + userId + ')'); } else { console.log('Error sending to ' + username + ': ' + response.shortMessage); } }); } if (group > 0) { message bot pastebin roblox How to get it for free? message bot pastebin roblox $.get('/Game/LuaWebService/HandleSocialRequest.ashx?method=IsInGroup&playerid=' + userId + '&groupid=' + group, function(response) { if(response.indexOf('true') == -1) { send(); } else { console.log('Didn\'t send a message to ' + username + ' because he is already in group ' + group + '.'); } }); } else { send(); } message bot pastebin roblox How to get it? message bot pastebin roblox } var i=0; function run() { var timeout = 0; var url = '/games/getgameinstancesjson?placeId=' + placeId +'&startindex=' + i*10; $.get(url).done(function(obj){ for (var server in obj.Collection) { for (var players in obj.Collection[server].CurrentPlayers) { var plr = obj.Collection[server].CurrentPlayers[players]; message bot pastebin roblox How to get it for free? message bot pastebin roblox if (plr.Id > 0) { (function(time,id,name) { setTimeout(sendMsg,time,id,name); })(timeout,plr.Id,plr.Username); timeout+=waitTime*1000; } } } i++; setTimeout(run, timeout); message bot pastebin roblox How to get it for free? message bot pastebin roblox }); } run(); message bot pastebin roblox