Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Start-Process "discord://"
- Start-Sleep 5
- Add-Type -AssemblyName System.Windows.Forms
- while ($true) {
- $pos = [System.Windows.Forms.Cursor]::Position
- $newX = $pos.X + (Get-Random -Minimum -40 -Maximum 40)
- $newY = $pos.Y + (Get-Random -Minimum -40 -Maximum 40)
- [System.Windows.Forms.Cursor]::Position = New-Object System.Drawing.Point($newX, $newY)
- Start-Sleep -Milliseconds 200
- }
Advertisement
Add Comment
Please, Sign In to add comment