ADVERTISEMENTREMOVE ADS
[Auto-Farm]
47,912 views
Script Preview
Description
Adds chickens automatically. You can spam this script multiple times to speed up the progress, the more you click execute/run the more it will generate for you.
Features:
- autofarm
Tested with
ADVERTISEMENTREMOVE ADS
19 Lines β’ 573 Bytes
-- Get the ReplicatedStorage service
local ReplicatedStorage = game:GetService("ReplicatedStorage")
-- Reference to the addChickens remote event
local addChickensEvent = ReplicatedStorage:WaitForChild("events"):WaitForChild("remotes"):WaitForChild("addChickens")
-- Function to spam addChickens every second
local function spamAddChickens()
while true do
-- Fire the addChickens event
addChickensEvent:FireServer()
wait(0.000001)
end
end
-- Call the spamAddChickens function to start spamming
spamAddChickens()
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS




Comments