repeat wait() until game:IsLoaded()
getgenv().Config = {
["Team"] = "Pirates",
["Settings"] = {
["Specator Target"] = false,
["Others"] = {
["Auto Awakening V4"] = true,
["Auto Turn Race V3"] = true,
},
["Skip V4 Player"] = true,
["Skip Fruit"] = {"Portal-Portal", "Buddha-Buddha", "Kitsune-Kitsune", "Dragon-Dragon", "Pain-Pain"},
["Low Health"] = {
["Min"] = 4000,
["Max"] = 6000
}
},
["Weapon"] = {
["Melee"] = {
["Enable"] = true,
["Delay"] = 0.1,
["Skills"] = {
["Z"] = {["Enable"] = true, ["Hold"] = 0},
["X"] = {["Enable"] = true, ["Hold"] = 0},
["C"] = {["Enable"] = true, ["Hold"] = 0},
}
},
["Sword"] = {
["Enable"] = true,
["Delay"] = 0.1,
["Skills"] = {
["Z"] = {["Enable"] = true, ["Hold"] = 0},
["X"] = {["Enable"] = true, ["Hold"] = 0},
}
},
["Gun"] = {
["Enable"] = true,
["Delay"] = 0.1,
["Skills"] = {
["Z"] = {["Enable"] = true, ["Hold"] = 0},
["X"] = {["Enable"] = true, ["Hold"] = 0},
}
},
["Blox Fruit"] = {
["Enable"] = true,
["Delay"] = 0.1,
["Skills"] = {
["Z"] = {["Enable"] = true, ["Hold"] = 0},
["X"] = {["Enable"] = true, ["Hold"] = 0},
["C"] = {["Enable"] = true, ["Hold"] = 0},
["V"] = {["Enable"] = false, ["Hold"] = 0},
["F"] = {["Enable"] = true, ["Hold"] = 0},
}
},
}
}
loadstring(game:HttpGet("https://raw.githubusercontent.com/WhiteX1208/Scripts/refs/heads/main/Auto-Bounty.luau"))()
โค4
แแแบแแฐแแปแแบแแซแ
Please open Telegram to view this post
VIEW IN TELEGRAM
โค2
๐๐ถ๐ณ๐ฒ๐๐ถ๐บ๐ฒ ๐ฃ๐น๐ฎ๐ป | ๐๐ฒ๐
-----------------------------------------
แแแบแแฐแแปแแบแแซแโก๏ธ @rip_index
#๐ถ๐ป๐ฑ๐ฒ๐
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1
Telegram v12.7.2 (Premium Unlocked)
โโโโโโโโโโโโโโโโโโโโโณโโ
๐ค ๐ ๐ผ๐ฑ ๐๐ป๐ณ๐ผ: Paid Features Unlocked
Note: Only these premium features work, others are server side
โโโโโโโโโโโโโโโโโโโโโณโโ
โ No ads
โ Stable mod
โ 20 folders
โ 10 Pinned chats
โ 10 favorite stickers
โ 200 chats per folder
โ Premium app icons
โ Advanced chat management
โ Download speed boost enabled
โ Multiple languages available
โ No active trackers or advertisements
โ Requires android 6.0 and up
โ CPUs arch: Universal
โ Optimized and cleaned resources
for fast loading.
Note: Only these premium features work, others are server side
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1
Level Max - 100%
God Human - 100%
แแแบแแฐแแปแแบแแซแ โก๏ธ @rip_index
#๐ถ๐ป๐ฑ๐ฒ๐
Please open Telegram to view this post
VIEW IN TELEGRAM
โค12
local Workspace = game:GetService("Workspace")
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local function createESP(adornee, name)
if adornee:FindFirstChild("EggESP") then return end
local highlight = Instance.new("Highlight")
highlight.Name = "EggESP_Highlight"
highlight.FillColor = Color3.fromRGB(0, 255, 255)
highlight.OutlineColor = Color3.fromRGB(255, 255, 255)
highlight.FillTransparency = 0.5
highlight.OutlineTransparency = 0
highlight.Parent = adornee
local billboard = Instance.new("BillboardGui")
billboard.Name = "EggESP"
billboard.Adornee = adornee
billboard.AlwaysOnTop = true
billboard.Size = UDim2.new(0, 400, 0, 160)
billboard.StudsOffset = Vector3.new(0, 12, 0)
billboard.MaxDistance = 0
billboard.LightInfluence = 0
local textLabel = Instance.new("TextLabel")
textLabel.Size = UDim2.new(1, 0, 1, 0)
textLabel.BackgroundTransparency = 1
textLabel.Text = name
textLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
textLabel.TextStrokeTransparency = 0
textLabel.TextStrokeColor3 = Color3.new(0, 0, 0)
textLabel.TextScaled = true
textLabel.Font = Enum.Font.SourceSansBold
textLabel.Parent = billboard
billboard.Parent = adornee
spawn(function()
while billboard.Parent do
local char = LocalPlayer.Character
if char and char:FindFirstChild("HumanoidRootPart") then
local distance = (char.HumanoidRootPart.Position - adornee.Position).Magnitude
textLabel.Text = name .. "\n[" .. math.floor(distance) .. " studs]"
end
wait(0.5)
end
end)
end
local function setupESPOnEgg(egg)
local targetPart = egg:IsA("Model") and egg.PrimaryPart or egg:FindFirstChildWhichIsA("BasePart") or egg
if targetPart and targetPart:IsA("BasePart") then
createESP(targetPart, egg.Name)
end
end
local function monitorFolder(folder)
if not folder then return end
for _, child in ipairs(folder:GetChildren()) do
if child.Name:lower():find("egg") then
setupESPOnEgg(child)
end
if child:IsA("Folder") then
monitorFolder(child)
end
end
local conn = folder.ChildAdded:Connect(function(child)
if child.Name:lower():find("egg") then
setupESPOnEgg(child)
end
if child:IsA("Folder") then
monitorFolder(child)
end
end)
end
local charactersFolder = Workspace:FindFirstChild("Characters")
if charactersFolder then
monitorFolder(charactersFolder)
for _, char in ipairs(charactersFolder:GetChildren()) do
local eggsFolder = char:FindFirstChild("Eggs")
if eggsFolder then
monitorFolder(eggsFolder)
end
end
end
local broadConn = Workspace.DescendantAdded:Connect(function(desc)
if desc.Name:lower():find("egg") then
task.wait()
setupESPOnEgg(desc)
end
end)
for _, obj in ipairs(Workspace:GetDescendants()) do
if obj.Name:lower():find("egg") then
setupESPOnEgg(obj)
end
end
print("Egg ESP")โค7โคโ๐ฅ2๐1