task.spawn(function() local player = game.Players.LocalPlayer player.Idled:Connect(function() game:GetService("VirtualUser"):Button2Down(Vector2.new(), workspace.CurrentCamera.CFrame) task.wait(1) game:GetService("VirtualUser"):Button2Up(Vector2.new(), workspace.CurrentCamera.CFrame) end) local function setUI(char) local head = char:WaitForChild("Head") if head:FindFirstChild("AntiAFK") then head.AntiAFK:Destroy() end local gui = Instance.new("BillboardGui") gui.Name = "AntiAFK" gui.Size = UDim2.new(0, 150, 0, 30) gui.StudsOffset = Vector3.new(0, 3, 0) gui.AlwaysOnTop = true gui.Parent = head local txt = Instance.new("TextLabel") txt.Size = UDim2.new(1, 0, 1, 0) txt.BackgroundTransparency = 1 txt.Text = "ANTI-AFK ON" txt.TextColor3 = Color3.fromRGB(0, 255, 150) txt.TextStrokeTransparency = 0 txt.Font = Enum.Font.SourceSansBold txt.TextSize = 18 txt.Parent = gui end if player.Character then setUI(player.Character) end player.CharacterAdded:Connect(setUI) end) local lighting = game:GetService("Lighting") local blur = Instance.new("BlurEffect", lighting) blur.Size = 3 local cc = Instance.new("ColorCorrectionEffect", lighting) cc.Brightness = 0.03 cc.Contrast = 0.1 cc.Saturation = 0.25 loadstring(game:HttpGet("https://raw.githubusercontent.com/Nolimit-hub/Muscle-Legends-2/refs/heads/main/Muscle.Legend%202"))()