0% found this document useful (0 votes)
293 views1 page

Roblox Script: Auto Farm Sea Monsters

Uploaded by

Vasile Babos
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)
293 views1 page

Roblox Script: Auto Farm Sea Monsters

Uploaded by

Vasile Babos
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/ 1

loadstring(game:HttpGet(('https://pastebin.

com/raw/h9mgPtyE')))()

SAU

local player = game.Players.LocalPlayer


while wait() do
local sharks = workspace:GetChildren()
for i = 1, #sharks do local v = sharks[i]
if v:FindFirstChild("Health") and v:FindFirstChild("IsSeaMonster") then
pcall(function()
player.Character.PrimaryPart.CFrame = v.PrimaryPart.CFrame +
Vector3.new(0, 25, 0)
end)
wait()
if player.Character:FindFirstChildOfClass("Tool") then

game.ReplicatedStorage.CloudClientResources.Communication.Events.DamageSeaMonster:F
ireServer(v, v.Health, true)
elseif player:FindFirstChild("Backpack") and
#player.Backpack:GetChildren() >= 1 then
for _,k in pairs(player.Backpack:GetChildren()) do
if k:FindFirstChild("Damage") then
k.Parent = player.Character
end
end
end
end
end
if player:FindFirstChild("Backpack") and #player.Backpack:GetChildren() >= 2
then
for i,v in pairs(player.Backpack:GetChildren()) do
if not v:FindFirstChild("Damage") then

game:GetService("ReplicatedStorage").CloudClientResources.Communication.Functions.S
ellItem:InvokeServer(v.Name, 1)
end
end
end
end

You might also like