All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Dupe Script

The Dupe Script code is below. Copy & inject it into the game. Enjoy!

[Testing] A 0ne Piece Game - Duplicate fruit
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  if v.Name == "String Fruit" then -- Change this depends on what fruit u have
      v.Parent = game.Players.LocalPlayer.Character
  end
end
wait()
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  if v:IsA("Tool") then
      v.Parent = game.Workspace
  end
end
game.Players.LocalPlayer.Character.Humanoid:Destroy()