SkayMount

Discord FPS Boost

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