Advertisement
anonmods

pop it trade - roblox - anonmods.com

Sep 18th, 2021
1,204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/lua')))()
  2. local w = library:CreateWindow("Pop It Trading")
  3. local b = w:CreateFolder("Dupe")
  4. local e = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6. Amount = 30
  7.  
  8. b:Box("Amount","number",function(value)
  9. Amount = value
  10. end)
  11.  
  12. b:Button("Dupe Now!",function()
  13. for i = 1,Amount do
  14. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  15. if v.ClassName == "Tool" then
  16. game:GetService("ReplicatedStorage").RemoteEvents.Equip:FireServer(v.Name)
  17. game:GetService("ReplicatedStorage").RemoteEvents.Drop:FireServer(v.Name)
  18. end
  19. end
  20. end
  21. end)
  22.  
  23. b:Toggle("AutoDupe",function(bool)
  24. shared.toggle = bool
  25. AutoDupe = bool
  26. end)
  27.  
  28. b:Toggle("AutoCollectDrop",function(bool)
  29. shared.toggle = bool
  30. AutoCollectDrop = bool
  31. end)
  32.  
  33. b:Toggle("AutoSell",function(bool)
  34. shared.toggle = bool
  35. AutoSell = bool
  36. end)
  37.  
  38. e:Toggle("AntiAfk",function(bool)
  39. shared.toggle = bool
  40. AntiAfk = bool
  41. end)
  42.  
  43. --Credits
  44. u:Button("FeIix#0210",function()
  45. setclipboard("FeIix#0210")
  46. end)
  47.  
  48. u:Button(game:service("HttpService"):JSONDecode(game:HttpGet("https://raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).username,function()
  49. setclipboard(game:service("HttpService"):JSONDecode(game:HttpGet("https://raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).username)
  50. end)
  51.  
  52. u:Button("Discord Server",function()
  53. setclipboard(game:service("HttpService"):JSONDecode(game:HttpGet("https://raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).discord)
  54. end)
  55.  
  56. if game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("Alert") then
  57. game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Alert:Destroy()
  58. end
  59.  
  60. game:GetService('RunService').Stepped:connect(function()
  61. spawn(function()
  62. if AntiAfk == true then
  63. local bb=game:service'VirtualUser'
  64. bb:CaptureController()
  65. bb:ClickButton2(Vector2.new())
  66. end
  67. end)
  68. end)
  69.  
  70. spawn(function()
  71. while wait() do
  72. if AutoSell == true then
  73. firesignal(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.SideBar.ASellButton.Button.Activated)
  74. end
  75. end
  76. end)
  77.  
  78. spawn(function()
  79. while wait() do
  80. if AutoCollectDrop == true then
  81. for i,v in pairs(game:GetService("Workspace").Dropped:GetChildren()) do
  82. if v.Owner.Value == game.Players.LocalPlayer then
  83. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 0)
  84. wait(.1)
  85. firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 1)
  86. wait(.1)
  87. end
  88. end
  89. end
  90. end
  91. end)
  92.  
  93. while wait(1) do
  94. if AutoDupe == true then
  95. for i = 1,Amount do
  96. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  97. if v.ClassName == "Tool" then
  98. game:GetService("ReplicatedStorage").RemoteEvents.Equip:FireServer(v.Name)
  99. game:GetService("ReplicatedStorage").RemoteEvents.Drop:FireServer(v.Name)
  100. end
  101. end
  102. end
  103. end
  104. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement