100% found this document useful (1 vote)
8K views2 pages

Banana Hub Script Configuration Guide

The document contains a Lua script for a game that configures various settings for gameplay automation, including attack speed, teleport reset options, and auto-collecting features. It allows customization of UI visibility, FPS locking, and fruit management, along with several automated actions like race selection and item acquisition. Additionally, it includes a webhook feature for external communication and a loading function for an external script from a URL.

Uploaded by

chiliikil19
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
100% found this document useful (1 vote)
8K views2 pages

Banana Hub Script Configuration Guide

The document contains a Lua script for a game that configures various settings for gameplay automation, including attack speed, teleport reset options, and auto-collecting features. It allows customization of UI visibility, FPS locking, and fruit management, along with several automated actions like race selection and item acquisition. Additionally, it includes a webhook feature for external communication and a loading function for an external script from a URL.

Uploaded by

chiliikil19
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

repeat wait() until game:IsLoaded() and [Link].

LocalPlayer
getgenv().Key = "sua key"
getgenv().SettingFarm ={
["Hide UI"] = false,
["Fast Attack"] = {
["Speed Attack"] = 0,
["Attack Duration"] = 5,
["Speed Attack if Cooldown"] = 0.25,
["Attack Cooldown"] = 7,
},
["Reset Teleport"] = {
["Enabled"] = false,
["Delay Reset"] = 3,
["Item Dont Reset"] = {
["Fruit"] = {
["Enabled"] = true,
["All Fruit"] = true,
["Select Fruit"] = {
["Enabled"] = false,
["Fruit"] = {},
},
},
},
},
["Lock FPS"] = {
["Enabled"] = false,
["FPS"] = 60,
},
["Auto Awaken Fruit"] = false, -- dont support phoenix
["GodHuman"] = true,
["Priority Get Melee Sea 3"] = false,
["Auto Saber"] = true,
["Auto Pole"] = true,
["Cursed Dual Katana"] = true,
["SoulGuitar"] = true,
["Shark Anchor"] = true, --i have cdk and god and soulguitar
["Farm Mastery Fruit If Lvl Max"] = false,
["Farm Max All Mastery Sword"] = false, --- i need have cdk and godhuman
["Hop Fruit 1M Quest Third Sea"] = false,
["White Screen"] = false,
["Hop if Near Farm Area"] = true,
["Auto Race V2-V3"] = true,
["Auto Pull Lever"] = true,
["Auto Get Mirror Fractal"] = true,
["Lock Fragment"] = {
["Enabled"] = true,
["Fragments"] = 25000
},
["Buy Haki Color Legendary"] = false, --- it will buy if u have sgt and
godhuman and dont have Valkyrie Helm
["Select Hop"] = { -- 70% will have it
["Hop Find Rip Indra Get Valkyrie Helm"] = false, -- u need have godhuman
and max level
["Hop Find Full Moon Soul Guitar"] = false,
["Hop Find Rip Indra Get Tushita"] = false, --- u need have sgt and
godhuman
["Hop Find Raids Castle [CDK]"] = false,
["Hop Find Cake Queen [CDK]"] = false,
["Hop Find Soul Reaper [CDK]"] = false,
["Hop Find Darkbeard [SG]"] = false,
},
["Race"] = {
["Enabled"] = false,
["Auto Roll Race"] = false,
["Select Race"] = "", -- Human, Mink, Fishman
},
["Buy Haki"] = {
["Enhancement"] = false,
["Skyjump"] = true,
["Flash Step"] = true,
["Observation"] = true,
},
["Blox Fruit Sniper"] = {},
["Lock Fruit"] = {},
["Webhook"] = {
["Enabled"] = false,
["WebhookUrl"] = "",
}
}

loadstring(game:HttpGet("[Link]
main/[Link]"))()

You might also like