Skip to content

Instantly share code, notes, and snippets.

View AhsanMoin-4's full-sized avatar

Ahsan Moin AhsanMoin-4

  • Joined Sep 18, 2025
View GitHub Profile
**1: LX63 not opening**
Turn off antivirus > Install dependencies > Redownload and extract everything
**2: Roblox crashes on inject**
Launch Roblox from roblox.com (not app) > Install Fishstrap > Wait for full load before injecting
**3: Scripts not working**
Check script in Developer Console (F9) or source link > Make a ticket with script + game
**4: Network error**
#include <iostream>
using namespace std;
int main() {
int a = 10;
int b = 3;
float result;
result = a / b;
function Get-ProcessTree {
$processes = Get-CimInstance -ClassName Win32_Process | Select-Object ProcessId, ParentProcessId, Name, CommandLine
function Get-ChildProcesses($parentProcessId, $level) {
$children = $processes | Where-Object { $_.ParentProcessId -eq $parentProcessId }
foreach ($child in $children) {
$indent = " " * $level
Write-Output "$indent|$child.Name (PID: $child.ProcessId)"
Get-ChildProcesses $child.ProcessId ($level + 1)
}