Skip to content

Instantly share code, notes, and snippets.

-- 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)

Users in banned groups

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 •
// 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");
-- 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)
@Neztore
Neztore / Notes.js
Created February 28, 2019 10:04
Simple note JS applet that I made because I don't like using txt files
// 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 () {
@Neztore
Neztore / Shape.lua
Created February 10, 2019 18:34
A strange shape generator that I made for Teverse.
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)
@Neztore
Neztore / RPC.js
Last active October 13, 2018 15:40
Prompt for Node.js. Requires discord-rich-presence & a discord application.
/*
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.