Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //This is used to check if the roblox name you would like is available,try using the name call23re.
- //To use it just go to http://www.roblox.com and paste it in the console.
- name = prompt("What username would you like?");
- if (name=="call23re") {
- alert (name + " is amazing.");
- }
- $.get("http://www.roblox.com/UserCheck/DoesUsernameExist?username="+name).success(function(r){
- if (r.success==false) {
- console.log("true");
- alert("The username: " + name + " is currently available.");
- }
- if (r.success==true) {
- console.log("false");
- $.get("http://www.roblox.com/UserCheck/GetRecommendedUsername?usernameToTry=" + name).success(function(check){
- alert("The username: " + name + " has been taken. Try this instead : " + check);
- })
- }
- });
- //call23re
Advertisement
Add Comment
Please, Sign In to add comment