Skip to content

Instantly share code, notes, and snippets.

View Windows81's full-sized avatar
🧊
Keep Byfron Bypassed™

VisualPlugin Windows81

🧊
Keep Byfron Bypassed™
View GitHub Profile
@Windows81
Windows81 / 0.551.0.5510576_20221104T051051Z_Player_4335C_last.log
Created November 4, 2022 06:19
A verbose log of Rōblox + WeAreDevs getting me kicked for 'unexpected client behaviour' [0.551.0.5510576_20221104T051051Z_Player_4335C_last.log]
2022-11-04T05:10:51.056Z,0.056624,1e84,6 [FLog::Output] RobloxGitHash: 78f0b34f2059f48b9f7e9fc939ca3b9419a94dd4
2022-11-04T05:10:51.056Z,0.056624,1e84,6 [FLog::Output] The channel is production
2022-11-04T05:10:51.403Z,0.403317,1e84,6 [FLog::Output] LoadClientSettingsFromLocal: "{
"FStringNewInGameMenuForcedUserIds": "",
"FStringV1MenuLanguageSelectionFeatureForcedUserIds": "1630228",
"DFFlagAddRakNetLogs": true,
"DFFlagAdminServerLogs": true,
"DFFlagAppendSourceIdToRequireLog": true,
"DFFlagBetterHandshakeLogs": true,
@Windows81
Windows81 / .ps1
Last active May 7, 2022 04:15
Reverse Seth David Composer's last 30 videos with this script!
$f="C:\Users\USERNAME\Videos\Projects\sdc"
yt-dlp https://www.youtube.com/c/SethDavidComposer/videos --playlist-end 30 -o "%(playlist_index)s.%(ext)s" -f 22
ls *.mp4 -name | % {ffmpeg -i $_ -vf reverse -af areverse $_.r.mp4}
ls *.mp4 -name | % {ffmpeg -i ./$_ -vf reverse -af areverse ./$_.r.mp4}
ls *.r.mp4 -Name | Sort-Object -Descending|%{"file '$f\$_'"}|ffmpeg -protocol_whitelist file,pipe -safe 0 -f concat -i - -c copy sdc.r.mp4
@Windows81
Windows81 / .ps1
Created April 1, 2022 22:18
Generate a forward-sequential compilation of Countdown's videos (https://www.youtube.com/channel/UC7nm9Nzo12SDQzrxJS8xdVg)!
yt-dlp --playlist-reverse https://www.youtube.com/channel/UC7nm9Nzo12SDQzrxJS8xdVg/videos -f 22 -o "%(autonumber)03d.%(ext)s" --autonumber-start 0
ls *.mp4 -name|%{"file C:/Users/USERNAME/Videos/Projects/countdown/$_"}|ffmpeg -f concat -safe 0 -protocol_whitelist pipe,file -i - -c copy countdown.mp4
@Windows81
Windows81 / .txt
Last active May 21, 2022 06:38
Instructions on how to make Requestly think you're on an Enterprise plan
0) open the Requestly website.
1) navigate to Source tab in DevTools, then open "main.73becfd4.js".
2) format code and add breakpoint in DevTools at around line 96708 (after 'PREMIUM_PLANS' is initialised).
3) reload the f***ing page.
4) run this snippet on the console: "Pt.PLAN_NAMES.BASIC=Pt.PLAN_NAMES.BRONZE=Pt.PLAN_NAMES.ENTERPRISE".
@Windows81
Windows81 / !.md
Last active July 6, 2022 04:54
All My Lovely Scripts for Use With JJSploit!

To view the most up-to-date version of my script collection, go here.


I EXPLOIT ON RŌBLOX AND HAVE NO SHAME IN SAYİNG IT!

To view a log of stuff players said as I went along my exploiting misadventures, follow this Discord invite link and realise that I've consolidated the chat stream into a server designed to promote my most ambitious showcase yet!

@Windows81
Windows81 / .py
Last active March 10, 2022 00:07
To download reversed MP3s of Donda 2 to the current working directory, run this overly compact script.
name='donda_2'
import os,requests as r
albums=r.get('https://api.stemplayer.com/content/albums').json()
for s in("ffmpeg -i \""+'" -i "'.join(list(r.get(f"https://api.stemplayer.com/content/stems?track_id={t['id']}&version={t['version']}&codec=wav&device_id=002800273330510139323635").json()['data'].values()))+"\" -filter_complex amix=inputs=4:normalize=0,areverse -ab 320k \""+f'{i:02d}'+' '+t['metadata']['title']+".mp3\"" for i,t in list(enumerate(albums['data'][name]['tracks'], 1))):os.system(s)
@Windows81
Windows81 / .js
Last active March 19, 2024 08:28
Run in JavaScript to get the CyberGhost proxy list saved on Proxy Switcher,
a=[
"blade6.bucharest-rack484",
"blade10.bucharest-rack451",
"blade3.singapore-rack455",
"blade8.bucharest-rack484",
"blade3.bucharest-rack453",
"blade9.bucharest-rack483",
"blade12.bucharest-rack453",
"blade8.bucharest-rack490",
"blade16.singapore-rack455",
@Windows81
Windows81 / .gitignore
Last active July 6, 2022 05:17
Place in C:\Users\USERNAME\Documents\Image-Line\FL Studio\Presets\Plugin presets\Generators\Patcher to allow custom intonation in FL Studio.
scl/**
*/**
@Windows81
Windows81 / .lua
Last active December 22, 2021 01:31
Run this script in Driving Empire (on Rōblox) to add a rainbow effect to your Dart.
local h, c = 0, 0
if _G.ccol then _G.ccol:disconnect() end
_G.ccol = game:service 'RunService'.Heartbeat:connect(function(d)
c = c + d
h = h + d
if c > 1 / 4 then
c = c - 1 / 4
local C = Color3.fromHSV((h / 7) % 1, 1, 1)
game.ReplicatedStorage.Remotes.ChangeCarStuff:FireServer('Dart', 'color',
'1a', C)
@Windows81
Windows81 / .lua
Created December 16, 2021 22:14
Run this on your script executor to allow custom CFrame camera-angle capturing via Rōblox chat.
local pl = game.Players.LocalPlayer
local F = ' ]]CFrame.new(%f,%f,%f)*CFrame.fromEulerAnglesYXZ(%f,%f,%.0f),--[['
if _G.chat then _G.chat:Disconnect() end
_G.cfs = _G.cfs or {}
_G.looping = false
function printcf()
print('{--[[COPY FROM HERE')
for _, cf in next, _G.cfs do
print(string.format(F, cf.x, cf.y, cf.z, cf:toEulerAnglesYXZ()))