You are on page 1of 3

local library =

loadstring(game:HttpGet(('https://raw.githubusercontent.com/Maxgat5/UiLib/main/
lua')))()
local w = library:CreateWindow("Pop It Trading")
local b = w:CreateFolder("Dupe")
local e = w:CreateFolder("Mix")
local u = w:CreateFolder("Credits")
Amount = 30

b:Box("Amount","number",function(value)
Amount = value
end)

b:Button("Dupe Now!",function()
for i = 1,Amount do
for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v.ClassName == "Tool" then

game:GetService("ReplicatedStorage").RemoteEvents.Equip:FireServer(v.Name)

game:GetService("ReplicatedStorage").RemoteEvents.Drop:FireServer(v.Name)
end
end
end
end)

b:Toggle("AutoDupe",function(bool)
shared.toggle = bool
AutoDupe = bool
end)

b:Toggle("AutoCollectDrop",function(bool)
shared.toggle = bool
AutoCollectDrop = bool
end)

b:Toggle("AutoSell",function(bool)
shared.toggle = bool
AutoSell = bool
end)

e:Toggle("AntiAfk",function(bool)
shared.toggle = bool
AntiAfk = bool
end)

--Credits
u:Button("FeIix#0210",function()
setclipboard("FeIix#0210")
end)

u:Button(game:service("HttpService"):JSONDecode(game:HttpGet("https://
raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).username,function()
setclipboard(game:service("HttpService"):JSONDecode(game:HttpGet("https://
raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).username)
end)

u:Button("Discord Server",function()
setclipboard(game:service("HttpService"):JSONDecode(game:HttpGet("https://
raw.githubusercontent.com/Maxgat5/Decode/main/JSON")).discord)
end)

if
game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui:FindFirstChild("Alert")
then
game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Alert:Destroy()
end

game:GetService('RunService').Stepped:connect(function()
spawn(function()
if AntiAfk == true then
local bb=game:service'VirtualUser'
bb:CaptureController()
bb:ClickButton2(Vector2.new())
end
end)
end)

spawn(function()
while wait() do
if AutoSell == true then

firesignal(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.SideBar.ASell
Button.Button.Activated)
end
end
end)

spawn(function()
while wait() do
if AutoCollectDrop == true then
for i,v in pairs(game:GetService("Workspace").Dropped:GetChildren()) do
if v.Owner.Value == game.Players.LocalPlayer then

firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 0)
wait(.1)

firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Handle, 1)
wait(.1)
end
end
end
end
end)

while wait(1) do
if AutoDupe == true then
for i = 1,Amount do
for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v.ClassName == "Tool" then

game:GetService("ReplicatedStorage").RemoteEvents.Equip:FireServer(v.Name)

game:GetService("ReplicatedStorage").RemoteEvents.Drop:FireServer(v.Name)
end
end
end
end
end

You might also like