repo
stringclasses
302 values
file_path
stringlengths
18
241
language
stringclasses
2 values
file_type
stringclasses
4 values
code
stringlengths
76
697k
tokens
int64
10
271k
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/BasicCommands/age.luau
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
luau
.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
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Resources/GetConsistencyData.luau
luau
.luau
--Helper function for getting the data for checking for cosistency. --!strict local HUMANOID_PROPERTIES_TO_CHECK = { "AutoJumpEnabled", "AutoRotate", "BreakJointsOnDeath", "CameraOffset", "DisplayDistanceType", "DisplayName", "Health", "HealthDisplayDistance", "HipHeight", "Jump...
518
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/Resources/ToolListEnum.luau
luau
.luau
--Manages the tool enum. --!strict local TOOL_CONTAINERS = { game:GetService("Lighting"), game:GetService("ReplicatedStorage"), game:GetService("ServerStorage"), game:GetService("StarterPack"), } local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) local ToolListEnum = {} ToolList...
744
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/clone.luau
luau
.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 = "clone", Category = "UsefulFunCommands", Description = "Clones the character of...
222
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/collide.luau
luau
.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 = "collide", Category = "UsefulFunCommands", Description = "Makes a set of player...
291
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/damage.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "damage", Category = "UsefulFunCommands", Description = "Damages a given set of players, ignoring force fields.", Arguments = { { Type = "nexusAdminP...
202
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/explode.luau
luau
.luau
--Implementation of a command. --!strict local Workspace = game:GetService("Workspace") local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "explode", Category = "UsefulFunCommands", Description = "Explodes a set of players.", Arguments = { { ...
208
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/ff.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "ff", Category = "UsefulFunCommands", Description = "Adds a force field to the given players.", Arguments = { { Type = "nexusAdminPlayers", ...
228
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/fling.luau
luau
.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 = "fling", Category = "UsefulFunCommands"...
527
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/flip.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "flip", Category = "UsefulFunCommands", Description = "Flips a set of players.", Arguments = { { Type = "nexusAdminPlayers", Name = "Play...
191
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/fly.luau
luau
.luau
--Implementation of a command. --!strict local UserInputService = game:GetService("UserInputService") local FlyState = require(script.Parent.Parent:WaitForChild("Resources"):WaitForChild("FlyState")) local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "fly", Category =...
267
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/freeze.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "freeze", Category = "UsefulFunCommands", Description = "Freezes the character of the given players.", Arguments = { { Type = "nexusAdminPlayers", ...
169
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/god.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "god", Category = "UsefulFunCommands", Description = "Heals a set of players, and makes their health infinite.", Arguments = { { Type = "nexusAdminPl...
187
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/grav.luau
luau
.luau
--Implementation of a command. --!strict local Workspace = game:GetService("Workspace") local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = {"grav", "setgrav"}, Category = "UsefulFunCommands", Description = "Sets the gravity of a set of players.", Arguments = {...
417
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/heal.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "heal", Category = "UsefulFunCommands", Description = "Heals a set of players.", Arguments = { { Type = "nexusAdminPlayers", Name = "Play...
173
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/health.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "health", Category = "UsefulFunCommands", Description = "Heals a set of players, and sets their max health.", Arguments = { { Type = "nexusAdminPlaye...
213
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/jail.luau
luau
.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 = "jail", Category = "UsefulFunCommands", Description = "Creates a jail around a ...
1,356
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/jump.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "jump", Category = "UsefulFunCommands", Description = "Jumps a set of players.", Arguments = { { Type = "nexusAdminPlayers", Name = "Play...
170
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/jumpheight.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "jumpheight", Category = "UsefulFunCommands", Description = "Sets the jump height of the given players.", Arguments = { { Type = "nexusAdminPlayers",...
228
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/jumppower.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "jumppower", Category = "UsefulFunCommands", Description = "Sets the jump power of the given players.", Arguments = { { Type = "nexusAdminPlayers", ...
228
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/kill.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "kill", Category = "UsefulFunCommands", Description = "Kills a given set of players.", Arguments = { { Type = "nexusAdminPlayers", Name =...
171
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/lock.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "lock", Category = "UsefulFunCommands", Description = "Locks the character of the given players.", Arguments = { { Type = "nexusAdminPlayers", ...
168
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/place.luau
luau
.luau
--Implementation of a command. --!strict local TeleportService = game:GetService("TeleportService") local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "place", Category = "UsefulFunCommands", Description = "Teleports a set of players to the given place.", Argu...
181
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/sit.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "sit", Category = "UsefulFunCommands", Description = "Sits a set of players.", Arguments = { { Type = "nexusAdminPlayers", Name = "Player...
170
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/stun.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "stun", Category = "UsefulFunCommands", Description = "Stuns a set of players.", Arguments = { { Type = "nexusAdminPlayers", Name = "Play...
171
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/thaw.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = {"thaw", "unfreeze"}, Category = "UsefulFunCommands", Description = "Thaws the character of the given players.", Arguments = { { Type = "nexusAdminPl...
174
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/thru.luau
luau
.luau
--Implementation of a command. --!strict local Types = require(script.Parent.Parent.Parent:WaitForChild("Types")) return { Keyword = "thru", Category = "UsefulFunCommands", Description = "Teleports a set of players forward a given amount of studs.", Arguments = { { Type = "nexusAdm...
241
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/tp.luau
luau
.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 = "tp", Category = "UsefulFunCommands", Description = "Teleports a set of players...
366
TheNexusAvenger/Nexus-Admin
TheNexusAvenger-Nexus-Admin-e416436/src/IncludedCommands/UsefulFun/tpto.luau
luau
.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 = "tpto", Category = "UsefulFunCommands", Description = "Teleports a set of playe...
267