-- Auto-farm Sailor Piece abilities
local RS = game:GetService("RunService")
local Players = game:GetService("Players")
local LP = Players.LocalPlayer
local CFG = { AutoFarm = true, Underground = true }
local alive = function() return CFG.AutoFarm end
task.spawn(function()
while alive() do
task.wait(0.3 + math.random() * 0.5)
-- claim ability remote here
end
end)