Asus ROG Strix Scope II Full-size RGB Gaming Keyboard - ASUS | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
ASUS

Asus ROG Strix Scope II Full-size RGB Gaming Keyboard

SKU: STRIX-SCOPE-II
R 5 599.00
Out of Stock

Quick Specs

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Quick Specs

  • Choose between ROG NX Snow (linear) or Storm (clicky) mechanical switches.
  • Customise settings using hotkeys for Xbox Game Bar.
  • Control media, volume, and lighting with a multifunction button and knob.
  • Minimise noise with integrated sound-dampening foam.
  • Enjoy ergonomic comfort with three tilt positions and a detachable wrist rest.

Experience unparalleled control with the Asus ROG Strix Scope II, a gaming keyboard designed for peak performance. This full-size RGB gaming keyboard offers customizable switches and intuitive controls for next-level command. The Asus ROG Strix Scope II is engineered for gamers who demand the best.

Choose between ROG NX Snow linear switches for smooth, fast action or ROG NX Storm clicky switches for tactile feedback. Both switches are meticulously pre-lubed for exceptional keystrokes. The Asus ROG Strix Scope II allows you to tailor your experience.

The integrated sound-dampening foam minimizes distracting noises, allowing you to focus entirely on your game. The Asus ROG Strix Scope II provides a clean audio environment, free from unwanted echoes and pings.

The Asus ROG Strix Scope II is built to last, featuring durable ROG PBT doubleshot keycaps or UV-coated ABS keycaps that resist shine and offer a premium feel. The unique ROG-themed space bar adds a touch of flair to your gaming setup.

Quickly adjust volume, media playback, and keyboard lighting using the multifunction button and three-way knob. F1–F5 keys are pre-programmed as hotkeys for Xbox Game Bar and recording, putting essential functions at your fingertips with the Asus ROG Strix Scope II.

Game for hours in comfort with three tilt positions and a detachable wrist rest. The design of the Asus ROG Strix Scope II reduces strain and enhances your gaming experience.

Customise every key with macros and take advantage of N-key rollover for accurate input, even during intense gaming sessions with the Asus ROG Strix Scope II.

FEATURES:

  • ROG NX Snow & Storm mechanical switches: Pre-lubed NX Snow linear switches and ROG NX Storm clicky switches with walled stem design
  • Hotkeys: F1–F5 keys are pre-programmed as hotkeys for Xbox Game Bar and recording
  • Intuitive controls: Multifunction button and three-way knob for media playback, volume, and keyboard lighting
  • Sound-dampening foam: Integrated foam absorbs pinging noises and echoes for improved acoustics
  • PBT / UV-Coated ABS keycaps: Durable ROG PBT doubleshot keycaps or UV-coated ABS keycaps offer a premium feel and shine resistance
  • Unique ROG-themed space bar: UV-coated spacebar with special ROG markings and three underside RGB LEDs
  • Ergonomic design: Three tilt positions and a detachable wrist rest

SPECIFICATIONS:

  • Key Switch: ROG NX Mechanical Switch
  • Connectivity: USB 2.0 (Type-C to Type A)
  • Size (Full/TKL): 100%
  • Lighting: RGB Per keys
  • AURA Sync: Yes
  • Anti-Ghosting: N Key Rollover
  • Macro Keys: All Keys Programmable
  • USB Report rate: 1000Hz
  • Cable: 2M USB Type A to C cable
  • Operating System: Windows® 11
  • Software: Armoury Crate
  • Colour: Black
  • Product Dimensions: 43.6 x 12.9 x 3.7 cm
  • Product Weight: 839g (without cable)

WHAT'S IN THE BOX:

  • Asus ROG Strix Scope II Full-size RGB Gaming Keyboard - Black x1
  • Wrist Rest x1
  • ROG-themed Spacebar Keycap x1
  • USB Cable x1
  • ROG Sticker x1
  • Quick Start Guide x1

Why Asus:

Asus ROG is committed to providing gamers with the highest quality peripherals, designed for peak performance and reliability. The ROG Strix Scope II embodies this commitment, offering cutting-edge technology and durable construction for an unparalleled gaming experience in South Africa.

Brand ASUS
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!