{
"DFIntTaskSchedulerTargetFps": "2147483647",
"FFlagTaskSchedulerLimitTargetFpsTo2402": "False"
}
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
http://www.roblox.com | |
http://www.roblox.com/Adhoc.ashx | |
http://www.roblox.com/AgeUpConfirmation.aspx | |
http://www.roblox.com/Badges.aspx | |
http://www.roblox.com/Browse.aspx | |
http://www.roblox.com/Catalog.aspx | |
http://www.roblox.com/Content.xsd | |
http://www.roblox.com/Default.aspx | |
http://www.roblox.com/Empty.aspx | |
http://www.roblox.com/favicon.ico |
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 time | |
import requests | |
from colorama import just_fix_windows_console | |
just_fix_windows_console() | |
def get_authenticated_user(cookie): | |
url = "https://users.roblox.com/v1/users/authenticated" | |
headers = {"Cookie": f".ROBLOSECURITY={cookie}"} | |
response = requests.get(url, headers=headers) | |
response.raise_for_status() |
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
(async () => { | |
const axios = (await import("axios")).default; | |
const chalk = (await import("chalk")).default; | |
async function getAuthenticatedUser(cookie) { | |
const url = "https://users.roblox.com/v1/users/authenticated"; | |
try { | |
const response = await axios.get(url, { | |
headers: { | |
"Cookie": `.ROBLOSECURITY=${cookie}` |