local vu = game:GetService("VirtualUser") local lp = game:GetService("Players").LocalPlayer local sg = game:GetService("StarterGui") -- Prevent AFK kick lp.Idled:Connect(function() vu:CaptureController() vu:ClickButton2(Vector2.new()) end) -- Send a persistent notification sg:SetCore("SendNotification", { Title = "Anti AFK Enabled", Text = "Created by El_VireXus", Duration = 5, Button1 = "Thxs and OK" })