South London 2 Script | AUTO FARM – MAY 2022

Created by YGT72

Features:

  • AUTO FARM
  • DEV NOTES:
  • You need to execute every now and then and you have to be there and get the job first.
--game:GetService("Workspace").SpillSystem
local me = game.Players.LocalPlayer.Character
tweenService, tweenInfo = game:GetService("TweenService"), TweenInfo.new(2, Enum.EasingStyle.Linear) --Change Time
_G.OmarLikesLittleGirls = true -- true = start false = stop
while true do
if _G.OmarLikesLittleGirls == true then
for i,v in pairs(game.Workspace:GetDescendants()) do
   if v.ClassName == 'Part' and v.Parent.Name == 'SpillSystem' then
     me.HumanoidRootPart.CFrame = v.CFrame
     wait(1)
     fireclickdetector(v.ClickDetector)
       wait(1.4)
       fireclickdetector(v.ClickDetector)
       wait(4.8)
       end
end
end
end