| Subgroup ID | Sub name | Rank | username | UserID | Banned group |
|---|---|---|---|---|---|
| 5268397 | - London Ambulance Service | Suspended | imlovenicepeople | 459461168 | [UK] United Kingdom |
| 5268402 | - Metropolitan Police Service | Suspended | Dragonhord123 | 308387520 | [UK] United Kingdom |
| 5268264 | - London Fire Brigade | Firefighter | TheSpudGod | 45606198 | • United Kingdom • |
| 5268456 | - Houses of Parliament | House of Commons | WiIIiamAragon | 21232339 | [UK] I United Kingdom • |
| 5269727 | - Specialist Operations | Suspended | proRuben_06 | 494565070 | • United Kingdom • |
| 5268397 | - London Ambulance Service | Student Paramedic | mylifeisalivel0l | 545451424 | [UK] I United Kingdom • |
| 5268402 | - Metropolitan Police Service | Student Constable | X1MN2 | 1398964039 | • United Kingdom • |
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
| /* | |
| Neztore 12/10/18 | |
| Info: | |
| Basic nodejs prompt to make custom rich presence easier. | |
| See discord docs: https://discordapp.com/developers/docs/rich-presence/how-to | |
| startTimestamp & endTimestamp must be numbers. Set only "startTimestamp" to make it show elapsed - https://discordapp.com/developers/docs/rich-presence/how-to#updating-presence-update-presence-payload-fields | |
| image values should be strings, and match the name of the images you uploaded on the application page (https://discordapp.com/developers/applications/) | |
| If a value is not entered (you press enter without putting anything in), that option will be skipped. It will remain as-is. |
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
| function drawPoint (x, y, z) | |
| local b = engine.block("New block " ..math.floor(x)) | |
| b.parent = engine.workspace | |
| b.colour = colour(0, 0.5, 0.5) | |
| b.position = vector3(x, y, z) | |
| end | |
| function drawCircle (z, r, detail) |
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
| // Dependencies | |
| const fs = require("fs") | |
| const path = require("path") | |
| const readline = require("readline") | |
| const fileName = "Notes.json" | |
| const location = path.join(__dirname, fileName) | |
| function readNotes () { |
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
| -- Neztore (Discord: Neztore#6998) | |
| local Players = game:GetService("Players") | |
| local serverScriptService = game:GetService("ServerScriptService") | |
| local chatServiceModule = require(serverScriptService:WaitForChild("ChatServiceRunner").ChatService) | |
| local function playerAdded (player) | |
| player.Chatted:Connect(function(msg) | |
| if (msg == "/e rts") then | |
| local speaker = chatServiceModule:GetSpeaker(player.Name) |
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
| // Neztore - Banned group scanner. 2020. | |
| // Config | |
| const baseGroup = "5267910"; | |
| const blacklist = [592805, 5321115, 2906828, 541807, 3043431, 3012416, 2928023, 3084806, 5011896, 5255081]; | |
| const fs = require("fs"); | |
| const noblox = require("noblox.js"); | |
| const fetch = require("node-fetch"); |
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
| -- My specific use of https://github.com/Neztore/rbx-tools/blob/master/StringSearch.lua | |
| --[[ | |
| Searches all scripts in instance Inst for string Str. | |
| Designed for large workloads - splits search into corotine blocks of 100 items, this will usually be fine. | |
| If you have an absolutely massive (and I mean, really big) game you might want to increase that number. | |
| Neztore 2020 | |
| --]] | |
| function search(inst, str) | |
| str = string.lower(str) |
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
| // Build file | |
| // This file is executed by Netlify and used to build EJS to static HTML for serving. | |
| const ejs = require("ejs"); | |
| const { join } = require("path"); | |
| const { readdir, writeFile, stat, mkdir, watch, unlink } = require("fs"); | |
| const outputDir = join(__dirname, "public", "pages"); | |
| const pagesDir = join(__dirname, "src", "pages"); | |
| // Doesn't affect admin since it's not built with EJS |
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
| // Manages interface with the verification service | |
| const fetch = require("node-fetch"); | |
| const { verificationApi } = require("../../settings"); | |
| module.exports = { | |
| getLink: async function (discordId) { | |
| const resp = await makeRequest(`/api/roblox/${discordId}`); | |
| if (resp.error && resp.error.status === 404) { | |
| return false; | |
| } else if (resp.error) { |
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
| const fetch = require("node-fetch"); | |
| // Variables | |
| let noMade = 0; | |
| let cache = {}; | |
| let disabled = false; | |
| let since = Date.now(); | |
| // Clear your cache | |
| setInterval(function () { |
OlderNewer