repo stringclasses 254
values | file_path stringlengths 29 241 | code stringlengths 100 233k | tokens int64 14 69.4k |
|---|---|---|---|
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/UI/Messages.luau | --Adds message UI functionality to the API.
--!strict
local MINIMUM_TEXT_SIZE = 12
local HINT_HEIGHT_RELATIVE = 0.035
local NOTIFICATION_HEIGHT_RELATIVE = 0.0225
local MAX_HINTS = 5
local GuiService = game:GetService("GuiService")
local TextService = game:GetService("TextService")
local TweenService = game:GetService... | 4,251 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/UI/Tooltip.luau | --Adds the native tooltip API.
--!strict
local TOOLTIP_SIZE_RELATIVE = 0.03
local GuiService = game:GetService("GuiService")
local UserInputService = game:GetService("UserInputService")
local TextService = game:GetService("TextService")
local NexusButton = require(script.Parent.Parent:WaitForChild("Packages"):WaitFo... | 1,180 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/UI/Window/ApiTextList.luau | --Standard scrolling text list implementation.
--!strict
local TextService = game:GetService("TextService")
local NexusVirtualList = require(script.Parent.Parent.Parent:WaitForChild("Packages"):WaitForChild("NexusVirtualList"))
local CreateScrollingTextEntryCreator = require(script.Parent:WaitForChild("CreateScrollin... | 2,015 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/UI/Window/ApiWindow.luau | --Standard window used with the Window API.
--!strict
local MINIMUM_TEXT_SIZE = 12
local Workspace = game:GetService("Workspace")
local Players = game:GetService("Players")
local GuiService = game:GetService("GuiService")
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("U... | 4,801 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/UI/Window/CreateScrollingTextEntryCreator.luau | --Creates text entries in an ApiTextList.
--!strict
export type Properties = {[string]: any}
export type TextListEntry = {
GuiInstance: GuiObject,
Update: (self: TextListEntry, Index: number, Data: Properties) -> (TextListEntry),
Destroy: (self: TextListEntry) -> (),
}
return function(TextHeight: number, ... | 548 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Client/Window.luau | --API for creating standard windows.
--!strict
local ApiWindow = require(script.Parent:WaitForChild("UI"):WaitForChild("Window"):WaitForChild("ApiWindow"))
local Window = {}
Window.__index = Window
export type Window = typeof(setmetatable({}, Window))
--[[
Creates a window with a given name.
--]]
function Window.... | 116 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/ArgumentParser.luau | --Legacy code for parsing arguments. The code has been fitted to use the
--new API locations, but does not have full unit tests.
local ArgumentParser = {}
local PlayerMap = {}
local AllUniquePlayers = {}
game:GetService("Players").PlayerAdded:Connect(function(Player)
if PlayerMap[Player.Name] == nil then
... | 2,357 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/Authorization.luau | --Handles users being authorized.
--!strict
local NexusInstance = require(script.Parent.Parent:WaitForChild("Packages"):WaitForChild("NexusInstance"))
local Configuration = require(script.Parent:WaitForChild("Configuration"))
local TypedEvent = NexusInstance.TypedEvent
local Authorization = {}
Authorization.__index ... | 408 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/Configuration.luau | --Stores and parses the configuration.
--!strict
local DEFAULT_COMMAND_CONFIGURATIONS = {
--Default Admin Level for Server Lock (slock).
DefaultServerLockAdminLevel = 0,
} :: {[string]: any}
local Configuration = {}
Configuration.__index = Configuration
export type Configuration = {
Version: string,
... | 1,255 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/Filter.luau | --Filters strings to comply with Roblox's filtering rules.
--!strict
local Filter = {}
Filter.__index = Filter
export type Filter = {
TextService: TextService,
Chat: Chat,
} & typeof(setmetatable({}, Filter))
--[[
Creates a filter instance.
--]]
function Filter.new(): Filter
return setmetatable({
... | 340 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/Logs.luau | --Stores a log of events.
--!strict
local NexusInstance = require(script.Parent.Parent:WaitForChild("Packages"):WaitForChild("NexusInstance"))
local TypedEvent = NexusInstance.TypedEvent
local Logs = {}
Logs.__index = Logs
export type Logs = {
MaxLogs: number,
Logs: {any},
LogAdded: NexusInstance.TypedE... | 263 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/Time.luau | --Utility for time.
--!strict
local TIME_DURATIONS = {
{
Label = "second",
Seconds = 1,
MaxDisplay = 60,
},
{
Label = "minute",
Seconds = 60,
MaxDisplay = 60,
},
{
Label = "hour",
Seconds = 60 * 60,
MaxDisplay = 24,
},
... | 459 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/Common/Types/NexusFeatureFlag.luau | --Type representing a registered feature flag.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
--[[
Registers the types.
--]]
return function(API: Types.NexusAdminApi)
--Create the feature flag types.
local FeatureFlagType = {
--[[
Transforms the string to a ... | 380 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/admins.luau | --Implementation of a command.
--!strict
local Players = game:GetService("Players")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "admins",
Category = "Administrative",
... | 611 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/alias.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "alias",
Category = "Administrative",
Description = "Creates a new, single comm... | 334 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/bans.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "bans",
Category = "Administrative",
Description = "Opens up a window containin... | 417 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/characterhistory.luau | --Implementation of a command.
--!strict
local CLOSE_THRESHOLD = 0.1
local CHARACTER_HISTORY_MAX_ENTRIES = 1000
local TYPE_TO_COLOR = {
Movement = Color3.fromRGB(0, 170, 255),
NewCharacter = Color3.fromRGB(0, 255, 0),
ServerTeleport = Color3.fromRGB(0, 0, 255),
ClientTeleport = Color3.fromRGB(255, 0, 0... | 3,168 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/cmdbar.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "cmdbar",
Category = "Administrative",
Description = "Brings up the command lin... | 122 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/debug.luau | --Implementation of a command.
--!strict
local MESSAGE_TYPE_TO_COLOR = {
[Enum.MessageType.MessageError] = Color3.fromRGB(255, 0, 0),
[Enum.MessageType.MessageInfo] = Color3.fromRGB(102, 127, 255),
[Enum.MessageType.MessageWarning] = Color3.fromRGB(255, 153, 102),
}
local LogService = game:GetService("Log... | 448 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/featureflaglogs.luau | --Implementation of a command.
--!strict
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "featureflaglogs",
... | 570 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/featureflags.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "featureflags",
Category = "Administrative",
Description = "Opens up a window c... | 262 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/keybinds.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "keybinds",
Category = "Administrative",
Description = "Displays the current ke... | 258 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/localdebug.luau | --Implementation of a command.
--!strict
local LogService = game:GetService("LogService")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "localdebug",
Category = "Adminis... | 650 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/logs.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "logs",
Category = "Administrative",
Description = "Opens up a window containin... | 232 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/snapshot.luau | --Implementation of a command.
--!strict
local Workspace = game:GetService("Workspace")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.P... | 1,673 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/system.luau | --Implementation of a command.
--!strict
local INDENT = " "
local Workspace = game:GetService("Workspace")
local Localizationservice = game:GetService("LocalizationService")
local PolicyService = game:GetService("PolicyService")
local RunService = game:GetService("RunService")
local UserInputService = game:GetServ... | 1,452 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/unban.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unban",
Category = "Administrative",
Description = "Unbans players.",
Argu... | 339 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Administrative/unkeybind.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unkeybind",
Category = "Administrative",
Description = "Unbinds the key from a... | 206 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/age.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "age",
Category = "BasicCommands",
Description = "Displays the age of a set of ... | 188 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/atksword.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
local Sword = script.Parent.Parent:WaitForChild("Resources"):WaitForChild("Sword")
return {
Keyword = "atk... | 274 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/change.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "change",
Category = "BasicCommands",
Description = "Changes the stat of a set ... | 388 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/chatlogs.luau | --Implementation of a command.
--!strict
local Players = game:GetService("Players")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "chatlogs",
Category = "BasicCommands... | 424 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/clean.luau | --Implementation of a command.
--!strict
local Workspace = game:GetService("Workspace")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "clean",
Category = "BasicCommands"... | 174 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/countdown.luau | --Implementation of a command.
--!strict
local HttpService = game:GetService("HttpService")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "countdown",
Category = "BasicC... | 641 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/crash.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "crash",
Category = "BasicCommands",
Description = "Crashes a set of players. A... | 324 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/createteam.luau | --Implementation of a command.
--!strict
local Teams = game:GetService("Teams")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "createteam",
Category = "BasicCommands",
... | 298 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/gear.luau | --Implementation of a command.
--!strict
local InsertService = game:GetService("InsertService")
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "gear",
Category = "BasicCommands",
Description = "Gives gear items to the given players.",
Arguments = {
... | 283 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/give.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
local ToolListEnum = require(script.Parent.Parent:WaitForChild("Resources"):WaitForChild("ToolListEnum"))
return {
Keyword = "give",
Category = "BasicCommands",
Description = "Gives a set of p... | 250 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/inventory.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = {"inventory", "viewinventory"},
Category = "BasicCommands",
Description = "Disp... | 456 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/joinlogs.luau | --Implementation of a command.
--!strict
local Players = game:GetService("Players")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "joinlogs",
Category = "BasicCommands",... | 403 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/killlogs.luau | --Implementation of a command.
--!strict
local Players = game:GetService("Players")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "killlogs",
Category = "BasicCommands",... | 858 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/mute.luau | --Implementation of a command.
--!strict
local TextChatService = game:GetService("TextChatService")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "mute",
Category = "Bas... | 439 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/punish.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "punish",
Category = "BasicCommands",
Description = "Punishes a set of players by removing their character.",
Arguments = {
{
Type = "nexusAdminPlaye... | 144 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/removeteam.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "removeteam",
Category = "BasicCommands",
Description = "Removes selected teams.",
Arguments = {
{
Type = "teams",
Name = "Teams",
... | 121 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/removetools.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "removetools",
Category = "BasicCommands",
Description = "Removes all tools from the players given.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 234 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/resetstats.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "resetstats",
Category = "BasicCommands",
Description = "Resets all number leaderstats of a player.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 202 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/shutdown.luau | --Implementation of a command.
--!strict
local Players = game:GetService("Players")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "shutdown",
Category = "BasicCommands",... | 216 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/sortteams.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "sortteams",
Category = "BasicCommands",
Description = "Splits the given player... | 506 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/startergive.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
local ToolListEnum = require(script.Parent.Parent:WaitForChild("Resources"):WaitForChild("ToolListEnum"))
return {
Keyword = "startergive",
Category = "BasicCommands",
Description = "Gives a s... | 286 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/stopcountdown.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "stopcountdown",
Category = "BasicCommands",
Description = "Stops the current c... | 267 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/stoploops.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "stoploops",
Category = "BasicCommands",
Description = "Stops all active loop c... | 156 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/sword.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
local Sword = script.Parent.Parent:WaitForChild("Resources"):WaitForChild("Sword")
return {
Keyword = "swo... | 245 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/tools.luau | --Implementation of a command.
--!strict
local TOOL_CONTAINERS = {
game:GetService("Lighting"),
game:GetService("ReplicatedStorage"),
game:GetService("ServerStorage"),
game:GetService("StarterPack"),
}
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local ... | 688 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/unmute.luau | --Implementation of a command.
--!strict
local TextChatService = game:GetService("TextChatService")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unmute",
Category = "B... | 276 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/untrack.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "untrack",
Category = "BasicCommands",
Description = "Untracks a set of players... | 192 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/ambient.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "ambient",
Category = "BuildUtility",... | 200 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/brightness.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "brightness",
Category = "BuildUtilit... | 194 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/btools.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "btools",
Category = "BuildUtility",
Description = "Gives the given players a set of the HopperBin tools.",
Arguments = {
{
Type = "nexusAdminPlayers... | 302 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/clearterrain.luau | --Implementation of a command.
--!strict
local Workspace = game:GetService("Workspace")
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "clearterrain",
Category = "BuildUtility",
Description = "Clears the terrain.",
ServerRun = function(CommandContext: Type... | 85 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/fixlighting.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "fixlighting",
Category = "BuildUtili... | 188 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/fogcolor.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "fogcolor",
Category = "BuildUtility"... | 207 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/fogend.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "fogend",
Category = "BuildUtility",
... | 205 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/fogstart.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "fogstart",
Category = "BuildUtility"... | 205 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/outdoorambient.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "outdoorambient",
Category = "BuildUt... | 213 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/shadows.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "shadows",
Category = "BuildUtility",... | 168 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BuildUtility/time.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "time",
Category = "BuildUtility",
... | 198 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Cmdr/exit.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "exit",
Category = "DefaultUtil",
Description = "Closes the command line. (Adde... | 204 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/blind.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "blind",
Category = "FunCommands",
Description = "Blinds a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = "Players"... | 281 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/disco.luau | --Implementation of a command.
--!strict
local Lighting = game:GetService("Lighting")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "disco",
Category = "FunCommands",
... | 239 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/face.luau | --Implementation of a command.
--!strict
local InsertService = game:GetService("InsertService")
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "face",
Category = "FunCommands",
Description = "Gives the face with the given id to each player.",
Arguments = {... | 342 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/fire.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "fire",
Category = "FunCommands",
Description = "Adds a fire to a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = "P... | 194 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/hat.luau | --Implementation of a command.
--!strict
local InsertService = game:GetService("InsertService")
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "hat",
Category = "FunCommands",
Description = "Gives hats to the given players.",
Arguments = {
{
... | 288 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/invisible.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "invisible",
Category = "FunCommands",
Description = "Makes a set of players invisible.",
Arguments = {
{
Type = "nexusAdminPlayers",
Nam... | 193 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/light.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "light",
Category = "FunCommands",
Description = "Adds a light to a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = ... | 189 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/pause.luau | --[Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "pause",
Category = "FunCommands",
Description = "Pauses the audio.",
Serv... | 116 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/play.luau | --Implementation of a command.
--!strict
local Workspace = game:GetService("Workspace")
local Players = game:GetService("Players")
local MarketplaceService = game:GetService("MarketplaceService")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script... | 441 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/removehats.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "removehats",
Category = "FunCommands",
Description = "Removes the hats of a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 177 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/resume.luau | --Implementation of a command.
--!strict
local Workspace = game:GetService("Workspace")
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "resume",
Category = "FunCommands",... | 136 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/rocket.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "rocket",
Category = "FunCommands",
Description = "Adds a rocket to a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name ... | 479 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/scale.luau | --Implementation of a command.
--!strict
local SCALE_TYPES = {
{
Name = "All",
Values = {"BodyDepthScale", "BodyHeightScale", "BodyWidthScale", "HeadScale"},
},
{
Name = "Depth",
Values = {"BodyDepthScale"},
},
{
Name = "Height",
Values = {"BodyHeight... | 636 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/smoke.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "smoke",
Category = "FunCommands",
Description = "Adds a smoke to a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = ... | 225 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/sparkles.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "sparkles",
Category = "FunCommands",
Description = "Adds a sparkles to a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
N... | 196 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/spin.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "spin",
Category = "FunCommands",
Description = "Spins a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = "Players",
... | 335 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/stop.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "stop",
Category = "FunCommands",
Description = "Stops the audio.",
ServerR... | 127 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unblind.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unblind",
Category = "FunCommands",
Description = "Unblinds a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = "Play... | 182 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unfire.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unfire",
Category = "FunCommands",
Description = "Removes all fire from a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 200 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unlight.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unlight",
Category = "FunCommands",
Description = "Removes all light from a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 200 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unrocket.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unrocket",
Category = "FunCommands",
Description = "Removes all rockets from a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 197 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unsmoke.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unsmoke",
Category = "FunCommands",
Description = "Removes all smoke from a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 201 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unsparkles.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unsparkles",
Category = "FunCommands",
Description = "Removes all sparkles from a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
... | 207 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unspin.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unspin",
Category = "FunCommands",
Description = "Unspins a set of players.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = "Player... | 196 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/unvibrate.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "unvibrate",
Category = "FunCommands",
Description = "Unvibrates a set of playe... | 200 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/vibrate.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "vibrate",
Category = "FunCommands",
Description = "Vibrates a set of players."... | 512 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/visible.luau | --Implementation of a command.
--!strict
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "visible",
Category = "FunCommands",
Description = "Makes a set of players visible.",
Arguments = {
{
Type = "nexusAdminPlayers",
Name = ... | 193 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Fun/volume.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "volume",
Category = "FunCommands",
Description = "Changes the volume of the au... | 153 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Local/Resources/CompareClientServer.luau | --Helper function for comparing consistency data between the client and server.
--!strict
local INDENT = " "
local IGNORED_INSTANCES = {
{
Names = {
ThumbnailCamera = true,
},
ClassName = "Camera",
},
{
Names = {
Climbing = true,
Died =... | 1,481 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Local/Resources/Serialization/DataTypeDeserializers.luau | --Deserializers for DataTypes.
--!strict
return {
["Axes"] = function(Data)
local AxesEnums = {}
for _, EnunName in Data do
table.insert(AxesEnums, (Enum.Axis :: any)[EnunName])
end
return Axes.new(unpack(AxesEnums))
end,
["BrickColor"] = function(Data)
r... | 592 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Local/Resources/Serialization/DataTypeSerializers.luau | --Serializers for DataTypes.
--!strict
return {
["Axes"] = function(Data: Axes)
local AxesStrings = {}
if Data.X then
table.insert(AxesStrings, "X")
end
if Data.Y then
table.insert(AxesStrings, "Y")
end
if Data.Z then
table.insert(... | 752 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Local/Resources/Serialization/init.luau | --Serializes and deserializes instances.
--!strict
local DIRECT_SERIALIZE_TYPES = {
boolean = true,
EnumItem = true,
number = true,
string = true,
}
local IGNORED_TYPES = {
Content = true,
Font = true,
SecurityCapabilities = true,
}
local IGNORED_INSTANCES = {
Script = true,
LocalSc... | 1,727 |
TheNexusAvenger/Nexus-Admin | TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Persistent/pbanlogs.luau | --Implementation of a command.
--!strict
local IncludedCommandUtil = require(script.Parent.Parent:WaitForChild("IncludedCommandUtil"))
local Types = require(script.Parent.Parent.Parent:WaitForChild("Types"))
return {
Keyword = "pbanlogs",
Category = "PersistentCommands",
Description = "Displays the Persis... | 808 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.