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 Chest Farm

The Chest Farm code is below. Copy & inject it into the game. Enjoy!

[Testing] A 0ne Piece Game - Auto Collect Chests
getgenv().Chest = true
while Chest do task.wait()

for _,v in pairs(game:GetService("Workspace").Map.Islands:GetDescendants()) do
   if v:FindFirstChild("ClickDetectorPart") and v:IsA"Model" then
local Time = 4
local tween =  game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(Time), {CFrame = v.ClickDetectorPart.CFrame})


tween:Play()
tween.Completed:Wait(E)
fireclickdetector(v.ClickDetectorPart:FindFirstChild("ClickDetector"))
end
end
end