Find any script for Roblox

Enter the name of the game or script.

Dragon Farm Simulator script – (AutoCollect eggs)

Functions: AutoCollect eggs

Script developer: magnetwashere

Installation guide:Copy the script from the button below.Run any Injector (We recommend KRNL Injector)Install it, insert the script and click executeEnjoy it)

Thank you for using our website
Your script:

				
					_G.Enabled = true
local plr = game.Players.LocalPlayer
local collect = game:GetService("ReplicatedStorage").Remotes.CollectEgg
local tycoon; for i,v in pairs(workspace.Tycoons:GetChildren()) do
   local farmSignText = v.OwnerSign.farmName.SurfaceGui.Frame.TextLabel.Text
   if farmSignText:lower():find(plr.Name:lower()) then
       tycoon = v
   end
end
if not tycoon then
   game.StarterGui:SetCore("SendNotification", {
       Title = "Error",
       Text = "Claim a tycoon first! Execute again once you have one.",
       Duration = 3
   })
   return
end
while _G.Enabled do
   for i,v in pairs(tycoon.Eggs:GetChildren()) do
       collect:FireServer(v)
   end
   task.wait()
end
				
			
Leave a Comment

Your email address will not be published. Required fields are marked *