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

Gravity 2

The document is a Lua script for a game that sets various player settings and configurations, including team selection, combat methods, and skill usage. It includes options for auto-buying items, teleportation, and health management, as well as specific settings for different weapons and skills. The script also loads an external Lua file from a GitHub repository for additional functionality.

Uploaded by

sxablau43
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)
93 views2 pages

Gravity 2

The document is a Lua script for a game that sets various player settings and configurations, including team selection, combat methods, and skill usage. It includes options for auto-buying items, teleportation, and health management, as well as specific settings for different weapons and skills. The script also loads an external Lua file from a GitHub repository for additional functionality.

Uploaded by

sxablau43
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() and game.Players.

LocalPlayer
getgenv().Key = ""
getgenv().Setting = {
["Team"] = "Pirate",
["Method Click"] = {["Click Gun"] = false,["Click Melee"] = true,["Click
Sword"] = true, ["LowHealth"] = 5000, ["Delay Click"] = 0.3},
["Race V4"] = {["Enable"] = true},
["Webhook"] = {["Enabled"] = false,["Url Webhook"] = ""},
["Misc"] = {["AutoBuyRandomandStoreFruit"] = true,["AutoBuySurprise"] = false},
["SafeZone"] = {["Enable"] = true,["LowHealth"] = 4500,["MaxHealth"] = 8000,
["Teleport Y"] = 2000},
["Method Use Skill"] = {["Use Random"] = true,["Use Number"] = false},
["Use random skill if player target low health"] = { --- suport only method use
skill Number
["Enabled"] = true,
["Low Health"] = 4000,
},
["Use Portal Teleport"] = true,
["Target Time"] = 20,
["Aim Prediction"] = 0.5,
["Select Region"] = {["Enabled"] = true,["Region"] = {["Singapore"] = true,
["United States"] = false,["Netherlands"] = false,["Germany"] =false,["India"] =
false,["Australia"] = false}},
["Ignore Devil Fruit"] = {"Human-Human","Portal-Portal","Dragon-Dragon","Yeti-
Yeti"},
["Dodge Skill Player"] = true, --- Beta per 50% can dodge
["Weapons"] = {
["Melee"] = {
["Enable"] = true,
["Skills"] = {
["Z"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 2},
["X"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 3},
["C"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 5},
},
},
["Blox Fruit"] = {
["Enable"] = true,
["Skills"] = {
["Z"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 4},
["X"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 6},
["C"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 9},
["V"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 0},
["F"] = {["Enable"] = false,["HoldTime"] = 0.3,["Number"] = 8},
},
},
["Gun"] = {
["Enable"] = true,
["Skills"] = {
["Z"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 1},
["X"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 7},
},
},
["Sword"] = {
["Enable"] = true,
["Skills"] = {
["Z"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 0},
["X"] = {["Enable"] = true,["HoldTime"] = 0.3,["Number"] = 0},
},
},
}
}
loadstring(game:HttpGet("https://raw.githubusercontent.com/obiiyeuem/vthangsitink/
refs/heads/main/BananaCat-BountyEz.lua"))()

You might also like