Thanks to visit codestin.com
Credit goes to www.scribd.com

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

Progess

This document contains code for configuring an auto-farming script for the game "One Piece: Grand Line 3". It sets the team name to "Pirates", disables FPS boost, and defines a Discord webhook. It also contains various settings for the script like enabling region hopping, combat behaviors, fruit storing, health thresholds, and color customization.

Uploaded by

nhanhoaho1601
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)
43 views2 pages

Progess

This document contains code for configuring an auto-farming script for the game "One Piece: Grand Line 3". It sets the team name to "Pirates", disables FPS boost, and defines a Discord webhook. It also contains various settings for the script like enabling region hopping, combat behaviors, fruit storing, health thresholds, and color customization.

Uploaded by

nhanhoaho1601
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

_G.

Team = "Pirates"
_G.FpsBoost = false
_G.Webhook="https://discord.com/apebhooks/
1122858791235493958/5BPaKJxAkOYz7f4CpMJVWUUhGnmtCQoYF1G7fjGMmww8pLISLPJm9drY6l-
OxLkBp8g9"

getgenv().Chatkill = {
"BEST CF BY KOBE", "EZ", "EZ","EZ",
}
getgenv().Region_Hop = {
["Enable"] = true, -- true/false
["Region"] = "Singapore"
--[[Singapore, United States, Germany, Japan, France, Australia, etc
- Singapore is the best choice for Asia
]]
}
_G.Setting = {
["Start Hunting"] = true, -- Bro wtf don't turn it off
["Ken Haki"] = true,
["WhiteScreen"] = true,
["FruitStuff"] = true, -- Auto Buy and Store Fruits
["Run"] = 3500, -- As the name, you'll run when the health below ...
["MaxHealth"] = 5000,
["Time&Bounty Counter"] = true,
["Click Delay"] = 0.2,
["SkipPlayerWhenBeingLowHealth"] = false,
["Check"] = {
["V4 Players"] = true,
["Portal Users"] = false,
["Buddha Users"] = false
},
["Theme"] = { -- You can get RGB colors from "Color Picker" on google
["Default"] = "YaeMiko", -- Use this if you don't know how to customize the
theme, get themes on: https://github.com/clgtmm/ThemeBuilds
["Custom Theme"] = {
["Enable"] = false, -- Set this "false" if not knowing how to customize
the theme
["Color"] = {
["Title Color"] = Color3.fromRGB(0, 170, 255),
["Title-Back Color"] = Color3.fromRGB(0, 85, 255),
["Button Color"] = Color3.fromRGB(0, 0, 255),
["Stats Color"] = {
["Text Color"] = Color3.fromRGB(0, 170, 255),
["Text Stroke"] = Color3.fromRGB(30, 56, 203)
}
}
}
},
["Melee"] = {
["Time"] = 1.5,
["Enable"] = true,
["Z"] = {["Enable"] = true, ["HoldTime"] = 1.25},
["X"] = {["Enable"] = true, ["HoldTime"] = 0},
["C"] = {["Enable"] = true, ["HoldTime"] = 0}
},
["Fruit"] = {
["Time"] = 1,
["Enable"] = false,
["Z"] = {["Enable"] = true, ["HoldTime"] = 1.75},
["X"] = {["Enable"] = true, ["HoldTime"] = 0},
["C"] = {["Enable"] = true, ["HoldTime"] = 0},
["V"] = {["Enable"] = true, ["HoldTime"] = 0},
["F"] = {["Enable"] = true, ["HoldTime"] = 0}
},
["Sword"] = {
["Time"] = 0,
["Enable"] = true,
["Z"] = {["Enable"] = true, ["HoldTime"] = 0},
["X"] = {["Enable"] = false, ["HoldTime"] = 0},
},
["Gun"] = {
["Time"] = 0.8,
["Enable"] = true,
["GunMode"] = true,
["Z"] = {["Enable"] = true, ["HoldTime"] = 0},
["X"] = {["Enable"] = true, ["HoldTime"] = 0},
}
}

repeat wait() until game:IsLoaded()


loadstring(game:HttpGet("https://raw.githubusercontent.com/clgtmm/AutoBounty/main/
main.lua"))()

You might also like