0% found this document useful (0 votes)
378 views2 pages

Message

This document contains Lua code for an auto farming script in the game "Fumo Blox Fruit - HoHo Hub Kaitun V3". The script contains various configuration options like enabling fast mode, auto rejoining after disconnects, automatically collecting fruits, buying items, and awakening fruits. It also contains options for farming specific areas like the Ectoplasm dungeon or Dark Beard's ship to obtain rare drops.

Uploaded by

BLF gamer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
378 views2 pages

Message

This document contains Lua code for an auto farming script in the game "Fumo Blox Fruit - HoHo Hub Kaitun V3". The script contains various configuration options like enabling fast mode, auto rejoining after disconnects, automatically collecting fruits, buying items, and awakening fruits. It also contains options for farming specific areas like the Ectoplasm dungeon or Dark Beard's ship to obtain rare drops.

Uploaded by

BLF gamer
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

repeat wait() until game:IsLoaded()

_G["Fumo Blox Fruit - HoHo Hub Kaitun V3"] = {


MAIN_UI_COLOR = Color3.fromRGB(255, 165, 0), -- Color3.fromRGB(170, 85, 255)

BlackScreen = true, -- less lag


FastMode = true, -- true/false less lag
AutoRejoinGame = 1800, -- time in second, rejoin to bypass anticheat
GetFruitInWorld = true, -- true/false collect fruit
AutoTeam = "Pirate", -- Pirate/Marine
GetMelees = {"Superhuman"}, -- remove if u dont wanna get what melee
Redeem_X2EXP_on = 10, -- to redeem all x2 exp code on what level
Character_Config = {
InvisFromKen = true, -- true/false anyone use ken cant see your name
NoStun = true, -- true/false make u dont get stuned when farming
},
ListFruitTake = {
"Ice-Ice","Light-Light","Spider-Spider",'Magma-Magma','Flame-
Flame','Rumble-Rumble','Dark-Dark','Quake-Quake','Buddha-Buddha',
-- put fruit you want like above, recommend fruit can awake
-- fruit list: 'Sand-Sand','Smoke-Smoke','Ice-Ice','Kilo-Kilo','Diamond-
Diamond','Light-Light','Shadow-Shadow','Portal-Portal','Spider-Spider','Gravity-
Gravity','Spin-Spin','Paw-Paw','Revive-Revive','Bird-Bird: Phoenix','Rubber-
Rubber','Spring-Spring','Blizzard-Blizzard','Dough-Dough','Bomb-Bomb','Venom-
Venom','Bird-Bird: Falcon','Spirit-Spirit','Love-Love','Leopard-Leopard','Dragon-
Dragon','Spike-Spike','Magma-Magma','Control-Control','Flame-Flame','Rumble-
Rumble','Dark-Dark','Chop-Chop','Quake-Quake','Buddha-Buddha','Barrier-Barrier'
},
BuyBetterFruit = false, --true/false if u alr have fruit but better fruit stock
it will buy it
EatFruitWhenSea3 = true, --true/false we need to keep fruit before third sea
AwakeFruit = true, --true/false awake after a raid
AutoBuy = {
Shop_Items = true, --true/false auto buy all item sell with beli like
Bisento,... we will buy when max level
All_Haki = true, --true/false ken,buso,geppo,soru we will buy this in first
Legendary_Swords = true, -- true/false buy all leg sword
Ectoplasm_Items = true, -- true/false buy all ecto items
},
AutoItems = {
["Second Sea"] = {},
["Third Sea"] = {},
--remove rainbow haki or any thing if u dont want
},
Deep_Config = {
-- Delay go to Third Sea
["Ectoplasm Farm"] = {
Enabled = false, --true/false enabled is needable if u want Soul Guitar
FarmUntil = 250, -- 250 = soul guitar price
},
["Dark Beard Drop Farm"] = false, -- enabled this if u want 100% get Soul
Guitar
["Full 3 Leg Sword and True Triple Katana"] = false, -- enabled this if u
want 100% get true triple katana
},
HopServerFarm = true, -- true/false why not?
StopRaidWhenGetEnoughFrag = 10000, --10k is enough so we will farm faster
PVP_FARM = false, -- kill player grind exp fast
ShowAccountInfo = false, -- an ui with your account information
}
loadstring(game:HttpGet('https://raw.githubusercontent.com/acsu123/HOHO_H/main/
Loading_UI'))()

You might also like