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
| --- Utilizes a hack to force the popper camera to blacklist the parts in question | |
| -- @classmod IgnoreCameraClient | |
| -- @author Quenty | |
| local require = require(game:GetService("ReplicatedStorage"):WaitForChild("Nevermore")) | |
| local RunService = game:GetService("RunService") | |
| local HttpService = game:GetService("HttpService") | |
| local BaseObject = require("BaseObject") |
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
| local MyClass = {} | |
| MyClass.__index = MyClass | |
| function MyClass.new() | |
| local self = setmetatable({}, MyClass) | |
| self._connection = nil | |
| self._tooltip = nil | |
| return self |
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
| --[[ | |
| SoftShutdown 1.2 | |
| URL: https://github.com/MerelyRBLX/ROBLOX-Lua/blob/master/SoftShutdown.lua | |
| Author: Merely | |
| This system lets you shut down servers without losing a bunch of players. | |
| When game.OnClose is called, the script teleports everyone in the server | |
| into a reserved server. | |
| When the reserved servers start up, they wait a few seconds, and then |
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
Show hidden characters
| // SublimeLinter Settings - User | |
| { | |
| "lint_mode": "background", | |
| "linters": | |
| { | |
| "luacheck": | |
| { | |
| "@disable": false, | |
| "args": | |
| [ |
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
| """ | |
| Utility script to count lines of Lua code | |
| Author: Quenty | |
| """ | |
| import glob, os | |
| def file_len(fname): | |
| """ | |
| Counts lines of a file given the 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
| local ToolTip = require("ToolTip") | |
| local RoundToolTip = setmetatable({}, ToolTip) | |
| RoundToolTip.__index = RoundToolTip | |
| function RoundToolTip.new() | |
| local self = setmetatable(ToolTip.new(), RoundToolTip) | |
| return self | |
| end |
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
| local ToolTip = {} | |
| ToolTip.__index = ToolTip | |
| function ToolTip.new() | |
| local self = setmetatable({}, ToolTip) | |
| return self | |
| end | |
| function ToolTip:Show() |
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
| statename_to_abbr = { | |
| # Other | |
| 'District of Columbia': 'DC', | |
| # States | |
| 'Alabama': 'AL', | |
| 'Montana': 'MT', | |
| 'Alaska': 'AK', | |
| 'Nebraska': 'NE', | |
| 'Arizona': 'AZ', |
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
| --- Generated KeyboardDark with Python | |
| -- @author Quenty | |
| local require = require(game:GetService("ReplicatedStorage"):WaitForChild("Nevermore")) | |
| local Spritesheet = require("Spritesheet") | |
| local KeyboardDark = setmetatable({}, Spritesheet) | |
| KeyboardDark.ClassName = "KeyboardDark" | |
| KeyboardDark.__index = KeyboardDark |
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
| local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
| local NevermoreEngine = require(ReplicatedStorage:WaitForChild("NevermoreEngine")) | |
| local LoadCustomLibrary = NevermoreEngine.LoadLibrary | |
| local BaseClass = LoadCustomLibrary("BaseClass") | |
| local MakeMaid = LoadCustomLibrary("Maid").MakeMaid | |
| -- Intent: | |
| -- @author Quenty |