if _G.farm == nil then _G.farm = false local specials = {} local normals = {} local plr = game:GetService("Players").LocalPlayer local UI = game:GetObjects("rbxassetid://8887653583")[1] local tws = game:GetService("TweenService"); if syn and syn.protect_gui then syn.protect_gui(UI) for i,v in pairs(UI:GetDescendants()) do syn.protect_gui(v) end end UI.Main.FarmLimit.Text = limit game:GetService("ReplicatedStorage").ErrorLogNetworkFolder.ReportError:Destroy() UI.Main.TotalCash.Text = string.gsub(plr.PlayerGui.HUD.Center.DiamondAmount.Text, ",", "") for i,v in pairs(UI:GetDescendants()) do if v:IsA("UIGradient") then v.Offset = Vector2.new(-.5,-.5) local twig = TweenInfo.new(4,Enum.EasingStyle.Quad,Enum.EasingDirection.InOut,-1,true,.2) local tweeng = tws:Create(v,twig,{["Offset"]=Vector2.new(.5,.5)}) tweeng:Play() end end UI.Main.Toggle.MouseButton1Down:Connect(function(v) if _G.farm then _G.farm = false UI.Main.Toggle.Toggle_Roundify_30px.ImageColor3 = Color3.fromRGB(63, 39, 39) else _G.farm = true UI.Main.Toggle.Toggle_Roundify_30px.ImageColor3 = Color3.fromRGB(43, 63, 39) end end)