if getgenv().yes then getgenv().yes:Disconnect() end local Amount = 10000 local Players = game:GetService("Players") local RunService = game:GetService("RunService") local RepStorage = game:GetService("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer local Events = RepStorage.Events local RemoteFunctions = Events.RemoteFunction local SecretFunCodes = RemoteFunctions.SecretFunCodes local PlayerGui = LocalPlayer.PlayerGui local Count = 0 local LastPrint = tick() getgenv().yes = PlayerGui.ChildAdded:Connect(function(Object) if Object.Name == "AFKMode" then Object.Enabled = false Object:WaitForChild("AFKScript").Enabled = false RunService.RenderStepped:Wait() Object:Destroy() Count = Count + 1 if tick() - LastPrint >= 0.5 then LastPrint = tick() print("Got new afk gui, count: " .. tostring(Count)) end end end) for i = 1, Amount do task.spawn(function() SecretFunCodes:InvokeServer("afk") end) task.wait() end