This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* color scheme | |
@import url("https://catppuccin.github.io/discord/dist/catppuccin-mocha.theme.css"); */ | |
button[aria-label="Send a gift"], | |
div[aria-label="Start Video Call"], | |
div[aria-label*="Show User Profile"], | |
a[href="https://support.discord.com"], | |
section[aria-label="Channel header"] > div > div > div[class*="divider"], | |
section[aria-label="Channel header"] > div > div > div[class*="nicknames"], | |
section[aria-label="Channel header"] > div > div > div[class*="akaBadge"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pacman -Sy xorg plasma-desktop xorg-xinit | |
sleep 1 | |
echo "exec startkde" > ~/.xinitrc | |
sleep 1 | |
startx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// original: https://forum.wearedevs.net/t/34472 | |
import { T_INT, T_STRING, openProcess, callFunction } from 'memoryjs' | |
const printOffset = 0x11686E0 | |
const robloxProc = openProcess('Windows10Universal.exe') | |
const printFunc = (printOffset - 0x400000) + robloxProc.modBaseAddr | |
const print = (message: string) => callFunction(robloxProc.handle, [ { type: T_INT, value: 0 }, { type: T_STRING, value: message } ], T_INT, printFunc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios' | |
class OpenChatBot { | |
constructor(botToken) { | |
this.botToken = botToken; | |
} | |
askBot = async (content) => { | |
const response = await axios.post('https://cloud.openchat.so/api/chat/send', JSON.stringify({ | |
from: 'user', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local function coolwarnLine() | |
warn('------------------------------------------------------------------------') | |
end | |
coolwarnLine() | |
warn(' LAPTOP KEYPAD ISNT FULLY SUPPORTED!') | |
coolwarnLine() | |
function stringToEnum(k) | |
local map = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Synapse": { | |
"updated": true, | |
"exploit_version": "v2.18.2b", | |
"roblox_version": "version-5e79a2caa8534595", | |
"last_update": "2022-08-14", | |
"last_update_unix": 1660514641 | |
}, | |
"Script-Ware": { | |
"updated": 3, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Made by Whoman#3561 | |
local vim = game:GetService('VirtualInputManager') | |
input = { | |
hold = function(key, time) | |
vim:SendKeyEvent(true, key, false, nil) | |
task.wait(time) | |
vim:SendKeyEvent(false, key, false, nil) | |
end, | |
press = function(key) |