call23re

ROBLOX Username Checker

May 27th, 2014
1,359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //This is used to check if the roblox name you would like is available,try using the name call23re.
  2. //To use it just go to http://www.roblox.com and paste it in the console.
  3. name = prompt("What username would you like?");
  4. if (name=="call23re") {
  5. alert (name + " is amazing.");
  6. }
  7. $.get("http://www.roblox.com/UserCheck/DoesUsernameExist?username="+name).success(function(r){
  8. if (r.success==false) {
  9. console.log("true");
  10. alert("The username: " + name + " is currently available.");
  11. }
  12. if (r.success==true) {
  13. console.log("false");
  14. $.get("http://www.roblox.com/UserCheck/GetRecommendedUsername?usernameToTry=" + name).success(function(check){
  15. alert("The username: " + name + " has been taken. Try this instead : " + check);
  16. })
  17. }
  18. });
  19. //call23re
Advertisement
Add Comment
Please, Sign In to add comment