0% found this document useful (0 votes)
230 views3 pages

Taloncdk Zay

The document contains code for an auto farm script in Roblox that will automatically chat, use skills, buy fruits, and teleport the player to safe zones. It includes settings for actions, delays, and which skills to use for different weapons and fruits. The script contains functions for repeating tasks, loading settings, and executing additional scripts.

Uploaded by

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

Taloncdk Zay

The document contains code for an auto farm script in Roblox that will automatically chat, use skills, buy fruits, and teleport the player to safe zones. It includes settings for actions, delays, and which skills to use for different weapons and fruits. The script contains functions for repeating tasks, loading settings, and executing additional scripts.

Uploaded by

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

repeat wait()

until game:IsLoaded()
local TableChat = {"Zay On Top","Config By Zay#0000"}
spawn(function()
while wait() do
pcall(function()

game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessa
geRequest:FireServer(TableChat[math.random(1,#TableChat)],"All")
wait(45)
end)
end
end)
getgenv().Setting = {
["Team"] = "Pirates", --Marines,Pirates
["Webhook"] = {
["Enabled"] = true,
["Url Webhook"] = "", --Your Url
},
["Misc"] = {
["AutoBuyRandomandStoreFruit"] = true,
["AutoBuySurprise"] = true,
},
["Click"] = {
["Enable"] = true,
["Click Gun"] = true,
["OnLowHealthDisable"] = true,
["LowHealth"] = 4500,
},
["SafeZone"] = {
["Enable"] = true,
["LowHealth"] = 4500,
["MaxHealth"] = 5000,
["Teleport Y"] = 2000
},
["Race V4"] = {
["Enable"] = true,
},
["Invisible"] = false,
["White Screen"] = false,
["GunMethod"] = false, --Support Only Melee And Gun,Not Invisible,
Turn On Enabled Gun and Melee Please
["SpamSkill"] = false, -- Will use all skills as fast as possbile
ignore holding skills
["Weapons"] = {
["Melee"] = {
["Enable"] = true,
["Delay"] = 3,
["Skills"] = {
["Z"] = {
["Enable"] = true,
["HoldTime"] = 0.2,
},
[ "X"] = {
["Enable"] = true,
["HoldTime"] = 0.1,
},

["C"] = {
["Enable"] = true,
["HoldTime"] = 2,
},
},
},
["Blox Fruit"] = {
["Enable"] = false,
["Delay"] = 1,
["Skills"] = {
["Z"] = {
["Enable"] = false,
["HoldTime"] = 0,
},
["X"] = {
["Enable"] = true,
["HoldTime"] = 0,
},

["C"] = {
["Enable"] = true,
["HoldTime"] = 0,
},
["V"] = {
["Enable"] = true,
["HoldTime"] = 0,
},
["F"] = {
["Enable"] = false,
["HoldTime"] = 0,
},
},
},
["Gun"] = {
["Enable"] = false,
["Delay"] = 2,
["Skills"] = {
["Z"] = {
["Enable"] = false,
["HoldTime"] = 0.7,
},
["X"] = {
["Enable"] = true,
["HoldTime"] = 0.7,
},
},
},
["Sword"] = {
["Enable"] = true,
["Delay"] = 1,
["Skills"] = {
["Z"] = {
["Enable"] = true,
["HoldTime"] = 1.5,
},
["X"] = {
["Enable"] = true,
["HoldTime"] = 0.5,
},
},
},
}
}
repeat wait() until game:IsLoaded() and game.Players.LocalPlayer
loadstring(game:HttpGet("https://raw.githubusercontent.com/obiiyeuem/
vthangsitink/main/BountyShit.lua"))()

You might also like