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 / !.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()))
@Windows81
Windows81 / .lua
Created December 10, 2021 04:40
Runs basically like the Rōblox Studio camera, but on your script executor (and doesn't fully respect movement whilst orbit is enabled).
-- Modified from https://pastebin.com/3wrbwSz4
-- Tested with JJSploit and should work with Synapse X, Protosmasher, etc. (not tested).
local MOVE_KEYS = {
[Enum.KeyCode.D] = Vector3.new(01, 0, 0),
[Enum.KeyCode.A] = Vector3.new(-1, 0, 0),
[Enum.KeyCode.S] = Vector3.new(0, 0, 01),
[Enum.KeyCode.W] = Vector3.new(0, 0, -1),
[Enum.KeyCode.E] = Vector3.new(0, 1, 0),
[Enum.KeyCode.Q] = Vector3.new(0, -1, 0),
@Windows81
Windows81 / .lua
Created December 10, 2021 04:33
Run this script in your executor to, when the escape menu is enabled, switch between people who have voice chat on Rōblox. Your camera will be on their head like a GoPro!
local TIME = 7
if _G.vc_cam then _G.vc_cam:Disconnect() end
function get_participants()
local t = {}
for i, g in next,
game.CoreGui.RobloxGui.SettingsShield.SettingsShield.MenuContainer
.PageViewClipper.PageView.PageViewInnerFrame.Players:GetDescendants() do
if g.Name == 'MuteStatusButton' and
not g.MuteStatusImageLabel.Image:find '/Muted' then
t[#t + 1] = game.Players[g.Parent.Parent.Name:sub(12)]
@Windows81
Windows81 / .lua
Last active December 10, 2021 04:34
-- To terminate loop: _G.h = nil
LIVE_CHAT_KEY = 'AIzaSyBUPetSUmoZL-OhlxA7wSac5XinrygCqMo'
VIDEO_ID = 'Q4Kuefzhnvo'
CONTINUATION =
'0ofMyAOyARpYQ2lrcUp3b1lWVU5MWkdsRmFHSmhOMlZCWkVaWFEzSTBaVnBNUkZSUkVndFJORXQxWldaNmFHNTJieG9UNnFqZHVRRU5DZ3RSTkV0MVpXWjZhRzUyYnlBTSiwk7Ks2__zAjAAQAJKJQgAGAAgAEoCCAFQyIqd6dr_8wJYA3gAogEAqgECEACwAQG4AQFQoqvcrNv_8wJY_eq7ltv_8wKCAQIIBIgBAKABj8Xattv_8wI%3D'
MSG_FUNCTION = _G.msg
CONTINUE = false
if _G.h then
_G.h = nil
@Windows81
Windows81 / .lua
Last active December 10, 2021 04:35
Run this on your Rōblox script executor to play a local MIDI file on one of in-game pianos.
-- Credit to https://github.com/0b5vr/Lua_midiParser/blob/master/midi-parser.lua for the MIDI parser.
local FILEPATH = [[boo.mid]]
local TRANSPOSE = 0
local SPEED = 1
local PLAY_NOTE =
getsenv(game.Players.LocalPlayer.PlayerGui.PianoGui.Main).PlayNoteClient
if _G.midi_conn then _G.midi_conn:Disconnect() end
if #FILEPATH == 0 then return end