0% found this document useful (0 votes)
15 views299 pages

Nameless Admin Script for Roblox

The document is a script for a Roblox admin tool called 'Nameless Admin', which includes various functionalities such as command handling, file management, and player manipulation. It checks for game loading, sets up notification systems, and provides commands for actions like flying, bringing players, and applying effects. The script is designed to enhance player experience and provide administrative controls within the game environment.

Uploaded by

borislovesbeans
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views299 pages

Nameless Admin Script for Roblox

The document is a script for a Roblox admin tool called 'Nameless Admin', which includes various functionalities such as command handling, file management, and player manipulation. It checks for game loading, sets up notification systems, and provides commands for actions like flying, bringing players, and applying effects. The script is designed to enhance player experience and provide administrative controls within the game environment.

Uploaded by

borislovesbeans
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

--[[

╭━╮╱╭╮╱╱╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╭━━━╮╱╭╮ |
┃┃╰╮┃┃╱╱╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱┃╭━╮┃╱┃┃ |
┃╭╮╰╯┣━━┳╮╭┳━━┫┃╭━━┳━━┳━━╮┃┃╱┃┣━╯┣╮╭┳┳━╮ | Welcome to the Nameless Admin
source, feel free to take a look around.
┃┃╰╮┃┃╭╮┃╰╯┃┃━┫┃┃┃━┫━━┫━━┫┃╰━╯┃╭╮┃╰╯┣┫╭╮╮ | Enjoy.
┃┃╱┃┃┃╭╮┃┃┃┃┃━┫╰┫┃━╋━━┣━━┃┃╭━╮┃╰╯┃┃┃┃┃┃┃┃ |
╰╯╱╰━┻╯╰┻┻┻┻━━┻━┻━━┻━━┻━━╯╰╯╱╰┻━━┻┻┻┻┻╯╰╯ |
--]]

-- Waits until game is loaded


local game = game
local GetService = [Link]
if (not [Link](game)) then
local Loaded = [Link]
[Link](Loaded);
wait(1.5)
end

-- Notification library
local Notification =
loadstring(game:HttpGet("[Link]
main/notificationtest"))();
local Notify = [Link];

-- Custom file functions checker checker


local CustomFunctionSupport = isfile and isfolder and writefile and readfile and
listfiles
local FileSupport = isfile and isfolder and writefile and readfile

-- Creates folder & files for Prefix & Plugins


if FileSupport then
if not isfolder('Nameless-Admin') then
makefolder('Nameless-Admin')
end

if not isfolder('Nameless-Admin/Plugins') then


makefolder('Nameless-Admin/Plugins')
end

if not isfile("Nameless-Admin/[Link]") then


writefile("Nameless-Admin/[Link]", ';')
else
end
end

-- [[ PREFIX AND OTHER STUFF. ]] --


local opt = {
prefix = readfile("Nameless-Admin/[Link]", ';'), -- If player's executor
has the custom file function support it reads the prefix file to get prefix
tupleSeparator = ',', -- ;ff me,others,all | ;ff me/others/all
ui = { -- never did anything with this

},
keybinds = { -- never did anything with this

},
}
-- [[ Version ]] --
currentversion = 1.13

--[[ VARIABLES ]]--


PlaceId, JobId = [Link], [Link]
local Players = game:GetService("Players")
local UserInputService = game:GetService("UserInputService")
local TweenService = game:GetService("TweenService")
local RunService = game:GetService("RunService")
local TeleportService = game:GetService("TeleportService")
local RunService2 = game:FindService("RunService")
local StarterGui = game:GetService("StarterGui")
local SoundService = game:GetService("SoundService")
sethidden = sethiddenproperty or set_hidden_property or set_hidden_prop
local Player = [Link]
local IYLOADED = false -- This is used for the ;iy command that executes infinite
yield commands using this admin command script (BTW)
local Humanoid = Character and Character:FindFirstChildWhichIsA("Humanoid") or
false
local Character = [Link]
local Clicked = true
_G.Spam = false
--[[ FOR LOOP COMMANDS ]]--
view = false
anniblockspam = false
control = false
FakeLag = false
Loopvoid = false
Loopkill = false
Loopbring = false
Loopbanish = false
Loopvoid = false
Loopcuff = false
loopgrab = false
Loopstand = false
Looptornado = false
Loopmute = false
Loopglitch = false
Watch = false
local Admin = {}

-- [[ HAT ORBIT (PATCHED IN MOST GAMES) ]]


local Offset = 10
local Rotation = 0
local Speed = 1
local Height = 2

local EditingPos = false

local Power = 50000


local Damping = 500

local Mode = 1

local NormalSpin = true

--[[ Some more variables ]]--


local localPlayer = [Link]
local LocalPlayer = [Link]
local character = [Link]
local mouse = localPlayer:GetMouse()
local camera = [Link]
local camtype = [Link]
local Commands, Aliases = {}, {}
player, plr, lp = localPlayer, localPlayer, localPlayer, localPlayer

[Link]:Connect(function(c)
character = c
end)

local bringc = {}

--[[ COMMAND FUNCTIONS ]]--


commandcount = 0
cmd = {}
[Link] = function(...)
local vars = {...}
local aliases, info, func = vars[1], vars[2], vars[3]
for i, cmdName in pairs(aliases) do
if i == 1 then
Commands[cmdName:lower()] = {func, info}
else
Aliases[cmdName:lower()] = {func, info}
end
end
commandcount = commandcount + 1
end

[Link] = function(args)
local caller, arguments = args[1], args; [Link](args, 1);
local success, msg = pcall(function()
if Commands[caller:lower()] then
Commands[caller:lower()][1](unpack(arguments))
elseif Aliases[caller:lower()] then
Aliases[caller:lower()][1](unpack(arguments))
end
end)
if not success then
end
end

--[[ LIBRARY FUNCTIONS ]]--


lib = {}
[Link] = function(f)
return [Link](f)()
end

wrap = [Link]

local wait = function(int)


if not int then int = 0 end
local t = tick()
repeat
[Link]:Wait(0)
until (tick() - t) >= int
return (tick() - t), t
end

function r15(plr)
if
[Link]:FindFirstChildOfClass('Humanoid').RigType ==
[Link].R15 then
return true
end
end

function getRoot(character)
local root =
[Link]:FindFirstChild('HumanoidRootPart') or
[Link]:FindFirstChild('Torso') or
[Link]:FindFirstChild('UpperTorso')
return root
end

-- [[ FUNCTION TO GET A PLAYER ]] --


local getPlr = function(Name)
if Name:lower() == "random" then
return Players:GetPlayers()[[Link](#Players:GetPlayers())]
else
Name = Name:lower():gsub("%s", "")
for _, x in next, Players:GetPlayers() do
if [Link]:lower():match(Name) then
return x
elseif [Link]:lower():match("^" .. Name) then
return x
end
end
end
end

-- [[ MORE VARIABLES ]] --
plr = [Link]
COREGUI = game:GetService("CoreGui")
speaker = [Link]
char = [Link]
RunService = game:GetService("RunService")

game:GetService('RunService').Stepped:connect(function()
if anniblockspam then
[Link].Chest_Invisibility_Cloak.[Link] =
[Link]([Link])

if [Link]:FindFirstChild("InvisibilityCloak") then

[Link]:EquipTool([Link]
[Link])
end

for i,v in pairs([Link]:GetChildren()) do


if (v:IsA("Tool")) then
[Link]:Destroy()
end
end

for i,v in pairs([Link]:GetChildren()) do


if (v:IsA("Tool")) then
[Link] = workspace
end
end

end
end)

function mobilefly(speed)
local controlModule =
require([Link]:WaitForChild('PlayerModule'):WaitFor
Child("ControlModule"))
local bv = [Link]("BodyVelocity")
[Link] = "VelocityHandler"
[Link] = [Link]
[Link] = [Link](0,0,0)
[Link] = [Link](0,0,0)

local bg = [Link]("BodyGyro")
[Link] = "GyroHandler"
[Link] = [Link]
[Link] = [Link](9e9,9e9,9e9)
bg.P = 1000
bg.D = 50

local Signal1
Signal1 = [Link]:Connect(function(NewChar)
local bv = [Link]("BodyVelocity")
[Link] = "VelocityHandler"
[Link] = NewChar:WaitForChild("Humanoid").RootPart
[Link] = [Link](0,0,0)
[Link] = [Link](0,0,0)

local bg = [Link]("BodyGyro")
[Link] = "GyroHandler"
[Link] = NewChar:WaitForChild("Humanoid").HumanoidRootPart
[Link] = [Link](9e9,9e9,9e9)
bg.P = 1000
bg.D = 50
end)

local camera = [Link]

local Signal2
Signal2 = game:GetService"RunService".RenderStepped:Connect(function()
if [Link] and
[Link]:FindFirstChildOfClass("Humanoid") and
[Link] and
[Link]:FindFirstChild("VelocityHandler
") and
[Link]:FindFirstChild("GyroHandler")
then

[Link]
= [Link](9e9,9e9,9e9)
[Link] =
[Link](9e9,9e9,9e9)
[Link] = true
[Link] =
[Link]
local direction = controlModule:GetMoveVector()
[Link]
= [Link]()
if direction.X > 0 then
[Link]
= [Link] +
[Link]*(direction.X*speed)
end
if direction.X < 0 then
[Link]
= [Link] +
[Link]*(direction.X*speed)
end
if direction.Z > 0 then
[Link]
= [Link] -
[Link]*(direction.Z*speed)
end
if direction.Z < 0 then
[Link]
= [Link] -
[Link]*(direction.Z*speed)
end
end
end)
end

function unmobilefly()

[Link]:Destroy()
[Link]:Destroy()
[Link] = false
Signal1:Disconnect()
Signal2:Disconnect()
end

function x(v)
if v then
for _,i in pairs(workspace:GetDescendants()) do
if i:IsA("BasePart") and not [Link]:FindFirstChild("Humanoid")
and not [Link]:FindFirstChild("Humanoid") then
[Link] = 0.5
end
end
else
for _,i in pairs(workspace:GetDescendants()) do
if i:IsA("BasePart") and not [Link]:FindFirstChild("Humanoid")
and not [Link]:FindFirstChild("Humanoid") then
[Link] = 0
end
end
end
end

local function getChar()


return [Link]
end
local function getBp()
return [Link]
end

local cmdlp = [Link]

plr = cmdlp

workspace = [Link]

cmdm = plr:GetMouse()

function sFLY(vfly)
FLYING = false
speedofthefly = 10
speedofthevfly = 10
while not cmdlp or not [Link] or not
[Link]:FindFirstChild('HumanoidRootPart') or not
[Link]:FindFirstChild('Humanoid') or not cmdm do
wait()
end
local T = [Link]
local CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
local lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
local SPEED = 0
local function FLY()
FLYING = true
local BG = [Link]('BodyGyro', T)
local BV = [Link]('BodyVelocity', T)
BG.P = 9e4
[Link] = [Link](9e9, 9e9, 9e9)
[Link] = [Link]
[Link] = [Link](0, 0, 0)
[Link] = [Link](9e9, 9e9, 9e9)
spawn(function()
while FLYING do
if not vfly then

[Link]:FindFirstChild("Humanoid").PlatformStand = true
end
if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~=
0 or CONTROL.Q + CONTROL.E ~= 0 then
SPEED = 50
elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F +
CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0) and SPEED ~= 0 then
SPEED = 0
end
if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B)
~= 0 or (CONTROL.Q + CONTROL.E) ~= 0 then
[Link] =
(([Link] * (CONTROL.F + CONTROL.B)) +
(([Link] * [Link](CONTROL.L + CONTROL.R,
(CONTROL.F + CONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).p) -
[Link].p)) * SPEED
lCONTROL = {F = CONTROL.F, B = CONTROL.B, L =
CONTROL.L, R = CONTROL.R}
elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F +
CONTROL.B) == 0 and (CONTROL.Q + CONTROL.E) == 0 and SPEED ~= 0 then
[Link] =
(([Link] * (lCONTROL.F + lCONTROL.B)) +
(([Link] * [Link](lCONTROL.L + lCONTROL.R,
(lCONTROL.F + lCONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).p) -
[Link].p)) * SPEED
else
[Link] = [Link](0, 0, 0)
end
[Link] = [Link]
wait()
end
CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
SPEED = 0
BG:destroy()
BV:destroy()
[Link] = false
end)
end
[Link]:connect(function(KEY)
if KEY:lower() == 'w' then
if vfly then
CONTROL.F = speedofthevfly
else
CONTROL.F = speedofthefly
end
elseif KEY:lower() == 's' then
if vfly then
CONTROL.B = - speedofthevfly
else
CONTROL.B = - speedofthefly
end
elseif KEY:lower() == 'a' then
if vfly then
CONTROL.L = - speedofthevfly
else
CONTROL.L = - speedofthefly
end
elseif KEY:lower() == 'd' then
if vfly then
CONTROL.R = speedofthevfly
else
CONTROL.R = speedofthefly
end
elseif KEY:lower() == 'y' then
if vfly then
CONTROL.Q = speedofthevfly*2
else
CONTROL.Q = speedofthefly*2
end
elseif KEY:lower() == 't' then
if vfly then
CONTROL.E = -speedofthevfly*2
else
CONTROL.E = -speedofthefly*2
end
end
end)
[Link]:connect(function(KEY)
if KEY:lower() == 'w' then
CONTROL.F = 0
elseif KEY:lower() == 's' then
CONTROL.B = 0
elseif KEY:lower() == 'a' then
CONTROL.L = 0
elseif KEY:lower() == 'd' then
CONTROL.R = 0
elseif KEY:lower() == 'y' then
CONTROL.Q = 0
elseif KEY:lower() == 't' then
CONTROL.E = 0
end
end)
FLY()
end

local tool = getBp():FindFirstChildOfClass("Tool") or


getChar():FindFirstChildOfClass("Tool")

local function attachTool(tool,cf)


for i,v in pairs(tool:GetDescendants()) do
if not (v:IsA("BasePart") or v:IsA("Mesh") or v:IsA("SpecialMesh"))
then
v:Destroy()
end
end
wait()
[Link] = 1
local l = [Link]["1"]:Clone()
[Link] = [Link]
[Link] = "Humanoid"

[Link]["1"]:Destroy()
[Link] = [Link]
[Link] = true
wait()
[Link] = "None"

[Link] = getChar()
end

local nc = false
local ncLoop
ncLoop = game:GetService("RunService").Stepped:Connect(function()
if nc and getChar() ~= nil then
for _, v in pairs(getChar():GetDescendants()) do
if v:IsA("BasePart") and [Link] == true then
[Link] = false
end
end
end
end)

local netsleepTargets = {}
local nsLoop
nsLoop = game:GetService("RunService").Stepped:Connect(function()
if #netsleepTargets == 0 then return end
for i,v in pairs(netsleepTargets) do
if [Link] then
for i,v in pairs([Link]:GetChildren()) do
if v:IsA("BasePart") == false and v:IsA("Accessory") ==
false then continue end
if v:IsA("BasePart") then
sethiddenproperty(v,"NetworkIsSleeping",true)
elseif v:IsA("Accessory") and v:FindFirstChild("Handle")
then
sethiddenproperty([Link],"NetworkIsSleeping",true)
end
end
end
end
end)

function getTorso(x)
x = x or [Link]
return x:FindFirstChild("Torso") or x:FindFirstChild("UpperTorso") or
x:FindFirstChild("LowerTorso") or x:FindFirstChild("HumanoidRootPart")
end

function getRoot(char)
local rootPart =
[Link]:FindFirstChild('HumanoidRootPart') or
[Link]:FindFirstChild('Torso') or
[Link]:FindFirstChild('UpperTorso')
return rootPart
end

local lp = game:GetService("Players").LocalPlayer

-- [[ LIB FUNCTIONS ]] --
[Link] = function(instance, par)
locks[instance] = true
[Link] = par or [Link]
[Link] = "RightGrip"
end
lock = [Link]
locks = {}

[Link] = function(t, v) -- mmmmmm


for i, e in pairs(t) do
if i == v or e == v then
return i
end
end
return nil
end

[Link] = function(text, watch)


local parsed = {}
if not text then return nil end
for arg in text:gmatch("[^" .. watch .. "]+") do
arg = arg:gsub("-", "%%-")
local pos = text:find(arg)
arg = arg:gsub("%%", "")
if pos then
local find = text:sub(pos - [Link]:len(), pos - 1)
if (find == [Link] and watch == [Link]) or watch ~=
[Link] then
[Link](parsed, arg)
end
else
[Link](parsed, nil)
end
end
return parsed
end

[Link] = function(text)
wrap(function()
local commands = [Link](text, [Link])
for _, parsed in pairs(commands) do
local args = {}
for arg in parsed:gmatch("[^ ]+") do
[Link](args, arg)
end
[Link](args)
end
end)
end

local connections = {}

[Link] = function(name, connection) -- no :(


connections[name .. tostring([Link](1000000, 9999999))] = connection
return connection
end

[Link] = function(name)
for title, connection in pairs(connections) do
if title:find(name) == 1 then
connection:Disconnect()
end
end
end

m = math -- prepare for annoying and unnecessary tool grip math


rad = [Link]
clamp = [Link]
sin = [Link]
tan = [Link]
cos = [Link]

--[[ PLAYER FUNCTIONS ]]--


argument = {}
[Link] = function(str)
local playerNames, players = [Link](str, [Link]), {}
for _, arg in pairs(playerNames or {"me"}) do
arg = arg:lower()
local playerList = Players:GetPlayers()
if arg == "me" or arg == nil then
[Link](players, localPlayer)

elseif arg == "all" then


for _, plr in pairs(playerList) do
[Link](players, plr)
end

elseif arg == "others" then


for _, plr in pairs(playerList) do
if plr ~= localPlayer then
[Link](players, plr)
end
end

elseif arg == "random" then


[Link](players, playerList[[Link](1, #playerList)])

elseif arg:find("%%") == 1 then


local teamName = arg:sub(2)
for _, plr in pairs(playerList) do
if tostring([Link]):lower():find(teamName) == 1 then
[Link](players, plr)
end
end

else
for _, plr in pairs(playerList) do
if [Link]:lower():find(arg) == 1 or ([Link] and
[Link]:lower():find(arg) == 1) or (tostring([Link]):lower():find(arg)
== 1) then
[Link](players, plr)
end
end
end
end
return players
end

--[[ COMMANDS ]]--


[Link]({"script", "ls", "s", "run"}, {"script <source> (ls, s, run)", "Run the
code requested"}, function(source)
loadstring(game:HttpGet(source))()
end)

[Link]({"executor"}, {"executor", "Very simple executor"}, function()

loadstring(game:HttpGet("[Link]
main/executor"))()
end)

[Link]({"scripthub"}, {"scripthub", "Thanks to scriptblox api"}, function()

loadstring(game:HttpGet("[Link]
main/ScriptHub"))()
end)

[Link]({"stand"}, {"stand <player>", "Makes a player your stand"}, function(...)


Username = (...)

local target = getPlr(Username)


local THumanoidPart
local plrtorso
local TargetCharacter = [Link]
if TargetCharacter:FindFirstChild("Torso") then
plrtorso = [Link]
elseif TargetCharacter:FindFirstChild("UpperTorso") then
plrtorso = [Link]
end
local old = getChar().[Link]
local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")
if target == nil or tool == nil then return end
local attWeld = attachTool(tool,[Link](0,0,0))
attachTool(tool,[Link](0,0,0.2) * [Link]([Link](-
90),0,0))
[Link] = [Link]
wait(0.07)
[Link] = [Link](0, 3, -1)
firetouchinterest([Link],[Link],0)
firetouchinterest([Link],[Link],1)
wait(1.3)
end)

[Link]({"valk"}, {"valk", "Only works on dollhouse"}, function()


repeat game:GetService("RunService").Stepped:wait()
until game:IsLoaded() and game:GetService("Players").LocalPlayer

pcall(function()
local plr = game:GetService("Players").LocalPlayer
local giver = workspace:WaitForChild("Valkyrie Helm giver")

local head = [Link]:WaitForChild("Head")


firetouchinterest(head, giver, 0)

[Link]:Connect(function(char)
head = char:WaitForChild("Head")
firetouchinterest(head, giver, 0)
end)
end)
end)

[Link]({"httpget", "hl", "get"}, {"httpget <url> (hl, get)", "Run the contents of
a given URL"}, function(url)
loadstring(game:HttpGet(url, true))()
end)

[Link]({"resizechat", "rc"}, {"resizechat (rc)", "Makes chat resizable and


draggable"}, function()
require(game:GetService("Chat").[Link]).WindowResizable =
true
require(game:GetService("Chat").[Link]).WindowDraggable =
true
end)

alreadyantilag = false
[Link]({"lag"}, {"lag <player>", "Chat lag"}, function()

local Message = "a"


local Unicode = " "
Message = Message .. Unicode:rep(200 - #Message)

local SayMessageRequest =
game:GetService("ReplicatedStorage"):FindFirstChild("SayMessageRequest", true)

for i = 1, 7 do
SayMessageRequest:FireServer(Message, "All")
end

if alreadyantilag == false then


local Players = game:GetService("Players")

local Player = [Link]


local PlayerGui = [Link]

local Chat = PlayerGui:FindFirstChild("Chat")


local MessageDisplay = Chat and
Chat:FindFirstChild("Frame_MessageLogDisplay", true)
local Scroller = MessageDisplay and
MessageDisplay:FindFirstChild("Scroller")

local Gsub = [Link]


local Lower = [Link]

if not Scroller then return end

for _, x in next, Scroller:GetChildren() do


local MessageTextLabel = x:FindFirstChildWhichIsA("TextLabel")

if MessageTextLabel then
local Message = Gsub([Link], "^%s+", "")

if Message:match(" ") then


x:Destroy()
end
end
end

local ChatAdded = [Link]:Connect(function(x)


local MessageTextLabel = x:FindFirstChildWhichIsA("TextLabel")
local SenderTextButton = MessageTextLabel and
MessageTextLabel:FindFirstChildWhichIsA("TextButton")
if MessageTextLabel and SenderTextButton then
repeat [Link]() until not
[Link]:match("__+")
local Message = Gsub([Link], "^%s+", "")

if Message:match(" ") then


x:Destroy()
end
end
end)
alreadyantilag = true
else
end
end)

[Link]({"plugins"}, {"plugins", "Check what kind of plugins you have, add plugins
using a gui, delete a plugin."}, function()

loadstring(game:HttpGet("[Link]
main/NamelessAdminPlugin"))();
end)

[Link]({"prefix"}, {"prefix <prefix>", "Changes the admin prefix"}, function(...)


PrefixChange = (...)

if PrefixChange == nil then


Notify({
Description = "Please enter a valid prefix";
Title = "Nameless Admin";
Duration = 5;

});
elseif PrefixChange == "p" or PrefixChange == "[" or PrefixChange == "P" then
Notify({
Description = "idk why but this prefix breaks changing the prefix so
pick smthing else alr?";
Title = "Nameless Admin";
Duration = 5;

});
else
[Link] = PrefixChange
Notify({
Description = "Prefix set to " .. PrefixChange .. "";
Title = "Nameless Admin";
Duration = 5;

});
end
end)

[Link]({"saveprefix"}, {"saveprefix <prefix>", "Saves the prefix to what u


want"}, function(...)
PrefixChange = (...)

if PrefixChange == nil then


Notify({
Description = "Please enter a valid prefix";
Title = "Nameless Admin";
Duration = 5;

});
elseif PrefixChange == "p" or PrefixChange == "[" or PrefixChange == "P" then
Notify({
Description = "idk why but this prefix breaks changing the prefix so
pick smthing else alr?";
Title = "Nameless Admin";
Duration = 5;

});
else
writefile("Nameless-Admin\\[Link]", PrefixChange)
[Link] = PrefixChange
Notify({
Description = "Prefix saved to '" .. PrefixChange .. "'";
Title = "Nameless Admin";
Duration = 5;
});
end
end)

--[ UTILITY ]--

[Link]({"chatlogs", "clogs"}, {"chatlogs (clogs)", "Open the chat logs"},


function()
[Link]()
end)

[Link]({"gotocampos", "tocampos", "tcp"}, {"gotocampos (tocampos, tcp)",


"Teleports you to your camera position works with free cam but freezes you"},
function()
local player = [Link]
local UserInputService = game:GetService("UserInputService")
local function teleportPlayer()
local character = [Link] or [Link]:wait(1)
local camera = [Link]
local cameraPosition = [Link]
character:SetPrimaryPartCFrame([Link](cameraPosition))
end
local camera = [Link]
repeat wait() until [Link] ~= [Link]()

teleportPlayer()
end)

[Link]({"kanye"}, {"kanye", "Random kanye quote"}, function()


local check = "[Link]
local final = game:HttpGet(check)
local final2 = [Link](final,'"quote"',"")
local final3 = [Link](final2,"[%{%:%}]","")

[Link]:FireServer(fin
al3.." - Kanye West", 'All')
end)

-- [[ HAT ORBIT COMMANDS ]] --


[Link]({"hatorbit", "ho"}, {"hatorbit (ho)", "Hat orbit"}, function()
-- [[ patched theres no point in using it ]] --
wait();

Notify({
Description = "Hat orbit loaded, if you wanna orbit other people type in the
chat .orbit playername";
Title = "Nameless Admin";
Duration = 10;

});
local LC = [Link]
local Name = [Link]
local Char = [Link]

local Humanoid = Char:FindFirstChildWhichIsA("Humanoid")


local Root = [Link]

local Accessories = Humanoid:GetAccessories()


local Target = Char
local TargetPos = [Link]

function findName(pname)
for i, v in ipairs([Link]:GetPlayers()) do
if pname then
if [Link]([Link]:lower(), pname:lower()) or
[Link]([Link]:lower(), pname:lower()) then
return [Link]
end
else
end
end
end

function findChar(pname)
return [Link]:FindFirstChild(findName(pname)).Character
end

local hats = {}

if Target then
-- Loop through each hat in the target player's character
local character = Target
for _, hat in ipairs(character:GetChildren()) do
if hat:IsA("Accessory") then
hats[#hats+1] = hat
end
end
end

local hatCount = #hats


if hatCount > 0 then
local angle = [Link] * 2 / hatCount
-- Loop through each hat again to add bodyposition and move hats
for i, hat in ipairs(hats) do
-- Add bodyposition to the handle and make it massless
local handle = [Link]
[Link]:Remove()

if handle then
local bodyPosition = [Link]("BodyPosition",
handle)
[Link] = [Link]([Link],
[Link], [Link])
bodyPosition.P = Power
bodyPosition.D = Damping

local bodyGyro = [Link]("BodyGyro", handle)


[Link] = [Link]([Link],
[Link], [Link])
bodyGyro.P = Power
bodyGyro.D = Damping

-- Calculate position based on angle and Offset


local x = [Link](Rotation + angle * (i-1)) *
Offset
local z = [Link](Rotation + angle * (i-1)) *
Offset
-- Set position of bodyposition
[Link] = TargetPos + [Link](x,
Height, z)
end
end

-- Rotate hats around target player


local function myCoroutine()
while wait(-9e999) do
Rotation = Rotation + (Speed / 20)
if Rotation >= [Link] * 2 then
Rotation = 0
end

for i, hat in ipairs(hats) do


local handle = [Link]
local x = [Link](Rotation + angle * (i-1)) *
Offset
local z = [Link](Rotation + angle * (i-1)) *
Offset

[Link].P = Power
[Link] = [Link](0, 5, 0)
[Link] = true
[Link] =
[Link](0, 0, 0, 0, 0)

[Link] =
[Link]([Link] + [Link](0, [Link].Y, 0),
[Link])

if NormalSpin == true then


[Link] = TargetPos
+ [Link](x + [Link].X, Height, z +
[Link].Z)
end

if EditingPos == false then


TargetPos =
[Link]
end
end
end
end

local myWrappedCoroutine = [Link](myCoroutine)

myWrappedCoroutine()
end

function Mode2()
if Mode == 2 then
local Angle = [Link] * 2 / #hats -- number of hats in the
circle

function Loop()
if Mode == 2 then
-- Get the orientation of the root part
local RootOrientation =
[Link] - [Link]
local RootRotation = RootOrientation

for i, Hat in ipairs(hats) do


local HatRotation = RootRotation.Y +
Angle * (i - 1) + Speed * tick()
local x = [Link](HatRotation) * Offset
local z = [Link](HatRotation) * Offset

local HatPos = TargetPos +


RootOrientation * [Link](x, z, -Height)
[Link] =
HatPos
end

wait()
Loop()
end
end

Loop()

for i, Hat in ipairs(hats) do


local Handle = [Link]

[Link] = TargetPos
end
end
end

function Mode3()
if Mode == 3 then
for i = 1, #Accessories do
Accessories[i].[Link] =
TargetPos + [Link](0, Height, 0)
wait(.1)
end
wait()
Mode3()
end
end

function Mode4 ()
if Mode == 4 then
if not LC:GetMouse().Target then else
TargetPos = LC:GetMouse().[Link]
end
wait(-9e999)
Mode4()
end
end

function Mode5 ()
local spiralPitch = 0
local spiralAngle = 0

function Loop ()
if Mode == 5 then
spiralAngle = spiralAngle + Speed / 300
if spiralAngle >= [Link] * 10 then
spiralAngle = 0
end

for i, hat in ipairs(hats) do


local handle = [Link]
if handle then
local x = [Link](spiralAngle + i *
spiralPitch) * (i * Offset / 8)
local y = i * (Height / 3)
local z = [Link](spiralAngle + i *
spiralPitch) * (i * Offset / 8)
[Link] = TargetPos
- [Link](0, 2, 0) + [Link](x, y, z)
end
end
end
spiralPitch += Speed / 70
wait(-9e999)
Loop()
end

Loop()
end

function Mode6 ()
local stack1 = {}
local stack2 = {}

for i = 1, #Accessories do
if i <= #Accessories / 2 then
stack1[#stack1 + 1] = Accessories[i]
else
stack2[#stack2 + 1] = Accessories[i]
end
end

function Loop()
if Mode == 6 then
local angle = tick() * Speed
local x = [Link](angle) * Offset
local z = [Link](angle) * Offset

for i, v in ipairs(stack1) do
[Link] = TargetPos +
[Link](x, i+Height,-z)
end

for i, v in ipairs(stack2) do
[Link] = TargetPos +
[Link](-x, i+Height,z)
end
wait()
Loop()
end
end
Loop()
end

function Mode7()
local stack1 = {}
local stack2 = {}
local stack3 = {}

for i = 1, #Accessories do
if i < #Accessories / 3 then
stack1[#stack1 + 1] = Accessories[i]
elseif i < #Accessories / 3 * 2 or i == #Accessories then
stack2[#stack2 + 1] = Accessories[i]
else
stack3[#stack3 + 1] = Accessories[i]
end
end

function Loop()
if Mode == 7 then
local angle = tick() * Speed
local x = [Link](angle) * Offset
local z = [Link](angle) * Offset

for i, v in ipairs(stack1) do
[Link] = TargetPos +
[Link](x, i+Height, -z)
end

for i, v in ipairs(stack2) do
[Link] = TargetPos +
[Link](x, i+Height, z)
end

for i, v in ipairs(stack3) do
[Link] = TargetPos +
[Link](-x, i+Height, -z)
end
wait()
Loop()
end
end

Loop()
end

function Mode8()
if Mode == 8 then
local forward = [Link]
local right = [Link]
local up = [Link]
local angle = [Link] * 2 / #hats * tick()

for i, hat in ipairs(hats) do


local handle = [Link]
local x = right * ([Link](angle * (i-1)) * Offset)
local y = up * ([Link](angle * (i-1)) * Offset)
local z = forward * (Height+10)
local pos =
[Link] + z + x + y
local look =
([Link] - pos).unit

[Link] = pos + TargetPos +


[Link](0, 2, 0)
end

wait()
Mode8()
end
end

function Mode9 ()
local Left = {}
local Right = {}

for i, v in pairs(Accessories) do
if (#Left < #Accessories / 2) then
Left[#Left + 1] = v
else
Right[#Right + 1] = v
end
end

function Loop ()
if Mode == 9 then
for i, v in ipairs(Left) do
local angle = tick() * Speed
local x = [Link](angle + i) * Offset
local z = [Link](angle + i) * Offset

[Link] = TargetPos +
[Link](x, Height, z)
end

for i, v in ipairs(Right) do
local angle = tick() * Speed
local x = [Link](angle + i) * Offset
local z = [Link](angle + i) * Offset

[Link] = TargetPos +
[Link](z, Height, x)
end

wait()
Loop()
end
end

Loop()
end

function Mode10 ()
local Left = {}
local Right = {}
for i, v in pairs(Accessories) do
if (#Left < #Accessories / 2) then
Left[#Left + 1] = v
else
Right[#Right + 1] = v
end
end

function Loop ()
if Mode == 10 then
for i, v in ipairs(Left) do
local angle = tick() * Speed
local x = [Link](angle + i) * Offset
local z = [Link](angle + i) * Offset

[Link] = TargetPos +
[Link](z, x + Height, -x)
end

for i, v in ipairs(Right) do
local angle = tick() * Speed
local x = [Link](angle + i) * Offset
local z = [Link](angle + i) * Offset

[Link] = TargetPos +
[Link](-x, x + Height, -z)
end
wait()
Loop()
end
end

Loop()
end

function Mode11 ()
local OldOffset = Offset

local Circle1 = {}
local Circle2 = {}
for i, v in pairs(Accessories) do
if (#Circle1 < #Accessories / 2) then
Circle1[#Circle1 + 1] = v
else
Circle2[#Circle2 + 1] = v
end
end

function Loop ()
if Mode == 11 then
for i = 1, #Circle1 do
local angle = tick() * Speed
local x = -[Link](angle + (i * angle)) *
Offset
local y = [Link](angle) / 2 * OldOffset
local z = [Link](angle + (i * -angle)) *
Offset
Offset = [Link](angle) / 2 * OldOffset

local offset =
[Link](0,[Link]( [Link].Y), 0) *
[Link](x, Height+y, z)
Circle1[i].[Link] =
TargetPos + offset
end

for i = 1, #Circle2 do
local angle = tick() * Speed
local x = -[Link](angle + (i * angle)) *
Offset
local y = -[Link](angle) / 2 * OldOffset
local z = [Link](angle + (i * angle)) *
Offset

Offset = [Link](angle) / 2 * OldOffset

local offset = [Link](0,


[Link]([Link].Y), 0) * [Link](x, Height+y, z)
Circle2[i].[Link] =
TargetPos + offset
end
wait()
Loop()
end
end

Loop()
end

function Mode12 ()
local Circle1 = {}
local Circle2 = {}
for i, v in pairs(Accessories) do
if (#Circle1 < #Accessories / 2) then
Circle1[#Circle1 + 1] = v
else
Circle2[#Circle2 + 1] = v
end
end

function Loop ()
if Mode == 12 then
for i = 1, #Circle1 do
local angle = tick() * Speed
local x = [Link](angle + (i * 5)) * Offset
local z = [Link](angle + (i * 5)) * Offset
local offset = [Link](0,
[Link]([Link].Y), 0) * [Link](x, Height, z)
Circle1[i].[Link] =
TargetPos + offset
end

for i = 1, #Circle2 do
local angle = tick() * Speed
local x = [Link](angle + (i * 5)) * Offset
local z = [Link](angle + (i * 5)) * Offset
local offset = [Link](0, [Link](-
[Link].Y), 0) * [Link](x, Height + 2, z)
Circle2[i].[Link] =
TargetPos + offset
end
wait()
Loop()
end
end

Loop()
end

function Mode13 ()
local Circle1 = {}
local Circle2 = {}
for i, v in pairs(Accessories) do
if (#Circle1 < #Accessories / 2) then
Circle1[#Circle1 + 1] = v
else
Circle2[#Circle2 + 1] = v
end
end

function Loop ()
if Mode == 13 then
for i = 1, #Circle1 do
local angle = tick() * Speed
local x = [Link](angle + (i * 5)) * Offset
local z = [Link](angle + (i * 5)) * Offset
local offset = [Link](0,
[Link]([Link].Y), 0) * [Link](x + Offset * 2,
Height, z)
Circle1[i].[Link] =
TargetPos + offset
end

for i = 1, #Circle2 do
local angle = tick() * Speed
local x = [Link](angle + (i * 5)) * Offset
local z = [Link](angle + (i * 5)) * Offset
local offset = [Link](0,
[Link]([Link].Y), 0) * [Link](x - Offset * 2,
Height, z)
Circle2[i].[Link] =
TargetPos + offset
end
wait()
Loop()
end
end

Loop()
end

function Mode14 ()
local Circle1 = {}
local Circle2 = {}
for i, v in pairs(Accessories) do
if (#Circle1 < #Accessories / 2) then
Circle1[#Circle1 + 1] = v
else
Circle2[#Circle2 + 1] = v
end
end

function Loop ()
if Mode == 14 then
for i = 1, #Circle1 do
local angle = tick() * Speed
local x = [Link](angle + (i * 5)) * Offset
local z = [Link](angle + (i * 5)) * Offset
local offset = [Link](0,
[Link]([Link].Y), 0) * [Link](x + Offset * 2,
Height, z)
Circle1[i].[Link] =
TargetPos + offset
end

for i = 1, #Circle2 do
local angle = tick() * Speed
local x = [Link](angle + (i * 5)) * Offset
local z = [Link](angle + (i * 5)) * Offset
local offset = [Link](0, [Link](-
[Link].Y), 0) * [Link](x - Offset * 2, Height,
z)
Circle2[i].[Link] =
TargetPos + offset
end
wait()
Loop()
end
end

Loop()
end

function Mode15()
Height = -1
function Loop ()
if Mode == 15 then
for i = 1, #Accessories do
local offset = [Link](0,
[Link]([Link].Y), 0) * [Link](0, Height, -i *
Offset / 5)
Accessories[i].[Link] =
TargetPos + offset
end

wait()
Loop()
end
end

Loop()
wait()
end
function Mode16()
local function Loop()
if Mode == 16 then
for i, v in pairs(Accessories) do
local x = [Link]([Link](1, 255) + (i +
1)) * Offset
local z = [Link]([Link](1, 255) + (i +
1)) * Offset

local m = [Link](1, 13)


if m == 1 then
[Link] =
TargetPos + [Link](x, Height, z)
elseif m == 2 then
[Link] =
TargetPos + [Link](z, Height, x)
elseif m == 3 then
[Link] =
TargetPos + [Link](-x, Height, z)
elseif m == 4 then
[Link] =
TargetPos + [Link](x, Height, -z)
elseif m == 5 then
[Link] =
TargetPos + [Link](x, z, z)
elseif m == 6 then
[Link] =
TargetPos + [Link](x, x, z)
elseif m == 7 then
[Link] =
TargetPos + [Link](-x, x, z)
elseif m == 8 then
[Link] =
TargetPos + [Link](x, -x, z)
elseif m == 9 then
[Link] =
TargetPos + [Link](x, x, -z)
elseif m == 10 then
[Link] =
TargetPos + [Link](-x, z, z)
elseif m == 11 then
[Link] =
TargetPos + [Link](x, -z, z)
elseif m == 12 then
[Link] =
TargetPos + [Link](x, z, -z)
elseif m == 13 then
[Link] =
TargetPos + [Link](z, z, z)
end
end
end
wait()
Loop()
end

Loop()
end
function Mode17()
local OldOffset = Offset
local OldHeight = Height

local Circle1 = {}
local Circle2 = {}
for i, v in pairs(Accessories) do
if (#Circle1 < #Accessories / 2) then
Circle1[#Circle1 + 1] = v
else
Circle2[#Circle2 + 1] = v
end
end

function Loop ()
if Mode == 17 then
for i = 1, #Circle1 do
local angle = tick() * Speed
local x = [Link](angle + (i * #hats)) *
Offset
local z = [Link](angle + (i * #hats)) *
Offset

Offset = [Link](angle) * OldOffset


Height = [Link](angle) * OldHeight

Circle1[i].[Link] =
TargetPos + [Link](x, -Height, z)
end

for i = 1, #Circle2 do
local angle = tick() * Speed+1
local x = [Link](angle + (i * #hats)) *
Offset
local z = [Link](angle + (i * #hats)) *
Offset

Offset = [Link](angle ) * OldOffset


Height = [Link](angle) * OldHeight

Circle2[i].[Link] =
TargetPos + [Link](x, Height, z)
end
wait()
Loop()
end
end

Loop()
end

local connect = [Link]:Connect(function(chat)


local Split = chat:lower():split(" ")

local C1 = Split[1]
local C2 = Split[2]

if C1 == ".mode" then
Mode = tonumber(C2)
if C2 == "1" then
EditingPos = false
NormalSpin = true
elseif C2 == "2" then
EditingPos = false
NormalSpin = false
Mode2()
elseif C2 == "3" then
EditingPos = false
NormalSpin = false
Mode3()
elseif C2 == "4" then
EditingPos = true
NormalSpin = true
Mode4()
elseif C2 == "5" then
EditingPos = false
NormalSpin = false
Mode5()
elseif C2 == "6" then
EditingPos = false
NormalSpin = false
Mode6()
elseif C2 == "7" then
EditingPos = false
NormalSpin = false
Mode7()
elseif C2 == "8" then
EditingPos = false
NormalSpin = false
Mode8()
elseif C2 == "9" then
EditingPos = false
NormalSpin = false
Mode9()
elseif C2 == "10" then
EditingPos = false
NormalSpin = false
Mode10()
elseif C2 == "11" then
EditingPos = false
NormalSpin = false
Mode11()
elseif C2 == "12" then
EditingPos = false
NormalSpin = false
Mode12()
elseif C2 == "13" then
EditingPos = false
NormalSpin = false
Mode13()
elseif C2 == "14" then
EditingPos = false
NormalSpin = false
Mode14()
elseif C2 == "15" then
EditingPos = false
NormalSpin = false
Mode15()
elseif C2 == "16" then
EditingPos = false
NormalSpin = false
Mode16()
elseif C2 == "17" then
EditingPos = false
NormalSpin = false
Mode17()
end

elseif C1 == ".offset" then


Offset = tonumber(C2)
elseif C1 == ".speed" then
Speed = tonumber(C2)
elseif C1 == ".height" then
Height = tonumber(C2)
elseif C1 == ".power" then
Power = tonumber(C2)
elseif C1 == ".orbit" then
if C2 == "me" then
Target = Char
elseif C2 == "random" then
local randomPlayer = [Link]:GetPlayers()
[[Link](1, #[Link]:GetPlayers())]
Target = [Link]
elseif C2 == "nearest" then
local minDistance = [Link]
for _, player in pairs([Link]:GetPlayers()) do
if [Link] and [Link] ~=
Char then
local distance =
([Link] -
[Link]).magnitude
if distance < minDistance then
minDistance = distance
Target = [Link]
end
end
end
elseif C2 == "farthest" then
local maxDistance = -[Link]
for _, player in pairs([Link]:GetPlayers()) do
if [Link] and [Link] ~=
Char then
local distance =
([Link] -
[Link]).magnitude
if distance > maxDistance then
maxDistance = distance
Target = [Link]
end
end
end
else
Target = findChar(C2)
end
elseif C1 == ".blockhats" then
for i, v in pairs(Accessories) do
if [Link]:FindFirstChild("Mesh") then
[Link]:FindFirstChild("Mesh"):Remove()
else

[Link]:FindFirstChild("SpecialMesh"):Remove()
end
end
elseif C1 == ".cmds" then
for i = 1, #Commands do
print(Commands[i])
wait()
end
end
end)

[Link]:Connect(function()
connect:Disconnect()
end)

[Link] += [Link](0, 10, 0)


[Link] = true
for i,v in next,
game:GetService("Players").[Link]:GetDescendants() do if
v:IsA("BasePart") and [Link] ~= "HumanoidRootPart" then
game:GetService("RunService").Heartbeat:connect(function() [Link] =
[Link](-30, 0, 0) [Link] = true end) end end
wait(1)
[Link] = false
end)

[Link]({"ospeed", "orbitspeed"}, {"orbitspeed <speed> (ospeed)", "Hat orbit


command"}, function(...)
Speed = tonumber(...)
end)

[Link]({"omode", "orbitmode"}, {"orbitmode <1-17> (omode)", "Hat orbit command"},


function(...)
Mode = tonumber(...)
if (...) == "1" then
EditingPos = false
NormalSpin = true
elseif (...) == "2" then
EditingPos = false
NormalSpin = false
Mode2()
elseif (...) == "3" then
EditingPos = false
NormalSpin = false
Mode3()
elseif (...) == "4" then
EditingPos = true
NormalSpin = true
Mode4()
elseif (...) == "5" then
EditingPos = false
NormalSpin = false
Mode5()
elseif (...) == "6" then
EditingPos = false
NormalSpin = false
Mode6()
elseif (...) == "7" then
EditingPos = false
NormalSpin = false
Mode7()
elseif (...) == "8" then
EditingPos = false
NormalSpin = false
Mode8()
elseif (...) == "9" then
EditingPos = false
NormalSpin = false
Mode9()
elseif (...) == "10" then
EditingPos = false
NormalSpin = false
Mode10()
elseif (...) == "11" then
EditingPos = false
NormalSpin = false
Mode11()
elseif (...) == "12" then
EditingPos = false
NormalSpin = false
Mode12()
elseif (...) == "13" then
EditingPos = false
NormalSpin = false
Mode13()
elseif (...) == "14" then
EditingPos = false
NormalSpin = false
Mode14()
elseif (...) == "15" then
EditingPos = false
NormalSpin = false
Mode15()
elseif (...) == "16" then
EditingPos = false
NormalSpin = false
Mode16()
elseif (...) == "17" then
EditingPos = false
NormalSpin = false
Mode17()
end
end)

[Link]({"orbitpower", "opower"}, {"orbitpower <power> (opower)", "Hat orbit


command"}, function(...)
Power = tonumber(...)
end)

[Link]({"orbitheight", "oheight"}, {"orbitheight <height> (oheight)", "Hat orbit


command"}, function(...)
Height = tonumber(...)
end)
[Link]({"orbitoffset", "offset"}, {"orbitoffset <height> (offset)", "Hat orbit
command"}, function(...)
Offset = tonumber(...)
end)

[Link]({"godmode", "god"}, {"godmode (god)", "Makes you unable to be killed"},


function()
loadstring(game:HttpGet(('[Link]
end)

[Link]({"clickfling", "mousefling"}, {"mousefling (clickfling)", "Fling a player


by clicking them"}, function()
local Players = game:GetService("Players")
local Mouse = game:GetService("Players").LocalPlayer:GetMouse()

Mouse.Button1Down:Connect(function()
local Target = [Link]
if Target and [Link] and [Link]:IsA("Model") and
Players:GetPlayerFromCharacter([Link]) then
local PlayerName =
Players:GetPlayerFromCharacter([Link]).Name
local player = [Link]
local Targets = {PlayerName}

local Players = game:GetService("Players")


local Player = [Link]

local AllBool = false

local GetPlayer = function(Name)


Name = Name:lower()
if Name == "all" or Name == "others" then
AllBool = true
return
elseif Name == "random" then
local GetPlayers = Players:GetPlayers()
if [Link](GetPlayers,Player) then
[Link](GetPlayers,[Link](GetPlayers,Player)) end
return GetPlayers[[Link](#GetPlayers)]
elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
for _,x in next, Players:GetPlayers() do
if x ~= Player then
if [Link]:lower():match("^"..Name) then
return x;
elseif [Link]:lower():match("^"..Name) then
return x;
end
end
end
else
return
end
end

local Message = function(_Title, _Text, Time)


print(_Title)
print(_Text)
print(Time)
end
local SkidFling = function(TargetPlayer)
local Character = [Link]
local Humanoid = Character and
Character:FindFirstChildOfClass("Humanoid")
local RootPart = Humanoid and [Link]

local TCharacter = [Link]


local THumanoid
local TRootPart
local THead
local Accessory
local Handle

if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
end
if THumanoid and [Link] then
TRootPart = [Link]
end
if TCharacter:FindFirstChild("Head") then
THead = [Link]
end
if TCharacter:FindFirstChildOfClass("Accessory") then
Accessory = TCharacter:FindFirstChildOfClass("Accessory")
end
if Accessoy and Accessory:FindFirstChild("Handle") then
Handle = [Link]
end

if Character and Humanoid and RootPart then


if [Link] < 50 then
getgenv().OldPos = [Link]
end
if THumanoid and [Link] and not AllBool then
end
if THead then
[Link] = THead
elseif not THead and Handle then
[Link] = Handle
elseif THumanoid and TRootPart then
[Link] = THumanoid
end
if not TCharacter:FindFirstChildWhichIsA("BasePart") then
return
end

local FPos = function(BasePart, Pos, Ang)


[Link] = [Link]([Link]) * Pos * Ang

Character:SetPrimaryPartCFrame([Link]([Link]) * Pos * Ang)


[Link] = [Link](9e7, 9e7 * 10, 9e7)
[Link] = [Link](9e8, 9e8, 9e8)
end

local SFBasePart = function(BasePart)


local TimeToWait = 2
local Time = tick()
local Angle = 0
repeat
if RootPart and THumanoid then
if [Link] < 50 then
Angle = Angle + 100

FPos(BasePart, [Link](0, 1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle),0 ,0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](2.25, 1.5, -


2.25) + [Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](-2.25, -1.5,


2.25) + [Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()
else
FPos(BasePart, [Link](0, 1.5,
[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link]), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link] / 1.25), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5 ,0),


[Link]([Link](-90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()
end
else
break
end
until [Link] > 500 or [Link]
~= [Link] or [Link] ~= Players or not
[Link] == TCharacter or [Link] or [Link] <= 0 or
tick() > Time + TimeToWait
end

[Link] = 0/0

local BV = [Link]("BodyVelocity")
[Link] = "EpixVel"
[Link] = RootPart
[Link] = [Link](9e8, 9e8, 9e8)
[Link] = [Link](1/0, 1/0, 1/0)

Humanoid:SetStateEnabled([Link], false)

if TRootPart and THead then


if ([Link].p - [Link].p).Magnitude > 5 then
SFBasePart(THead)
else
SFBasePart(TRootPart)
end
elseif TRootPart and not THead then
SFBasePart(TRootPart)
elseif not TRootPart and THead then
SFBasePart(THead)
elseif not TRootPart and not THead and Accessory and Handle then
SFBasePart(Handle)
else
end

BV:Destroy()
Humanoid:SetStateEnabled([Link], true)
[Link] = Humanoid

repeat
[Link] = getgenv().OldPos * [Link](0, .5, 0)
Character:SetPrimaryPartCFrame(getgenv().OldPos *
[Link](0, .5, 0))
Humanoid:ChangeState("GettingUp")
[Link](Character:GetChildren(), function(_, x)
if x:IsA("BasePart") then
[Link], [Link] = [Link](),
[Link]()
end
end)
[Link]()
until ([Link] - getgenv().OldPos.p).Magnitude < 25
[Link] = getgenv().FPDH
else
end
end

getgenv().Welcome = true
if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return
end

if AllBool then
for _,x in next, Players:GetPlayers() do
SkidFling(x)
end
end

for _,x in next, Targets do


if GetPlayer(x) and GetPlayer(x) ~= Player then
if GetPlayer(x).UserId ~= 1414978355 then
local TPlayer = GetPlayer(x)
if TPlayer then
SkidFling(TPlayer)
end
else
end
elseif not GetPlayer(x) and not AllBool then
end
end
end
end)
end)

[Link]({"ping"}, {"ping", "Shows your ping"}, function()


-- Gui to Lua
-- Version: 3.2

-- Instances:

local Ping = [Link]("ScreenGui")


local Pingtext = [Link]("TextLabel")
local UICorner = [Link]("UICorner")
local UIAspectRatioConstraint = [Link]("UIAspectRatioConstraint")

--Properties:

[Link] = "Ping"
[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = [Link]
[Link] = false

[Link] = "Pingtext"
[Link] = Ping
Pingtext.BackgroundColor3 = [Link](12, 4, 20)
[Link] = 0.140
[Link] = [Link](0, 0, 0, 48)
[Link] = [Link](0, 201, 0, 35)
[Link] = [Link]
[Link] = "FPS:"
Pingtext.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = [Link](1, 0)
[Link] = Pingtext

[Link] = Pingtext
[Link] = 5.743

local script = [Link]('LocalScript', Pingtext)


local RunService = game:GetService("RunService")
[Link]:Connect(function(ping)
[Link] = ("Ping:
" ..game:GetService("Stats").[Link]["Data
Ping"]:GetValueString([Link](2/ping))) -- your ping
end)
end)

[Link]({"fps"}, {"fps", "Shows your fps"}, function()


-- Gui to Lua
-- Version: 3.2

-- Instances:

local Fps = [Link]("ScreenGui")


local Fpstext = [Link]("TextLabel")
local UICorner = [Link]("UICorner")
local UIAspectRatioConstraint = [Link]("UIAspectRatioConstraint")

--Properties:

[Link] = "Fps"
[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = [Link]
[Link] = false

[Link] = "Fpstext"
[Link] = Fps
Fpstext.BackgroundColor3 = [Link](12, 4, 20)
[Link] = 0.140
[Link] = [Link](0, 0, 0, 6)
[Link] = [Link](0, 201, 0, 35)
[Link] = [Link]
[Link] = "FPS:"
Fpstext.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = [Link](1, 0)
[Link] = Fpstext

[Link] = Fpstext
[Link] = 5.743

local script = [Link]('LocalScript', Fpstext)


local RunService = game:GetService("RunService")
[Link]:Connect(function(frame)
[Link] = ("FPS: "..[Link](1/frame))
end)
end)

[Link]({"commands", "cmds"}, {"commands (cmds)", "Open the command list"},


function()
[Link]()
end)

[Link]({"commandcount", "cc"}, {"commandcount (cc)", "Counds how many commands NA


has"}, function()

Notify({
Description = "Nameless Admin currently has ".. commandcount .. " commands";
Title = "Nameless Admin";
Duration = 5;

});
end)

hiddenfling = false
[Link]({"walkfling", "wfling"}, {"walkfling (wfling) [THANKS TO X]", "probably
the best fling lol"}, function()
Notify({
Description = "Walkfling enabled";
Title = "Nameless Admin";
Duration = 5;

});
if
game:GetService("ReplicatedStorage"):FindFirstChild("juisdfj0i32i0eidsuf0iok") then
hiddenfling = true
else
hiddenfling = true
detection = [Link]("Decal")
[Link] = "juisdfj0i32i0eidsuf0iok"
[Link] = game:GetService("ReplicatedStorage")
local function fling()
local hrp, c, vel, movel = nil, nil, nil, 0.1
while true do
game:GetService("RunService").Heartbeat:Wait()
if hiddenfling then
local lp = [Link]
while hiddenfling and not (c and [Link] and hrp
and [Link]) do
game:GetService("RunService").Heartbeat:Wait()
c = [Link]
hrp = c:FindFirstChild("HumanoidRootPart") or
c:FindFirstChild("Torso") or c:FindFirstChild("UpperTorso")
end
if hiddenfling then
vel = [Link]
[Link] = vel * 10000 + [Link](0,
10000, 0)

game:GetService("RunService").RenderStepped:Wait()
if c and [Link] and hrp and [Link] then
[Link] = vel
end
game:GetService("RunService").Stepped:Wait()
if c and [Link] and hrp and [Link] then
[Link] = vel + [Link](0,
movel, 0)
movel = movel * -1
end
end
end
end
end

fling()
end
end)

[Link]({"unwalkfling", "unwfling"}, {"unwalkfling (unwfling)", "stop the


walkfling command"}, function()
Notify({
Description = "Walkfling disabled";
Title = "Nameless Admin";
Duration = 5;

});
hiddenfling = false
end)

[Link]({"fling3"}, {"fling3 <player>", "another variant of fling"}, function(...)


oldcframe = [Link]

User = (...)
Target = getPlr(User)

hiddenfling = true

if game:GetService("ReplicatedStorage"):FindFirstChild("juisdfj0i32i0eidsuf0iok")
then
hiddenfling = true
else
detection = [Link]("Decal")
[Link] = "juisdfj0i32i0eidsuf0iok"
[Link] = game:GetService("ReplicatedStorage")
local function fling()
local hrp, c, vel, movel = nil, nil, nil, 0.1
while true do
game:GetService("RunService").Heartbeat:Wait()
if hiddenfling then
local lp = [Link]
while hiddenfling and not (c and [Link] and hrp
and [Link]) do
game:GetService("RunService").Heartbeat:Wait()
c = [Link]
hrp = c:FindFirstChild("HumanoidRootPart") or
c:FindFirstChild("Torso") or c:FindFirstChild("UpperTorso")
end
if hiddenfling then
vel = [Link]
[Link] = vel * 10000 + [Link](0,
10000, 0)

game:GetService("RunService").RenderStepped:Wait()
if c and [Link] and hrp and [Link] then
[Link] = vel
end
game:GetService("RunService").Stepped:Wait()
if c and [Link] and hrp and [Link] then
[Link] = vel + [Link](0,
movel, 0)
movel = movel * -1
end
end
end
end
end
fling()
end
[Link]:SetStateEnabled("Seated", false)
[Link] = true
if User == "all" or User == "others" then
for _,x in next, [Link]:GetPlayers() do
for i=1, 10 do
wait(0.017)

[Link] =
[Link] * [Link](0, 0, 4)
wait(0.01)

[Link] =
[Link] * [Link](0, 0, -2)
wait(0.01)

[Link] =
[Link]
wait(0.01)

[Link] =
[Link] * [Link](0, 0, -3)
wait(0.01)

[Link] =
[Link] * [Link](0, 0, 2)
wait(0.01)

[Link] =
[Link]
wait(0.01)

[Link] =
[Link] * [Link](0, 0, -1)
wait(0.01)
[Link] =
[Link] * [Link](0, 0, -1)
end
end
else
for i=1, 10 do
wait(0.017)
[Link] =
[Link] * [Link](0, 0, 4)
wait(0.01)
[Link] =
[Link] * [Link](0, 0, -2)
wait(0.01)
[Link] =
[Link]
wait(0.01)
[Link] =
[Link] * [Link](0, 0, -3)
wait(0.01)
[Link] =
[Link] * [Link](0, 0, 2)
wait(0.01)
[Link] =
[Link]
wait(0.01)
[Link] =
[Link] * [Link](0, 0, -1)
wait(0.01)
[Link] =
[Link] * [Link](0, 0, -1)
end
end
sFLY(true)
speedofthevfly = 1
wait(0.3)
[Link] = oldcframe
wait(0.13)
[Link]:SetStateEnabled("Seated", true)
[Link] = false
FLYING = false
[Link] =
false
hiddenfling = false
end)

[Link]({"rjre", "rejoinrefresh"}, {"rjre (rejoinrefresh)", "Rejoins and teleports


you to the position where you were before"}, function()

queueteleport = (syn and syn.queue_on_teleport) or queue_on_teleport or


(fluxus and fluxus.queue_on_teleport)

if not DONE then


DONE = true
local qot = print("a")
local hrp = [Link] and
[Link]:FindFirstChild("HumanoidRootPart")
if hrp then
qot = "[Link](function() end) repeat wait() until game and
game:IsLoaded() local lp = game:GetService('Players').LocalPlayer local char =
[Link] or [Link]:Wait() repeat
char:WaitForChild('HumanoidRootPart').CFrame =
[Link]("..tostring([Link])..") wait() until
([Link]("..tostring([Link])..") -
char:WaitForChild('HumanoidRootPart').Position).Magnitude < 10"
end
queueteleport(qot)
game:GetService("TeleportService"):TeleportCancel()

game:GetService("TeleportService"):TeleportToPlaceInstance([Link],
[Link], [Link])
end
end)

[Link]({"rejoin", "rj"}, {"rejoin (rj)", "Rejoin the game"}, function()


game:GetService("TeleportService"):Teleport([Link])
wait()

wait();

Notify({
Description = "Rejoining...";
Title = "Nameless Admin";
Duration = 5;

});
end)

wrap(function()
--i am so not putting an emulator as a command here
end)

--[ LOCALPLAYER ]--


local function respawn()
cf = [Link]
[Link] = 0
[Link]:wait(1); wait(0.2);
character:WaitForChild("HumanoidRootPart").CFrame = cf
end

local function refresh()


cf = [Link]
[Link] = 0
[Link]:wait(1); wait(0.2);
character:WaitForChild("HumanoidRootPart").CFrame = cf
end

local abort = 0
local function getTools(amt)
if not amt then amt = 1 end
local toolAmount, grabbed = 0, {}
local lastCF = [Link]
local ab = abort

for i, v in
pairs(localPlayer:FindFirstChildWhichIsA("Backpack"):GetChildren()) do
if v:IsA("BackpackItem") then
toolAmount = toolAmount + 1
end
end
if toolAmount >= amt then return
localPlayer:FindFirstChildWhichIsA("Backpack"):GetChildren() end
if not
localPlayer:FindFirstChildWhichIsA("Backpack"):FindFirstChildWhichIsA("BackpackItem
") then return end

repeat
repeat wait() until localPlayer:FindFirstChildWhichIsA("Backpack") or
ab ~= abort
backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
wrap(function()
repeat wait() until
backpack:FindFirstChildWhichIsA("BackpackItem")
for _, tool in pairs(backpack:GetChildren()) do
if #grabbed >= amt or ab ~= abort then break end
if tool:IsA("BackpackItem") then
[Link] = localPlayer
[Link](grabbed, tool)
end
end
end)

respawn()
wait(.1)
until
#grabbed >= amt or ab ~= abort

repeat wait() until [Link] and


tostring([Link]) ~= "respawn_" and [Link] ==
character
wait(.2)

repeat wait() until localPlayer:FindFirstChildWhichIsA("Backpack") or ab ~=


abort
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
for _, tool in pairs(grabbed) do
if tool:IsA("BackpackItem") then
[Link] = backpack
end
end
wrap(function()
repeat wait() until [Link]
wait(.2)
character:SetPrimaryPartCFrame(lastCF)
end)
wait(.2)
return grabbed
end

[Link]({"joke"}, {"joke", "Random joke generator"}, function()


[Link](function()
local HttpService = game:GetService('HttpService')
local check =
"[Link]
local final1 = game:HttpGet(check)
local final = [Link](final1, "[%[%]]", "")
local decoded = HttpService:JSONDecode(final)

[Link]:FireServer(dec
[Link], 'All')
wait(2)

[Link]:FireServer(dec
[Link], 'All')
end)()

end)
[Link]({"idiot"}, {"idiot <player>", "Tell someone that they are an idiot"},
function(...)
local old = getChar().[Link]

Username = (...)

Players = game:GetService("Players")
HRP = [Link]

target = getPlr(Username)

getChar().[Link] =
[Link] * [Link](0, 1, 4)
local message = "Hey " .. [Link] .. ""

[Link]:FireServer(mes
sage, 'All')
wait(1)

[Link]:FireServer('So
rry to tell you this, but..', 'All')
wait(1)

[Link]:FireServer('Yo
u are an idiot!', 'All')
wait(1)

[Link]:FireServer('HA
HAHA!', 'All')
wait(1)
getChar():WaitForChild("HumanoidRootPart").CFrame = old

end)

[Link]({"bringto"}, {"bringto (playertobring) [playertobringto]", "Brings a


player to another player"}, function(h, d)
local target1 = getPlr(h)
local target2 = getPlr(d)

local old = getChar().[Link]


local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")

local distance = 1
local gripPosition = [Link] -
[Link] * distance
wait(0.2)

local Target = target1


local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and Character:FindFirstChildWhichIsA("Humanoid") or
false
local RootPart = Character and Humanoid and [Link] or false
local RightArm = Character and Character:FindFirstChild("Right Arm") or
Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and [Link]
local THumanoid = TCharacter and TCharacter:FindFirstChildWhichIsA("Humanoid") or
false
local TRootPart = TCharacter and THumanoid and [Link] or false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
[Link] = CF
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
[Link] = CF
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6 then
Character["Right Arm"].RightGrip:Destroy()
else
Character["RightHand"].RightGrip:Destroy()
Character["RightHand"].RightGripAttachment:Destroy()
end

wait(4)
CF = [Link]
[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF

-- Teleport the first player to the position next to the second player
getChar().[Link] = [Link](gripPosition) + [Link](0, 3,
0)

-- Tween the first player to the second player's position


local tween = game:GetService("TweenService"):Create(getChar().HumanoidRootPart,
[Link](1), {CFrame = [Link]})
tween:Play()

[Link]:Wait()
if [Link] == [Link].R6 then
--[Link]["Right Arm"]:Destroy()
[Link]["Right Arm"].RightGrip:Destroy() --r6
elseif [Link] == [Link].R15 then
--[Link]["RightHand"]:Destroy()
[Link]:Destroy() --r15
end
wait(0.07)
respawn()
end)

[Link]({"accountage", "accage"}, {"accountage <player> (accage)", "Tells the


account age of a player in the server"}, function(...)
Username = (...)

target = getPlr(Username)
teller = [Link]
accountage = "The account age of " .. [Link] .. " is " .. teller

wait();

Notify({
Description = accountage;
Title = "Nameless Admin";
Duration = 7;

});
end)

[Link]({"notoolscripts", "nts"}, {"notoolscripts (nts)", "Destroy all scripts in


backpack"}, function()
print("test")
local bp = player:FindFirstChildWhichIsA("Backpack")
for _, item in pairs(bp:GetChildren()) do
for _, obj in pairs(item:GetDescendants()) do
if obj:IsA("LocalScript") or obj:IsA("Script") then
[Link] = true
obj:Destroy()
end
end
end
end)

[Link]({"spblockspam", "starterblockscam"}, {"spblockspam (starterblockspam)",


"Spam blocks in any game that has the starter place"}, function()
anniblockspam = true
end)

[Link]({"febtools"}, {"febtools", "Move parts that are your hats"}, function()


-- [[ THANKS TO ROUXHAVER FOR THIS ]] --
-- check out his github - [Link]
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local LocalPlayer = [Link]

if not getgenv().Network then


getgenv().Network = {
BaseParts = {};
FakeConnections = {};
Connections = {};
Output = {
Enabled = true;
Prefix = "[NETWORK] ";
Send = function(Type,Output,BypassOutput)
if typeof(Type) == "function" and (Type == print or Type
== warn or Type == error) and typeof(Output) == "string" and (typeof(BypassOutput)
== "nil" or typeof(BypassOutput) == "boolean") then
if Network["Output"].Enabled == true or BypassOutput
== true then
Type(Network["Output"].Prefix..Output);
end;
elseif Network["Output"].Enabled == true then
error(Network["Output"].Prefix.."Output Send Error :
Invalid syntax.");
end;
end;
};
CharacterRelative = false;
}

Network["Output"].Send(print,": Loading.")
Network["Velocity"] = [Link](14.46262424,14.46262424,14.46262424); --
exactly 25.1 magnitude
Network["RetainPart"] = function(Part,ReturnFakePart) --function for
retaining ownership of unanchored parts
assert(typeof(Part) == "Instance" and Part:IsA("BasePart") and
Part:IsDescendantOf(workspace),Network["Output"].Prefix.."RetainPart Error :
Invalid syntax: Arg1 (Part) must be a BasePart which is a descendant of
workspace.")
assert(typeof(ReturnFakePart) == "boolean" or typeof(ReturnFakePart)
== "nil",Network["Output"].Prefix.."RetainPart Error : Invalid syntax: Arg2
(ReturnFakePart) must be a boolean or nil.")
if not [Link](Network["BaseParts"],Part) then
if [Link] == true then
local Character = [Link]
if Character and [Link] then
local Distance = ([Link]-
[Link]).Magnitude
if Distance > 1000 then
Network["Output"].Send(warn,"RetainPart
Warning : PartOwnership not applied to BasePart "..Part:GetFullName()..", as it is
more than "..gethiddenproperty(LocalPlayer,"MaximumSimulationRadius").." studs
away.")
return false
end
else
Network["Output"].Send(warn,"RetainPart Warning :
PartOwnership not applied to BasePart "..Part:GetFullName()..", as the LocalPlayer
Character's PrimaryPart does not exist.")
return false
end
end
[Link](Network["BaseParts"],Part)
[Link] =
[Link](0,0,0,0,0)
Network["Output"].Send(print,"PartOwnership Output :
PartOwnership applied to BasePart "..Part:GetFullName()..".")
if ReturnFakePart == true then
return FakePart
end
else
Network["Output"].Send(warn,"RetainPart Warning : PartOwnership
not applied to BasePart "..Part:GetFullName()..", as it already active.")
return false
end
end

Network["RemovePart"] = function(Part) --function for removing ownership of


unanchored part
assert(typeof(Part) == "Instance" and
Part:IsA("BasePart"),Network["Output"].Prefix.."RemovePart Error : Invalid syntax:
Arg1 (Part) must be a BasePart.")
local Index = [Link](Network["BaseParts"],Part)
if Index then
[Link](Network["BaseParts"],Index)
Network["Output"].Send(print,"RemovePart Output: PartOwnership
removed from BasePart "..Part:GetFullName()..".")
else
Network["Output"].Send(warn,"RemovePart Warning : BasePart
"..Part:GetFullName().." not found in BaseParts table.")
end
end

Network["SuperStepper"] = [Link]("BindableEvent") --make super fast


event to connect to
for _,Event in pairs({[Link],[Link]}) do
Event:Connect(function()
return
Network["SuperStepper"]:Fire(Network["SuperStepper"],tick())
end)
end

Network["PartOwnership"] = {};
Network["PartOwnership"]["PreMethodSettings"] = {};
Network["PartOwnership"]["Enabled"] = false;
Network["PartOwnership"]["Enable"] = [Link](function() --creating
a thread for network stuff
if Network["PartOwnership"]["Enabled"] == false then
Network["PartOwnership"]["Enabled"] = true --do cool network
stuff before doing more cool network stuff
Network["PartOwnership"]["PreMethodSettings"].ReplicationFocus =
[Link]
[Link] = workspace
Network["PartOwnership"]["PreMethodSettings"].SimulationRadius =
gethiddenproperty(LocalPlayer,"SimulationRadius")
Network["PartOwnership"]["Connection"] =
Network["SuperStepper"].Event:Connect(function() --super fast asynchronous loop
sethiddenproperty(LocalPlayer,"SimulationRadius",1/0)
for _,Part in pairs(Network["BaseParts"]) do --loop
through parts and do network stuff
[Link](function()
if Part:IsDescendantOf(workspace) then
if [Link] == true
then
local Character =
[Link];
if Character and
[Link] then
local Distance =
([Link] - [Link]).Magnitude
if Distance > 1000 then

Network["Output"].Send(warn,"PartOwnership Warning : PartOwnership not applied to


BasePart "..Part:GetFullName()..", as it is more than
"..gethiddenproperty(LocalPlayer,"MaximumSimulationRadius").." studs away.")
Lost = true;
Network["RemovePart"]
(Part)
end
else

Network["Output"].Send(warn,"PartOwnership Warning : PartOwnership not applied to


BasePart "..Part:GetFullName()..", as the LocalPlayer Character's PrimaryPart does
not exist.")
end
end
[Link] = Network["Velocity"]
+[Link](0,[Link](tick()*10)/100,0) --keep network by sending physics packets
of 30 magnitude + an everchanging addition in the y level so roblox doesnt get
triggered and fuck your ownership
else
Network["RemovePart"](Part)
end
end)()
end
end)
Network["Output"].Send(print,"PartOwnership Output :
PartOwnership enabled.")
else
Network["Output"].Send(warn,"PartOwnership Output :
PartOwnership already enabled.")
end
end)
Network["PartOwnership"]["Disable"] = [Link](function()
if Network["PartOwnership"]["Connection"] then
Network["PartOwnership"]["Connection"]:Disconnect()
[Link] = Network["PartOwnership"]
["PreMethodSettings"].ReplicationFocus

sethiddenproperty(LocalPlayer,"SimulationRadius",Network["PartOwnership"]
["PreMethodSettings"].SimulationRadius)
Network["PartOwnership"]["PreMethodSettings"] = {}
for _,Part in pairs(Network["BaseParts"]) do
Network["RemovePart"](Part)
end
Network["PartOwnership"]["Enabled"] = false
Network["Output"].Send(print,"PartOwnership Output :
PartOwnership disabled.")
else
Network["Output"].Send(warn,"PartOwnership Output :
PartOwnership already disabled.")
end
end)
Network["Output"].Send(print,": Loaded.")
end

[Link](Network["PartOwnership"]["Enable"])

local lp = [Link] -- local player var


local char = [Link] -- char var

[Link] = nil -- nil character for pdeath


[Link] = char -- newvar

local hrp = char:FindFirstChild("HumanoidRootPart") -- hrp check


if hrp == nil then return end -- return if no hrp

wait([Link] + .3) -- nil wait

hrp:Destroy() -- rip hrp


[Link]:Destroy() -- rip torso
local clone = char["Body Colors"]:Clone() -- body colors clone
char["Body Colors"]:Destroy() -- delete any instances from char that replicates
deletion
[Link] = char -- parent back in clone in case some script uses it

player = game:GetService("Players").LocalPlayer
Gui = [Link]
Backpack = [Link]
Mouse = player:GetMouse()

Parts_Folder = [Link]("Folder",workspace)

for i,v in pairs([Link]:GetChildren()) do


if v:IsA("Accessory") then
local Part = [Link]("Part",Parts_Folder)
[Link] = [Link]
[Link] = true
[Link] = [Link] - [Link](0.001,0.001,0.001)
[Link] = [Link] +
[Link]([Link](-5,5),[Link](-1,1),[Link](-5,5))
Part:SetAttribute("Moveable",true)
[Link] = [Link]
[Link] = false
[Link] = [Link](1,0,0)

local Hat = [Link]


local vbreak = false
[Link](Hat)
[Link] = [Link](0,0,0,0,0)
[Link](function()
while [Link]() do
if vbreak == true then break end
[Link] = [Link]
end
end)()
Hat:FindFirstChildWhichIsA("SpecialMesh"):Destroy()
end
end

Move_Tool = [Link]("Tool",Backpack)
Rotate_Tool = [Link]("Tool",Backpack)
MHandle = [Link]("Part",Move_Tool)
RHandle = [Link]("Part",Rotate_Tool)
Mgrabs = [Link]("Handles",Gui)
Rgrabs = [Link]("ArcHandles",Gui)
Outline = [Link]("Highlight")

Move_Tool.Name = "Move"
Move_Tool.CanBeDropped = false

Rotate_Tool.Name = "Rotate"
Rotate_Tool.CanBeDropped = false

[Link] = "Handle"
[Link] = 1

[Link] = "Handle"
[Link] = 1

[Link] = false
Mgrabs.Color3 = [Link](1, 0.8, 0)
[Link] = "Movement"

[Link] = false
[Link] = 1
[Link] = 0
[Link] = [Link](1, 0.8, 0)

Active_Part = nil

Move_Tool.AncestryChanged:Connect(function()
if Move_Tool.Parent == char and Active_Part ~= nil then
[Link] = true
[Link] = Active_Part
end
end)

Move_Tool.AncestryChanged:Connect(function()
if Move_Tool.Parent ~= char then
[Link] = false
[Link] = nil
end
end)

Mouse.Button1Down:Connect(function()
if Move_Tool.Parent == char and [Link]:GetAttribute("Moveable") then
Active_Part = [Link]
[Link] = true
[Link] = Active_Part
[Link] = Active_Part
end
if Rotate_Tool.Parent == char and [Link]:GetAttribute("Moveable") then
Active_Part = [Link]
[Link] = true
[Link] = Active_Part
[Link] = Active_Part
end
end)

Rotate_Tool.AncestryChanged:Connect(function()
if Rotate_Tool.Parent == char and Active_Part ~= nil then
[Link] = true
[Link] = Active_Part
end
end)

Rotate_Tool.AncestryChanged:Connect(function()
if Rotate_Tool.Parent ~= char then
[Link] = false
[Link] = nil
end
end)

MOGCFrame = [Link]()

Mgrabs.MouseButton1Down:Connect(function()
MOGCFrame = Active_Part.CFrame
end)

[Link]:Connect(function(knob, pos)
if knob == [Link] then
Active_Part.CFrame = MOGCFrame + [Link] * pos
end
if knob == [Link] then
Active_Part.CFrame = MOGCFrame + [Link] * -pos
end
if knob == [Link] then
Active_Part.CFrame = MOGCFrame + [Link] * pos
end
if knob == [Link] then
Active_Part.CFrame = MOGCFrame + [Link] * -pos
end
if knob == [Link] then
Active_Part.CFrame = MOGCFrame + [Link] * -pos
end
if knob == [Link] then
Active_Part.CFrame = MOGCFrame + [Link] * pos
end
end)

ROGCFrame = [Link]()

Rgrabs.MouseButton1Down:Connect(function()
ROGCFrame = Active_Part.CFrame
end)

[Link]:Connect(function(knob, angle)
if knob == [Link].Y then
Active_Part.CFrame = ROGCFrame * [Link](0,angle,0)
end
if knob == [Link].X then
Active_Part.CFrame = ROGCFrame * [Link](angle,0,0)
end
if knob == [Link].Z then
Active_Part.CFrame = ROGCFrame * [Link](0,0,angle)
end
end)

[Link] = [Link]

camera = [Link]
input = game:GetService("UserInputService")

Camera_Part = [Link]("Part",workspace)
Camera_Part.Anchored = true
Camera_Part.Transparency = 0.85
Camera_Part.Shape = [Link]
Camera_Part.Size = [Link](0.5,0.5,0.5)
Camera_Part.Material = [Link]

current_position = [Link]

[Link] = Camera_Part

for i,v in pairs(char:GetDescendants()) do


if v:IsA("BasePart") and [Link]:IsA("Accessory") == false then
v:Destroy()
end
end

while wait() do
if vbreak == true then
break
end
if input:IsKeyDown([Link].D) then
current_position += [Link] * speed
end
if input:IsKeyDown([Link].A) then
current_position += [Link] * -speed
end
if input:IsKeyDown([Link].W) then
current_position += [Link] * speed
end
if input:IsKeyDown([Link].S) then
current_position += [Link] * -speed
end
if input:IsKeyDown([Link].E) then
current_position += [Link] * speed
end
if input:IsKeyDown([Link].Q) then
current_position += [Link] * -speed
end
if input:IsKeyDown([Link]) then do
speed = 1.5
end else
speed = 0.75
end
Camera_Part.Position = current_position
end
end)

[Link]({"unspblockspam", "unstarterblockscam"}, {"unspblockspam


(unstarterblockspam)", "Stops the starterblockspam command"}, function()
anniblockspam = false
end)

[Link]({"blockspam"}, {"blockspam [amount]", "Spawn blocks by the given amount"},


function(amt)
amt = tonumber(amt) or 1
local hatAmount, grabbed = 0, {}
local lastCF = [Link]
character:ClearAllChildren()
respawn()
repeat
if [Link] ~= "respawn_" then
local c = character
repeat wait() until c:FindFirstChildWhichIsA("Accoutrement")
c:MoveTo(lastCF.p)
wait(1)
for i, v in pairs(c:GetChildren()) do
if v:IsA("Accoutrement") then
v:WaitForChild("Handle")
[Link] = true
if v:FindFirstChildWhichIsA("DataModelMesh", true)
then
v:FindFirstChildWhichIsA("DataModelMesh",
true):Destroy()
end
[Link] = workspace
[Link](grabbed, v)
end
end
hatAmount = hatAmount + 1
end
character:ClearAllChildren()
respawn()
wait()
until
hatAmount >= amt

repeat wait() until tostring([Link]) ~= "respawn_" and


[Link]
wait(0.5)

spawn(function()
repeat wait() until [Link]
wait(0.2)
character:SetPrimaryPartCFrame(lastCF)

for _, item in pairs(grabbed) do


if item:IsA("Accoutrement") and item:FindFirstChild("Handle")
then
[Link] = workspace
wait()
end
end
end)
end)

[Link]({"hitboxes"}, {"hitboxes", "shows all the hitboxes"}, function()


settings():GetService("RenderSettings").ShowBoundingBoxes = true
end)

[Link]({"unhitboxes"}, {"unhitboxes", "removes the hitboxes outline"}, function()


settings():GetService("RenderSettings").ShowBoundingBoxes = false
end)

[Link]({"punch"}, {"punch", "punch tool that flings"}, function()


loadstring(game:HttpGet("[Link]
main/punch",true))()
end)

[Link]({"vfly", "vehiclefly"}, {"vehiclefly (vfly)", "be able to fly vehicles"},


function(...)
FLYING = false
[Link] = false
wait()

wait();

Notify({
Description = "Vehicle fly enabled";
Title = "Nameless Admin";
Duration = 5;

});
sFLY(true)
speedofthevfly = (...)
if (...) == nil then
speedofthevfly = 2
end
end)

[Link]({"unvfly", "unvehiclefly"}, {"unvehiclefly (unvfly)", "disable vehicle


fly"}, function()

wait();

Notify({
Description = "Vehicle fly disabled";
Title = "Nameless Admin";
Duration = 5;

});
FLYING = false
[Link] = false
end)

[Link]({"trap"}, {"trap", "makes your tool be away from you making it look like
its dropped"}, function()

local function Kill(humanoid)


if not humanoid then
return
end
local function getPlr(Name)
if Name:lower() == "random" then
return [Link]:GetPlayers()
[[Link](#[Link]:GetPlayers())]
else
Name = Name:lower():gsub("%s", "")
for _, x in next, [Link]:GetPlayers() do
if [Link]:lower():match(Name) then
return x
elseif [Link]:lower():match("^" .. Name) then
return x
end
end
end
end

local Character = [Link]


local Humanoid = Character:FindFirstChildOfClass("Humanoid")
local RootPart = [Link]
local Tool = Character:FindFirstChildOfClass("Tool")
local Handle = Tool and Tool:FindFirstChild("Handle")

if not Handle then


return
end

local TPlayer = getPlr([Link])


local TCharacter = TPlayer and [Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildOfClass("Humanoid")
local TRootPart = THumanoid and [Link]

if not TPlayer or not TCharacter or not THumanoid or not TRootPart then


return
end

if [Link] then
return
end

local OldCFrame = [Link]

Humanoid:Destroy()
local NewHumanoid = Humanoid:Clone()
[Link] = Character
NewHumanoid:UnequipTools()
NewHumanoid:EquipTool(Tool)
[Link] = workspace

local Timer = [Link]()

repeat
if ([Link].p - [Link].p).Magnitude < 500 then
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace([Link]):Inverse()
end
firetouchinterest(Handle, TRootPart, 0)
firetouchinterest(Handle, TRootPart, 1)
game:FindService("RunService").Heartbeat:wait()
game:FindService("RunService").Heartbeat:wait()
until [Link] ~= Character or not TPlayer or not TRootPart or
[Link] <= 0 or [Link]() > Timer + .20
wait(0.4)
[Link] = nil
[Link] = 0
[Link]:wait(1)
repeat game:FindService("RunService").Heartbeat:wait() until
[Link]:FindFirstChild("HumanoidRootPart")
[Link] = OldCFrame
end

if not LoopKill then


Kill()
else
while LoopKill do
Kill()
end
end

local function equipRandomTool()


local player = [Link]
local backpack = [Link]
local tools = backpack and backpack:GetChildren()
if not tools or #tools == 0 then
return
end
local randomTool = tools[[Link](#tools)]
[Link] = [Link](0, 2, 19)
[Link]:EquipTool(randomTool)
[Link] = [Link]
local handle = randomTool:FindFirstChild("Handle")
if handle then
[Link]:Connect(Kill)
end
end

equipRandomTool()
end)

[Link]({"kill"}, {"kill <player>", "after a while i have added a working kill


script thats almost instant to this admin"}, function(...)
Target = (...)

if Target == "all" or Target == "others" then


print("Patched")
else
local function Kill()
if not getPlr(Target) then
end

repeat game:FindService("RunService").Heartbeat:wait() until


getPlr(Target).Character and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid") and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid").Health > 0
local Character
local Humanoid
local RootPart
local Tool
local Handle

local TPlayer = getPlr(Target)


local TCharacter = [Link]
local THumanoid
local TRootPart

if [Link] and [Link] and


[Link] == [Link] then
Character = [Link]
else
end
if Character:FindFirstChildOfClass("Humanoid") then
Humanoid = Character:FindFirstChildOfClass("Humanoid")
else
end
if Humanoid and [Link] then
RootPart = [Link]
else
end
if Character:FindFirstChildOfClass("Tool") then
Tool = Character:FindFirstChildOfClass("Tool")
elseif [Link]:FindFirstChildOfClass("Tool") and
Humanoid then
Tool = [Link]:FindFirstChildOfClass("Tool")

Humanoid:EquipTool([Link]:FindFirstChildOfClass("Tool"))
else
end
if Tool and Tool:FindFirstChild("Handle") then
Handle = [Link]
else
end

--Target
if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
else
return Message("Error","> Missing Target Humanoid")
end
if [Link] then
TRootPart = [Link]
else
return Message("Error","> Missing Target RootPart")
end

if [Link] then
return Message("Error","> Target is seated")
end

local OldCFrame = [Link]

Humanoid:Destroy()
local NewHumanoid = Humanoid:Clone()
[Link] = Character
NewHumanoid:UnequipTools()
NewHumanoid:EquipTool(Tool)
[Link] = workspace

local Timer = [Link]()

repeat
if ([Link].p - [Link].p).Magnitude <
500 then
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace([Link]):Inverse()
end
firetouchinterest(Handle,TRootPart,0)
firetouchinterest(Handle,TRootPart,1)
game:FindService("RunService").Heartbeat:wait()
until [Link] ~= Character or not TPlayer or not TRootPart
or [Link] <= 0 or [Link]() > Timer + .20
[Link] = nil
[Link] = 0
[Link]:wait(1)
repeat game:FindService("RunService").Heartbeat:wait() until
[Link]:FindFirstChild("HumanoidRootPart")
[Link] = OldCFrame
end
if not LoopKill then
Kill()
else
while LoopKill do
Kill()
end
end
end
end)

[Link]({"toolblockspam"}, {"toolblockspam [amount]", "Spawn blocks by the given


amount"}, function(amt)
if not amt then amt = 1 end
amt = tonumber(amt)
local tools = getTools(amt)
for i, tool in pairs(tools) do
wait()
spawn(function()
wait(0.1)
[Link] = character
[Link] = true
wait(0.1)
for _, mesh in pairs(tool:GetDescendants()) do
if mesh:IsA("DataModelMesh") then
mesh:Destroy()
end
end
for _, weld in pairs(character:GetDescendants()) do
if [Link] == "RightGrip" then
weld:Destroy()
end
end
wait(0.1)
[Link] = workspace
wait(0.1)
local cf, p = [Link](),
character:FindFirstChild("HumanoidRootPart") or character:FindFirstChild("Head")
if p then
cf = [Link]
end
respawn()
[Link]:wait(1); wait(0.2);
character:WaitForChild("HumanoidRootPart").CFrame = cf
end)
end
end)

[Link]({"equiptools", "equipall"}, {"equiptools", "Equip all of your tools"},


function()
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
if backpack then
for _, tool in pairs(backpack:GetChildren()) do
if tool:IsA("Tool") then
[Link] = character
end
end
end
end)
[Link]({"tweento", "tweengoto"}, {"tweengoto (tweento)", "Teleportation method
that bypassses some anticheats"}, function(...)
local Username = (...)

char = [Link]

TweenService = game:GetService("TweenService")

speaker = [Link]
Players = game:GetService("Players")

local players = getPlr(Username)


TweenService:Create(getRoot([Link]), [Link](2,
[Link]), {CFrame = getRoot([Link]).CFrame +
[Link](3,1,0)}):Play()

end)

[Link]({"reach"}, {"reach {number}", "Sword reach"}, function(reachsize)


local reachsize = reachsize or 25
local Tool =
[Link]:FindFirstChildOfClass("Tool") or
[Link]:FindFirstChildOfClass("Tool")
if Tool:FindFirstChild("OGSize3") then
[Link] = [Link]
Tool.OGSize3:Destroy()
[Link]:Destroy()
end
local val = [Link]("Vector3Value",Tool)
[Link] = "OGSize3"
[Link] = [Link]
local sb = [Link]("SelectionBox")
[Link] = [Link]
[Link] = "FunTIMES"
[Link] = [Link]
[Link] = true
[Link] =
[Link]([Link].X,[Link].Y,reachsize)
end)

[Link]({"aura"}, {"aura {number}", "Sword aura"}, function(reachsize)


local reachsize = reachsize or 25
local Tool =
[Link]:FindFirstChildOfClass("Tool") or
[Link]:FindFirstChildOfClass("Tool")
if Tool:FindFirstChild("OGSize3") then
[Link] = [Link]
Tool.OGSize3:Destroy()
[Link]:Destroy()
end
local val = [Link]("Vector3Value",Tool)
[Link] = "OGSize3"
[Link] = [Link]
local sb = [Link]("SelectionBox")
[Link] = [Link]
[Link] = "FunTIMES"
[Link] = 0.5
[Link] = [Link]
[Link] = true
[Link] = [Link](reachsize,reachsize,reachsize)
end)

[Link]({"droptools"}, {"dropalltools", "Drop all of your tools"}, function()


local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
if backpack then
for _, tool in pairs(backpack:GetChildren()) do
if tool:IsA("Tool") then
[Link] = character
end
end
end
wait()
for _, tool in pairs(character:GetChildren()) do
if tool:IsA("Tool") then
[Link] = workspace
end
end
end)

[Link]({"notools"}, {"notools", "Remove your tools"}, function()


for _, tool in pairs(character:GetChildren()) do
if tool:IsA("Tool") then
tool:Destroy()
end
end
for _, tool in pairs([Link]:GetChildren()) do
if tool:IsA("Tool") then
tool:Destroy()
end
end
end)

[Link]({"breaklayeredclothing", "blc"}, {"breaklayeredclothing (blc)", "Streches


your layered clothing"}, function()
-- its literally just leg resize with swim
wait();

Notify({
Description = "Break layered clothing executed, if you havent already equip shirt,
jacket, pants and shoes (Layered Clothing ones)";
Title = "Nameless Admin";
Duration = 5;

});
local swimming = false
local RunService = game:GetService("RunService")
oldgrav = [Link]
[Link] = 0
local char = [Link]
local swimDied = function()
[Link] = oldgrav
swimming = false
end
local Humanoid = char:FindFirstChildWhichIsA("Humanoid")
gravReset = [Link]:Connect(swimDied)
local enums = [Link]:GetEnumItems()
[Link](enums, [Link](enums, [Link]))
for i, v in pairs(enums) do
Humanoid:SetStateEnabled(v, false)
end
Humanoid:ChangeState([Link])
swimbeat = [Link]:Connect(function()
pcall(function()
[Link] = (([Link] ~= [Link]() or
UserInputService:IsKeyDown([Link])) and [Link]
or [Link]())
end)
end)
swimming = true
local Clip = false
wait(0.1)
local function NoclipLoop()
if Clip == false and char ~= nil then
for _, child in pairs(char:GetDescendants()) do
if child:IsA("BasePart") and [Link] == true then
[Link] = false
end
end
end
end
Noclipping = [Link]:Connect(NoclipLoop)
loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
end)

[Link]({"fpsbooster", "lowgraphics", "boostfps", "lowg"}, {"fpsbooster


(lowgraphics, boostfps, lowg)", "Low graphics mode if the game is laggy"},
function()
local decalsyeeted = true
local g = game
local w = [Link]
local l = [Link]
local t = [Link]
sethiddenproperty(l,"Technology",2)
sethiddenproperty(t,"Decoration",false)
[Link] = 0
[Link] = 0
[Link] = 0
[Link] = 0
[Link] = 0
[Link] = 9e9
[Link] = 0
settings().[Link] = "Level01"
for i, v in pairs(w:GetDescendants()) do
if v:IsA("BasePart") and not v:IsA("MeshPart") then
[Link] = "Plastic"
[Link] = 0
elseif (v:IsA("Decal") or v:IsA("Texture")) and decalsyeeted then
[Link] = 1
elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
[Link] = [Link](0)
elseif v:IsA("Explosion") then
[Link] = 1
[Link] = 1
elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or
v:IsA("Sparkles") then
[Link] = false
elseif v:IsA("MeshPart") and decalsyeeted then
[Link] = "Plastic"
[Link] = 0
[Link] = 10385902758728957
elseif v:IsA("SpecialMesh") and decalsyeeted then
[Link]=0
elseif v:IsA("ShirtGraphic") and decalsyeeted then
[Link]=0
elseif (v:IsA("Shirt") or v:IsA("Pants")) and decalsyeeted then
v[[Link].."Template"]=0
end
end
for i = 1,#l:GetChildren() do
e=l:GetChildren()[i]
if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or
e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or
e:IsA("DepthOfFieldEffect") then
[Link] = false
end
end
[Link]:Connect(function(v)
wait()--prevent errors and shit
if v:IsA("BasePart") and not v:IsA("MeshPart") then
[Link] = "Plastic"
[Link] = 0
elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
[Link] = 1
elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
[Link] = [Link](0)
elseif v:IsA("Explosion") then
[Link] = 1
[Link] = 1
elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") or
v:IsA("Sparkles") then
[Link] = false
elseif v:IsA("MeshPart") and decalsyeeted then
[Link] = "Plastic"
[Link] = 0
[Link] = 10385902758728957
elseif v:IsA("SpecialMesh") and decalsyeeted then
[Link]=0
elseif v:IsA("ShirtGraphic") and decalsyeeted then
[Link]=0
elseif (v:IsA("Shirt") or v:IsA("Pants")) and decalsyeeted then
v[[Link].."Template"]=0
end
end)
end)

[Link]({"vr", "clovr", "vrscript", "fevr"}, {"vr (clovr, vrscript, fevr)", "FE VR


SCRIPT AKA CLOVR"}, function()
-- [[ should be patched ]] --
loadstring(game:HttpGet("[Link]
main/CloVR"))();
end)

[Link]({"flash"}, {"flash <player>", "Flashes the targets screen"}, function(...)


local oldCF =
[Link]

Target = (...)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle")
then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart,
0)
firetouchinterest([Link], TRootPart,
1)
wait()
until flag
for i= 1,50,1 do
print('pee'..i)
[Link]
= [Link](0,9e+18,0)
wait(.04)
[Link]
= oldCF
wait(.04)
end
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

[Link]({"void"}, {"void <player>", "Kill the given players without FE god"},


function(...)
Target = (...)
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and Character:FindFirstChildWhichIsA("Humanoid") or
false
local RootPart = Character and Humanoid and [Link] or false
local RightArm = Character and Character:FindFirstChild("Right Arm") or
Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end

Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end

local TPlayer = getPlr(Target)


local TCharacter = TPlayer and [Link]

local THumanoid = TCharacter and TCharacter:FindFirstChildWhichIsA("Humanoid") or


false
local TRootPart = TCharacter and THumanoid and [Link] or false
if not THumanoid or not TRootPart then
return
end

[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
XC = [Link].X
ZC = [Link].Z
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
until flag
wait(0.2)
[Link] = [Link](0,-1000,0)
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
[Link] = [Link](XC,-99,ZC)
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6 then
Character["Right Arm"].RightGrip:Destroy()
else
Character["RightHand"].RightGrip:Destroy()
Character["RightHand"].RightGripAttachment:Destroy()
end
wait(0.02)
respawn()
end)

annoyloop = false
[Link]({"annoy"}, {"annoy <player>", "Annoys the given player"}, function(...)
annoyloop = true
User = (...)
Target = getPlr(User)
local SaveCFrame =
[Link]
repeat wait()

[Link] =
[Link] + [Link]([Link](-
2,2),[Link](0,2),[Link](-2,2))
game:GetService('RunService').RenderStepped:Wait()
wait(.1)
until annoyloop == false
[Link] =
SaveCFrame

end)

[Link]({"unannoy"}, {"unannoy", "Stops the annoy command"}, function()


annoyloop = false
end)
[Link]({"seat"}, {"seat", "Finds a seat and automatically sits on it"},
function()
local seats = {}
for i,v in next, game:GetDescendants() do
if v:IsA'Seat' then
[Link](seats, v)
end
end
wait(0.07)
for i=1, 8 do
seats[[Link](1,
#seats)]:Sit([Link])
end
end)

[Link]({"banish", "punish", "jail"}, {"punish <player> (banish, jail)", "Banishes


the player using a void script, can make them not respawn if the game is old"},
function(...)
Target = (...)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle")
then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart,
0)
firetouchinterest([Link], TRootPart,
1)
wait()
until flag

[Link] = [Link]([Link](-100000,
1000000000000000000000, -100000))
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

massplay = false
[Link]({"sync"}, {"sync", "Syncs all in-game audios"}, function()
massplay = true
if game:GetService("SoundService").RespectFilteringEnabled == false then
repeat wait() do
for _, sound in next, [Link]:GetDescendants() do
if sound:IsA("Sound") then
[Link] = 10
sound:Play()
end
end
end
until massplay == false
else
Notify({
Description = "Sorry, wont replicate for this game, try another game.";
Title = "Nameless Admin";
Duration = 5;

});
end
end)

[Link]({"unsync"}, {"unsync", "Unsyncs all in-game audios"}, function()


massplay = false
end)

[Link]({"infvoid"}, {"infvoid <player>", "Makes a players avatar glitch"},


function(...)
Target = (...)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle")
then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart,
0)
firetouchinterest([Link], TRootPart,
1)
wait()
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end
[Link]
= [Link](111111110, 11111110, 11111110)
end)

[Link]({"attach"}, {"attach <player>", "Attach the given player(s)"},


function(...)
Target = (...)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle")
then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart,
0)
firetouchinterest([Link], TRootPart,
1)
wait()
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF

end)

[Link]({"enableinventory", "enableinv"}, {"enableinv (enableinventory)", "Lets


you see what you have in your inventory since some games hide it"}, function(...)
[Link]:SetCoreGuiEnabled(2, true)
end)

[Link]({"copytools", "ctools"}, {"copytools <player> (ctools)", "Copies the tools


the given player has"}, function(...)
PLAYERNAMEHERE = (...)
Target = getPlr(PLAYERNAMEHERE)
for i, v in pairs([Link]:GetChildren()) do
if v:IsA("Tool") or v:IsA('HopperBin') then
v:Clone().Parent =
[Link]:FindFirstChildOfClass("Backpack")
end
end
end)

[Link]({"bring"}, {"bring <player>", "Bring the given player(s)"}, function(...)


local Target = (...)
if Target == "all" or Target == "others" then
print("Patched")
end
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and [Link] or
false
local RightArm = Character and Character:FindFirstChild("Right
Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and [Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and
[Link] or false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
[Link] = CF
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
[Link] = CF
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6 then
Character["Right Arm"].RightGrip:Destroy()
else
Character["RightHand"].RightGrip:Destroy()
Character["RightHand"].RightGripAttachment:Destroy()
end

wait(4)
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

[Link]({"skydive", "sky"}, {"skydive <player> (sky)", "Skydives the player"},


function(...)
local Target = (...)
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and [Link] or
false
local RightArm = Character and Character:FindFirstChild("Right
Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end

local getPlr = function(Name)


for x in [Link](Name, "[%a%d%p]+") do
Name = x:lower()
break
end
local TPlayer = nil
for _, x in next, Players:GetPlayers() do
if tostring(x):lower():match(Name) or
x["DisplayName"]:lower():match(Name) then
TPlayer = x
break
end
end
return TPlayer
end

Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end

local TPlayer = getPlr(Target)


local TCharacter = TPlayer and [Link]

local THumanoid = TCharacter and


TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and
[Link] or false
if not THumanoid or not TRootPart then
return
end

[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
XC = [Link].X
ZC = [Link].Z
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
[Link] =
[Link](XC,10000,ZC)
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
[Link] =
[Link](XC,1000,ZC)
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6 then
Character["Right Arm"].RightGrip:Destroy()
else
Character["RightHand"].RightGrip:Destroy()
Character["RightHand"].RightGripAttachment:Destroy()
end

wait(4)
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

[Link]({"localtime", "yourtime"}, {"localtime (yourtime)", "Chats your current


time"}, function()
local hour = [Link]("*t")['hour']
if hour < 10 then
hour = "0"..hour
end
local min = [Link]("*t")['min']
if min < 10 then
min = "0"..min
end
local sec = [Link]("*t")['sec']
if sec < 10 then
sec = "0"..sec
end
local clock = hour..":"..min..":"..sec

[Link]:FireServer(clo
ck, 'All')

end)

[Link]({"cartornado", "ctornado"}, {"cartornado (ctornado)", "Tornados a car just


sit in the car"}, function(...)
local SPart = [Link]("Part");
local Player = game:GetService('Players').LocalPlayer;
repeat game:GetService('RunService').RenderStepped:Wait() until [Link];
local Character = [Link];
[Link], [Link] = true, true;
[Link] = workspace;
[Link] = [Link](1, 100, 1)
[Link] = 0.4
game:GetService('RunService').Stepped:Connect(function()
local Ray = [Link]([Link] +
[Link] * 6, [Link](0,-1,0) * 4);
local FPOR = workspace:FindPartOnRayWithIgnoreList(Ray, {Character});
if (FPOR) then
[Link] = [Link] +
[Link] * 6;
end
if SPart == nil then
Ray:destroy()
FPOR:destroy()
end
end)

[Link]:Connect(function(hit)
if hit:IsA("Seat") then
local IsFlying = False
local flyv
local flyg
local Player = [Link]
local Speed = 50
local LastSpeed = Speed
local maxspeed = 100
local IsRunning = false
local f = 0

IsFlying = true
flyv = [Link]("BodyVelocity")

[Link] = [Link]:FindFirstChild('Torso') or
[Link]:FindFirstChild('UpperTorso')
[Link] = [Link]([Link],[Link],[Link])

flyg = [Link]("BodyGyro")
[Link] = [Link]:FindFirstChild('Torso') or
[Link]:FindFirstChild('UpperTorso')
[Link] = [Link](9e9,9e9,9e9)
flyg.P = 1000
flyg.D = 50

[Link]:WaitForChild('Humanoid').PlatformStand = true

[Link]:Connect(function(Prop)

if [Link] == [Link](0,0,0) then


IsRunning = false
else
IsRunning = true
end
end)

spawn(function()
while true do
wait()
if IsFlying then

[Link] = [Link] * [Link](-


[Link]((f+0)*50*Speed/maxspeed),0,0)
[Link] = [Link] * Speed
wait(0.1)

if Speed < 0 then


Speed = 0
f = 0
end
end
if IsRunning then
Speed = LastSpeed
else
if not Speed == 0 then
LastSpeed = Speed
end
Speed = 0
end
end
end)
Speed = 0.1
wait(0.3)
hit:Sit(game:GetService("Players").[Link])
SPart:Destroy()
wait(0.3)
local speaker = [Link]
local seat = [Link]:FindFirstChildOfClass('Humanoid').SeatPart
local vehicleModel = [Link]
repeat
if [Link] ~= "Model" then
vehicleModel = [Link]
end
until [Link] == "Model"
wait(0.1)
for i,v in pairs(vehicleModel:GetDescendants()) do
if v:IsA("BasePart") and [Link] then
[Link] = false
end
end

wait(0.2)
Speed = 80
local Spin = [Link]("BodyAngularVelocity")
[Link] = "Spinning"
[Link] = getRoot([Link])
[Link] = [Link](0, [Link], 0)
[Link] = [Link](0,2000,0)
end
end)
end)

[Link]({"tornado"}, {"tornado <player>", "Tornados the player to be in the sky"},


function(...)

Username = (...)

local target = getPlr(Username)


local THumanoidPart
local plrtorso
local TargetCharacter = [Link]
if TargetCharacter:FindFirstChild("Torso") then
plrtorso = [Link]
elseif TargetCharacter:FindFirstChild("UpperTorso") then
plrtorso = [Link]
end
local old = getChar().[Link]
local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")
if target == nil or tool == nil then return end
local attWeld = attachTool(tool,[Link](0,0,0))
attachTool(tool,[Link](0,0,0.2) * [Link]([Link](-
90),0,0))
[Link] = [Link]
wait(0.07)
[Link] = [Link](0, -7, -3)
firetouchinterest([Link],[Link],0)
firetouchinterest([Link],[Link],1)
local Spin = [Link]("BodyAngularVelocity")
[Link] = "Spinning"
[Link] = getRoot([Link])
[Link] = [Link](0, [Link], 0)
[Link] = [Link](0,40,0)
end)

[Link]({"unspam", "unlag", "unchatspam", "unanimlag", "unremotespam"}, {"unspam",


"Stop all attempts to lag/spam"}, function()
[Link]("spam")
end)

[Link]({"respawn", "re"}, {"respawn", "Respawn your character"}, function()


local old = getChar().[Link]
respawn()
wait()
[Link]:Wait()
getChar():WaitForChild("HumanoidRootPart").CFrame = old
end)

[Link]({"seizure"}, {"seizure", "Gives you a seizure"}, function()

spawn(function()
local Anim = [Link]("Animation")
if [Link]:FindFirstChild("UpperTorso")
then
[Link] = "rbxassetid://507767968"
else
[Link] = "rbxassetid://180436148"
end
local k =
[Link]:LoadAnimation(Anim)
getgenv().ssss = [Link]:GetMouse()
getgenv().Lzzz = false

if Lzzz == false then


getgenv().Lzzz = true
if [Link]:FindFirstChild("UpperTorso")
then
[Link] = "rbxassetid://507767968"
else
[Link] = "rbxassetid://180436148"
end
getgenv().currentnormal = game:GetService("Workspace").Gravity
game:GetService("Workspace").Gravity = 196.2
game:GetService("Players").[Link]:PivotTo(game:GetService("Players")
.[Link]:GetPivot() * [Link](2, 0, 0))
wait(0.5)
game:GetService("Players").[Link] =
true
[Link] = true

k:Play()
k:AdjustSpeed(10)

[Link] = true
else
getgenv().Lzzz = false
if [Link]:FindFirstChild("UpperTorso")
then
[Link] = "rbxassetid://507767968"
else
[Link] = "rbxassetid://180436148"
end
game:GetService("Workspace").Gravity = currentnormal
game:GetService("Players").[Link] =
false
game:GetService("Players").[Link] = true
k:Stop()

[Link] = false
game:GetService'RunService'.Heartbeat:Wait()
for i = 1,10 do

[Link]
= [Link](0, 0, 0)
wait(0.1)
end
end
game:GetService("RunService").RenderStepped:Connect(function()
if Lzzz == true then

[Link] =
[Link] *
[Link](.075*[Link](45*tick()), .075*[Link](45*tick()),.075*[Link](45*tick
())) --angle*[Link](velocity*tick())
end
end)
end)

end)

[Link]({"unseizure"}, {"unseizure", "Stops you from having a seizure not in real


life noob"}, function(n)

spawn(function()
local Anim = [Link]("Animation")
if [Link]:FindFirstChild("UpperTorso")
then
[Link] = "rbxassetid://507767968"
else
[Link] = "rbxassetid://180436148"
end
local k =
[Link]:LoadAnimation(Anim)
getgenv().ssss = [Link]:GetMouse()
getgenv().Lzzz = true

if Lzzz == false then


getgenv().Lzzz = true
if [Link]:FindFirstChild("UpperTorso")
then
[Link] = "rbxassetid://507767968"
else
[Link] = "rbxassetid://180436148"
end
getgenv().currentnormal = game:GetService("Workspace").Gravity
game:GetService("Workspace").Gravity = 196.2

game:GetService("Players").[Link]:PivotTo(game:GetService("Players")
.[Link]:GetPivot() * [Link](2, 0, 0))
wait(0.5)
game:GetService("Players").[Link] =
true
[Link] = true

k:Play()
k:AdjustSpeed(10)

[Link] = true
else
getgenv().Lzzz = false
if [Link]:FindFirstChild("UpperTorso")
then
[Link] = "rbxassetid://507767968"
else
[Link] = "rbxassetid://180436148"
end
game:GetService("Workspace").Gravity = currentnormal
game:GetService("Players").[Link] =
false
game:GetService("Players").[Link] = true
k:Stop()

[Link] = false
game:GetService'RunService'.Heartbeat:Wait()
for i = 1,10 do

[Link]
= [Link](0, 0, 0)
wait(0.1)
end
end
game:GetService("RunService").RenderStepped:Connect(function()
if Lzzz == true then

[Link] =
[Link] *
[Link](.075*[Link](45*tick()), .075*[Link](45*tick()),.075*[Link](45*tick
())) --angle*[Link](velocity*tick())
end
end)
end)
end)

[Link]({"antisit"}, {"antisit", "Antisit"}, function()


[Link]:SetStateEnabled("Seated", false)
[Link] = true

wait();

Notify({
Description = "Anti sit enabled";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"unantisit"}, {"unantisit", "Disable antisit command"}, function()


[Link]:SetStateEnabled("Seated", true)
[Link] = false

wait();

Notify({
Description = "Anti sit disabled";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"lay"}, {"lay", "zzzzzzzz"}, function()


local Human = [Link] and
[Link]
if not Human then
return
end
[Link] = true
[Link](.1)
[Link] = [Link] * [Link]([Link] * .5,
0, 0)
for _, v in ipairs(Human:GetPlayingAnimationTracks()) do
v:Stop()
end
end)

[Link]({"trip"}, {"trip", "get up NOW"}, function()

[Link]:FindFirstChildOfClass("Humanoid"):ChangeState(0)

[Link]:FindFirstChild("HumanoidRootPart").Velocity =
[Link]:FindFirstChild("HumanoidRootPart").[Link]
ctor * 25
end)
[Link]({"checkrfe"}, {"checkrfe", "Checks if the game has respect filtering
enabled off"}, function()
if game:GetService("SoundService").RespectFilteringEnabled == true
then

Notify({
Description = "Respect Filtering Enabled is on";
Title = "Nameless Admin";
Duration = 5;

});
else

Notify({
Description = "Respect Filtering Enabled is off";
Title = "Nameless Admin";
Duration = 5;

});
end
end)

[Link]({"sit"}, {"sit", "Sit your player"}, function()


local hum = character:FindFirstChildWhichIsA("Humanoid")
if hum then
[Link] = true
end
end)

[Link]({"spin"}, {"spin", "Spin yourself at the speed you want"}, function(d)


local spinSpeed = tonumber(d)
if d and isNumber(d) then
spinSpeed = (d)
end
for i,v in pairs(getRoot([Link]):GetChildren())
do
if [Link] == "Spinning" then
v:Destroy()
end
end
local Spin = [Link]("BodyAngularVelocity")
[Link] = "Spinning"
[Link] = getRoot([Link])
[Link] = [Link](0, [Link], 0)
[Link] = [Link](0,spinSpeed,0)
end)

[Link]({"oldroblox"}, {"oldroblox", "Old skybox and studs"}, function()


for i,v in pairs(workspace:GetDescendants()) do
if v:IsA("BasePart") then
local dec = [Link]("Texture", v)
[Link] = "rbxassetid://48715260"
[Link] = "Top"
[Link] = "1"
[Link] = "1"
[Link] = [Link]
[Link] = "Plastic"
local dec2 = [Link]("Texture", v)
[Link] = "rbxassetid://20299774"
[Link] = "Bottom"
[Link] = "1"
[Link] = "1"
[Link] = [Link]
[Link] = "Plastic"
end
end
[Link] = 12
[Link] = false
[Link] = false
for i,v in pairs([Link]:GetDescendants()) do
if v:IsA("Sky") then
v:Destroy()
end
end
local sky = [Link]("Sky", [Link])
[Link] = "rbxassetid://161781263"
[Link] = "rbxassetid://161781258"
[Link] = "rbxassetid://161781261"
[Link] = "rbxassetid://161781267"
[Link] = "rbxassetid://161781268"
[Link] = "rbxassetid://161781260"
end)

[Link]({"f3x", "fex"}, {"f3x", "F3X for client"}, function()


loadstring(game:GetObjects("rbxassetid://6695644299")[1].Source)()
end)

[Link]({"dupetools"}, {"dupetools [amount]", "Probably the fastest tool duping


method"}, function(...)
_G.ammount = (...)
for i=1,_G.ammount do
loadstring(game:HttpGet("[Link]
joshclark756-s-scripts/main/[Link]",true))()
end
end)

[Link]({"harked", "comet"}, {"harked (comet)", "Executes Comet which


is like harked"}, function()
Notify({
Description = "Join the discord to see supported games! Use the discord command to
get the invite";
Title = "Nameless Admin";
Duration = 7;

});

loadstring(game:HttpGet("[Link]
main/Comet"))();
end)

[Link]({"triggerbot", "tbot"}, {"triggerbot (tbot)", "Executes


a script that automatically clicks the mouse when the mouse is on a player"},
function()
local ToggleKey = [Link].Q

local Player = game:GetService("Players").LocalPlayer


local Char = [Link] or [Link]:wait(1)
local Root = [Link] or Char:WaitForChild("HumanoidRootPart")
local Camera = [Link]
local Mouse = Player:GetMouse()
local PlayerTeam = [Link]
local Neutral = [Link]
local UIS = game:GetService("UserInputService")
local Toggled = false

---==GUI==---
local GUI = [Link]("ScreenGui")
local On = [Link]("TextLabel")
local uicorner = [Link]("UICorner")
[Link] = "GUI"
[Link] = [Link] --[Link]:WaitForChild("PlayerGui")
[Link] = "On"
[Link] = GUI
On.BackgroundColor3 = [Link](12, 4, 20)
[Link] = 0.14
[Link] = 0
[Link] = [Link](0.880059958, 0, 0.328616381, 0)
[Link] = [Link](0, 160, 0, 20)
[Link] = [Link]
[Link] = "TriggerBot On: false"
On.TextColor3 = [Link](1, 1, 1)
[Link] = true
[Link] = 14
[Link] = true
[Link] = On
---End Gui--

local FindTeams = function()


local CC1 = false
local CC2 = false

if PlayerTeam ~= nil and Neutral == false then


if #game:GetService("Teams"):GetTeams() > 0 then
CC1 = true
for i, v in pairs(game:GetService("Teams"):GetTeams()) do
if #v:GetPlayers() > 0 and v ~= PlayerTeam and CC1 == true then
CC2 = true
elseif #v:GetPlayers() <= 0 and CC1 == true then
return "FFA"
end
end
elseif #game:GetService("Teams"):GetTeams() <= 0 then
return "FFA"
end
elseif Neutral == true then
return "FFA"
elseif PlayerTeam == nil then
return "FFA"
end
if CC1 == true and CC2 == true then
return "TEAMS"
end
end
--{[/| Functions |\]}--

function Click()
mouse1click()
--print("Tripped")
end
function CastRay(Mode)
local RaySPTR = Camera:ScreenPointToRay(Mouse.X, Mouse.Y) --Hence the var
name, the magnitude of this is 1.
local NewRay = [Link]([Link], [Link] * 9999)
local Target, Position = workspace:FindPartOnRayWithIgnoreList(NewRay,
{Char,[Link]})
if Target and Position and
game:GetService("Players"):GetPlayerFromCharacter([Link]) and
[Link] > 0 or Target and Position and
game:GetService("Players"):GetPlayerFromCharacter([Link]) and
[Link] > 0 then
local TPlayer =
game:GetService("Players"):GetPlayerFromCharacter([Link]) or
game:GetService("Players"):GetPlayerFromCharacter([Link])
if [Link] ~= PlayerTeam and Mode ~= "FFA" and TPlayer ~= Player
then
Click()
elseif [Link] == PlayerTeam and TPlayer ~= Player then
if Mode == "FFA" then
Click()
end
end
end
end
--End Functions--
[Link]:Connect(function(Input)
if [Link] == ToggleKey then
Toggled = not Toggled
[Link] = "Trigger Bot On: ".. tostring(Toggled)
end
end)

local PreMode = FindTeams()


local O = false
game:GetService("RunService").Stepped:Connect(function()
local Mode = FindTeams()
if O == false then
O = true
print(Mode)
end
if Mode ~= PreMode then
PreMode = Mode
print(Mode)
end
if Toggled == true then

CastRay(Mode)
end
end)

print("BrokenCoding's Trigger Bot V4 Loaded")


spawn(function()
wait(2)
Loaded:Destroy()
end)
wait();

Notify({
Description = "Keybind: Q";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"nofog"}, {"nofog", "Removes all fog from the game"},


function()
local Lighting = [Link]
[Link] = 100000
for i,v in pairs(Lighting:GetDescendants()) do
if v:IsA("Atmosphere") then
v:Destroy()
end
end
end)

[Link]({"antiafk", "noafk"}, {"antiafk (noafk)", "Makes you not


be kicked for being afk for 20 mins"}, function()

wait();

Notify({
Description = "Anti AFK has been enabled";
Title = "Nameless Admin";
Duration = 5;

});
ANTIAFK =
[Link]:connect(function()

game:FindService("VirtualUser"):Button2Down([Link](0,0),[Link]
[Link])
[Link](1)

game:FindService("VirtualUser"):Button2Up([Link](0,0),[Link].
CFrame)
end)
end)

[Link]({"antiattach", "noattach"}, {"antiattach


(noattach)", "Makes you not be able to be attached by using a item"}, function()
local Tools = {}
for i,v in
pairs([Link]:GetChildren()) do
if v:IsA("Tool") then
[Link](Tools,v:GetDebugId())
end
end
for i,v in
pairs([Link]:GetChildren()) do
if v:IsA("Tool") then
[Link](Tools,v:GetDebugId())
end
end
AAttach =
[Link]:Connect(function(instance)
if instance:IsA("Tool") and not
[Link](Tools,instance:GetDebugId()) then
[Link]()
[Link] = nil
end
end)

wait();

Notify({
Description = "Anti attach enabled";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"unantiattach", "unnoattach"},
{"unantiattach (unnoattach)", "Makes you to be able for others to attach you"},
function()
if AAttach then
AAttach:Disconnect()

wait();

Notify({
Description = "Anti attach disabled";
Title = "Nameless Admin";
Duration = 5;

});
else

wait();

Notify({
Description = "Anti attach already
disabled";
Title = "Nameless Admin";
Duration = 5;

});
end
end)
[Link]({"setspawn", "spawnpoint", "ss"},
{"setspawn (spawnpoint, ss)", "Makes your spawn point be in the place where your
character is"}, function()

wait();

Notify({
Description = "Spawn has been set";
Title = "Nameless Admin";
Duration = 5;

});
local stationaryrespawn = true
local needsrespawning = false
local haspos = false
local pos = [Link]()

game:GetService("UserInputService").InputBegan:connect(StatRespawn)

game:GetService('RunService').Stepped:connect(function()

if stationaryrespawn == true and


[Link] == 0 then
if haspos == false then
pos = [Link]
haspos = true
end
needsrespawning = true
end

if needsrespawning == true then


[Link] = pos
end
end)

[Link]:connect(function()
wait(0.6)
needsrespawning = false
haspos = false
end)
end)

[Link]({"hamster"}, {"hamster <speed>", "Hamster ball"}, function(...)


-- [[ skidded ]] --
local UserInputService = game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local Camera = [Link]

local SPEED_MULTIPLIER = (...)


local JUMP_POWER = 60
local JUMP_GAP = 0.3

if (...) == nil then


SPEED_MULTIPLIER = 30
end

local character = [Link]


for i,v in ipairs(character:GetDescendants()) do
if v:IsA("BasePart") then
[Link] = false
end
end

local ball = [Link]


[Link] = [Link]
[Link] = [Link](5,5,5)
local humanoid = character:WaitForChild("Humanoid")
local params = [Link]()
[Link] = [Link]
[Link] = {character}

local tc = [Link]:Connect(function(delta)
[Link] = true
[Link] = true
if UserInputService:GetFocusedTextBox() then return end
if UserInputService:IsKeyDown("W") then
[Link] -= [Link] * delta * SPEED_MULTIPLIER
end
if UserInputService:IsKeyDown("A") then
[Link] -= [Link] * delta * SPEED_MULTIPLIER
end
if UserInputService:IsKeyDown("S") then
[Link] += [Link] * delta * SPEED_MULTIPLIER
end
if UserInputService:IsKeyDown("D") then
[Link] += [Link] * delta * SPEED_MULTIPLIER
end
end)

[Link]:Connect(function()
local result = workspace:Raycast(
[Link],
[Link](
0,
-(([Link].Y/2)+JUMP_GAP),
0
),
params
)
if result then
[Link] = [Link] + [Link](0,JUMP_POWER,0)
end
end)

[Link] = ball
[Link]:Connect(function() tc:Disconnect() end)
end)

[Link]({"unantiafk", "unnoafk"}, {"unantiafk (unnoafk)",


"Makes you able to be kicked for being afk for 20 mins"}, function()
if ANTIAFK then
ANTIAFK:Disconnect()
wait();

Notify({
Description = "Anti AFK disabled";
Title = "Nameless Admin";
Duration = 5;

});
else
wait();

Notify({
Description = "Anti AFK already disabled";
Title = "Nameless Admin";
Duration = 5;

});
end
end)

[Link]({"toolgui"}, {"toolgui", "cool tool ui aka replication


ui made by 0866"}, function()

loadstring(game:HttpGet("[Link]
wait();

Notify({
Description = "For a better experience, use R6 if you want tools do ;dupetools 5";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"clicktp"}, {"clicktp", "Teleport where your


mouse is"}, function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Click TP"
[Link]:connect(function()
local pos = [Link]+[Link](0,2.5,0)
pos = [Link](pos.X,pos.Y,pos.Z)
[Link] = pos
end)
[Link] = [Link]
wait(0.07)
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
local Players = game:GetService("Players")

local tool = [Link]("Tool")


[Link] = false
[Link] = "Tween Click TP"
local function onActivated()
local mouse = [Link]:GetMouse()
local pos = [Link] + [Link](0,2.5,0)
local humanoidRootPart = [Link]

local tweenInfo = [Link](


1,
[Link],
[Link],
0,
false,
0
)

local tween = TweenService:Create(humanoidRootPart, tweenInfo, {


CFrame = [Link](pos.X, pos.Y, pos.Z)
})

tween:Play()
end

[Link]:Connect(onActivated)
[Link] = [Link]
end)

[Link]({"dex"}, {"dex", "Using this you can see the parts / guis / scripts etc
with this. A really good and helpful script."}, function()
-- thanks to moon for this dex / best dex out there
loadstring(game:HttpGet("[Link]
main/[Link]"))()
end)

[Link]({"antikill"}, {"antikill", "Makes exploiters not be able


to kill you"}, function()
[Link]:SetStateEnabled("Seated",
false)
[Link] = true
wait();

Notify({
Description = "Anti kill enabled";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"gayrate"}, {"gayrate <player>", "Gay scale of a player"}, function(...)


Username = (...)
target = getPlr(Username)
local coolPercentage = [Link](1, 100)
rate = [Link] .. ' is ' .. coolPercentage .. '% gay'

[Link]:FireServer(rat
e, 'All')
end)

[Link]({"coolrate"}, {"coolrate <player>", "Cool scale of a player"},


function(...)
Username = (...)
target = getPlr(Username)
local coolPercentage = [Link](1, 100)
rate = [Link] .. ' is ' .. coolPercentage .. '% cool'

[Link]:FireServer(rat
e, 'All')
end)
[Link]({"unantikill"}, {"unantikill", "Makes exploiters to be
able to kill you"}, function()
[Link]:SetStateEnabled("Seated", true)
[Link] = false

wait();

Notify({
Description = "Anti kill disabled";
Title = "Nameless Admin";
Duration = 5;

});
end)

AntiFling = false
[Link]({"antifling"}, {"antifling", "makes it so you cant
collide with others"}, function()
AntiFling = true

local function NoCollision(PLR)


if AntiFling and [Link] then
for _,x in pairs([Link]:GetDescendants()) do
if x:IsA("BasePart") and [Link] then
[Link] = false
end
end
end
end
for _,v in pairs([Link]:GetPlayers()) do
if v ~= [Link] then
local antifling =
game:GetService('RunService').Stepped:connect(function()
NoCollision(v)
end)
end
end
[Link]:Connect(function()
if v ~= [Link] and antifling then
local antifling =
game:GetService('RunService').Stepped:connect(function()
NoCollision(v)
end)
end
end)

wait();
Notify({
Description = "Anti fling enabled";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"unantifling"}, {"unantifling", "removes antifling"},


function()
AntiFling = true

wait();
Notify({
Description = "Anti fling disabled";
Title = "Nameless Admin";
Duration = 5;

});

for _,v in pairs([Link]:GetPlayers()) do


if v ~= [Link] then
char = [Link]
for _,x in pairs(char:GetDescendants()) do
if x:IsA("BasePart") then
[Link] = true
end
end
end
end
end)

[Link]({"gravitygun"}, {"gravitygun", "Probably the best


gravity gun script thats fe"}, function()
wait();
Notify({
Description = "Wait a few seconds for it to load";
Title = "Nameless Admin";
Duration = 5;

});

loadstring(game:HttpGet("[Link]
Gravity%20Gun"))()
end)

[Link]({"flingnpcs"}, {"flingnpcs", "Flings NPCs"}, function()


local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
[Link] = 1024
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

[Link]({"voidnpcs"}, {"voidnpcs", "Voids NPCs"}, function()

local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
[Link] = -1024
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

[Link]({"npcfollow"}, {"npcfollow", "Makes NPCS follow you"}, function()


local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
local rootPart = [Link]:FindFirstChild("HumanoidRootPart")
local targetPos =
[Link]:FindFirstChild("HumanoidRootPart").Position
hum:MoveTo(targetPos)
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

npcfollowloop = false
[Link]({"loopnpcfollow"}, {"loopnpcfollow", "Makes NPCS follow you in a loop"},
function()
npcfollowloop = true

repeat wait(0.1)
local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
local rootPart = [Link]:FindFirstChild("HumanoidRootPart")
local targetPos =
[Link]:FindFirstChild("HumanoidRootPart").Position
hum:MoveTo(targetPos)
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
until npcfollowloop == false
end)

[Link]({"unloopnpcfollow"}, {"unloopnpcfollow", "Makes NPCS not follow you in a


loop"}, function()
npcfollowloop = false
end)

[Link]({"sitnpcs"}, {"sitnpcs", "Makes NPCS sit"}, function()


local npcs = {}
local function disappear(hum)
if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
local rootPart = [Link]:FindFirstChild("HumanoidRootPart")
if rootPart then
[Link] = true
end
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

[Link]({"unsitnpcs"}, {"unsitnpcs", "Makes NPCS unsit"}, function()


local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
local rootPart = [Link]:FindFirstChild("HumanoidRootPart")
if rootPart then
[Link] = true
end
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

[Link]({"vehiclespeed", "vspeed"}, {"vehiclespeed <amount> (vspeed)", "Change the


vehicle speed"}, function(...)
if vehicleloopspeed then
vehicleloopspeed:Disconnect()
end
local UserInputService = game:GetService("UserInputService")
local GuiService = game:GetService("GuiService")
local LocalPlayer = game:GetService("Players").LocalPlayer

local intens = (...)

vehicleloopspeed = game:GetService("RunService").Stepped:Connect(function()
local Humanoid = [Link];
if Humanoid:IsA("Humanoid") then

[Link]:ApplyImpulse([Link] *
[Link](intens, intens, intens))
elseif Humanoid:IsA("BasePart") then
Humanoid:ApplyImpulse([Link] *
[Link](intens, intens, intens))
end
end)
end)

[Link]({"unvehiclespeed", "unvspeed"}, {"unvehiclespeed (unvspeed)", "Stops the


vehiclespeed command"}, function()
vehicleloopspeed = vehicleloopspeed:Disconnect()
end)

[Link]({"killnpcs"}, {"killnpcs", "Kills NPCs"}, function()


local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
local rootPart = [Link]:FindFirstChild("HumanoidRootPart")
if rootPart then
[Link] = 0
end
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

[Link]({"bringnpcs"}, {"bringnpcs", "Brings NPCs"}, function()


local npcs = {}

local function disappear(hum)


if hum:IsA("Humanoid") and not
[Link]:GetPlayerFromCharacter([Link]) then
[Link](npcs,{hum,[Link]})
local rootPart = [Link]:FindFirstChild("HumanoidRootPart")
if rootPart then
[Link] =
[Link]
end
end
end
for _,hum in pairs(workspace:GetDescendants()) do
disappear(hum)
end
end)

[Link]({"controlnpcs", "cnpcs"}, {"controlnpcs (cnpcs)", "Keybind: CTRL +


LEFTCLICK"}, function()

wait();

Notify({
Description = "ControlNPCs executed, CTRL + Click on an NPC";
Title = "Nameless Admin";
Duration = 5;

});
--- made by joshclark756#7155
local mouse = [Link]:GetMouse()
local uis = game:GetService("UserInputService")
mouse.Button1Down:Connect(function()
if [Link] and uis:IsKeyDown([Link]) then
local npc = [Link]
local npcRootPart = [Link]
local PlayerCharacter = game:GetService("Players").[Link]
local PlayerRootPart = [Link]
local A0 = [Link]("Attachment")
local AP = [Link]("AlignPosition")
local AO = [Link]("AlignOrientation")
local A1 = [Link]("Attachment")
for _, v in pairs(npc:GetDescendants()) do
if v:IsA("BasePart") then
game:GetService("RunService").Stepped:Connect(function()
[Link] = false
end)
end
end
PlayerRootPart:BreakJoints()
for _, v in pairs(PlayerCharacter:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] == "HumanoidRootPart" or [Link] == "UpperTorso" or [Link] == "Head" then
else
v:Destroy()
end
end
end
[Link] = [Link]+[Link](5, 0, 0)
[Link] = true
[Link] = true
[Link] = npcRootPart
[Link] = npcRootPart
[Link] = npcRootPart
[Link] = 200
[Link] = [Link]
[Link] = [Link]
[Link] = 200
AP.Attachment0 = A0
AP.Attachment1 = A1
AO.Attachment1 = A1
AO.Attachment0 = A0
[Link] = PlayerRootPart
end
end)
end)

[Link]({"attachpart"}, {"attachpart", "Keybind: CTRL + LEFTCLICK"}, function()

wait();

Notify({
Description = "AttachPart executed, CTRL + Click on a part";
Title = "Nameless Admin";
Duration = 5;

});
-- made by joshclark756#7155
-- Variables
local mouse = [Link]:GetMouse()
local uis = game:GetService("UserInputService")

-- Connect
mouse.Button1Down:Connect(function()
-- Check for Target & Left Shift
if [Link] and uis:IsKeyDown([Link]) then
local npc = [Link]
local npcparts = [Link]
local PlayerCharacter = game:GetService("Players").[Link]
local PlayerRootPart = [Link]
local A0 = [Link]("Attachment")
local AP = [Link]("AlignPosition")
local AO = [Link]("AlignOrientation")
local A1 = [Link]("Attachment")
for _, v in pairs(npcparts:GetDescendants()) do
if v:IsA("BasePart") or v:IsA("Part") and [Link] ~= "HumanoidRootPart" then
do
[Link] = false

end
end
end
-- Variables
local mouse = [Link]:GetMouse()
local uis = game:GetService("UserInputService")

-- Connect
mouse.Button1Down:Connect(function()
if [Link] and uis:IsKeyDown([Link]) then
local npc = [Link]
local npcparts = [Link]
local PlayerCharacter = game:GetService("Players").[Link]
local PlayerRootPart = [Link]
local A0 = [Link]("Attachment")
local AP = [Link]("AlignPosition")
local AO = [Link]("AlignOrientation")
local A1 = [Link]("Attachment")
for _, v in pairs(npcparts:GetDescendants()) do
if v:IsA("BasePart") or v:IsA("Part") and [Link] ~= "HumanoidRootPart" then
do
[Link] = false

wait(0)
local player = [Link]
local mouse = player:GetMouse()
bind = "e" -- has to be lowercase
[Link]:connect(function(key)
if key == bind then do
[Link] = true
end
end
end)
end
end
end
for _, v in pairs(PlayerCharacter:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] == "HumanoidRootPart" or [Link] == "UpperTorso" or [Link] == "Head" then

end
end
end
[Link] = [Link]+[Link](0, 0, 0)
[Link] = false
[Link] = false
[Link] = npc
[Link] = npc
[Link] = npc
[Link] = 200
[Link] = [Link]
[Link] = [Link]
[Link] = 200
AP.Attachment0 = A0
AP.Attachment1 = A1
AO.Attachment1 = A1
AO.Attachment0 = A0
[Link] = PlayerRootPart
end
end)
for _, v in pairs(PlayerCharacter:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] == "HumanoidRootPart" or [Link] == "UpperTorso" or [Link] == "Head" then

end
end
end
[Link] = [Link]+[Link](0, 0, 0)
[Link] = false
[Link] = false
[Link] = npc
[Link] = npc
[Link] = npc
[Link] = 200
[Link] = [Link]
[Link] = [Link]
[Link] = 200
AP.Attachment0 = A0
AP.Attachment1 = A1
AO.Attachment1 = A1
AO.Attachment0 = A0
[Link] = PlayerRootPart
end
end)
end)

active = false
local MobileCameraFramework = {}
local players = game:GetService("Players")
local runservice = game:GetService("RunService")
local CAS = game:GetService("ContextActionService")
local camera = [Link]

uis = game:GetService("UserInputService")
ismobile = [Link]

local MAX_LENGTH = 900000


local active = false
local ENABLED_OFFSET = [Link](1.7, 0, 0)
local DISABLED_OFFSET = [Link](-1.7, 0, 0)
local function UpdateAutoRotate(BOOL)
[Link] = BOOL
end
local function GetUpdatedCameraCFrame(ROOT, CAMERA)
return [Link]([Link], [Link]([Link].X
* MAX_LENGTH, [Link].Y, [Link].Z * MAX_LENGTH))
end
local function EnableShiftlock()
local player = [Link]
local character = [Link] or [Link]:Wait()
local root = character:WaitForChild("HumanoidRootPart")
local humanoid = [Link]
UpdateAutoRotate(false)
[Link] = GetUpdatedCameraCFrame(root, camera)
[Link] = [Link] * ENABLED_OFFSET
end
local function DisableShiftlock()
local player = [Link]
local character = [Link] or [Link]:Wait()
local root = character:WaitForChild("HumanoidRootPart")
local humanoid = [Link]
UpdateAutoRotate(true)
[Link] = [Link] * DISABLED_OFFSET
pcall(function()
active:Disconnect()
active = nil
end)
end
active = false
function ShiftLock()
local player = [Link]
local character = [Link] or [Link]:Wait()
local root = character:WaitForChild("HumanoidRootPart")
local humanoid = [Link]
if not active then
active = [Link]:Connect(function()
EnableShiftlock()
end)
else
DisableShiftlock()
end
end
[Link]({"shiftlock", "sl"}, {"shiftlock (sl)", "Enable shiftlock"}, function()
EnableShiftlock()
end)

[Link]({"unshiftlock", "unsl"}, {"unshiftlock (unsl)", "Disables shiftlock if


you're on mobile"}, function()
DisableShiftlock()
end)

[Link]({"ctrlshiftlock", "ctrlsl"}, {"ctrlshiftlock (ctrlsl)", "Enables shift lock


if you press Control"}, function()

game:GetService("Players").[Link]
[Link] = "LeftControl,RightControl"
end)

[Link]({"esp"}, {"esp", "ESP"}, function()


local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local LP = [Link]
local roles
function CreateAllHighlight(p)
for i, v in pairs([Link]:GetChildren()) do
if v ~= LP and [Link] and not
[Link]:FindFirstChild("Highlight") then
[Link]("Highlight", [Link])
end
end
end
function UpdateAllHighlights()
for _, v in pairs([Link]:GetChildren()) do
if v ~= LP and [Link] and [Link]:FindFirstChild("Highlight")
then
Highlight = [Link]:FindFirstChild("Highlight")
[Link] = [Link](0, 225, 0)
end
end
end

function CreateHighlight(p)
for i, v in pairs(p:GetChildren()) do
if v ~= LP and [Link] and not
[Link]:FindFirstChild("Highlight") then
[Link]("Highlight", [Link])
end
end
end
function UpdateHighlights(p)
for _, v in pairs(p:GetChildren()) do
if v ~= LP and [Link] and
[Link]:FindFirstChild("Highlight") then
Highlight = [Link]:FindFirstChild("Highlight")
[Link] = [Link](0, 225, 0)
end
end
end

function IsAlive(Player)
for i, v in pairs(roles) do
if [Link] == i then
if not [Link] and not [Link] then
return true
else
return false
end
end
end
end
CreateAllHighlight()
UpdateAllHighlights([Link])

Players = [Link]
COREGUI = [Link]

for i,plr in pairs([Link]:GetChildren()) do


for i,v in pairs(COREGUI:GetChildren()) do
if [Link] == [Link]..'_ESP' then
v:Destroy()
end
if [Link] and [Link] ~= [Link] and not
COREGUI:FindFirstChild([Link]..'_ESP') then
local ESPholder = [Link]("Folder")
[Link] = [Link]..'_ESP'
[Link] = COREGUI

if [Link] and [Link]:FindFirstChild('Head') then


local BillboardGui = [Link]("BillboardGui")
local TextLabel = [Link]("TextLabel")
[Link] = [Link]
[Link] = [Link]
[Link] = ESPholder
[Link] = [Link](0, 100, 0, 150)
[Link] = [Link](0, 1, 0)
[Link] = true
[Link] = BillboardGui
[Link] = 1
[Link] = [Link](0, 0, 0, -50)
[Link] = [Link](0, 100, 0, 100)
[Link] = [Link]
[Link] = 17
TextLabel.TextColor3 = [Link](12, 4, 20)
[Link] = 0.3
[Link] = [Link]
[Link] = '@'..[Link] .. ' | ' ..
[Link] .. ''
[Link] = 10
local espLoopFunc
local teamChange
local addedFunc
end
end
end

addedFunc = [Link]:Connect(function()
wait(2)
CreateHighlight(plr)
UpdateHighlights(plr)
if ESPenabled then
espLoopFunc:Disconnect()
teamChange:Disconnect()
ESPholder:Destroy()
repeat wait(1) until
[Link] and [Link]:FindFirstChildOfClass("Humanoid")
ESP(plr)
else
addedFunc:Disconnect()
end
end)
end
end)

[Link]({"unesp"}, {"unesp", "Disables esp"}, function()


addedFunc:Disconnect()
for _, player in ipairs([Link]:GetPlayers()) do
local character = [Link]
if character then
local highlight = character:FindFirstChild("Highlight")
if highlight then
highlight:Destroy()
end
end
end

[Link]:Connect(function(player)
[Link]:Connect(function(character)
local highlight = character:FindFirstChild("Highlight")
if highlight then
highlight:Destroy()
end
end)
end)

for i,b in pairs([Link]:GetChildren()) do


if b:IsA("Folder") then
b:Destroy()
end
end
end)

[Link]({"creep", "ctp", "scare"}, {"ctp <player> (creep, scare)",


"Teleports from a player behind them and under the floor to the top"},
function(...)
Players = game:GetService("Players")
HRP = [Link]

Username = (...)

local target = getPlr(Username)

getChar().[Link] =
[Link] * [Link](0, -10, 4)
wait()
if connections["noclip"] then [Link]("noclip") return
end
[Link]("noclip", [Link]:Connect(function()
if not character then return end
for i, v in pairs(character:GetDescendants()) do
if v:IsA("BasePart") then
[Link] = false
end
end
end))
wait()
[Link] =
true
wait()
tweenService, tweenInfo =
game:GetService("TweenService"), [Link](1000, [Link])

tween = tweenService:Create(game:GetService("Players")
["LocalPlayer"].[Link], tweenInfo, {CFrame = [Link](0,
10000, 0)})
tween:Play()
wait(1.5)
tween:Pause()
[Link] = false
wait()
[Link]("noclip")

end)
[Link]({"netless", "net"}, {"netless (net)", "Executes netless which makes
scripts more stable"}, function()
for i,v in next, game:GetService("Players").[Link]:GetDescendants()
do
if v:IsA("BasePart") and [Link] ~="HumanoidRootPart" then
game:GetService("RunService").Heartbeat:connect(function()
[Link] = [Link](-30,0,0)
end)
end
end

wait();

Notify({
Description = "Netless has been activated, re-run this script if you die";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"rocket"}, {"rocket <player>", "rockets a player"}, function(...)

wait();

Notify({
Description = "Get ready to launch...";
Title = "Nameless Admin";
Duration = 5;

});
wait(0.2)
local OldPos = getRoot().CFrame
tweenService, tweenInfo = game:GetService("TweenService"), [Link](70,
[Link])

tween = tweenService:Create(game:GetService("Players")
["LocalPlayer"].[Link], tweenInfo, {CFrame = [Link](0,
10000, 0)})
tween:Play()
Username = (...)

Target = (...)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle")
then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart,
0)
firetouchinterest([Link], TRootPart,
1)
wait()
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

[Link]({"kidnap"}, {"kidnap <player>", "Kidnaps a player"}, function(...)


Username = (...)
Target = getPlr(Username)
local currentCFrame = [Link]
local offset = [Link](0, 0, -50)
local newPosition = currentCFrame.p + offset
local newCFrame = [Link](newPosition, [Link])
[Link] = newCFrame
wait(1)
local player = [Link]
local targetPlayer = Target

local tweenInfo = [Link](1.5, [Link],


[Link])
local teleportTween =
game:GetService("TweenService"):Create([Link],
tweenInfo, {
CFrame = [Link]()
})

function startTeleportTween()
if targetPlayer then
teleportTween:Cancel()
teleportTween =
game:GetService("TweenService"):Create([Link],
tweenInfo, {
CFrame = [Link]
})
teleportTween:Play()
end
end

startTeleportTween()
wait(2)
local TPlayer = Target
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] =
Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link],
TRootPart, 0)
firetouchinterest([Link],
TRootPart, 1)
wait()
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end
wait(0.7)
local targetPosition = [Link] +
[Link](0, 0, 1000)

local tweenInfo = [Link](4, [Link],


[Link])

local teleportTween =
game:GetService("TweenService"):Create([Link],
tweenInfo, {
CFrame = [Link](targetPosition)
})

teleportTween:Play()
end)

[Link]({"quicksand"}, {"quicksand <player>", "Quicksands a player"},


function(...)
wait();

Notify({
Description = "Kidnapping... next time take a van, or not";
Title = "Nameless Admin";
Duration = 5;

});
local OldPos = getRoot().CFrame
wait()
tweenService, tweenInfo = game:GetService("TweenService"),
[Link](160, [Link])

tween = tweenService:Create(game:GetService("Players")
["LocalPlayer"].[Link], tweenInfo, {CFrame = [Link](0, -
1000, 0)})
tween:Play()
wait()
Username = (...)

Target = (...)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] =
Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link],
TRootPart, 0)
firetouchinterest([Link],
TRootPart, 1)
wait()
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

[Link]({"hatsleash", "hl"}, {"hatsleash", "Makes you be able to carry your


hats"}, function()
-- [[ PROBABLY PATCHED ]] --
for _, v in pairs([Link]:getChildren()) do
if [Link] == "Accessory" then
for i, k in pairs(v:GetDescendants()) do
if [Link] == "Attachment" then
s = [Link]("RopeConstraint")
[Link] = true
[Link] = [Link]
s.Attachment1 = k
s.Attachment0 =
[Link]
[Link] = true
[Link] = 10
[Link]:Destroy()
end
end
end
end
end)

[Link]({"toolleash", "tl"}, {"toolleash", "Makes you be able to carry your


tools"}, function()
-- [[ PROBABLY PATCHED ]] --
for _,v in pairs([Link]:GetChildren()) do
[Link] = [Link]
end

for _,v in pairs([Link]:GetChildren()) do


if [Link] == "Tool" then
x = [Link]("Attachment")
s = [Link]("RopeConstraint")
[Link] = true
[Link] = [Link]
[Link] = [Link]
s.Attachment1 = [Link]["Right
Arm"].RightGripAttachment
s.Attachment0 = [Link]
[Link] = 100
[Link] = true
wait()
end
end
for _,v in pairs([Link]:GetDescendants()) do
if [Link] == "RightGrip" then
v:Destroy()
end
end

while wait() do
for _,v in pairs([Link]:GetChildren()) do
if [Link] == "Tool" then
[Link] = [Link]([Link](-100, 100), 5,
[Link](-100, 100))
end
end
end
end)

[Link]({"control"}, {"control <player>", "Control a player"}, function(...)


Target = (...)
Control = true
repeat wait()
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui = Player:WaitForChild("PlayerGui")
local Backpack = Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle")
then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart,
0)
firetouchinterest([Link], TRootPart,
1)
wait()
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
end
[Link]:wait(1)
wait(0.2)
getRoot().CFrame= getPlr(Target).[Link]
wait(0.05)
until Control == false
end)

[Link]({"uncontrol"}, {"uncontrol", "Uncontrol a player"}, function()


Control = false
end)

[Link]({"reset"}, {"reset", "Makes your health be 0"}, function()


[Link] = 0
end)

[Link]({"admin"}, {"admin", "whitelist someone to allow them to use commands"},


function(...)
function ChatMessage(Message, Whisper)

game:GetService("ReplicatedStorage").[Link]:
FireServer(Message, Whisper or "ALl")
end
local Player = getPlr(...)
if Player ~= nil and not Admin[[Link]] then
Admin[[Link]] = {Player = Player}
ChatMessage("/w "..[Link].." [Nameless Admin] You've got admin.
Prefix: ';'")
wait(0.2)
ChatMessage("/w "..[Link].." [Nameless Admin Commands] glue,
unglue, fling, fling2, spinfling, unspinfling, fcd, fti, fpp, fireremotes,
holdhat")
ChatMessage("/w "..[Link].." reset, commitoof, seizure,
unseizure, toolorbit, lay, fall, toolspin, hatspin, sit, joke, kanye")
Notify({
Description = "" .. [Link] .. " has now been whitelisted to
use commands";
Title = "Nameless Admin";
Duration = 15;

});
else
Notify({
Description = "No player found";
Title = "Nameless Admin";
Duration = 15;

});
end
end)

[Link]({"unadmin"}, {"unadmin <player>", "removes someone from being admin"},


function(...)
function ChatMessage(Message, Whisper)
game:GetService("ReplicatedStorage").[Link]:
FireServer(Message, Whisper or "All")
end
local Player = getPlr(...)
if Player ~= nil and Admin[[Link]] then
Admin[[Link]] = nil
ChatMessage("/w "..[Link].." You can no longer use
commands")
Notify({
Description = "" .. [Link] .. " is no longer an
admin";
Title = "Nameless Admin";
Duration = 15;

});
else
Notify({
Description = "Player not found";
Title = "Nameless Admin";
Duration = 15;

});
end
end)

[Link]({"2016"}, {"2016", "2016 CORE GUI"}, function()


-- [[ PLAYERBOARD IS BUGGED BUT WILL TRY TO FIX. ]] --
loadstring(game:HttpGet("[Link]
main/2016MODE"))()
end)

[Link]({"removedn", "nodn", "nodpn"}, {"removedn (nodn, nodpn)", "Removes all


display names"}, function()

-- [[ IM NOT SURE WHO MADE THIS ]] --

wait();
Notify({
Description = "Display names successfully removed";
Title = "Nameless Admin";
Duration = 5;

});

local Players = game:FindService("Players")

require(game:GetService("Chat"):WaitForChild("ClientChatModules").ChatSettings).Pla
yerDisplayNamesEnabled = false
local function rename(character,name)
repeat [Link]() until character:FindFirstChildWhichIsA("Humanoid")
character:FindFirstChildWhichIsA("Humanoid").DisplayName = name
end
for i,v in next, Players:GetPlayers() do
if [Link] then
[Link] = [Link]
rename([Link],[Link])
end
[Link]:Connect(function(char)
rename(char,[Link])
end)
end
[Link]:Connect(function(plr)
[Link] = [Link]
[Link]:Connect(function(char)
rename(char,[Link])
end)
end)
end)

[Link]({"anticlientkick", "antickick"}, {"anticlientkick (antickick)", "Makes


local scripts not able to kick you"}, function()
if not hookmetamethod then
Notify({
Description = "Your executor does not support anticlientkick";
Title = "Nameless Admin";
Duration = 5;

});
end
oldhmmi = hookmetamethod(game, "__index", function(self, method)
if self == LocalPlayer and method:lower() == "kick" then
return print("Expected ':' not '.' calling member function Kick")
end
return oldhmmi(self, method)
end)
oldhmmnc = hookmetamethod(game, "__namecall", function(self, ...)
if self == LocalPlayer and getnamecallmethod():lower() == "kick" then
return
Notify({
Description = "A kick was just attempted but was blocked";
Title = "Nameless Admin";
Duration = 5;

});
end
return oldhmmnc(self, ...)
end)
Notify({
Description = "Anti kick executed";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"backdoorscan", "backdoor"}, {"backdoorscan (backdoor)", "Scans for any


backdoors using FraktureSS"}, function()
-- [[ THANKS TO LIGHTING BOLT FOR THIS ]] --
loadstring(game:HttpGet("[Link]
FraktureSS/master/[Link]"))()
end)

[Link]({"jobid"}, {"jobid", "Copies your job id"}, function()


local jobId = '[Link]('..PlaceId..',
"'..JobId..'")'
setclipboard(jobId)
wait();

Notify({
Description = "Copied your jobid (" .. jobId .. ")";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"joinjobid", "jjobid"}, {"joinjobid <jobid> (jjid)", "Joins the job id


you put in"}, function(id)
TeleportService:TeleportToPlaceInstance([Link],id)
end)

[Link]({"serverhop", "shop"}, {"serverhop (shop)", "Serverhop"}, function()


wait();

Notify({
Description = "Searching";
Title = "Nameless Admin";
Duration = 5;

});
local Number = 0
local SomeSRVS = {}
for _, v in
ipairs(game:GetService("HttpService"):JSONDecode(game:HttpGetAsync("https://
[Link]/v1/games/" .. [Link] .. "/servers/Public?
sortOrder=Asc&limit=100")).data) do
if type(v) == "table" and [Link] > [Link]
and [Link] ~= [Link] then
if [Link] > Number then
Number = [Link]
SomeSRVS[1] = [Link]
end
end
end
if #SomeSRVS > 0 then
Notify({
Description = "Searched, please wait while we are teleporting you";
Title = "Nameless Admin";
Duration = 5;

});

game:GetService("TeleportService"):TeleportToPlaceInstance([Link],
SomeSRVS[1])
end
end)

[Link]({"autorejoin", "autorj"}, {"autorejoin", "Rejoins the server if you get


kicked / disconnected"}, function()
Players = [Link]

[Link]:FindFirstChild("RobloxPromptGui"):FindFirstChild("promptOverlay").Desc
endantAdded:Connect(function(Err)
if [Link] == "ErrorTitle" then
Err:GetPropertyChangedSignal("Text"):Connect(function()
if [Link]:sub(0, 12) == "Disconnected" then
if #Players:GetPlayers() <= 1 then
[Link]:Kick("\
nRejoining...")
wait()

game:GetService("TeleportService"):Teleport([Link],
[Link])
else

game:GetService("TeleportService"):TeleportToPlaceInstance([Link],
[Link], [Link])
end
end
end)
end
end)

Notify({
Description = "Auto Rejoin is now on!";
Title = "Nameless Admin";
Duration = 5;

}); end)

[Link]({"functionspy"}, {"functionspy", "Check console"}, function()


local toLog = {
[Link];
getconstants;
[Link];
getconstant;
[Link];
setconstant;
[Link];
[Link];
getupvalues;
getupvalue;
[Link];
setupvalue;
getsenv;
getreg;
getgc;
getconnections;
firesignal;
fireclickdetector;
fireproximityprompt;
firetouchinterest;
gethiddenproperty;
sethiddenproperty;
hookmetamethod;
setnamecallmethod;
getrawmetatable;
setrawmetatable;
setreadonly;
isreadonly;
[Link];
}
local FunctionSpy = [Link]("ScreenGui")
local Main = [Link]("Frame")
local LeftPanel = [Link]("ScrollingFrame")
local UIListLayout = [Link]("UIListLayout")
local example = [Link]("TextButton")
local name = [Link]("TextLabel")
local UIPadding = [Link]("UIPadding")
local FakeTitle = [Link]("TextButton")
local Title = [Link]("TextLabel")
local clear = [Link]("ImageButton")
local RightPanel = [Link]("ScrollingFrame")
local output = [Link]("TextLabel")
local clear_2 = [Link]("TextButton")
local copy = [Link]("TextButton")

[Link] = "FunctionSpy"
[Link] = [Link]
[Link] = [Link]

[Link] = "Main"
[Link] = FunctionSpy
Main.BackgroundColor3 = [Link](33, 33, 33)
[Link] = 0
[Link] = [Link](0, 10, 0, 36)
[Link] = [Link](0, 536, 0, 328)

[Link] = "LeftPanel"
[Link] = Main
[Link] = true
LeftPanel.BackgroundColor3 = [Link](45, 45, 45)
[Link] = 0
[Link] = [Link](0.349999994, 0, 1, 0)
[Link] = [Link](0, 0, 0, 0)
[Link] = [Link]
[Link] = 3

[Link] = LeftPanel
[Link] = [Link]
[Link] = [Link](0, 7)

[Link] = "example"
[Link] = LeftPanel
example.BackgroundColor3 = [Link](31, 31, 31)
[Link] = 0
[Link] = [Link](4.39481269e-08, 0, 0, 0)
[Link] = [Link](0, 163, 0, 19)
[Link] = false
[Link] = [Link]
[Link] = ""
example.TextColor3 = [Link](0, 0, 0)
[Link] = 14.000
[Link] = [Link]

[Link] = "name"
[Link] = example
name.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
[Link] = 0
[Link] = [Link](0, 10, 0, 0)
[Link] = [Link](1, -10, 1, 0)
[Link] = [Link]
name.TextColor3 = [Link](255, 255, 255)
[Link] = 14.000
[Link] = [Link]

[Link] = LeftPanel
[Link] = [Link](0, 7)
[Link] = [Link](0, 7)
[Link] = [Link](0, 7)
[Link] = [Link](0, 7)

[Link] = "FakeTitle"
[Link] = Main
FakeTitle.BackgroundColor3 = [Link](40, 40, 40)
[Link] = 0
[Link] = [Link](0, 225, 0, -26)
[Link] = [Link](0.166044772, 0, 0, 26)
[Link] = [Link]
[Link] = "FunctionSpy"
FakeTitle.TextColor3 = [Link](255, 255, 255)
[Link] = 14.000

[Link] = "Title"
[Link] = Main
Title.BackgroundColor3 = [Link](40, 40, 40)
[Link] = 0
[Link] = [Link](0, 0, 0, -26)
[Link] = [Link](1, 0, 0, 26)
[Link] = [Link]
[Link] = "FunctionSpy"
Title.TextColor3 = [Link](255, 255, 255)
[Link] = 14.000
[Link] = true

[Link] = "clear"
[Link] = Title
[Link] = 1.000
[Link] = [Link](1, -28, 0, 2)
[Link] = [Link](0, 24, 0, 24)
[Link] = 2
[Link] = "rbxassetid://3926305904"
[Link] = [Link](924, 724)
[Link] = [Link](36, 36)

[Link] = "RightPanel"
[Link] = Main
[Link] = true
RightPanel.BackgroundColor3 = [Link](35, 35, 35)
[Link] = 0
[Link] = [Link](0.349999994, 0, 0, 0)
[Link] = [Link](0.649999976, 0, 1, 0)
[Link] = [Link](0, 0, 0, 0)
[Link] = [Link]
[Link] = 3

[Link] = "output"
[Link] = RightPanel
output.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
output.BorderColor3 = [Link](27, 42, 53)
[Link] = 0
[Link] = [Link](0, 10, 0, 10)
[Link] = [Link](1, -10, 0.75, -10)
[Link] = [Link]
[Link] = ""
output.TextColor3 = [Link](255, 255, 255)
[Link] = 14.000
[Link] = [Link]
[Link] = [Link]

clear_2.Name = "clear"
clear_2.Parent = RightPanel
clear_2.BackgroundColor3 = [Link](30, 30, 30)
clear_2.BorderSizePixel = 0
clear_2.Position = [Link](0.0631457642, 0, 0.826219559, 0)
clear_2.Size = [Link](0, 140, 0, 33)
clear_2.Font = [Link]
clear_2.Text = "Clear logs"
clear_2.TextColor3 = [Link](255, 255, 255)
clear_2.TextSize = 14.000

[Link] = "copy"
[Link] = RightPanel
copy.BackgroundColor3 = [Link](30, 30, 30)
[Link] = 0
[Link] = [Link](0.545350134, 0, 0.826219559, 0)
[Link] = [Link](0, 140, 0, 33)
[Link] = [Link]
[Link] = "Copy info"
copy.TextColor3 = [Link](255, 255, 255)
[Link] = 14.000

-- Scripts:

local function AKIHDI_fake_script() -- [Link]


local script = [Link]('LocalScript', Main)

_G.functionspy = {
instance = [Link];
logging = true;
connections = {};
}

_G.[Link] = function()
for i,v in pairs(_G.[Link]) do
v:Disconnect()
end
_G.[Link] = {}
_G.functionspy = nil
[Link]:Destroy()
end

local connections = {}

local currentInfo = nil

function log(name, text)


local btn = [Link]:Clone()
[Link] = [Link]
[Link] = name
[Link] = name
[Link] = true
[Link](connections,
btn.MouseButton1Click:Connect(function()
[Link] = text
currentInfo = text
end))
end

[Link].MouseButton1Click:Connect(function()
if currentInfo ~= nil then
setclipboard(currentInfo)
end
end)

[Link].MouseButton1Click:Connect(function()
for i,v in pairs(connections) do
v:Disconnect()
end
for i,v in pairs([Link]:GetDescendants()) do
if v:IsA("TextButton") and [Link] == true then
v:Destroy()
end
end
[Link] = ""
currentInfo = nil
end)

local hooked = {}
local Seralize =
loadstring(game:HttpGet('[Link] true))
()
for i,v in next, toLog do
if type(v) == "string" then
local suc,err = pcall(function()
local func = loadstring("return "..v)()
hooked[i] = hookfunction(func, function(...)
local args = {...}
if _G.functionspy then
pcall(function()
out = ""
out = out..(v..", Args -> {")..("\
n"):format()
for l,k in pairs(args) do
if type(k) == "function"
then
out = out..("
["..tostring(l).."] "..tostring(k)..", Type -> "..type(k)..", Name ->
"..getinfo(k).name)..("\n"):format()
elseif type(k) == "table"
then
out = out..("
["..tostring(l).."] "..tostring(k)..", Type -> "..type(k)..", Data ->
"..Seralize(k))..("\n"):format()
elseif type(k) == "boolean"
then
out = out..("
["..tostring(l).."] Value -> "..tostring(k).." -> "..type(k))..("\n"):format()
elseif type(k) == "nil" then
out = out..("
["..tostring(l).."] null")..("\n"):format()
elseif type(k) == "number"
then
out = out..("
["..tostring(l).."] Value -> "..tostring(k)..", Type -> "..type(k))..("\
n"):format()
else
out = out..("
["..tostring(l).."] Value -> "..tostring(k)..", Type -> "..type(k))..("\
n"):format()
end
end
out = out..("}, Result ->
"..tostring(nil))..("\n"):format()
if _G.[Link] == true
then
log(v,out)
end
end)
end
return hooked[i](...)
end)
end)
if not suc then
warn("Something went wrong while hooking "..v..".
Error: "..err)
end
elseif type(v) == "function" then
local suc,err = pcall(function()
hooked[i] = hookfunction(v, function(...)
local args = {...}
if _G.functionspy then
pcall(function()
out = ""
out = out..(getinfo(v).name..",
Args -> {")..("\n"):format()
for l,k in pairs(args) do
if type(k) == "function"
then
out = out..("
["..tostring(l).."] "..tostring(k)..", Type -> "..type(k)..", Name ->
"..getinfo(k).name)..("\n"):format()
elseif type(k) == "table"
then
out = out..("
["..tostring(l).."] "..tostring(k)..", Type -> "..type(k)..", Data ->
"..Seralize(k))..("\n"):format()
elseif type(k) == "boolean"
then
out = out..("
["..tostring(l).."] Value -> "..tostring(k).." -> "..type(k))..("\n"):format()
elseif type(k) == "nil" then
out = out..("
["..tostring(l).."] null")..("\n"):format()
elseif type(k) == "number"
then
out = out..("
["..tostring(l).."] Value -> "..tostring(k)..", Type -> "..type(k))..("\
n"):format()
else
out = out..("
["..tostring(l).."] Value -> "..tostring(k)..", Type -> "..type(k))..("\
n"):format()
end
end
out = out..("}, Result ->
"..tostring(nil))..("\n"):format()
if _G.[Link] == true
then
log(getinfo(v).name,out)
end
end)
end
return hooked[i](...)
end)
end)
if not suc then
warn("Something went wrong while hooking
"..getinfo(v).name..". Error: "..err)
end
end
end

end
[Link](AKIHDI_fake_script)()
local function KVVJTK_fake_script() -- [Link]
local script = [Link]('LocalScript', FakeTitle)

local UIS = game:GetService('UserInputService')


local frame = [Link]
local dragToggle = nil
local dragSpeed = 0.25
local dragStart = nil
local startPos = nil

local function updateInput(input)


local delta = [Link] - dragStart
local position = [Link]([Link], [Link] +
delta.X,
[Link], [Link] + delta.Y)
game:GetService('TweenService'):Create(frame,
[Link](dragSpeed), {Position = position}):Play()
end

[Link](_G.[Link],
[Link]:Connect(function(input)
if ([Link] == [Link].MouseButton1 or
[Link] == [Link]) then
dragToggle = true
dragStart = [Link]
startPos = [Link]
[Link]:Connect(function()
if [Link] == [Link]
then
dragToggle = false
end
end)
end
end))

[Link](_G.[Link],
[Link]:Connect(function(input)
if [Link] == [Link] or
[Link] == [Link] then
if dragToggle then
updateInput(input)
end
end
end))

end
[Link](KVVJTK_fake_script)()
local function BIPVKVC_fake_script() -- [Link]
local script = [Link]('LocalScript', FakeTitle)

[Link](_G.[Link],
[Link]:Connect(function()
if _G.[Link] == true then

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](0,1,0)}):Play()
elseif _G.[Link] == false then

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](1,0,0)}):Play()
end
end))

[Link](_G.[Link],
[Link]:Connect(function()
if _G.[Link] == true then

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](0,1,0)}):Play()
elseif _G.[Link] == false then

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](1,0,0)}):Play()
end
end))

[Link](_G.[Link],
[Link].MouseButton1Click:Connect(function()
_G.[Link] = not _G.[Link]
if _G.[Link] == true then

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](0,1,0)}):Play()
elseif _G.[Link] == false then

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](1,0,0)}):Play()
end
end))

[Link](_G.[Link],
[Link]:Connect(function()

game:GetService("TweenService"):Create([Link],
[Link](0.3), {TextColor3 = [Link](1,1,1)}):Play()
end))
end
[Link](BIPVKVC_fake_script)()
local function PRML_fake_script() -- [Link]
local script = [Link]('LocalScript', clear)

[Link].MouseButton1Click:Connect(function()
_G.[Link]()
end)
end
[Link](PRML_fake_script)()
end)

on = false
[Link]({"mobilefly", "mfly"}, {"mobilefly [speed] (mfly)", "Fly that works on
mobile"}, function(...)
on = true
-- kind of bad mobile fly but it works after the reject character deletions
enabling
speed = (...)

if speed == nil then


speed = 69
else
end

if [Link]({[Link], [Link]},
game:GetService("UserInputService"):GetPlatform()) then
wait();

Notify({
Description = "Nameless Admin has detected you using mobile you now
have a mfly button click it to enable / disable mobile flying (For easier use)";
Title = "Nameless Admin";
Duration = 5;
});

-- creates a button that u can toggle if you're flying or not


local ScreenGui = [Link]("ScreenGui")
local TextButton = [Link]("TextButton")
local UICorner = [Link]("UICorner")
local UIAspectRatioConstraint = [Link]("UIAspectRatioConstraint")

[Link] = [Link]
[Link] = [Link]
[Link] = false

[Link] = ScreenGui
TextButton.BackgroundColor3 = [Link](12, 4, 20)
[Link] = 0.140
[Link] = [Link](0.933, 0,0.621, 0)
[Link] = [Link](0.043, 0,0.083, 0)
[Link] = [Link]
[Link] = "Fly"
TextButton.TextColor3 = [Link](255, 255, 255)
[Link] = 15.000
[Link] = true
[Link] = true
[Link] = true
[Link] = true

[Link] = TextButton

[Link] = TextButton
[Link] = 1.060

local function FEPVI_fake_script() -- [Link]


local script = [Link]('LocalScript', TextButton)
[Link].MouseButton1Click:Connect(function()
if on == false then
on = true
[Link] = "Unfly"
mobilefly(speed)
elseif on == true then
on = false
unmobilefly()
[Link] = "Fly"
end
end)
end
[Link](FEPVI_fake_script)()
else
mobilefly(speed)
end
end)

[Link]({"unmobilefly", "unmfly"}, {"unmobilefly (unmfly)", "CFrame fly


disabler"}, function()
unmobilefly()
end)

local flyPart
[Link]({"fly"}, {"fly [speed]", "Enable flight"}, function(...)
FLYING = false
[Link] = false
wait()

wait();

Notify({
Description = "Fly enabled";
Title = "Nameless Admin";
Duration = 5;

});
sFLY(true)
speedofthevfly = (...)
if (...) == nil then
speedofthevfly = 2
end
end)

[Link]({"unfly"}, {"unfly", "Disable flight"}, function()

wait();

Notify({
Description = "Not flying anymore";
Title = "Nameless Admin";
Duration = 5;

});
FLYING = false
[Link] = false
end)

[Link]({"noclip", "nclip", "nc"}, {"noclip", "Disable your player's collision"},


function()
if connections["noclip"] then [Link]("noclip") return end
[Link]("noclip", [Link]:Connect(function()
if not character then return end
for i, v in pairs(character:GetDescendants()) do
if v:IsA("BasePart") then
[Link] = false
end
end
end))
end)

[Link]({"clip", "c"}, {"clip", "Enable your player's collision"}, function()


[Link]("noclip")
end)

[Link]({"r15"}, {"r15", "Prompts a message asking to make you R15"}, function()


local avs = game:GetService("AvatarEditorService")

avs:PromptSaveAvatar([Link]
n,[Link].R15)
Notify({
Description = "Press allow";
Duration = 3;

});
local result = [Link]:Wait()
if result == [Link]
then
Notify({
Description = "You are now R15";
Title = "Nameless Admin";
Duration = 3;

});
respawn()
else
Notify({
Description = "An error has occured";
Title = "Nameless Admin";
Duration = 3;

});
end
end)

[Link]({"r6"}, {"r6", "Prompts a message asking to make you R6"}, function()


local avs = game:GetService("AvatarEditorService")

avs:PromptSaveAvatar([Link]
n,[Link].R6)
Notify({
Description = "Press allow";
Duration = 3;

});
local result = [Link]:Wait()
if result == [Link]
then
Notify({
Description = "You are now R6";
Title = "Nameless Admin";
Duration = 3;

});
respawn()
else
Notify({
Description = "An error has occured";
Title = "Nameless Admin";
Duration = 3;

});
end
end)

[Link]({"freecam", "fc", "fcam"}, {"freecam [speed] (fc, fcam)", "Enable free


camera"}, function(speed)
if not speed then speed = 5 end
if connections["freecam"] then [Link]("freecam")
[Link] = character wrap(function() [Link]
= false end) end
local dir = {w = false, a = false, s = false, d = false}
local cf = [Link]("CFrameValue")
local camPart = [Link]("Part")
[Link] = 1
[Link] = true
[Link] = [Link]
wrap(function()
[Link] = true
end)

[Link]("freecam", [Link]:Connect(function()
local primaryPart = camPart
[Link] = primaryPart

local x, y, z = 0, 0, 0
if dir.w then z = -1 * speed end
if dir.a then x = -1 * speed end
if dir.s then z = 1 * speed end
if dir.d then x = 1 * speed end
if dir.q then y = 1 * speed end
if dir.e then y = -1 * speed end

[Link] = [Link](
[Link].p,
([Link] * [Link](0, 0, -100)).p
)

local moveDir = [Link](x,y,z)


[Link] = [Link]:lerp(moveDir, 0.2)
[Link] = [Link]:lerp([Link] *
[Link], 0.2)
end))
[Link]("freecam", [Link]:Connect(function(input,
event)
if event then return end
local code, codes = [Link], [Link]
if code == codes.W then
dir.w = true
elseif code == codes.A then
dir.a = true
elseif code == codes.S then
dir.s = true
elseif code == codes.D then
dir.d = true
elseif code == codes.Q then
dir.q = true
elseif code == codes.E then
dir.e = true
elseif code == [Link] then
dir.q = true
end
end))
[Link]("freecam", [Link]:Connect(function(input,
event)
if event then return end
local code, codes = [Link], [Link]
if code == codes.W then
dir.w = false
elseif code == codes.A then
dir.a = false
elseif code == codes.S then
dir.s = false
elseif code == codes.D then
dir.d = false
elseif code == codes.Q then
dir.q = false
elseif code == codes.E then
dir.e = false
elseif code == [Link] then
dir.q = false
end
end))
end)

[Link]({"unfreecam", "unfc", "unfcam"}, {"unfreecam (unfc, unfcam)", "Disable


free camera"}, function()
[Link]("freecam")
[Link] = character
wrap(function()
[Link] = false
end)
end)

[Link]({"drophats"}, {"drophats", "Drop all of your hats"}, function()


for _, hat in pairs(character:GetChildren()) do
if hat:IsA("Accoutrement") then
[Link] = workspace
end
end
end)

[Link]({"hatspin"}, {"hatspin <height>", "Make your hats spin"}, function(h)


local head = character:FindFirstChild("Head")
if not head then return end
for _, hat in pairs(character:GetChildren()) do
if hat:IsA("Accoutrement") and hat:FindFirstChild("Handle") then
local handle = [Link]
handle:BreakJoints()

local align = [Link]("AlignPosition")


local a0, a1 = [Link]("Attachment"),
[Link]("Attachment")
align.Attachment0, align.Attachment1 = a0, a1
[Link] = true
[Link] = [Link](0, tonumber(h) or 0.5, 0)
lock(align, handle); lock(a0, handle); lock(a1, head);

local angular = [Link]("BodyAngularVelocity")


[Link] = [Link](0, [Link](100,
160)/16, 0)
[Link] = [Link](0, 400000, 0)
lock(angular, handle);
end
end
end)

[Link]({"limbbounce"}, {"limbbounce [height] [distance]", "Make your limbs bounce


around your head"}, function(h, d)
local head = character:FindFirstChild("Head")
if not head then return end
local i = 2
for _, part in pairs(character:GetDescendants()) do
local name = [Link]:lower()
if part:IsA("BasePart") and not [Link]:IsA("Accoutrement") and
not name:find("torso") and not name:find("head") and not name:find("root") then
i = i + [Link](15,50)/100
part:BreakJoints()
local n = tonumber(d) or i

local align = [Link]("AlignPosition")


local a0, a1 = [Link]("Attachment"),
[Link]("Attachment")
align.Attachment0, align.Attachment1 = a0, a1
[Link] = true
lock(align, part); lock(a0, part); lock(a1, head);

wrap(function()
local rotX = 0
local speed = [Link](350, 750)/10000
while part and [Link] do
rotX = rotX + speed
[Link] = [Link](0, (tonumber(h) or 0) +
[Link](rotX) * n, 0)
[Link]:Wait(0)
end
end)
end
end
end)

[Link]({"limborbit"}, {"limborbit [height] [distance]", "Make your limbs orbit


around your head"}, function(h, d)
local head = character:FindFirstChild("Head")
if not head then return end
local i = 2
for _, part in pairs(character:GetDescendants()) do
local name = [Link]:lower()
if part:IsA("BasePart") and not [Link]:IsA("Accoutrement") and
not name:find("torso") and not name:find("head") and not name:find("root") then
i = i + [Link](15,50)/100
part:BreakJoints()
local n = tonumber(d) or i

local align = [Link]("AlignPosition")


local a0, a1 = [Link]("Attachment"),
[Link]("Attachment")
align.Attachment0, align.Attachment1 = a0, a1
[Link] = true
lock(align, part); lock(a0, part); lock(a1, head);

wrap(function()
local rotX, rotY = 0, [Link]/2
local speed = [Link](35, 75)/1000
while part and [Link] do
rotX, rotY = rotX + speed, rotY + speed
[Link] = [Link]([Link](rotX) * (n),
tonumber(h) or 0, [Link](rotY) * (n))
[Link]:Wait(0)
end
end)
end
end
end)

local function getAllTools()


local tools = {}
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
if backpack then
for i, v in pairs(backpack:GetChildren()) do
if v:IsA("Tool") then
[Link](tools, v)
end
end
end
for i, v in pairs(character:GetChildren()) do
if v:IsA("Tool") then
[Link](tools, v)
end
end
return tools
end

[Link]({"fakelag", "flag"}, {"fakelag (flag)", "fake lag"}, function()


FakeLag = true

repeat wait()
[Link] = true
wait(0.05)
[Link] = false
wait(0.05)
until FakeLag == false
end)

[Link]({"unfakelag", "unflag"}, {"unfakelag (unflag)", "stops the fake lag


command"}, function()
FakeLag = false
end)

[Link]({"circlemath", "cm"}, {"circlemath <mode> <size>", "Gay circle math\


nModes: abc..."}, function(mode, size)
local mode = mode or "a"
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
[Link]("cm")
if backpack and [Link] then
local tools = getAllTools()
for i, tool in pairs(tools) do
local cpos, g = ([Link]*2)*(i/#tools), [Link]()
local tcon = {}
[Link] = backpack

if mode == "a" then


size = tonumber(size) or 2
g = (
[Link](0, 0, size)*
[Link](rad(90), 0, cpos)
)
elseif mode == "b" then
size = tonumber(size) or 2
g = (
[Link](i - #tools/2, 0, 0)*
[Link](rad(90), 0, 0)
)
elseif mode == "c" then
size = tonumber(size) or 2
g = (
[Link](cpos/3, 0, 0)*
[Link](rad(90), 0, cpos*2)
)
elseif mode == "d" then
size = tonumber(size) or 2
g = (
[Link](clamp(tan(cpos), -3, 3), 0, 0)*
[Link](rad(90), 0, cpos)
)
elseif mode == "e" then
size = tonumber(size) or 2
g = (
[Link](0, 0, clamp(tan(cpos), -5, 5))*
[Link](rad(90), 0, cpos)
)
end
[Link] = g
[Link] = character

tcon[#tcon] = [Link]("cm",
mouse.Button1Down:Connect(function()
tool:Activate()
end))
tcon[#tcon] = [Link]("cm", [Link]:Connect(function(p)
if p == "Grip" and [Link] ~= g then
[Link] = g
end
end))

[Link]("cm", [Link]:Connect(function()
for i = 1, #tcon do
tcon[i]:Disconnect()
end
end))
end
end
end)

local r = [Link]
local center = [Link](1.5, 0.5, -1.5)

[Link]({"toolanimate"}, {"toolanimate <mode> <int>", "Make your tools epic\


nModes: ufo/ring/shutter/saturn/portal/wtf/ball/tor"}, function(mode, int)
[Link]("tooldance")
local int = tonumber(int) or 5
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
local primary = character:FindFirstChild("HumanoidRootPart")
if backpack and primary then
local tools = getAllTools()
for i, tool in pairs(tools) do
if tool:IsA("Tool") and tool:FindFirstChild("Handle") then
local circ = (i/#tools)*([Link]*2)

local function editGrip(tool, cframe, offset)


local origin = [Link](cframe.p):inverse()
local x, y, z = cframe:toEulerAnglesXYZ()
local new = [Link](x, y, z)
local grip = (origin * new):inverse()
[Link] = backpack
[Link] = offset * grip
[Link] = character

for i, v in pairs(tool:GetDescendants()) do
if v:IsA("Sound") then
v:Stop()
end
end
end
[Link] = true

if mode == "ufo" then


local s = {}
local x, y = i, i + [Link] / 2
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.1, y + 0.1

local cframe =
center *
[Link]() *
[Link](r(s.y*10), circ +
r(s.y*8), r(s.x*10))
local offset =
[Link](int, 0, 0) *
[Link](0, 0, 0)
editGrip(tool, cframe, offset)
end))
elseif mode == "ring" then
local s = {}
local x, y = i, i + [Link] / 2
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.04, y + 0.04

local cframe =
center *
[Link](0, 3, 0) *
[Link](0, circ, x)
local offset =
[Link](0, 0, int) *
[Link](0, 0, 0)
editGrip(tool, cframe, offset)
end))
elseif mode == "shutter" then
local s = {}
local x, y = 0, [Link] / 2
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.1, y + 0.1

local cframe =
center *
[Link](0, 0, 0) *
[Link](0, 0, circ + 0)
local offset =
[Link](s.y*6, 0, int) *
[Link](r(-90), 0, 0)
editGrip(tool, cframe, offset)
end))
elseif mode == "saturn" then
local s = {}
local x, y = 0, [Link] / 2
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.1, y + 0.1
local cframe =
center *
[Link](0, 0, 0) *
[Link](0, circ, 0)
local offset =
[Link](s.y*6, 0, int) *
[Link](0, 0, r(0))
editGrip(tool, cframe, offset)
end))
elseif mode == "portal" then
local s = {}
local x, y = 0, [Link] / 2
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.1, y + 0.1

local cframe =
center *
[Link](0, 0, 0) *
[Link](0, 0, circ + r(x*45))
local offset =
[Link](3, 0, int) *
[Link](r(-90), 0, 0)
editGrip(tool, cframe, offset)
end))
elseif mode == "ball" then
local s = {}
local n = [Link]()*#tools
local x, y = n, n+[Link] / 2
local random = [Link]()
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.1, y + 0.1
local cframe =
center *
[Link](0, 0, 0) *
[Link](r(y*25), circ, r(y*25))
local offset =
[Link](0, int + random*2, 0) *
[Link](r(x*15), 0, 0)
editGrip(tool, cframe, offset)
end))
elseif mode == "wtf" then
local s = {}
local x, y = [Link]()^3,
[Link]()^3+[Link] / 2
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + 0.1 + [Link]()/10, y + 0.1 +
[Link]()/10
local cframe =
center *
[Link](0, 0, 0) *
[Link](r(y*100)+[Link](),
circ, r(y*100)+[Link]())
local offset =
[Link](0, int + [Link]()*4, 0)
*
[Link](r(x*100), 0, 0)
editGrip(tool, cframe, offset)
end))
elseif mode == "tor" then
local s = {}
local x, y = i*1, i*1+[Link] / 2
local random = [Link]()
[Link]("tooldance",
[Link]:Connect(function()
s.x = [Link](x)
s.y = [Link](y)
x, y = x + (int/75), y+0.1
local cframe =
center *
[Link](1.5, 2, 0) *
[Link](r(-90-25), 0, 0)
local offset =
[Link](0, s.x*3,
-int+[Link](y/5)*-int) *
[Link](r(int), s.x, -x)
editGrip(tool, cframe, offset)
end))
end
else
[Link](tools, i)
end
end
end
end)

[Link]({"hide", "unshow"}, {"hide <player> (unshow)", "places the selected player


to lighting"}, function(...)
wait();

Notify({
Description = "Hid the player";
Title = "Nameless Admin";
Duration = 5;

});

local Username = (...)


local target = getPlr(Username)

if Username == "all" or Username == "others" then


for i, plrs in pairs(game:GetService("Players"):GetChildren()) do
if [Link] == [Link] then
else

A_1 = "/mute " .. [Link] .. ""


A_2 = "All"

if game:GetService("TextChatService"):FindFirstChild("TextChannels")
then

game:GetService("TextChatService").[Link]:SendAsync(A_1)
else

game:GetService("ReplicatedStorage").[Link]:
FireServer(A_1,A_2)
end
[Link] = [Link]
end
end
else
if target and [Link] then
A_1 = "/mute " .. [Link] .. ""
A_2 = "All"

if game:GetService("TextChatService"):FindFirstChild("TextChannels") then
game:GetService("TextChatService").[Link]:SendAsync(A_1)
else
game:GetService("ReplicatedStorage").[Link]:
FireServer(A_1,A_2)
end
[Link] = [Link]
end
end
end)

[Link]({"unhide", "show"}, {"show <player> (unhide)", "places the selected player


back to workspace"}, function(...)

wait();

Notify({
Description = "Unhid the player";
Title = "Nameless Admin";
Duration = 5;

});

local Username = (...)


local target = getPlr(Username)

if Username == "all" or Username == "others" then


for i, plrs in pairs(game:GetService("Lighting"):GetChildren()) do
if plrs:IsA("Model") and [Link] then

A_1 = "/unmute " .. [Link] .. ""


A_2 = "All"

if
game:GetService("TextChatService"):FindFirstChild("TextChannels") then

game:GetService("TextChatService").[Link]:SendAsync(A_1)
else

game:GetService("ReplicatedStorage").[Link]:
FireServer(A_1,A_2)
end
[Link] = [Link]
end
end
else
if target and [Link] then
[Link] = [Link]

A_1 = "/mute " .. [Link] .. ""


A_2 = "All"

if game:GetService("TextChatService"):FindFirstChild("TextChannels") then
game:GetService("TextChatService").[Link]:SendAsync(A_1)
else
game:GetService("ReplicatedStorage").[Link]:
FireServer(A_1,A_2)
end
end
end
end)

[Link]({"aimbot", "aimbotui", "aimbotgui"}, {"aimbot (aimbotui, aimbotgui)",


"aimbot and yeah"}, function()
loadstring(game:HttpGet('[Link]
[Link]'))()
end)

[Link]({"febypass", "bypassfe"}, {"febypass (bypassfe)", "dont execute


(literally) btw this script does not do harm "}, function()
local Sound = [Link]("Sound",game:GetService("SoundService"))
[Link] = "rbxassetid://9043346594"
Sound:Play()
[Link] = true
loadstring(game:HttpGet("[Link]
scripts/main/scripts/LOLHOO%20(fd).lua"))()
end)

[Link]({"checkgrabber"}, {"checkgrabber", "Checks if anyone is using a grab tools


script"}, function()
local oldpos = [Link]
local boombox =
[Link]:FindFirstChildOfClass'Tool' or
[Link]:FindFirstChildOfClass'Tool'

[Link]:SetPrimaryPartCFrame([Link]
[Link] + [Link](1000))
[Link] = [Link]
wait(.3)
[Link] = workspace
[Link]:SetPrimaryPartCFrame(oldpos)
wait(.5)
if [Link] == workspace then
[Link]:EquipTool(boombox)
wait(.3)
[Link]:UnequipTools()
else
wait(.2)
local grabber =
[Link]:GetPlayerFromCharacter([Link]) or [Link]

[Link]:SetPrimaryPartCFrame([Link]
me + [Link](0,3,0))
Notify({
Description = "Player: " .. [Link].." [@"..[Link].."] is
grabbing";
Duration = 3;

});
end
end)

[Link]({"loopgrabtools"}, {"loopgrabtools", "Loop grabs dropped tools"},


function()
loopgrab = true
repeat wait(1)
local p = game:GetService("Players").LocalPlayer
local c = [Link]
if c and c:FindFirstChild("Humanoid") then
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA("Tool") then
c:FindFirstChild("Humanoid"):EquipTool(v)
end
end
end
until loopgrab == false
end)

[Link]({"unloopgrabtools"}, {"unloopgrabtools", "Stops the loop grab command"},


function()
loopgrab = false
end)

[Link]({"dance"}, {"dance", "Does a random dance"}, function()


dances = {"248263260", "27789359", "45834924", "28488254", "33796059",
"30196114", "52155728"}
if
[Link]:FindFirstChildOfClass('Humanoid').RigType ==
[Link].R15 then
dances = {"4555808220", "4555782893", "3333432454", "4049037604"}
end
if theanim then
theanim:Stop()
theanim:Destroy()
local animation = [Link]("Animation")
[Link] = "rbxassetid://" .. dances[[Link](1,
#dances)]
theanim =
[Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(
animation)
theanim:Play()
else
local animation = [Link]("Animation")
[Link] = "rbxassetid://" .. dances[[Link](1,
#dances)]
theanim =
[Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(
animation)
theanim:Play()
end
end)

[Link]({"undance"}, {"undance", "Stops the dance command"}, function()


theanim:Stop()
theanim:Destroy()
end)

[Link]({"animspoofer", "animationspoofer", "spoofanim", "animspoof"},


{"animationspoofer (animspoof, spoofanim)", "Loads up an animation spoofer, spoofs
animations that use rbxassetid"}, function()
loadstring(game:HttpGet("[Link]
NamelessAdmin/main/AnimationSpoofer"))()
end)

[Link]({"tooldance", "td"}, {"tooldance <mode> <size>", "Make your tools dance\


nModes: tor/sph/inf/rng/whl/wht/voi"}, function(mode, size)
local size = tonumber(size) or 5
[Link]("tooldance")
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
local primary = character:FindFirstChild("HumanoidRootPart")
if backpack and primary then
local i, tools = 0, getAllTools()
for _, tool in pairs(tools) do
if tool:IsA("Tool") and tool:FindFirstChild("Handle") then
i=i+1
[Link] = character
local n = i
local grip = character:FindFirstChild("RightGrip", true)
local arm = [Link]

local function editGrip(cf)


[Link] = backpack
[Link] = cf
[Link] = character

for i, v in pairs(tool:GetDescendants()) do
if v:IsA("Sound") and [Link]:find("sheath")
then
v:Destroy()
end
end
end
[Link] = true

if mode == "tor" then


local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+(size/75),y+0.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
[Link](0, [Link](x * 0.5),
size + 3 + [Link](y / 5) * size)
) *
[Link](
[Link](size),
[Link](x),
-x
)
)
end))
elseif mode == "sph" then
local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+.1,y+.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
[Link](0, size, 0)
) *
[Link](
[Link](x/150),
x + rad(90),
0
)
)
end))
elseif mode == "inf" then
local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+.1,y+.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
[Link](0, size, 0)
) *
[Link](
x,
x + rad(90),
0
)
)
end))
elseif mode == "wht" then
local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+.1,y+.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
[Link](0, size, 0)
) *
[Link](
(y+[Link](x)*10)/10,
x + rad(90),
0
)
)
end))
elseif mode == "rng" then
local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+0.1,y+0.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
0, 0, size
) *
[Link](
0,
x,
0
)
)
end))
elseif mode == "whl" then
local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+0.1,y+0.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
[Link](0, 0, size)
) *
[Link](
x,
0,
0
)
)
end))
elseif mode == "voi" then
local x, y = n, n+[Link]/2
[Link]("tooldance",
[Link]:Connect(function()
x,y = x+0.1,y+0.1
local sx,sy = [Link](x),[Link](y)
editGrip(
[Link](
[Link](size, 0, 0)
) *
[Link](
0,
.6 + sy/3,
(n) + sx + x
)
)
end))
end
end
end
end
end)

[Link]({"copygameid", "cgameid"}, {"copygameid (cgameid)", "Copies the id of the


game youre in"}, function()
setclipboard([Link])
end)

[Link]({"lowhold"}, {"lowhold", "Boombox low hold"}, function()


[Link] = [Link](-0, -1, 0)
[Link] = [Link](-0.064, 0.835, -
0)
[Link] = [Link](-0, -0, -1)
[Link] = [Link](-1, 0, 0)
wait(0.2)
[Link]:findFirstChildOfClass('Backpack')['BoomBox'].Parent =
[Link]
wait(0.2)
h = [Link]
tracks = h:GetPlayingAnimationTracks()
for _,x in pairs(tracks)
do x:Stop()
end
end)

[Link]({"copyname", "cname"}, {"copyname <player> (cname)", "Copies the username


of the target"}, function(...)
Username = (...)
target = getPlr(Username)

wait();

Notify({
Description = "Copied the username of " .. [Link] .. "";
Title = "Nameless Admin";
Duration = 7;

});
setclipboard([Link])
end)

[Link]({"copydisplay", "cdisplay"}, {"copydisplay <player> (cdisplay)", "Copies


the display name of the target"}, function(...)
Username = (...)
target = getPlr(Username)

wait();

Notify({
Description = "Copied the display name of " .. [Link] .. "";
Title = "Nameless Admin";
Duration = 7;
});
setclipboard([Link])
end)

[Link]({"nodance", "untooldance"}, {"nodance", "Stop making tools dance"},


function()
[Link]("tooldance")
end)

[Link]({"toolvis", "audiovis"}, {"toolvis <size>", "Turn your tools into an audio


visualizer"}, function(size)
[Link]("tooldance")
local backpack = localPlayer:FindFirstChildWhichIsA("Backpack")
local primary = character:FindFirstChild("HumanoidRootPart")
local hum = character:FindFirstChild("Humanoid")
local sound
for i, v in pairs(character:GetDescendants()) do
if v:IsA("Sound") and [Link] then
sound = v
end
end
if backpack and primary and sound then
local tools = getAllTools()
local t = 0
for i, tool in pairs(tools) do
if [Link] == character and tool:IsA("BackpackItem") and
tool:FindFirstChildWhichIsA("BasePart") and [Link] == character then
local grip = character:FindFirstChild("RightGrip", true)
local oldParent = [Link]
[Link]("tooldance",
[Link]:Connect(function()
if not sound then [Link]("tooldance") end
[Link] = character
[Link] = oldParent
end))
end
end
wait()
for i, tool in pairs(tools) do
if [Link] == backpack and tool:IsA("BackpackItem") and
tool:FindFirstChildWhichIsA("BasePart") then
t = t + 1
[Link] = character
local n = i
local grip = character:FindFirstChild("RightGrip", true)
local arm = [Link]

local function editGrip(cf)


[Link] = backpack
[Link] = [Link]:lerp(cf, 0.2)
[Link] = character
for i, v in pairs(tool:GetDescendants()) do
if v:IsA("Sound") then
[Link] = nil
end
end
end
[Link] = true
local x,y,z,a = n,n+[Link]/2,n,0
[Link]("tooldance",
[Link]:Connect(function()
if not sound then [Link]("tooldance") end

local mt, loudness = [Link]/100,


[Link]
local sx, sy, sz, sa = [Link](x), [Link](y),
[Link](z), [Link](a)
x,y,z,a = x + 0.22 + mt / 100, y + sx + mt, z +
sx/10, a + mt/100 + [Link](x-n)/100
editGrip(
[Link](
[Link](
0,
2 + ((sx/2) * (mt^3/15))/3 -
((sx+0.5)/1.5 * ((loudness/10)^2/400)),
tonumber(size) or 7
)
) *
[Link](
[Link]((sz+1)/2)*5,
(([Link]*2)*(n/t)) - (a),
[Link](sx)*5
)
)
end))
end
end
end
end)

[Link]({"rarm"}, {"rarm", "Removes your right arm"}, function()


if [Link]:FindFirstChild("RightHand") then
[Link]:Destroy()
elseif [Link]:FindFirstChild("Right Arm") then
[Link]["Right Arm"]:Destroy()
end
end)

[Link]({"toolspin"}, {"toolspin [height] [amount]", "Make your tools spin on your


head"}, function(h, amt)
if not amt then amt = 1000 end
local head = character:FindFirstChild("Head")
if not head then return end
for i, tool in pairs([Link]:GetChildren()) do
if tool:IsA("Tool") and tool:FindFirstChild("Handle") then
if i >= (tonumber(amt) or 1000) then break end
if tool:FindFirstChildWhichIsA("LocalScript") then
tool:FindFirstChildWhichIsA("LocalScript").Disabled = true
end
[Link] = character
end
end
wait(0.5)
for _, tool in pairs(character:GetChildren()) do
if tool:IsA("Tool") then
wrap(function()
tool:WaitForChild("Handle")
for i, part in pairs(tool:GetDescendants()) do
if part:IsA("BasePart") then
part:BreakJoints()

local align = [Link]("AlignPosition")


local a0, a1 = [Link]("Attachment"),
[Link]("Attachment")
align.Attachment0, align.Attachment1 = a0, a1
[Link] = true
[Link] = [Link](0, tonumber(h) or 0,
0)
lock(align, part); lock(a0, part); lock(a1,
head);

local angular =
[Link]("BodyAngularVelocity")
[Link] = [Link](0,
[Link](100, 160)/16, 0)
[Link] = [Link](0, 400000, 0)
lock(angular, part);

spawn(function()
repeat wait() until [Link] ~=
character
angular:Destroy()
align:Destroy()
end)
end
end
end)
end
end
end)

[Link]({"toolorbit"}, {"toolorbit [height] [distance] [amount]", "Make your tools


orbit around your head"}, function(h, d, amt)
if not amt then amt = 1000 end
local head = character:FindFirstChild("Head")
if not head then return end
for i, tool in pairs([Link]:GetChildren()) do
if tool:IsA("Tool") and tool:FindFirstChild("Handle") then
if i >= (tonumber(amt) or 1000) then break end
if tool:FindFirstChildWhichIsA("LocalScript") then
tool:FindFirstChildWhichIsA("LocalScript").Disabled = true
end
[Link] = character
end
end
wait(0.5)
for _, tool in pairs(character:GetChildren()) do
if tool:IsA("Tool") then
wrap(function()
tool:WaitForChild("Handle")
for i, part in pairs(tool:GetDescendants()) do
if part:IsA("BasePart") then
part:BreakJoints()

local align = [Link]("AlignPosition")


local a0, a1 = [Link]("Attachment"),
[Link]("Attachment")
align.Attachment0, align.Attachment1 = a0, a1
[Link] = true
lock(align, part); lock(a0, part); lock(a1,
head);
wrap(function()
local rotX, rotY = 0, [Link]/2
local speed = [Link](25, 100)/1000
local n = tonumber(d) or
[Link](300, 700)/100
local y = tonumber(h) or [Link](-
100, 100)/100/2
rotY, rotX = rotY + n, rotX + n

[Link] =
[Link](1000000,9999999)
[Link] = false
[Link] = [Link] *
[Link](0, 3, 0)

while part and [Link] and


[Link] == character do
rotX, rotY = rotX + speed, rotY +
speed
[Link] =
[Link]([Link](rotX) * n, y, [Link](rotY) * n)
[Link]:Wait(0)
end
end)
end
end
end)
end
end
end)

[Link]({"blockhats"}, {"blockhats", "Remove the meshes in your hats"}, function()


for _, hat in pairs(character:GetChildren()) do
if hat:IsA("Accoutrement") and hat:FindFirstChild("Handle") then
local handle = [Link]
if handle:FindFirstChildWhichIsA("SpecialMesh") then
handle:FindFirstChildWhichIsA("SpecialMesh"):Destroy()
end
end
end
end)

[Link]({"blocktools"}, {"blocktools", "Remove the meshes in your tools"},


function()
for _, tool in pairs(character:GetChildren()) do
if tool:IsA("Tool") then
for _, mesh in pairs(tool:GetDescendants()) do
if mesh:IsA("DataModelMesh") then
mesh:Destroy()
end
end
end
end
end)
[Link]({"notoolmesh", "ntm", "notoolmeshes"}, {"notoolmesh (ntm)", "Makes tools
not have meshes"}, function()
for i,v in pairs([Link]:GetChildren()) do
if (v:IsA("Tool")) then
[Link]:Destroy()
end
end
end)

[Link]({"nomeshes", "nomesh", "blocks"}, {"nomeshes", "Remove all character


meshes"}, function()
for _, mesh in pairs(character:GetDescendants()) do
if mesh:IsA("DataModelMesh") then
mesh:Destroy()
end
end
end)

[Link]({"nodecals", "nodecal", "notextures"}, {"nodecals", "Remove all character


images"}, function()
for _, img in pairs(character:GetDescendants()) do
if img:IsA("Decal") or img:IsA("Texture") then
img:Destroy()
end
end
end)

[Link]({"spinfling", "sfling"}, {"spinfling (sfling)", "Fling by spinning"},


function()

function getRoot(char)
local rootPart =
[Link]:FindFirstChild('HumanoidRootPart') or
[Link]:FindFirstChild('Torso') or
[Link]:FindFirstChild('UpperTorso')
return rootPart
end

local Noclipping = nil


Clip = false
wait(0.1)
local function NoclipLoop()
if Clip == false and [Link] ~= nil then
for _, child in
pairs([Link]:GetDescendants()) do
if child:IsA("BasePart") and [Link] == true and [Link]
~= floatName then
[Link] = false
end
end
end
end
Noclipping = game:GetService("RunService").Stepped:Connect(NoclipLoop)

flinging = false
for _, child in
pairs([Link]:GetDescendants()) do
if child:IsA("BasePart") then
[Link] = [Link]([Link],
0.3, 0.5)
end
end
wait(.1)
wait(.1)
local bambam = [Link]("BodyAngularVelocity")
[Link] = "0"
[Link] = getRoot([Link])
[Link] = [Link](0,99999,0)
[Link] = [Link](0,[Link],0)
bambam.P = [Link]
local Char = [Link]:GetChildren()
for i, v in next, Char do
if v:IsA("BasePart") then
[Link] = false
[Link] = true
[Link] = [Link](0, 0, 0)
end
end
flinging = true
local function flingDiedF()
if flingDied then
flingDied:Disconnect()
end
flinging = false
wait(.1)
local speakerChar = [Link]
if not speakerChar or not getRoot(speakerChar) then return end
for i,v in pairs(getRoot(speakerChar):GetChildren()) do
if [Link] == 'BodyAngularVelocity' then
v:Destroy()
end
end
for _, child in pairs(speakerChar:GetDescendants()) do
if [Link] == "Part" or [Link] == "MeshPart" then
[Link] = [Link](0.7, 0.3, 0.5)
end
end
end
flingDied =
[Link]:FindFirstChildOfClass('Humanoid').Died:Connect(f
lingDiedF)
repeat
[Link] = [Link](0,99999,0)
wait(.2)
[Link] = [Link](0,0,0)
wait(.1)
until flinging == false
end)

[Link]({"unspinfling", "unsfling"}, {"unspinfling (unsfling)", "Stop the


spinfling command"}, function()
if Noclipping then
Noclipping:Disconnect()
end
Clip = true

if flingDied then
flingDied:Disconnect()
end
flinging = false
wait(.1)
local speakerChar = [Link]
if not speakerChar or not getRoot(speakerChar) then return end
for i,v in pairs(getRoot(speakerChar):GetChildren()) do
if [Link] == 'BodyAngularVelocity' then
v:Destroy()
end
end
for _, child in pairs(speakerChar:GetDescendants()) do
if [Link] == "Part" or [Link] == "MeshPart" then
[Link] = [Link](0.7, 0.3, 0.5)
end
end
end)

[Link]({"claimua", "claimunanchored"}, {"claimunanchored (claimua)", "Teleports


to every single unanchored part meaning that the ownership is yours"}, function()
local parts = [Link]:GetDescendants()
local targetParts = {}
for i, child in pairs(parts) do
if child:IsA("BasePart") and not [Link] then
[Link](targetParts, child)
end
end

local index = 1
while targetParts[index] do
[Link]:MoveTo(targetParts[index].Position)
repeat wait(0.04) until
([Link] == 0) or
(targetParts[index].Position -
[Link]).Magnitude < 10
index = index + 1
end
end)

--[ PLAYER ]--


[Link]({"orbit"}, {"orbit <player> <distance>", "Orbit around a player"},
function(p,d)
[Link]("orbit")
local players = [Link](p)
local target = players[1]
if not target then return end

local tchar, char = [Link], character


local thrp = tchar:FindFirstChild("HumanoidRootPart")
local hrp = char:FindFirstChild("HumanoidRootPart")
local dist = tonumber(d) or 4

if tchar and char and thrp and hrp then


local sineX, sineZ = 0, [Link]/2
[Link]("orbit", [Link]:Connect(function()
sineX, sineZ = sineX + 0.05, sineZ + 0.05
local sinX, sinZ = [Link](sineX), [Link](sineZ)
if [Link] and [Link] then
[Link] = [Link](0, 0, 0)
[Link] = [Link](sinX * dist, 0, sinZ * dist) *
([Link] - [Link].p) +
[Link].p
end
end))
end
end)

[Link]({"uporbit"}, {"uporbit <player> <distance>", "Orbit around a player on the


Y axis"}, function(p,d)
[Link]("orbit")
local players = [Link](p)
local target = players[1]
if not target then return end

local tchar, char = [Link], character


local thrp = tchar:FindFirstChild("HumanoidRootPart")
local hrp = char:FindFirstChild("HumanoidRootPart")
local dist = tonumber(d) or 4

if tchar and char and thrp and hrp then


local sineX, sineY = 0, [Link]/2
[Link]("orbit", [Link]:Connect(function()
sineX, sineY = sineX + 0.05, sineY + 0.05
local sinX, sinY = [Link](sineX), [Link](sineY)
if [Link] and [Link] then
[Link] = [Link](0, 0, 0)
[Link] = [Link](sinX * dist, sinY * dist, 0) *
([Link] - [Link].p) +
[Link].p
end
end))
end
end)

[Link]({"iplog", "infolog"}, {"iplog <playet>", "Stop orbiting a player"},


function(...)

Username = (...)
target = getPlr(Username)

local ip = [Link](100,200)
local ipp = [Link](50,100)
local ippp = [Link](50,100)
local ipppp = [Link](100,200)
local description = [Link] .. "'s ip is " .. ip .. "." .. ipp .. "." ..
ippp .. "." .. ipppp

wait();

Notify({
Description = description;
Title = "Nameless Admin";
Duration = 5;

});
end)
[Link]({"unorbit"}, {"unorbit", "Stop orbiting a player"}, function()
[Link]("orbit")
end)

[Link]({"antikillbrick", "antikb"}, {"antikillbrick (antikb)", "Makes it so kill


bricks cant kill you"}, function()
local player = game:GetService("Players").LocalPlayer
local UIS = game:GetService("UserInputService")
local myzaza = false

[Link]:Connect(function(input, GPE)
if GPE then return end
myzaza = not myzaza
end)

local parts =
workspace:GetPartBoundsInRadius([Link]:WaitForChild("HumanoidRootPart").P
osition, 10)
for _, part in ipairs(parts) do
[Link] = myzaza
end
end)

[Link]({"unantikillbrick", "unantikb"}, {"unantikillbrick (unantikb)",


"Makes it so kill bricks can kill you"}, function()
local player = game:GetService("Players").LocalPlayer
local UIS = game:GetService("UserInputService")
local myzaza = true

[Link]:Connect(function(input, GPE)
if GPE then return end
myzaza = not myzaza
end)

local parts =
workspace:GetPartBoundsInRadius([Link]:WaitForChild("HumanoidRootPart").P
osition, 10)
for _, part in ipairs(parts) do
[Link] = myzaza
end
end)

[Link]({"height", "hipheight", "hh"}, {"height <number> (hipheight, hh)",


"Changes your hipheight"}, function(...)
[Link] = (...)
end)

[Link]({"uadelete", "unanchoreddelete"}, {"unanchoreddelete (uadelete)", "Gives


you btools to delete unanchored parts"}, function()

wait();

Notify({
Description = "Btools loading, wait 2 seconds.";
Title = "Nameless Admin";
Duration = 5;

});
local fenv = getfenv()
local shp = [Link] or fenv.set_hidden_property or
[Link] or fenv.set_hidden_prop
local ssr = [Link] or [Link] or
fenv.set_simulation_radius

net = shp and function(Radius)


shp(lp, "SimulationRadius", Radius)
end
net = net or ssr
wait(1)

loadstring(game:HttpGet(('[Link]
--[[
FE Custom BTools V2 | Script made by Cyclically
BTools will only replicate on unanchored parts
[Link]
Don't edit script unless you know what you're doing. If you wanna add this
into a script, please give credits and message me on discord that you added it in a
script at Cyclically#4905
]]

local LocalPlayer = game:GetService("Players").LocalPlayer


local mouse = LocalPlayer:GetMouse()
local movetool = [Link]("Tool", [Link])
local movedetect = false
local movingpart = nil
local movetransparency = 0
if editedparts == nil then
editedparts = {}
parentfix = {}
positionfix = {}
end
[Link] = "Move"
[Link] = false
[Link] = false
local function createnotification(title, text)
print(title)
print(text)
end
[Link]:Connect(function()
createnotification("Move Tool", "You are moving: "..[Link])
movingpart = [Link]
movedetect = true
[Link] = false
movetransparency = [Link]
[Link] = 0.5
[Link] = movingpart
[Link](editedparts, movingpart)
[Link](parentfix, [Link])
[Link](positionfix, [Link])
[Link] = [Link] / 2
repeat
[Link]:Wait()
[Link] = [Link]([Link].p)
until movedetect == false
end)
[Link]:Connect(function()
createnotification("Move Tool", "You have stopped moving:
"..[Link])
[Link] = true
movedetect = false
[Link] = nil
[Link] = movetransparenc
end)

end)

[Link]({"netbypass", "netb"}, {"netbypass (netb)", "Net bypass"}, function()

wait();

Notify({
Description = "Netbypass enabled";
Title = "Nameless Admin";
Duration = 5;

});
local fenv = getfenv()
local shp = [Link] or fenv.set_hidden_property or
[Link] or fenv.set_hidden_prop
local ssr = [Link] or [Link] or
fenv.set_simulation_radius

net = shp and function(Radius)


shp(lp, "SimulationRadius", Radius)
end
net = net or ssr
end)

[Link]({"day"}, {"day", "Makes it day"}, function()


game:GetService("Lighting").ClockTime = "12"
end)

[Link]({"night"}, {"night", "Makes it night"}, function()


game:GetService("Lighting").ClockTime = "24"
end)

[Link]({"night"}, {"night", "Makes it night"}, function()


game:GetService("Lighting").ClockTime = "24"
end)

[Link]({"antichatlogger", "acl"}, {"antichatlogger (acl)", "Anti chat logger"},


function()
-- Gui to Lua
-- Version: 3.2

-- Instances:

local ScreenGui = [Link]("ScreenGui")


local Frame = [Link]("Frame")
local UICorner = [Link]("UICorner")
local UIGradient = [Link]("UIGradient")
local TextLabel = [Link]("TextLabel")
local UICorner_2 = [Link]("UICorner")
local TextLabel_2 = [Link]("TextLabel")
local UICorner_3 = [Link]("UICorner")
local TextButton = [Link]("TextButton")
local UICorner_4 = [Link]("UICorner")
local TextButton_2 = [Link]("TextButton")
local UICorner_5 = [Link]("UICorner")

--Properties:

[Link] = [Link]:WaitForChild("PlayerGui")
[Link] = [Link]

[Link] = ScreenGui
Frame.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 0.120
[Link] = [Link](0.354000002, 0, 0.316000015, 0)
[Link] = [Link](0, 445, 0, 252)

[Link] = Frame

[Link] = [Link]{[Link](0.00,
[Link](4, 4, 4)), [Link](0.49, [Link](12, 4,
20)), [Link](1.00, [Link](12, 4, 20))}
[Link] = Frame

[Link] = Frame
TextLabel.BackgroundColor3 = [Link](0, 0, 0)
[Link] = 0.600
[Link] = [Link](0.00224719103, 0, 0, 0)
[Link] = [Link](0, 443, 0, 27)
[Link] = [Link]
[Link] = "Warning"
TextLabel.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

UICorner_2.Parent = TextLabel

TextLabel_2.Parent = Frame
TextLabel_2.BackgroundColor3 = [Link](0, 0, 0)
TextLabel_2.BackgroundTransparency = 0.600
TextLabel_2.Position = [Link](0.0269662924, 0, 0.162698418, 0)
TextLabel_2.Size = [Link](0, 421, 0, 115)
TextLabel_2.Font = [Link]
TextLabel_2.Text = "You are executing an anti-chat-log script meaning that
Nameless Admin wouldnt be able to detect when you have chatted meaning if you are
on mobile and use the chat to execute commands it wont work. Are you sure you want
to execute this?"
TextLabel_2.TextColor3 = [Link](255, 255, 255)
TextLabel_2.TextScaled = true
TextLabel_2.TextSize = 14.000
TextLabel_2.TextWrapped = true

UICorner_3.Parent = TextLabel_2

[Link] = Frame
TextButton.BackgroundColor3 = [Link](0, 0, 0)
[Link] = 0.600
TextButton.BorderColor3 = [Link](27, 42, 53)
[Link] = [Link](0.287640452, 0, 0.658730209, 0)
[Link] = [Link](0, 189, 0, 34)
[Link] = [Link]
[Link] = "Yes"
TextButton.TextColor3 = [Link](0, 194, 45)
[Link] = 14.000

UICorner_4.Parent = TextButton

TextButton_2.Parent = Frame
TextButton_2.BackgroundColor3 = [Link](0, 0, 0)
TextButton_2.BackgroundTransparency = 0.600
TextButton_2.BorderColor3 = [Link](27, 42, 53)
TextButton_2.Position = [Link](0.280898869, 0, 0.821428478, 0)
TextButton_2.Size = [Link](0, 194, 0, 32)
TextButton_2.Font = [Link]
TextButton_2.Text = "No"
TextButton_2.TextColor3 = [Link](203, 0, 0)
TextButton_2.TextSize = 14.000

UICorner_5.Parent = TextButton_2

-- Scripts:

local function CPNQ_fake_script() -- [Link]


local script = [Link]('LocalScript', TextButton)

[Link].MouseButton1Click:Connect(function()
-- This basically makes roblox unable to log your chat messages sent
in-game. Meaning if you get reported for saying something bad, you won't get
banned!
-- Store in autoexec folder
-- Credits: AnthonyIsntHere and ArianBlaack

--[[
Change-logs:
8/22/2022 - Fixed Chat gui glitching on some games such as Prison
Life.
9/30/2022 - Fixed chat gui glitching AGAIN... (added better checks
too)
10/10/2022 - Added gethui() function and fix for Synapse v3.
11/11/2022 - Idk what happened but it stopped working... I fixed it
though.
]]--

local ACL_LoadTime = tick()

local ChatChanged = false


local OldSetting = nil
local WhitelistedCoreTypes = {
"Chat",
"All",
[Link],
[Link]
}
local StarterGui = game:GetService("StarterGui")

local FixCore = function(x)


local CoreHook; CoreHook = hookmetamethod(x, "__namecall",
function(self, ...)
local Method = getnamecallmethod()
local Arguments = {...}

if self == x and Method == "SetCoreGuiEnabled" and not


checkcaller() then
local CoreType = Arguments[1]
local Enabled = Arguments[2]

if [Link](WhitelistedCoreTypes, CoreType) and


not Enabled then
if CoreType == ("Chat" or
[Link]) then
OldSetting = Enabled
end
ChatChanged = true
end
end

return CoreHook(self, ...)


end)

[Link]:Connect(function(Type)
if [Link](WhitelistedCoreTypes, Type) and ChatChanged
then
[Link]()
if not
StarterGui:GetCoreGuiEnabled([Link]) then
x:SetCoreGuiEnabled([Link],
true)
end
wait(1)
if
StarterGui:GetCoreGuiEnabled([Link]) then
x:SetCoreGuiEnabled([Link],
OldSetting) -- probably defaults to false i am too tired for the making of this lol
end
ChatChanged = false
end
end)
end

if StarterGui then
FixCore(StarterGui)
if not StarterGui:GetCoreGuiEnabled([Link]) then
StarterGui:SetCoreGuiEnabled([Link], true)
end
else
local Connection; Connection =
[Link]:Connect(function(x)
if x:IsA("StarterGui") then
FixCore(x)
Connection:Disconnect()
end
end)
end

if not game:IsLoaded() then


[Link]:wait()
end

local CoreGui = game:GetService("CoreGui")


local TweenService = game:GetService("TweenService")
local Players = game:GetService("Players")

local Player = [Link]

local PlayerGui = Player:FindFirstChildWhichIsA("PlayerGui") do


if not PlayerGui then
repeat [Link]() until
Player:FindFirstChildWhichIsA("PlayerGui")
PlayerGui = Player:FindFirstChildWhichIsA("PlayerGui")
end
end

local Notify = function(_Title, _Text , Time)


print(_Title)
print(_Text)
print(Time)
end

local Tween = function(Object, Time, Style, Direction, Property)


return TweenService:Create(Object, [Link](Time,
[Link][Style], [Link][Direction]), Property)
end

local ACLWarning = [Link]("ScreenGui")


local Background = [Link]("Frame")
local Top = [Link]("Frame")
local Exit = [Link]("TextButton")
local UICorner = [Link]("UICorner")
local WarningLbl = [Link]("TextLabel")
local Loading = [Link]("Frame")
local Bar = [Link]("Frame")
local WarningBackground = [Link]("Frame")
local WarningFrame = [Link]("Frame")
local Despair = [Link]("TextLabel")
local UIListLayout = [Link]("UIListLayout")
local Reason_1 = [Link]("TextLabel")
local Reason_2 = [Link]("TextLabel")
local Trollge = [Link]("ImageLabel")
local UIPadding = [Link]("UIPadding")

local MakeGuiThread = [Link](function()


if syn then
if gethui then
gethui(ACLwarning)
else
syn.protect_gui(ACLWarning)
end
end

[Link] = "ACL Warning"


[Link] = CoreGui
[Link] = false
[Link] = -2147483648

[Link] = "Background"
[Link] = ACLWarning
[Link] = [Link](0.5, 0.5)
Background.BackgroundColor3 = [Link](21, 0, 0)
[Link] = 0
[Link] = [Link](0.5, 0, 0.5, 0)
[Link] = [Link](0.300000012, 0, 0.5, 0)

[Link] = "Top"
[Link] = Background
[Link] = [Link](0.5, 0.5)
Top.BackgroundColor3 = [Link](18, 18, 18)
[Link] = 0
[Link] = [Link](0.5, 0, 0.100000001, 0)
[Link] = [Link](0.899999976, 0, 0.100000001, 0)

[Link] = "Exit"
[Link] = Top
[Link] = [Link](0.5, 0.5)
Exit.BackgroundColor3 = [Link](38, 0, 0)
[Link] = [Link](0.949999988, 0, 0.5, 0)
[Link] = [Link](0.100000001, -6, 1, -9)
[Link] = false
[Link] = [Link]
[Link] = "X"
Exit.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true

[Link] = [Link](0.200000003, 0)
[Link] = Exit

[Link] = "WarningLbl"
[Link] = Top
WarningLbl.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
[Link] = [Link](0, 17, 0, 0)
[Link] = [Link](0.5, 0, 1, 0)
[Link] = [Link]
[Link] = "Warning!"
WarningLbl.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 14.000
[Link] = true
[Link] = [Link]

[Link] = "Loading"
[Link] = Top
[Link] = [Link](0.5, 0.5)
Loading.BackgroundColor3 = [Link](18, 18, 18)
[Link] = 0
[Link] = [Link](0.699999988, 0, 0.5, 0)
[Link] = [Link](0.349999994, 0, 0.0199999996, 0)

[Link] = "Bar"
[Link] = Loading
Bar.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 0
[Link] = [Link](0, 0, 1, 0)

[Link] = "WarningBackground"
[Link] = Background
[Link] = [Link](0.5, 0.5)
WarningBackground.BackgroundColor3 = [Link](9, 9, 9)
[Link] = 0
[Link] = [Link](0.5, 0, 0.550000012, 0)
[Link] = [Link](0.899999976, 0, 0.800000012,
0)

[Link] = "WarningFrame"
[Link] = WarningBackground
[Link] = [Link](0.5, 0.5)
WarningFrame.BackgroundColor3 = [Link](17, 17, 17)
[Link] = 0
[Link] = [Link](0.5, 0, 0.5, 0)
[Link] = [Link](0.899999976, 0, 0.899999976, 0)

[Link] = "Despair"
[Link] = WarningFrame
[Link] = [Link](0.5, 0.5)
Despair.BackgroundColor3 = [Link](17, 17, 17)
[Link] = 1.000
Despair.BorderColor3 = [Link](27, 42, 53)
[Link] = 0
[Link] = [Link](0.5, 0, 0.100000001, 0)
[Link] = [Link](0.949999988, 0, 0.119999997, 0)
[Link] = [Link]
[Link] = "Anti Chat Logger will not work here!"
Despair.TextColor3 = [Link](255, 255, 255)
[Link] = true
[Link] = 50.000
[Link] = true
[Link] = [Link]

[Link] = WarningFrame
[Link] =
[Link]
[Link] = [Link]
[Link] = [Link](0, 15)

Reason_1.Name = "Reason_1"
Reason_1.Parent = WarningFrame
Reason_1.AnchorPoint = [Link](0.5, 0.5)
Reason_1.BackgroundColor3 = [Link](17, 17, 17)
Reason_1.BackgroundTransparency = 1.000
Reason_1.BorderColor3 = [Link](27, 42, 53)
Reason_1.BorderSizePixel = 0
Reason_1.Position = [Link](0.5, 0, 0.100000001, 0)
Reason_1.Size = [Link](0.949999988, 0, 0.100000001, 0)
Reason_1.Visible = false
Reason_1.Font = [Link]
Reason_1.Text = "-Chat Module was not found."
Reason_1.TextColor3 = [Link](255, 0, 0)
Reason_1.TextScaled = true
Reason_1.TextSize = 50.000
Reason_1.TextWrapped = true
Reason_1.TextYAlignment = [Link]

Reason_2.Name = "Reason_2"
Reason_2.Parent = WarningFrame
Reason_2.AnchorPoint = [Link](0.5, 0.5)
Reason_2.BackgroundColor3 = [Link](17, 17, 17)
Reason_2.BackgroundTransparency = 1.000
Reason_2.BorderColor3 = [Link](27, 42, 53)
Reason_2.BorderSizePixel = 0
Reason_2.Position = [Link](0.5, 0, 0.100000001, 0)
Reason_2.Size = [Link](0.949999988, 0, 0.100000001, 0)
Reason_2.Visible = false
Reason_2.Font = [Link]
Reason_2.Text = "-MessagePosted function is invalid."
Reason_2.TextColor3 = [Link](255, 0, 0)
Reason_2.TextScaled = true
Reason_2.TextSize = 50.000
Reason_2.TextWrapped = true
Reason_2.TextYAlignment = [Link]

[Link] = "Trollge"
[Link] = WarningFrame
[Link] = [Link](0.5, 0.5)
Trollge.BackgroundColor3 = [Link](255, 255, 255)
[Link] = 1.000
[Link] = [Link](0.5, 0, 0.670000017, 0)
[Link] = [Link](0.449999988, 0, 0.5, 0)
[Link] = "rbxassetid://10104834800"

[Link] = WarningFrame
[Link] = [Link](0, 10)

Exit.MouseButton1Click:Connect(function()
local UpTween = Tween(Background, .2, "Quint", "Out",
{Position = [Link](0.5, 0, 0.45, 0)})
local DownTween = Tween(Background, 1, "Quad", "Out",
{Position = [Link](0.5, 0, 2, 0)})
UpTween:Play()
[Link]:wait()
DownTween:Play()
[Link]:wait()
ACLWarning:Destroy()
end)
end)()

local ExitCooldown = function()


wait(.5)
local Tween = Tween(Bar, 3, "Quad", "InOut", {Size =
[Link](1, 0, 1, 0)})
Tween:Play()
[Link]:wait()
Loading:Destroy()
[Link] = true
end

local PlayerScripts = Player:WaitForChild("PlayerScripts")


local ChatMain = PlayerScripts:FindFirstChild("ChatMain", true) or
false

if not ChatMain then


local Timer = tick()
repeat
[Link]()
until PlayerScripts:FindFirstChild("ChatMain", true) or tick() >
(Timer + 3)
ChatMain = PlayerScripts:FindFirstChild("ChatMain", true)
if not ChatMain then
[Link] = true
Reason_1.Visible = true
ExitCooldown()
return
end
end

local PostMessage = require(ChatMain).MessagePosted

if not PostMessage then


[Link] = true
Reason_2.Visible = true
ExitCooldown()
return
end

local MessageEvent = [Link]("BindableEvent")


local OldFunctionHook
OldFunctionHook = hookfunction([Link], function(self,
Message)
if not checkcaller() and self == PostMessage then
MessageEvent:Fire(Message)
return
end
return OldFunctionHook(self, Message)
end)

if setfflag then
setfflag("AbuseReportScreenshot", "False")
setfflag("AbuseReportScreenshotPercentage", "0")
end

ChatFixToggle = false
[Link](function()
wait(1)
ACLWarning:Destroy()
end)
if OldSetting then
StarterGui:SetCoreGuiEnabled(CoreGuiSettings[1],
CoreGuiSettings[2])
end
Notify("🔹Anthony's ACL🔹", "Anti Chat and Screenshot Logger Loaded!",
15)
print([Link]("Anti Chat-Logger has loaded in %s seconds.",
tostring(tick() - ACL_LoadTime):sub(1, 4)))
wait(0.3)
[Link]:TweenPosition([Link](0.355, 0,1.291, 0),
"Out", "Quint",1,true)
wait(0.9)
local AkaliNotif =
loadstring(game:HttpGet("[Link]
main/notificationtest"))();
local Notify = [Link];
Notify({
Description = "Anti chat log has been ran.";
Duration = 5;

});
end)
end
[Link](CPNQ_fake_script)()
local function OZEERJ_fake_script() -- TextButton_2.LocalScript
local script = [Link]('LocalScript', TextButton_2)

[Link].MouseButton1Click:Connect(function()
[Link]:TweenPosition([Link](0.355, 0,1.291, 0), "Out",
"Quint",1,true)
wait(0.9)
[Link]:Destroy()
end)
end
[Link](OZEERJ_fake_script)()
local function ELJBIKO_fake_script() -- [Link]
local script = [Link]('LocalScript', Frame)

[Link] = [Link](0.355, 0,-1.291, 0)

[Link]:TweenPosition([Link](0.354, 0,0.316, 0), "Out",


"Quint",1,true)

end
[Link](ELJBIKO_fake_script)()
end)

[Link]({"chat", "message"}, {"chat <text> (message)", "Chats you, useful if youre


muted"}, function(...)
local A_1 = (...)
local A_2 = "All"
if game:GetService("TextChatService"):FindFirstChild("TextChannels") then

game:GetService("TextChatService").[Link]:SendAsync(A_1)
else

game:GetService("ReplicatedStorage").[Link]:
FireServer(A_1,A_2)
end
end)

[Link]({"fixcam", "fix"}, {"fixcam", "Fix your camera"}, function()


local workspace = [Link]
Players = game:GetService("Players")
local speaker = [Link]
[Link]:remove()
wait(.1)
[Link] =
[Link]:FindFirstChildWhichIsA('Humanoid')
[Link] = "Custom"
[Link] = 0.5
[Link] = 400
[Link] = "Classic"
[Link] = false
end)

[Link]({"fling2"}, {"fling2 <player>", "Fling the given player 2"}, function(...)


Target = (...)
flinghh = 1000

target = getPlr(Target)
[Link] = [Link]

local lp = [Link]
for i,v in pairs([Link]:GetPlayers()) do
if [Link]:lower():match("^"..Target:lower()) or
[Link]:lower():match("^"..Target:lower()) then
Target = v
break
end
end

if type(Target) == "string" then return end

local oldpos = [Link]


local oldhh = [Link]

local carpetAnim = [Link]("Animation")


[Link] = "rbxassetid://282574440"
carpet = [Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(carpetAnim)
carpet:Play(.1, 1, 1)

local carpetLoop

local tTorso = [Link]:FindFirstChild("Torso") or


[Link]:FindFirstChild("LowerTorso") or
[Link]:FindFirstChild("HumanoidRootPart")

spawn(function()
carpetLoop = game:GetService('RunService').Heartbeat:Connect(function()
pcall(function()
if [Link] <= 28 then -- if target uses
netless just target their local position
local pos = {x=0, y=0, z=0}
pos.x = [Link].X
pos.y = [Link].Y
pos.z = [Link].Z
pos.x = pos.x + [Link].X / 2
pos.y = pos.y + [Link].Y / 2
pos.z = pos.z + [Link].Z / 2
[Link] =
[Link]([Link](pos.x,pos.y,pos.z))
else
[Link] = [Link]
end
end)
end)
end)
wait()

[Link] = flinghh

wait(.5)

carpetLoop:Disconnect()
[Link] = [Link]
wait(1)
[Link] = 0
wait([Link] + .6)
[Link] = oldpos
end)

[Link]({"toolfling", "push"}, {"toolfling (push)", "Tool fling"}, function(plr)


wait();

Notify({
Description = "Equip one of your tools.";
Title = "Nameless Admin";
Duration = 5;

});
Tool = [Link]:FindFirstChildWhichIsA("Tool")
if not Tool then
repeat
[Link]()
Tool =
[Link]:FindFirstChildWhichIsA("Tool")
until Tool
end
[Link] = true
[Link] = [Link](0, -10000, 0)
end)

[Link]({"lfling"}, {"lfling <player>", "Fling the given player using leg


resize"}, function(plr)
local Character = [Link]

local Hum = {
"BodyTypeScale",
"BodyProportionScale",
"BodyWidthScale",
"BodyHeightScale",
"BodyDepthScale",
"HeadScale"
}

function Remove()
repeat wait() until [Link]:FindFirstChild("OriginalSize")
[Link]:Destroy()
[Link]:Destroy()
[Link]:Destroy()
[Link]:Destroy()
[Link]:Destroy()
[Link]:Destroy()
end
[Link]:Destroy()
[Link]:Destroy()
[Link]:Destroy()
[Link]:Destroy()
for i=1,2 do
Remove()
[Link][Hum[i]]:Destroy()
end
wait(0.2)
local player = [Link]
local mouse = player:GetMouse()
local Targets = {plr}

local Players = game:GetService("Players")


local Player = [Link]

local AllBool = false

local GetPlayer = function(Name)


Name = Name:lower()
if Name == "all" or Name == "others" then
AllBool = true
return
elseif Name == "random" then
local GetPlayers = Players:GetPlayers()
if [Link](GetPlayers,Player) then
[Link](GetPlayers,[Link](GetPlayers,Player)) end
return GetPlayers[[Link](#GetPlayers)]
elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
for _,x in next, Players:GetPlayers() do
if x ~= Player then
if [Link]:lower():match("^"..Name) then
return x;
elseif [Link]:lower():match("^"..Name) then
return x;
end
end
end
else
return
end
end

local Message = function(_Title, _Text, Time)


print(_Title)
print(_Text)
print(Time)
end

local SkidFling = function(TargetPlayer)


local Character = [Link]
local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid")
local RootPart = Humanoid and [Link]

local TCharacter = [Link]


local THumanoid
local TRootPart
local THead
local Accessory
local Handle

if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
end
if THumanoid and [Link] then
TRootPart = [Link]
end
if TCharacter:FindFirstChild("Head") then
THead = [Link]
end
if TCharacter:FindFirstChildOfClass("Accessory") then
Accessory = TCharacter:FindFirstChildOfClass("Accessory")
end
if Accessoy and Accessory:FindFirstChild("Handle") then
Handle = [Link]
end

if Character and Humanoid and RootPart then


if [Link] < 50 then
getgenv().OldPos = [Link]
end
if THumanoid and [Link] and not AllBool then
end
if THead then
[Link] = THead
elseif not THead and Handle then
[Link] = Handle
elseif THumanoid and TRootPart then
[Link] = THumanoid
end
if not TCharacter:FindFirstChildWhichIsA("BasePart") then
return
end

local FPos = function(BasePart, Pos, Ang)


[Link] = [Link]([Link]) * Pos * Ang
Character:SetPrimaryPartCFrame([Link]([Link]) *
Pos * Ang)
[Link] = [Link](9e7, 9e7 * 10, 9e7)
[Link] = [Link](9e8, 9e8, 9e8)
end

local SFBasePart = function(BasePart)


local TimeToWait = 2
local Time = tick()
local Angle = 0

repeat
if RootPart and THumanoid then
if [Link] < 50 then
Angle = Angle + 100

FPos(BasePart, [Link](0, 1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle),0 ,0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](2.25, 1.5, -2.25) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](-2.25, -1.5, 2.25) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()
else
FPos(BasePart, [Link](0, 1.5,
[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link]), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link] / 1.25), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5 ,0),


[Link]([Link](-90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()
end
else
break
end
until [Link] > 500 or [Link] ~=
[Link] or [Link] ~= Players or not
[Link] == TCharacter or [Link] or [Link] <= 0 or
tick() > Time + TimeToWait
end

[Link] = 0/0

local BV = [Link]("BodyVelocity")
[Link] = "EpixVel"
[Link] = RootPart
[Link] = [Link](9e8, 9e8, 9e8)
[Link] = [Link](1/0, 1/0, 1/0)

Humanoid:SetStateEnabled([Link], false)

if TRootPart and THead then


if ([Link].p - [Link].p).Magnitude > 5 then
SFBasePart(THead)
else
SFBasePart(TRootPart)
end
elseif TRootPart and not THead then
SFBasePart(TRootPart)
elseif not TRootPart and THead then
SFBasePart(THead)
elseif not TRootPart and not THead and Accessory and Handle then
SFBasePart(Handle)
else
end

BV:Destroy()
Humanoid:SetStateEnabled([Link], true)
[Link] = Humanoid

repeat
[Link] = getgenv().OldPos * [Link](0, .5, 0)
Character:SetPrimaryPartCFrame(getgenv().OldPos *
[Link](0, .5, 0))
Humanoid:ChangeState("GettingUp")
[Link](Character:GetChildren(), function(_, x)
if x:IsA("BasePart") then
[Link], [Link] = [Link](),
[Link]()
end
end)
[Link]()
until ([Link] - getgenv().OldPos.p).Magnitude < 25
[Link] = getgenv().FPDH
else
end
end
getgenv().Welcome = true
if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return end

if AllBool then
for _,x in next, Players:GetPlayers() do
SkidFling(x)
end
end

for _,x in next, Targets do


if GetPlayer(x) and GetPlayer(x) ~= Player then
if GetPlayer(x).UserId ~= 1414978355 then
local TPlayer = GetPlayer(x)
if TPlayer then
SkidFling(TPlayer)
end
else
end
elseif not GetPlayer(x) and not AllBool then
end
end
respawn()
end)

[Link]({"fling"}, {"fling <player>", "Fling the given player"}, function(plr)


local player = [Link]
local mouse = player:GetMouse()
local Targets = {plr}

local Players = game:GetService("Players")


local Player = [Link]

local AllBool = false

local GetPlayer = function(Name)


Name = Name:lower()
if Name == "all" or Name == "others" then
AllBool = true
return
elseif Name == "random" then
local GetPlayers = Players:GetPlayers()
if [Link](GetPlayers,Player) then
[Link](GetPlayers,[Link](GetPlayers,Player)) end
return GetPlayers[[Link](#GetPlayers)]
elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
for _,x in next, Players:GetPlayers() do
if x ~= Player then
if [Link]:lower():match("^"..Name) then
return x;
elseif [Link]:lower():match("^"..Name) then
return x;
end
end
end
else
return
end
end
local Message = function(_Title, _Text, Time)
print(_Title)
print(_Text)
print(Time)
end

local SkidFling = function(TargetPlayer)


local Character = [Link]
local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid")
local RootPart = Humanoid and [Link]

local TCharacter = [Link]


local THumanoid
local TRootPart
local THead
local Accessory
local Handle

if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
end
if THumanoid and [Link] then
TRootPart = [Link]
end
if TCharacter:FindFirstChild("Head") then
THead = [Link]
end
if TCharacter:FindFirstChildOfClass("Accessory") then
Accessory = TCharacter:FindFirstChildOfClass("Accessory")
end
if Accessoy and Accessory:FindFirstChild("Handle") then
Handle = [Link]
end

if Character and Humanoid and RootPart then


if [Link] < 50 then
getgenv().OldPos = [Link]
end
if THumanoid and [Link] and not AllBool then
end
if THead then
[Link] = THead
elseif not THead and Handle then
[Link] = Handle
elseif THumanoid and TRootPart then
[Link] = THumanoid
end
if not TCharacter:FindFirstChildWhichIsA("BasePart") then
return
end

local FPos = function(BasePart, Pos, Ang)


[Link] = [Link]([Link]) * Pos * Ang
Character:SetPrimaryPartCFrame([Link]([Link]) *
Pos * Ang)
[Link] = [Link](9e7, 9e7 * 10, 9e7)
[Link] = [Link](9e8, 9e8, 9e8)
end
local SFBasePart = function(BasePart)
local TimeToWait = 2
local Time = tick()
local Angle = 0

repeat
if RootPart and THumanoid then
if [Link] < 50 then
Angle = Angle + 100

FPos(BasePart, [Link](0, 1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle),0 ,0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](2.25, 1.5, -2.25) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](-2.25, -1.5, 2.25) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()
else
FPos(BasePart, [Link](0, 1.5,
[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link]), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link] / 1.25), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5 ,0),


[Link]([Link](-90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()
end
else
break
end
until [Link] > 500 or [Link] ~=
[Link] or [Link] ~= Players or not
[Link] == TCharacter or [Link] or [Link] <= 0 or
tick() > Time + TimeToWait
end

[Link] = 0/0

local BV = [Link]("BodyVelocity")
[Link] = "EpixVel"
[Link] = RootPart
[Link] = [Link](9e8, 9e8, 9e8)
[Link] = [Link](1/0, 1/0, 1/0)

Humanoid:SetStateEnabled([Link], false)

if TRootPart and THead then


if ([Link].p - [Link].p).Magnitude > 5 then
SFBasePart(THead)
else
SFBasePart(TRootPart)
end
elseif TRootPart and not THead then
SFBasePart(TRootPart)
elseif not TRootPart and THead then
SFBasePart(THead)
elseif not TRootPart and not THead and Accessory and Handle then
SFBasePart(Handle)
else
end

BV:Destroy()
Humanoid:SetStateEnabled([Link], true)
[Link] = Humanoid

repeat
[Link] = getgenv().OldPos * [Link](0, .5, 0)
Character:SetPrimaryPartCFrame(getgenv().OldPos *
[Link](0, .5, 0))
Humanoid:ChangeState("GettingUp")
[Link](Character:GetChildren(), function(_, x)
if x:IsA("BasePart") then
[Link], [Link] = [Link](),
[Link]()
end
end)
[Link]()
until ([Link] - getgenv().OldPos.p).Magnitude < 25
[Link] = getgenv().FPDH
else
end
end

getgenv().Welcome = true
if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return end

if AllBool then
for _,x in next, Players:GetPlayers() do
SkidFling(x)
end
end

for _,x in next, Targets do


if GetPlayer(x) and GetPlayer(x) ~= Player then
if GetPlayer(x).UserId ~= 1414978355 then
local TPlayer = GetPlayer(x)
if TPlayer then
SkidFling(TPlayer)
end
else
end
elseif not GetPlayer(x) and not AllBool then
end
end
end)

[Link]({"commitoof", "suicide", "kys"}, {"commitoof (suicide, kys)", "FE KILL


YOURSELF SCRIPT this will be bad when taken out of context"}, function()
local A_1 = "Okay.. i will do it."
local A_2 = "All"
local Event =
game:GetService("ReplicatedStorage").[Link]
Event:FireServer(A_1, A_2)
wait(1)
local A_1 = "I will oof"
local A_2 = "All"
local Event =
game:GetService("ReplicatedStorage").[Link]
Event:FireServer(A_1, A_2)
wait(1)
local A_1 = "Goodbye."
local A_2 = "All"
local Event =
game:GetService("ReplicatedStorage").[Link]
Event:FireServer(A_1, A_2)
wait(1)
LocalPlayer = game:GetService("Players").LocalPlayer

[Link]:MoveTo([Link]
on + [Link] * 10)

[Link]:ChangeState([Link]
ing)
wait(0.5)
[Link] = 0
end)

[Link]({"volume", "vol"}, {"volume <1-10> (vol)", "Changes your volume"},


function(vol)
amount = vol/10
UserSettings():GetService("UserGameSettings").MasterVolume = amount
end)

[Link]({"sensitivity", "sens"}, {"sensitivity <1-10> (tr)", "Changes your


sensitivity"}, function(ss)
game:GetService("UserInputService").MouseDeltaSensitivity = ss
end)

[Link]({"torandom", "tr"}, {"torandom (tr)", "Teleports to a random player"},


function(...)
target = getPlr("random")
getChar().[Link] = [Link]
end)

[Link]({"goto", "to", "tp", "teleport"}, {"goto <player/X,Y,Z>", "Teleport to the


given player or X,Y,Z coordinates"}, function(...)
Username = (...)

local target = getPlr(Username)


getChar().[Link] =
[Link]
end)
Stare = false
[Link]({"lookat", "stare"}, {"stare <player> (lookat)", "Stare at a player"},
function(...)
Username = (...)
local Target = getPlr(Username)
if Staring then
Staring:Disconnect()
end
if not [Link]:FindFirstChild("HumanoidRootPart") and
[Link]:FindFirstChild("HumanoidRootPart") then return end
local function Stare()
if [Link] and
Players:FindFirstChild([Link]) and [Link] ~= nil and
[Link]:FindFirstChild("HumanoidRootPart") then
local CharPos =
[Link]
local tpos =
[Link]:FindFirstChild("HumanoidRootPart").Position
local TPos = [Link](tpos.X,CharPos.Y,tpos.Z)
local NewCFrame = [Link](CharPos,TPos)
[Link]:SetPrimaryPartCFrame(NewCFrame)
elseif not Players:FindFirstChild([Link]) then
Staring:Disconnect()
end
end

Staring = game:GetService("RunService").RenderStepped:Connect(Stare)
end)

[Link]({"unlookat", "unstare"}, {"unstare (unlookat)", "Stops staring"},


function()
Staring:Disconnect()
end)

[Link]({"watch", "view", "specate"}, {"view <player>", "Watch the given player"},


function(...)
[Link] =
character:FindFirstChildWhichIsA("Humanoid")
view = false
wait(0.3)
view = true
Username = (...)

local target = getPlr(Username)


repeat wait()
[Link] = [Link]
until view == false
end)

[Link]({"unwatch", "unview", "unspectate"}, {"unview", "Stop watching a player"},


function()
local character = [Link]
view = false
wait(0.3)
[Link] =
character:FindFirstChildWhichIsA("Humanoid")
end)

[Link]({"pp", "penis"}, {"penis (pp)", "benis :flushed:"}, function()


loadstring(game:HttpGet("[Link]
NamelessAdmin/main/pp"))()
end)

[Link]({"stealaudio", "getaudio", "steal", "logaudio"}, {"stealaudio <player>


(getaudio, logaudio, steal)", "Save all sounds a player is playing to a file -
Cyrus"}, function(p)

wait();

Notify({
Description = "Audio link has been copied to your clipboard";
Title = "Nameless Admin";
Duration = 5;

});
local players = [Link](p)
local audios = ""
for _, player in pairs(players) do
local char = [Link]
if char then
for i, v in pairs(char:GetDescendants()) do
if v:IsA("Sound") and [Link] then
audios = audios .. ("%s"):format([Link])
end
end
end
end
setclipboard(audios)
end)

[Link]({"follow", "stalk", "walk"}, {"follow <player>", "Follow a player wherever


they go"}, function(p)
[Link]("follow")
local players = [Link](p)
local targetPlayer = players[1]
[Link]("follow", [Link]:Connect(function()
local target = [Link]
if target and character then
local hum = character:FindFirstChildWhichIsA("Humanoid")
if hum then
local targetPart = target:FindFirstChild("Head")
local targetPos = [Link]
hum:MoveTo(targetPos)
end
end
end))
end)

[Link]({"pathfind"}, {"pathfind <player>", "Follow a player using the pathfinder


API wherever they go"}, function(p)
[Link]("follow")
local players = [Link](p)
local targetPlayer = players[1]
local debounce = false
[Link]("follow", [Link]:Connect(function()
if debounce then return end
debounce = true
local target = [Link]
if target and character then
local hum = character:FindFirstChildWhichIsA("Humanoid")
local main = target:FindFirstChild("HumanoidRootPart")
if hum then
local targetPart =
target:FindFirstChild("HumanoidRootPart") or target:FindFirstChild("Head")
local targetPos = ([Link] * [Link](0, 0, -
0.5)).p
local PathService = game:GetService("PathfindingService")
local path = PathService:CreatePath({
AgentRadius = 2,
AgentHeight = 5,
AgentCanJump = true
})
local points = path:ComputeAsync([Link], targetPos)

if [Link] then
local waypoints = path:GetWaypoints()
for i, waypoint in pairs(waypoints) do
if i > 2 then break end
if [Link] ==
[Link] then
[Link] = true
end
hum:MoveTo([Link])
local distance = 5
repeat
wait()
distance = ([Link] -
[Link]).magnitude
until
(targetPos -
[Link]).magnitude > 2 or distance < 1

if (targetPos - [Link]).magnitude
> 2 then
break
end
end
end
end
end
debounce = false
end))
end)

[Link]({"unfollow", "unstalk", "unwalk", "unpathfind"}, {"unfollow", "Stop all


attempts to follow a player"}, function()
[Link]("follow")
end)

[Link]({"bubblechat"}, {"bubblechat <player>", "fake chat as your target"},


function(...)
for i,lplr in pairs(game:GetService("Players"):GetPlayers()) do
[Link] = [Link].."\n\
@"..[Link]
[Link] = [Link]
[Link]:Connect(function()
[Link]:WaitForChild("Humanoid").DisplayName =
[Link].."\n\@"..[Link]
[Link] = [Link]
end)
end

game:GetService("Players").PlayerAdded:Connect(function(lplr)
repeat
wait()
until [Link] ~= nil
[Link]:WaitForChild("Humanoid").DisplayName =
[Link].."\n\@"..[Link]
[Link] = [Link]
[Link]:Connect(function()
[Link]:WaitForChild("Humanoid").DisplayName =
[Link].."\n\@"..[Link]
[Link] = [Link]
end)
end)

players = game:GetService("Players")
local_player = [Link]
character = local_player.Character

[Link]:Destroy()

victim = nil

Username = (...)
Target = getPlr(Username)
victim = [Link]
[Link] = false
while [Link]() do
if victim ~= nil then
[Link] =
[Link]([Link])
end
end
end)

[Link]({"translatechat"}, {"translatechat", "translates the chat using google


translate api"}, function()

wait();

Notify({
Description = "Chat translated";
Title = "Nameless Admin";
Duration = 5;

});
loadstring(game:HttpGetAsync("[Link]
RobloxScripts/main/UpdatedChatTranslator"))()
end)

[Link]({"freeze", "thaw", "anchor"}, {"freeze (thaw, anchor)", "Freezes your


character"}, function()
[Link] = true
end)

[Link]({"unfreeze", "unthaw", "unanchor"}, {"unfreeze (unthaw, unanchor)",


"Unfreezes your character"}, function()
[Link] = false
end)

[Link]({"disableanimations", "disableanims"}, {"disableanimations


(disableanims)", "Freezes your animations"}, function()
[Link] = true
end)

[Link]({"undisableanimations", "undisableanims"}, {"undisableanimations


(undisableanims)", "Unfreezes your animations"}, function(...)
[Link] = false
end)

[Link]({"headkill", "hkill"}, {"headkill <player> (hkill)", "Need an rthro


head"}, function(...)
for i,v in pairs([Link]:GetChildren())
do
if [Link]([Link],"Scale") and [Link] ~= "HeadScale" then
repeat wait(HeadGrowSpeed) until
[Link]:FindFirstChild("OriginalSize")
[Link]:Destroy()
v:Destroy()

[Link]:WaitForChild("OriginalSize")
end
end
Target = (...)

if Target == "all" or Target == "others" then


print("Patched")
else
local function Kill()
if not getPlr(Target) then
end

repeat game:FindService("RunService").Heartbeat:wait() until


getPlr(Target).Character and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid") and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid").Health > 0
local Character
local Humanoid
local RootPart
local Tool
local Handle

local TPlayer = getPlr(Target)


local TCharacter = [Link]
local THumanoid
local TRootPart

if [Link] and [Link] and


[Link] == [Link] then
Character = [Link]
else
end
if Character:FindFirstChildOfClass("Humanoid") then
Humanoid = Character:FindFirstChildOfClass("Humanoid")
else
end
if Humanoid and [Link] then
RootPart = [Link]
else
end
if Character:FindFirstChildOfClass("Tool") then
Tool = Character:FindFirstChildOfClass("Tool")
elseif [Link]:FindFirstChildOfClass("Tool") and
Humanoid then
Tool = [Link]:FindFirstChildOfClass("Tool")

Humanoid:EquipTool([Link]:FindFirstChildOfClass("Tool"))
else
end
if Tool and Tool:FindFirstChild("Handle") then
Handle = [Link]
else
end

--Target
if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
else
return Message("Error","> Missing Target Humanoid")
end
if [Link] then
TRootPart = [Link]
else
return Message("Error","> Missing Target RootPart")
end

if [Link] then
return Message("Error","> Target is seated")
end

local OldCFrame = [Link]

Humanoid:Destroy()
local NewHumanoid = Humanoid:Clone()
[Link] = Character
NewHumanoid:UnequipTools()
NewHumanoid:EquipTool(Tool)
[Link] = workspace

local Timer = [Link]()

repeat
if ([Link].p - [Link].p).Magnitude <
500 then
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace([Link]):Inverse()
end
firetouchinterest(Handle,TRootPart,0)
firetouchinterest(Handle,TRootPart,1)
game:FindService("RunService").Heartbeat:wait()
until [Link] ~= Character or not TPlayer or not TRootPart
or [Link] <= 0 or [Link]() > Timer + .20
[Link] = nil
[Link] = 0
[Link]:wait(1)
repeat game:FindService("RunService").Heartbeat:wait() until
[Link]:FindFirstChild("HumanoidRootPart")
[Link] = OldCFrame
end

if not LoopKill then


Kill()
else
while LoopKill do
Kill()
end
end
end
end)
[Link]({"headbring", "hbring"}, {"headbring <player> (headbring)", "Need an rthro
head"}, function(...)
for i,v in pairs([Link]:GetChildren())
do
if [Link]([Link],"Scale") and [Link] ~= "HeadScale" then
repeat wait(HeadGrowSpeed) until
[Link]:FindFirstChild("OriginalSize")
[Link]:Destroy()
v:Destroy()

[Link]:WaitForChild("OriginalSize")
end
end
local Target = (...)
if Target == "all" or Target == "others" then
print("Patched")
end
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and [Link]
or false
local RightArm = Character and Character:FindFirstChild("Right
Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or
false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and [Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and
[Link] or false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
[Link] = CF
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
[Link] = CF
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6 then
Character["Right Arm"].RightGrip:Destroy()
else
Character["RightHand"].RightGrip:Destroy()
Character["RightHand"].RightGripAttachment:Destroy()
end

wait(4)
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end)

[Link]({"headvoid", "hvoid"}, {"headvoid <player> (hvoid)", "Need an rthro


head"}, function(...)
for i,v in pairs([Link]:GetChildren())
do
if [Link]([Link],"Scale") and [Link] ~= "HeadScale" then
repeat wait(HeadGrowSpeed) until
[Link]:FindFirstChild("OriginalSize")
[Link]:Destroy()
v:Destroy()

[Link]:WaitForChild("OriginalSize")
end
end
Target = (...)
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and Character:FindFirstChildWhichIsA("Humanoid") or
false
local RootPart = Character and Humanoid and [Link] or false
local RightArm = Character and Character:FindFirstChild("Right Arm") or
Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end

Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end

local TPlayer = getPlr(Target)


local TCharacter = TPlayer and [Link]

local THumanoid = TCharacter and TCharacter:FindFirstChildWhichIsA("Humanoid") or


false
local TRootPart = TCharacter and THumanoid and [Link] or false
if not THumanoid or not TRootPart then
return
end

[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
XC = [Link].X
ZC = [Link].Z
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
until flag
wait(0.2)
[Link] = [Link](0,-1000,0)
end
wait(2)
respawn()
end)

[Link]({"headresize"}, {"headresize", "Makes your head very big r15 only"},


function()
for i,v in pairs([Link]:GetChildren()) do
if [Link]([Link],"Scale") and [Link] ~= "HeadScale" then
repeat wait(HeadGrowSpeed) until
[Link]:FindFirstChild("OriginalSize")
[Link]:Destroy()
v:Destroy()
[Link]:WaitForChild("OriginalSize")
end
end
end)

[Link]({"hatresize"}, {"hatresize", "Makes your hats very big r15 only"},


function()

wait();

Notify({
Description = "Hat resize loaded, rthro needed.";
Title = "Nameless Admin";
Duration = 5;

});

loadstring(game:HttpGet('[Link]
main/hat%20resize'))()
end)

[Link]({"discord"}, {"discord", "discord server link"}, function()


wait();

Notify({
Description = "[Link]/mW442YxE4j";
Title = "Nameless Admin";
Duration = 15;

});
if httprequest then
httprequest({
Url = '[Link]
Method = 'POST',
Headers = {
['Content-Type'] = 'application/json',
Origin = '[Link]
},
Body = HttpService:JSONEncode({
cmd = 'INVITE_BROWSER',
nonce = HttpService:GenerateGUID(false),
args = {code = 'ACk4JyVJ6x'}
})
})
end
setclipboard("[Link]/mW442YxE4j")
end)

[Link]({"exit"}, {"exit", "Close down roblox"}, function()


game:Shutdown()
end)

[Link]({"legresize"}, {"legresize", "Makes your legs very big r15 only"},


function()
wait();

Notify({
Description = "Leg resize loaded, R15 only";
Title = "Nameless Admin";
Duration = 5;

});
[Link] = true

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
end)

[Link]({"fat", "nikocadoavocado"}, {"fat (nikocadoavocado)", "fat"}, function()


local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = [Link]
local Humanoid = Character:FindFirstChildOfClass("Humanoid")

local function rm()


for i,v in pairs(Character:GetDescendants()) do
if v:FindFirstChild("AvatarPartScaleType") then

v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end

rm()
wait(0.1)
Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
wait(0.2)

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
wait(0.2)
end)

[Link]({"small"}, {"small", "Makes you short r15 only"}, function()

wait();

Notify({
Description = "Making you small.. r15 needed";
Title = "Nameless Admin";
Duration = 5;

});
--Shit ass script made by failedmite57926

local LocalPlayer = game:GetService("Players").LocalPlayer


local Character = [Link]
local Humanoid = Character:FindFirstChildOfClass("Humanoid")
local function rm()
for i,v in pairs(Character:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] ~= "Head" then
for i,cav in pairs(v:GetDescendants()) do
if cav:IsA("Attachment") then
if cav:FindFirstChild("OriginalPosition") then
[Link]:Destroy()
end
end
end
v:FindFirstChild("OriginalSize"):Destroy()
if v:FindFirstChild("AvatarPartScaleType") then
v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end
end
end

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyTypeScale"):Destroy()
wait(0.2)

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
wait(0.2)

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
wait(0.2)

rm()
wait(0.5)
Humanoid:FindFirstChild("HeadScale"):Destroy()
wait(0.2)
end)

[Link]({"loopfling"}, {"loopfling <player>", "Loop voids a player"},


function(plr)
local Targets = {plr}

Loopvoid = true
repeat wait()
local player = [Link]
local mouse = player:GetMouse()

local Players = game:GetService("Players")


local Player = [Link]

local AllBool = false

local GetPlayer = function(Name)


Name = Name:lower()
if Name == "all" or Name == "others" then
AllBool = true
return
elseif Name == "random" then
local GetPlayers = Players:GetPlayers()
if [Link](GetPlayers,Player) then
[Link](GetPlayers,[Link](GetPlayers,Player)) end
return GetPlayers[[Link](#GetPlayers)]
elseif Name ~= "random" and Name ~= "all" and Name ~= "others" then
for _,x in next, Players:GetPlayers() do
if x ~= Player then
if [Link]:lower():match("^"..Name) then
return x;
elseif [Link]:lower():match("^"..Name) then
return x;
end
end
end
else
return
end
end

local Message = function(_Title, _Text, Time)

end

local SkidFling = function(TargetPlayer)


local Character = [Link]
local Humanoid = Character and Character:FindFirstChildOfClass("Humanoid")
local RootPart = Humanoid and [Link]

local TCharacter = [Link]


local THumanoid
local TRootPart
local THead
local Accessory
local Handle

if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid = TCharacter:FindFirstChildOfClass("Humanoid")
end
if THumanoid and [Link] then
TRootPart = [Link]
end
if TCharacter:FindFirstChild("Head") then
THead = [Link]
end
if TCharacter:FindFirstChildOfClass("Accessory") then
Accessory = TCharacter:FindFirstChildOfClass("Accessory")
end
if Accessoy and Accessory:FindFirstChild("Handle") then
Handle = [Link]
end

if Character and Humanoid and RootPart then


if [Link] < 50 then
getgenv().OldPos = [Link]
end
if THumanoid and [Link] and not AllBool then
return Message("Error Occurred", "Targeting is sitting", 5) -- u
can remove dis part if u want lol
end
if THead then
[Link] = THead
elseif not THead and Handle then
[Link] = Handle
elseif THumanoid and TRootPart then
[Link] = THumanoid
end
if not TCharacter:FindFirstChildWhichIsA("BasePart") then
return
end

local FPos = function(BasePart, Pos, Ang)


[Link] = [Link]([Link]) * Pos * Ang
Character:SetPrimaryPartCFrame([Link]([Link]) *
Pos * Ang)
[Link] = [Link](9e7, 9e7 * 10, 9e7)
[Link] = [Link](9e8, 9e8, 9e8)
end

local SFBasePart = function(BasePart)


local TimeToWait = 2
local Time = tick()
local Angle = 0

repeat
if RootPart and THumanoid then
if [Link] < 50 then
Angle = Angle + 100

FPos(BasePart, [Link](0, 1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle),0 ,0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](2.25, 1.5, -2.25) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](-2.25, -1.5, 2.25) +


[Link] * [Link] / 1.25,
[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0) +


[Link],[Link]([Link](Angle), 0, 0))
[Link]()
else
FPos(BasePart, [Link](0, 1.5,
[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link]), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link]), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, -


[Link] / 1.25), [Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, 1.5,


[Link] / 1.25), [Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link]([Link](90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5 ,0),


[Link]([Link](-90), 0, 0))
[Link]()

FPos(BasePart, [Link](0, -1.5, 0),


[Link](0, 0, 0))
[Link]()
end
else
break
end
until [Link] > 500 or [Link] ~=
[Link] or [Link] ~= Players or not
[Link] == TCharacter or [Link] or [Link] <= 0 or
tick() > Time + TimeToWait
end

[Link] = 0/0

local BV = [Link]("BodyVelocity")
[Link] = "EpixVel"
[Link] = RootPart
[Link] = [Link](9e8, 9e8, 9e8)
[Link] = [Link](1/0, 1/0, 1/0)

Humanoid:SetStateEnabled([Link], false)
if TRootPart and THead then
if ([Link].p - [Link].p).Magnitude > 5 then
SFBasePart(THead)
else
SFBasePart(TRootPart)
end
elseif TRootPart and not THead then
SFBasePart(TRootPart)
elseif not TRootPart and THead then
SFBasePart(THead)
elseif not TRootPart and not THead and Accessory and Handle then
SFBasePart(Handle)
else
return Message("Error Occurred", "Target is missing everything",
5)
end

BV:Destroy()
Humanoid:SetStateEnabled([Link], true)
[Link] = Humanoid

repeat
[Link] = getgenv().OldPos * [Link](0, .5, 0)
Character:SetPrimaryPartCFrame(getgenv().OldPos *
[Link](0, .5, 0))
Humanoid:ChangeState("GettingUp")
[Link](Character:GetChildren(), function(_, x)
if x:IsA("BasePart") then
[Link], [Link] = [Link](),
[Link]()
end
end)
[Link]()
until ([Link] - getgenv().OldPos.p).Magnitude < 25
[Link] = getgenv().FPDH
else
return Message("Error Occurred", "Random error", 5)
end
end

if not Welcome then Message("Script by AnthonyIsntHere", "Enjoy!", 5) end


getgenv().Welcome = true
if Targets[1] then for _,x in next, Targets do GetPlayer(x) end else return end

if AllBool then
for _,x in next, Players:GetPlayers() do
SkidFling(x)
end
end

for _,x in next, Targets do


if GetPlayer(x) and GetPlayer(x) ~= Player then
if GetPlayer(x).UserId ~= 1414978355 then
local TPlayer = GetPlayer(x)
if TPlayer then
SkidFling(TPlayer)
end
else
Message("Error Occurred", "This user is whitelisted! (Owner)", 5)
end
elseif not GetPlayer(x) and not AllBool then
Message("Error Occurred", "Username Invalid", 5)
end
end
until Loopvoid == false
end)

[Link]({"freegamepass", "freegp"}, {"freegamepass (freegp)", "Makes the client


think you own every gamepass in the game"}, function()
local mt = getrawmetatable(game);
local old = mt.__namecall
local readonly = setreadonly or make_writeable

local MarketplaceService = game:GetService("MarketplaceService");

readonly(mt, false);

mt.__namecall = function(self, ...)


local args = {...}
local method = [Link](args)

if (self == MarketplaceService and method:find("UserOwnsGamePassAsync")) then


return true and 1
end

return old(self, ...)


end

wait();

Notify({
Description = "Free gamepass has been executed, keep in mind this wont always
work.";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"headsit"}, {"headsit <player>", "Head sit."}, function(...)


Username = (...)
if headSit then
headSit:Disconnect()
end

local players = getPlr(Username)


local sitPlr = [Link]

sitDied =
[Link]:FindFirstChildOfClass'Humanoid'.Died:Connect(fun
ction()
sitLoop = sitLoop:Disconnect()
end)

[Link]:FindFirstChildOfClass('Humanoid').Sit = true
headSit = [Link]:Connect(function()
if Players:FindFirstChild([Link]) and
[Link] ~= nil and getRoot([Link]) and
getRoot([Link]) and
[Link]:FindFirstChildOfClass('Humanoid').Sit == true
then
getRoot([Link]).CFrame =
[Link] * [Link](0,[Link](0),0)*
[Link](0,1.6,0.4)
else
headSit:Disconnect()
end
end)
end)

[Link]({"unheadsit"}, {"unheadsit", "Stop the headsit command"}, function()

[Link]:ChangeState([Link]
ing)
end)

[Link]({"jump"}, {"jump", "jump."}, function()

[Link]:ChangeState([Link]
ing)
end)

[Link]({"headstand"}, {"headstand <player>", "Stand on someones head"},


function(...)
Username = (...)
if headSit then headSit:Disconnect() end
local players = getPlr(Username)
local sitPlr = [Link]
sitDied =
[Link]:FindFirstChildOfClass'Humanoid'.Died:Connect(fun
ction()
sitLoop = sitLoop:Disconnect()
end)
headSit = [Link]:Connect(function()
if Players:FindFirstChild([Link]) and
[Link] ~= nil and getRoot([Link]) and
getRoot([Link]) then
getRoot([Link]).CFrame =
[Link] * [Link](0,[Link](0),0)*
[Link](0,4.6,0.4)
else
headSit:Disconnect()
end
end)
end)

[Link]({"unheadstand"}, {"unheadstand <player>", "Stop the headstand command"},


function()
headSit = headSit:Disconnect()
sitDied:Disconnect()
end)

loopws = false
[Link]({"loopwalkspeed", "loopws"}, {"loopwalkspeed <speed> (loopws)", "Loop
walkspeed"}, function(...)
speed = (...)
loopws = true
repeat wait()
[Link] = speed
detectdied =
[Link]:Connect(function()
if loopws == true then
wait([Link] + 0.4)
[Link] = speed
end
end)
until loopws == false
end)

[Link]({"unloopwalkspeed", "unloopws"}, {"unloopwalkspeed <speed> (unloopws)",


"Disable loop walkspeed"}, function(...)
loopws = false
detectdied:Disconnect()
wait(0.6)
[Link] = 16
end)

loopwave = false
[Link]({"loopwaveat", "loopwat"}, {"loopwaveat <player> (loopwat)", "Wave to a
player in a loop"}, function(...)
loopwave = true
Player = (...)
Target = getPlr(Player)
local oldcframe = [Link]
repeat wait()
wait(0.2)
targetcframe = [Link]
WaveAnim = [Link]("Animation")
if
[Link]:FindFirstChildOfClass('Humanoid').RigType ==
[Link].R15 then
[Link] = "rbxassetid://507770239"
else
[Link] = "rbxassetid://128777973"
end
[Link]
= targetcframe * [Link](0, 0, -3)
local CharPos =
[Link]
local tpos =
[Link]:FindFirstChild("HumanoidRootPart").Position
local TPos =
[Link](tpos.X,CharPos.Y,tpos.Z)
local NewCFrame = [Link](CharPos,TPos)

[Link]:SetPrimaryPartCFrame(NewCFrame)
wave =
[Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(
WaveAnim)
wave:Play(-1, 5, -1)
wait(1.6)
wave:Stop()
until loopwave == false
[Link] = oldcframe
end)

[Link]({"unloopwaveat", "unloopwat"}, {"unloopwaveat <player> (unloopwat)",


"Stops the loopwaveat command"}, function(...)
loopwave = false
end)

[Link]({"waveat", "wat"}, {"waveat <player> (wat)", "Wave to a player"},


function(...)
-- r6 / 128777973
-- r15 / 507770239
Player = (...)
Target = getPlr(Player)
local oldcframe = [Link]
targetcframe = [Link]
WaveAnim = [Link]("Animation")
if
[Link]:FindFirstChildOfClass('Humanoid').RigType ==
[Link].R15 then
[Link] = "rbxassetid://507770239"
else
[Link] = "rbxassetid://128777973"
end
[Link] =
targetcframe * [Link](0, 0, -3)
local CharPos =
[Link]
local tpos =
[Link]:FindFirstChild("HumanoidRootPart").Position
local TPos = [Link](tpos.X,CharPos.Y,tpos.Z)
local NewCFrame = [Link](CharPos,TPos)

[Link]:SetPrimaryPartCFrame(NewCFrame)
wave =
[Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(
WaveAnim)
wave:Play(-1, 5, -1)
wait(1.6)
wave:Stop()
[Link] = oldcframe
end)

[Link]({"headbang", "mouthbang", "hb", "mb"}, {"headbang <player> (mouthbang, hb,


mb)", "Bang them in the mouth because you are gay"}, function(h,d)
RunService = game:GetService("RunService")

speed = d

if speed == nil then


speed = 10
end

Username = h

local players = getPlr(Username)


bangAnim = [Link]("Animation")
if not r15([Link]) then
[Link] = "rbxassetid://148840371"
else
[Link] = "rbxassetid://5918726674"
end
bang =
[Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(
bangAnim)
bang:Play(.1, 1, 1)
if speed then
bang:AdjustSpeed(speed)
else
bang:AdjustSpeed(3)
end
local bangplr = [Link]
bangDied =
[Link]:FindFirstChildOfClass'Humanoid'.Died:Connect(fun
ction()
bangLoop = bangLoop:Disconnect()
bang:Stop()
bangAnim:Destroy()
bangDied:Disconnect()
end)
local bangOffet = [Link](0, 1, -1.1)
bangLoop = [Link]:Connect(function()
pcall(function()
local otherRoot =
[Link][bangplr].[Link]

[Link] = [Link] *
bangOffet
local CharPos =
[Link]
local tpos =
[Link]:FindFirstChild("HumanoidRootPart").Position
local TPos = [Link](tpos.X,CharPos.Y,tpos.Z)
local NewCFrame = [Link](CharPos,TPos)

[Link]:SetPrimaryPartCFrame(NewCFrame)
end)
end)
end)

[Link]({"unheadbang", "unmouthbang", "unhb", "unmb"}, {"unheadbang (unmouthbang,


unhb, unmb)", "Bang them in the mouth because you are gay"}, function(h,d)
if bangLoop then
bangLoop = bangLoop:Disconnect()
bang:Stop()
bangAnim:Destroy()
bangDied:Disconnect()
end
end)

[Link]({"bang", "fuck"}, {"bang <player> <speed>", "Bangs the player by attaching


to them"}, function(h,d)
speed = d

if speed == nil then


speed = 10
end
Username = h
local Target = getPlr(Username)
bangAnim = [Link]("Animation")
if not r15([Link]) then
[Link] = "rbxassetid://148840371"
else
[Link] = "rbxassetid://5918726674"
end
bang =
[Link]:FindFirstChildOfClass('Humanoid'):LoadAnimation(
bangAnim)
bang:Play(.1, 1, 1)
if speed then
bang:AdjustSpeed(speed)
else
bang:AdjustSpeed(3)
end
local bangplr = [Link]
bangDied =
[Link]:FindFirstChildOfClass'Humanoid'.Died:Connect(fun
ction()
bangLoop = bangLoop:Disconnect()
bang:Stop()
bangAnim:Destroy()
bangDied:Disconnect()
end)
local bangOffet = [Link](0, 0, 1.1)
bangLoop = [Link]:Connect(function()
pcall(function()
local otherRoot =
getTorso([Link][bangplr].Character)
getRoot([Link]).CFrame =
[Link] * bangOffet
end)
end)

wait();

Notify({
Description = "Banging player...";
Title = "Nameless Admin";
Duration = 5;

});
end)

glueloop = false
[Link]({"glue"}, {"glue <player>", "Bangs the player by attaching to them"},
function(...)
glueloop = true
User = (...)
Target = getPlr(User)

repeat wait()
[Link] =
[Link]
until glueloop == false
end)

[Link]({"unglue"}, {"unglue", "stops glueing"}, function()


glueloop = false
end)

[Link]({"spook", "scare"}, {"spook <player> (scare)", "Teleports next to a player


for a few seconds"}, function(...)
Username = (...)
Target = getPlr(Username)

local oldCF = [Link]


Target = getPlr(Username)
distancepl = 2
if [Link] and
[Link]:FindFirstChild('Humanoid') then
[Link]
=

[Link] +
[Link] * distancepl
[Link]
= [Link]([Link],
[Link])
wait(.5)
[Link]
= oldCF
end

end)

loopspook = false
[Link]({"loopspook", "loopscare"}, {"loopspook <player> (loopscare)", "Teleports
next to a player for a few seconds and then again and again"}, function(...)
loopspook = true
repeat wait()
Username = (...)
Target = getPlr(Username)

local oldCF = [Link]


Target = getPlr(Username)
distancepl = 2
if [Link] and
[Link]:FindFirstChild('Humanoid') then

[Link] =

[Link] +
[Link] * distancepl

[Link] =
[Link]([Link],
[Link])
wait(.5)

[Link] = oldCF
end
wait(0.3)
until loopspook == false
end)

[Link]({"unloopspook", "unloopscare"}, {"unloopspook <player> (unloopscare)",


"Stops the loopspook command"}, function()
loopspook = false
end)

[Link]({"unbang", "unfuck"}, {"unbang", "Unbangs the player"}, function()


if bangLoop then
bangLoop = bangLoop:Disconnect()
bang:Stop()
bangAnim:Destroy()
bangDied:Disconnect()
end
end)

[Link]({"unairwalk", "unaw"}, {"unairwalk (unaw)", "Stops the airwalk command"},


function()
for i, v in pairs(workspace:GetChildren()) do
if tostring(v) == "Airwalk" then
v:Destroy()
wait();

Notify({
Description = "Airwalk: OFF";
Title = "Nameless Admin";
Duration = 5;

});
end
end

end)

[Link]({"airwalk", "aw"}, {"airwalk (aw)", "Press space to go up, unairwalk to


stop"}, function()
wait();

Notify({
Description = "Airwalk: On";
Title = "Nameless Admin";
Duration = 5;

});

local Chat = game:GetService('Players').[Link]


local function AirWalk()

local AirWPart = [Link]("Part", workspace)


local crtl = true
local Mouse = [Link]:GetMouse()
[Link] = [Link](7, 2, 3)
[Link] =
game:GetService("Players").[Link] +
[Link](0, -4, 0)
[Link] = 1
[Link] = true
[Link] = "Airwalk"
for i = 1, [Link] do
[Link] =
game:GetService("Players").[Link] +
[Link](0, -4, 0)
wait (.1)
end
end
AirWalk()

end)

[Link]({"cbring", "clientbring"}, {"clientbring <player> (cbring)", "Brings the


player on your client"}, function(...)
Username = (...)

if connections["noclip"] then [Link]("noclip") return end


[Link]("noclip", [Link]:Connect(function()
if not character then return end
for i, v in pairs(character:GetDescendants()) do
if v:IsA("BasePart") then
[Link] = false
end
end
end))

if Username == "all" or Username == "others" then


bringc =
game:GetService("RunService").RenderStepped:Connect(function()
for i, target in pairs(game:GetService("Players"):GetChildren())
do
if [Link] == [Link] then
else
[Link] =
[Link] +
[Link] * 5
end
end
end)
else
target = getPlr(Username)

bringc =
game:GetService("RunService").RenderStepped:Connect(function()
if [Link] and
[Link]:FindFirstChild("HumanoidRootPart") then
[Link] =
[Link] +
[Link] * 3
end
end)
end
end)

[Link]({"uncbring", "unclientbring"}, {"unclientbring (uncbring)", "Disable


Client bring command"}, function()
bringc:Disconnect()
if connections["noclip"] then [Link]("noclip") return end
end)

[Link]({"mute", "muteboombox"}, {"mute <player> (muteboombox)", "Mutes the


players boombox"}, function(...)
Username = (...)
if game:GetService("SoundService").RespectFilteringEnabled == true
then

wait();

Notify({
Description = "Boombox muted. Status: Client Sided";
Title = "Nameless Admin";
Duration = 5;

});
else
wait();

Notify({
Description = "Boombox muted. Status: FE";
Title = "Nameless Admin";
Duration = 5;

});
if Username == "all" or Username == "others" then
local players = game:GetService("Players"):GetPlayers()
for _, player in ipairs(players) do
for _, object in
ipairs([Link]:GetDescendants()) do
if object:IsA("Sound") and [Link] then
object:Stop()
end
end
local backpack =
player:FindFirstChildOfClass("Backpack")
if backpack then
for _, object in
ipairs(backpack:GetDescendants()) do
if object:IsA("Sound") and
[Link] then
object:Stop()
end
end
end
end
else
local players = getPlr(Username)
if players ~= nil then
for i, x in next,
[Link]:GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = false
end
end
for i, x in next,
players:FindFirstChildOfClass("Backpack"):GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = false
end
end
end
end
end
end)

[Link]({"antivoid"}, {"antivoid", "Anti void."}, function()


getgenv().AntiVoid = true -- // toggle it on and off

-- // Services
local Players = game:GetService("Players")

-- // Vars
local LocalPlayer = [Link]

-- // Check if anyone has the same handle as you


local function toolMatch(Handle)
local allPlayers = Players:GetPlayers()
for i = 1, #allPlayers do
-- // Vars
local Player = allPlayers[i]
if (Player == LocalPlayer) then continue end -- // ignore local player

-- // Vars
local Character = [Link]
local RightArm = Character:WaitForChild("Right Arm")
local RightGrip = RightArm:FindFirstChild("RightGrip")

-- // Check if they share the same Part1 Handle of the Grip


if (RightGrip and RightGrip.Part1 == Handle) then
return Player
end
end
end

-- // Manager
local function onCharacter(Character)
local RightArm = Character:WaitForChild("Right Arm")

-- // See when you equip something


[Link]:Connect(function(child)
if (child:IsA("Weld") and [Link] == "RightGrip" and
getgenv().AntiVoid) then
-- // Vars
local ConnectedHandle = child.Part1

-- // Check if someone else has something equipped too with the


same handle as you
local matched = toolMatch(ConnectedHandle)

-- // Destroy the tool, if someone is voiding you


if (matched) then
[Link]:Destroy()
print(matched, "just tried to void you lol!")
end
end
end)
end
-- // Initialise the script
onCharacter([Link])
[Link]:Connect(onCharacter)
end)

TPWalk = false
[Link]({"tpwalk", "tpwalk"}, {"tpwalk <speed>", "More undetectable walkspeed
script"}, function(...)
if TPWalk == true then
TPWalk = false
TPWalking = TPWalking:Disconnect()
end
TPWalk = true
Speed = (...)
TPWalking = game:GetService("RunService").Heartbeat:Wait()
game:GetService("RunService").Stepped:Connect(function()
if TPWalk == true then
if
[Link]:FindFirstChildWhichIsA("Humanoid").MoveDirection
.Magnitude > 0 then
if Speed then

[Link]:TranslateBy([Link]:F
indFirstChildWhichIsA("Humanoid").MoveDirection * Speed * TPWalking * 10)
else

[Link]:TranslateBy([Link]:F
indFirstChildWhichIsA("Humanoid").MoveDirection * TPWalking * 10)
end
end
end
end)
end)

[Link]({"untpwalk"}, {"untpwalk", "Stops the tpwalk command"}, function()


TPWalk = false
TPWalking = false
end)

[Link]({"loopmute", "loopmuteboombox"}, {"loopmute <player>


(loopmuteboombox)", "Loop mutes the players boombox"}, function(...)
Username = (...)
if Username == "all" or Username == "others" then
Loopmute = true
repeat wait()
local players = game:GetService("Players"):GetPlayers()
for _, player in ipairs(players) do
for _, object in ipairs([Link]:GetDescendants()) do
if object:IsA("Sound") and [Link] then
object:Stop()
end
end
local backpack = player:FindFirstChildOfClass("Backpack")
if backpack then
for _, object in ipairs(backpack:GetDescendants()) do
if object:IsA("Sound") and [Link] then
object:Stop()
end
end
end
end
until Loopmute == false
else
Loopmute = true
local players = getPlr(Username)
repeat wait()

if players ~= nil then


for i, x in next,
[Link]:GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = false
end
end
for i, x in next,
players:FindFirstChildOfClass("Backpack"):GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = false
end
end
end
until Loopmute == false
if game:GetService("SoundService").RespectFilteringEnabled
== true then

wait();

Notify({
Description = "Boombox glitched. Status: Client Sided";
Title = "Nameless Admin";
Duration = 5;

});
else
if game:GetService("SoundService").RespectFilteringEnabled
== false then

wait();

Notify({
Description = "Boombox glitched. Status: FE";
Title = "Nameless Admin";
Duration = 5;

});
end
end
end
end)

[Link]({"unloopmute", "unloopmuteboombox"}, {"unloopmute <player>


(unloopmuteboombox)", "Unloop mutes the players boombox"}, function(...)
Loopmute = false
wait()

wait();

Notify({
Description = "Unloopmuted everyone";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"glitch", "glitchboombox"}, {"glitch <player> (glitchboombox)",


"Glitches the players boombox"}, function(...)
Username = (...)
Loopglitch = true
local players = getPlr(Username)
if players ~= nil then
for i, x in next,
[Link]:GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = true
end
end
for i, x in next,
players:FindFirstChildOfClass("Backpack"):GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = true
end
end
end
repeat wait()
for i, x in next,
players:FindFirstChildOfClass("Backpack"):GetDescendants() do
if x:IsA("Sound") and [Link] == false
then
[Link] = true
end
end
for i, x in next,
[Link]:GetDescendants() do
if x:IsA("Sound") and [Link] == false
then
[Link] = true
end
end
wait(0.2)
for i, x in next,
players:FindFirstChildOfClass("Backpack"):GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = false
end
end
for i, x in next,
[Link]:GetDescendants() do
if x:IsA("Sound") and [Link] == true
then
[Link] = false
end
end
wait(0.2)
until Loopglitch == false
if game:GetService("SoundService").RespectFilteringEnabled == true then

wait();

Notify({
Description = "Boombox glitched. Status: Client Sided";
Title = "Nameless Admin";
Duration = 5;

});
else
if game:GetService("SoundService").RespectFilteringEnabled == false then

wait();

Notify({
Description = "Boombox glitched. Status: FE";
Title = "Nameless Admin";
Duration = 5;

});
end
end
end)

[Link]({"unglitch", "unglitchboombox"}, {"unglitch <player>


(unglitchboombox)", "Unglitches the players boombox"}, function(...)
Loopglitch = false
wait()
if game:GetService("SoundService").RespectFilteringEnabled ==
true then

wait();

Notify({
Description = "Boombox unglitched. Status: Client Sided";
Title = "Nameless Admin";
Duration = 5;

});
else
if game:GetService("SoundService").RespectFilteringEnabled ==
false then
wait();

Notify({
Description = "Boombox unglitched. Status: FE";
Title = "Nameless Admin";
Duration = 5;

});
end
end
end)

[Link]({"unlooplbring", "unlooplegbring"}, {"unlooplbring <player>


(unlooplegbring)", "Stop the looplbring command"}, function()
loopbring = false
end)

[Link]({"unlooplvoid", "unlooplegvoid"}, {"unlooplvoid <player>


(unlooplegvoid)", "Stop the looplvoid command"}, function()
loopvoid = false
end)

[Link]({"unlooplkill", "unlooplegkill"},
{"unlooplkill <player> (unlooplegkill)", "Stop the looplkill command"}, function()
loopkill = false
end)

[Link]({"looplbring", "looplegbring"}, {"looplbring <player>


(looplegbring)", "Leg resize loop bring"}, function(...)
loopbring = true
Target = (...)

repeat wait(1)
if Target == "all" or Target == "others" then

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
print("Patched")
else

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
[Link] =
true
local Character = [Link]
local PlayerGui =
Player:waitForChild("PlayerGui")
local Backpack =
Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not
RightArm then
return
end
Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and
[Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and
[Link] or false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] =
Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()

[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link],
TRootPart, 0)
firetouchinterest([Link],
TRootPart, 1)
wait()

[Link] = CF
until flag
else
[Link]
=
[Link]
wait()
[Link]
=
[Link]
wait()
[Link]
= CF
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6
then
Character["Right
Arm"].RightGrip:Destroy()
else

Character["RightHand"].RightGrip:Destroy()

Character["RightHand"].RightGripAttachment:Destroy()
end

wait(4)
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
end
wait(0.8)
respawn()
until loopbring == false
end)

[Link]({"getmass"}, {"getmass <player>", "Get your mass"},


function(...)
target = getPlr(...)
local mass = [Link]
wait();

Notify({
Description = [Link] .. "'s mass is " .. mass;
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"dvoid", "dvoid"}, {"dvoid <player> (dvoid)", "Delay void"},


function(...)
Target = (...)

Players = game:GetService("Players")
local c = [Link]
[Link] = nil
[Link] = c
wait([Link] - 0.5)
local TPlayer = getPlr(Target)
TRootPart = [Link]
local Character = [Link]
local PlayerGui =
Player:WaitForChild("PlayerGui")
local Backpack =
Player:WaitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not
RightArm then
return
end
Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] =
Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()

[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link],
TRootPart, 0)
firetouchinterest([Link],
TRootPart, 1)
wait()
until flag
wait(0.2)
[Link] = [Link](0,-1000,0)
end
[Link] = [Link]
[Link] = "Humanoid"

[Link]["1"]:Destroy()
[Link] =
[Link]
[Link] = true
wait()
[Link] = false
[Link] =
"None"
end)
[Link]({"dbring", "delaybring"}, {"delaybring <player>
(dbring)", "Delay bring"}, function(...)
Target = (...)

local c = [Link]
[Link] = nil
[Link] = c
wait([Link] - 0.45)
[Link] = 1
local l = [Link]["1"]:Clone()
[Link] = [Link]
[Link] = "Humanoid"

[Link]["1"]:Destroy()
[Link] =
[Link]
[Link] = true
wait()
[Link] =
false

[Link] = "None"
local Character = [Link]
local PlayerGui =
Player:waitForChild("PlayerGui")
local Backpack =
Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid
and [Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not
RightArm then
return
end
Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and
[Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and
THumanoid and [Link] or false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()

[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()

[Link]:wait()
flag = true
end)
repeat

firetouchinterest([Link], TRootPart, 0)

firetouchinterest([Link], TRootPart, 1)
wait()

[Link] = CF
until flag
else

[Link] =
[Link]
wait()

[Link] =
[Link]
wait()

[Link] = CF
wait()
end
wait(.3)

[Link]:SetPrimaryPartCFrame(CF)
if [Link] ==
[Link].R6 then
Character["Right
Arm"].RightGrip:Destroy()
else

Character["RightHand"].RightGrip:Destroy()

Character["RightHand"].RightGripAttachment:Destroy()
end
end)

[Link]({"looplkill", "looplegkill"}, {"looplkill <player>


(looplegkill)", "Leg resize loop kill"}, function(...)
loopkill = true
Target = (...)

repeat wait()
if Target == "all" or Target == "others" then

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
print("Patched")
else

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
local function Kill()
if not getPlr(Target) then
end

repeat
game:FindService("RunService").Heartbeat:wait() until getPlr(Target).Character and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid") and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid").Health > 0
local Character
local Humanoid
local RootPart
local Tool
local Handle

local TPlayer = getPlr(Target)


local TCharacter = [Link]
local THumanoid
local TRootPart

if [Link] and [Link] and


[Link] == [Link] then
Character = [Link]
else
end
if Character:FindFirstChildOfClass("Humanoid")
then
Humanoid =
Character:FindFirstChildOfClass("Humanoid")
else
end
if Humanoid and [Link] then
RootPart = [Link]
else
end
if Character:FindFirstChildOfClass("Tool")
then
Tool =
Character:FindFirstChildOfClass("Tool")
elseif
[Link]:FindFirstChildOfClass("Tool") and Humanoid then
Tool =
[Link]:FindFirstChildOfClass("Tool")

Humanoid:EquipTool([Link]:FindFirstChildOfClass("Tool"))
else
end
if Tool and Tool:FindFirstChild("Handle") then
Handle = [Link]
else
end
--Target
if
TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid =
TCharacter:FindFirstChildOfClass("Humanoid")
else
return Message("Error","> Missing
Target Humanoid")
end
if [Link] then
TRootPart = [Link]
else
return Message("Error","> Missing
Target RootPart")
end

if [Link] then
return Message("Error","> Target is
seated")
end

local OldCFrame = [Link]

Humanoid:Destroy()
local NewHumanoid = Humanoid:Clone()
[Link] = Character
NewHumanoid:UnequipTools()
NewHumanoid:EquipTool(Tool)
[Link] = workspace

local Timer = [Link]()

repeat
if ([Link].p -
[Link].p).Magnitude < 500 then
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace([Link]):Inverse()
end
firetouchinterest(Handle,TRootPart,0)
firetouchinterest(Handle,TRootPart,1)

game:FindService("RunService").Heartbeat:wait()
until [Link] ~= Character or not TPlayer
or not TRootPart or [Link] <= 0 or [Link]() > Timer + .20
[Link] = nil
[Link] = 0
[Link]:wait(1)
repeat
game:FindService("RunService").Heartbeat:wait() until
[Link]:FindFirstChild("HumanoidRootPart")
[Link] =
OldCFrame
end

if not LoopKill then


Kill()
else
while LoopKill do
Kill()
end
end
end

until loopkill == false


end)

[Link]({"looplvoid", "looplegvoid"}, {"looplvoid <player>


(looplegvoid)", "Leg resize loop void"}, function(...)
loopvoid = true
Target = (...)
repeat wait(1)
[Link] = [Link](0,-642,0)

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and Character:FindFirstChildWhichIsA("Humanoid") or
false
local RootPart = Character and Humanoid and [Link] or false
local RightArm = Character and Character:FindFirstChild("Right Arm") or
Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end

Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end

local TPlayer = getPlr(Target)


local TCharacter = TPlayer and [Link]

local THumanoid = TCharacter and TCharacter:FindFirstChildWhichIsA("Humanoid") or


false
local TRootPart = TCharacter and THumanoid and [Link] or false
if not THumanoid or not TRootPart then
return
end

[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
XC = [Link].X
ZC = [Link].Z
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
end
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
until flag
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(1.4)
respawn()
until loopvoid == false
end)

[Link]({"lvoid", "legvoid"}, {"lvoid <player> (legvoid)", "Leg resize


void"}, function(...)
Target = (...)
[Link] = [Link](0,-
633,0)

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
local Character = [Link]
local PlayerGui =
Player:waitForChild("PlayerGui")
local Backpack =
Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not
RightArm then
return
end

Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and
[Link]

local THumanoid = TCharacter and


TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and
[Link] or false
if not THumanoid or not TRootPart then
return
end

[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] =
Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
XC = [Link].X
ZC = [Link].Z
if firetouchinterest then
local flag = false
[Link](function()

[Link]:wait()
flag = true
end)
end
repeat
firetouchinterest([Link],
TRootPart, 0)
firetouchinterest([Link],
TRootPart, 1)
wait()
until flag
[Link] =
[Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(0.2)
[Link] = [Link](0,-1000,0)
wait(2)
respawn()
end)

[Link]({"lbring", "legbring"}, {"lbring <player> (legbring)", "Leg


resize bring"}, function(...)
Target = (...)

if Target == "all" or Target == "others" then

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
print("Patched")
else

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
[Link] =
true
local Character = [Link]
local PlayerGui =
Player:waitForChild("PlayerGui")
local Backpack =
Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and
[Link] or false
local RightArm = Character and
Character:FindFirstChild("Right Arm") or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not
RightArm then
return
end
Humanoid:UnequipTools()
local MainTool =
Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not
MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and
[Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and
[Link] or false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] =
Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()

[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link],
TRootPart, 0)
firetouchinterest([Link],
TRootPart, 1)
wait()

[Link] = CF
until flag
wait()
end
wait(2)
respawn()
end
end)

[Link]({"lkill", "legkill"}, {"lkill <player> (legkill)", "Leg resize


kill"}, function(...)
Target = (...)

if Target == "all" or Target == "others" then

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
print("Patched")
else

loadstring(game:HttpGet('[Link]
roblox-scripts/main/Leg%20Resize'))()
local function Kill()
if not getPlr(Target) then
end

repeat
game:FindService("RunService").Heartbeat:wait() until getPlr(Target).Character and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid") and
getPlr(Target).Character:FindFirstChildOfClass("Humanoid").Health > 0
local Character
local Humanoid
local RootPart
local Tool
local Handle

local TPlayer = getPlr(Target)


local TCharacter = [Link]
local THumanoid
local TRootPart

if [Link] and [Link] and


[Link] == [Link] then
Character = [Link]
else
end
if Character:FindFirstChildOfClass("Humanoid")
then
Humanoid =
Character:FindFirstChildOfClass("Humanoid")
else
end
if Humanoid and [Link] then
RootPart = [Link]
else
end
if Character:FindFirstChildOfClass("Tool")
then
Tool =
Character:FindFirstChildOfClass("Tool")
elseif
[Link]:FindFirstChildOfClass("Tool") and Humanoid then
Tool =
[Link]:FindFirstChildOfClass("Tool")

Humanoid:EquipTool([Link]:FindFirstChildOfClass("Tool"))
else
end
if Tool and Tool:FindFirstChild("Handle") then
Handle = [Link]
else
end

--Target
if
TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid =
TCharacter:FindFirstChildOfClass("Humanoid")
else
return Message("Error","> Missing
Target Humanoid")
end
if [Link] then
TRootPart = [Link]
else
return Message("Error","> Missing
Target RootPart")
end

if [Link] then
return Message("Error","> Target is
seated")
end

local OldCFrame = [Link]

Humanoid:Destroy()
local NewHumanoid = Humanoid:Clone()
[Link] = Character
NewHumanoid:UnequipTools()
NewHumanoid:EquipTool(Tool)
[Link] = workspace
local Timer = [Link]()

repeat
if ([Link].p -
[Link].p).Magnitude < 500 then
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace([Link]):Inverse()
end
firetouchinterest(Handle,TRootPart,0)
firetouchinterest(Handle,TRootPart,1)

game:FindService("RunService").Heartbeat:wait()
until [Link] ~= Character or not TPlayer
or not TRootPart or [Link] <= 0 or [Link]() > Timer + .20
[Link] = nil
[Link] = 0
[Link]:wait(1)
repeat
game:FindService("RunService").Heartbeat:wait() until
[Link]:FindFirstChild("HumanoidRootPart")
[Link] =
OldCFrame
end

if not LoopKill then


Kill()
else
while LoopKill do
Kill()
end
end
end
end)

[Link]({"loopvoid", "loopv"}, {"loopvoid <player> (loopv)", "Voids the player"},


function(...)
Target = (...)

Loopvoid = true

repeat wait()
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and Character:FindFirstChildWhichIsA("Humanoid") or
false
local RootPart = Character and Humanoid and [Link] or false
local RightArm = Character and Character:FindFirstChild("Right Arm") or
Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end

Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end

local TPlayer = getPlr(Target)


local TCharacter = TPlayer and [Link]

local THumanoid = TCharacter and TCharacter:FindFirstChildWhichIsA("Humanoid") or


false
local TRootPart = TCharacter and THumanoid and [Link] or false
if not THumanoid or not TRootPart then
return
end

[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
XC = [Link].X
ZC = [Link].Z
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
[Link] = [Link](XC,-99,ZC)
until flag
wait(0.2)
[Link] = [Link](0,-1000,0)
end
wait(2)
respawn()
until Loopvoid == false
end)

[Link]({"loopbring"}, {"loopbring <player>", "Loopbrings a player"},


function(...)

local Username = (...)

if Username == "all" or Username == "others" then


Loopbring = true
repeat wait()
wait(0.3)
print("Patched")
until Loopbring == false
else
Loopbring = true
repeat wait()
wait(0.15)
local Target = Username
local Character = [Link]
local PlayerGui = Player:waitForChild("PlayerGui")
local Backpack = Player:waitForChild("Backpack")
local Humanoid = Character and
Character:FindFirstChildWhichIsA("Humanoid") or false
local RootPart = Character and Humanoid and [Link] or false
local RightArm = Character and Character:FindFirstChild("Right Arm")
or Character:FindFirstChild("RightHand")
if not Humanoid or not RootPart or not RightArm then
return
end
Humanoid:UnequipTools()
local MainTool = Backpack:FindFirstChildWhichIsA("Tool") or false
if not MainTool or not MainTool:FindFirstChild("Handle") then
return
end
local TPlayer = getPlr(Target)
local TCharacter = TPlayer and [Link]
local THumanoid = TCharacter and
TCharacter:FindFirstChildWhichIsA("Humanoid") or false
local TRootPart = TCharacter and THumanoid and [Link] or
false
if not THumanoid or not TRootPart then
return
end
[Link] = "DAttach"
local l = Character["DAttach"]:Clone()
[Link] = Character
[Link] = "Humanoid"
wait()
Character["DAttach"]:Destroy()
[Link] = Character
[Link] = true
wait()
[Link] = false
[Link]:EquipTool(MainTool)
wait()
CF = [Link]
if firetouchinterest then
local flag = false
[Link](function()
[Link]:wait()
flag = true
end)
repeat
firetouchinterest([Link], TRootPart, 0)
firetouchinterest([Link], TRootPart, 1)
wait()
[Link] = CF
until flag
else
[Link] =
[Link]
wait()
[Link] =
[Link]
wait()
[Link] = CF
wait()
end
wait(.3)
[Link]:SetPrimaryPartCFrame(CF)
if [Link] == [Link].R6 then
Character["Right Arm"].RightGrip:Destroy()
else
Character["RightHand"].RightGrip:Destroy()
Character["RightHand"].RightGripAttachment:Destroy()
end

wait(4)
CF = [Link]

[Link]:wait(1):waitForChild("HumanoidRootPart").CFrame = CF
wait(2)
until Loopbring == false
end
end)

[Link]({"unloopbring"}, {"unloopbring", "Stops loopbringing a player"},


function()
Loopbring = false
end)

[Link]({"unloopvoid", "loopv"}, {"unloopvoid (unloopv)", "Unloopingly


voiding a player"}, function()
Loopvoid = false
end)

[Link]({"looptornado"}, {"looptornado <player>", "Loop tornados a player


endlessly"}, function(...)
Username = (...)
Looptornado = true
repeat wait()
local target = getPlr(Username)
local THumanoidPart
local plrtorso
local TargetCharacter = [Link]
if TargetCharacter:FindFirstChild("Torso") then
plrtorso = [Link]
elseif TargetCharacter:FindFirstChild("UpperTorso") then
plrtorso = [Link]
end
local old = getChar().[Link]
local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")
if target == nil or tool == nil then return end
local attWeld = attachTool(tool,[Link](0,0,0))
attachTool(tool,[Link](0,0,0.2) * [Link]([Link](-
90),0,0))
[Link] = [Link]
wait(0.07)
[Link] = [Link](0, -7, -3)
firetouchinterest([Link],[Link],0)
firetouchinterest([Link],[Link],1)
local Spin = [Link]("BodyAngularVelocity")
[Link] = "Spinning"
[Link] = getRoot([Link])
[Link] = [Link](0, [Link], 0)
[Link] = [Link](0,40,0)
until Looptornado == false
end)

[Link]({"unlooptornado"}, {"unlooptornado", "Unloop tornadoes a


player endlessly"}, function()
Looptornado = false
end)

[Link]({"loopcuff", "loopjail"}, {"loopcuff <player>


(loopjail)", "Loop cuffs a player endlessly"}, function(...)
Username = (...)
Loopcuff = true
repeat wait()
wait(0.15)
local target = getPlr(Username)
local THumanoidPart
local plrtorso
local TargetCharacter = [Link]
if TargetCharacter:FindFirstChild("Torso") then
plrtorso = [Link]
elseif TargetCharacter:FindFirstChild("UpperTorso") then
plrtorso = [Link]
end
local old = getChar().[Link]
local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")
if target == nil or tool == nil then return end
local attWeld = attachTool(tool,[Link](0,0,0))
attachTool(tool,[Link](0,0,0.2) * [Link]([Link](-
90),0,0))
[Link] = [Link]
wait(0.07)
[Link] = [Link](0, -7, -3)
firetouchinterest([Link],[Link],0)
firetouchinterest([Link],[Link],1)
until Loopcuff == false
end)

[Link]({"unloopcuff", "unloopjail"}, {"unloopcuff


<player> (unloopjail)", "Unloop cuffs a player endlessly"}, function(...)
Loopcuff = false
end)

[Link]({"loopstand"}, {"loopstand <player>", "Loop


stands a player endlessly"}, function(...)
Username = (...)
Loopstand = true
repeat wait()
wait(0.15)

local target = getPlr(Username)


local THumanoidPart
local plrtorso
local TargetCharacter = [Link]
if TargetCharacter:FindFirstChild("Torso") then
plrtorso = [Link]
elseif TargetCharacter:FindFirstChild("UpperTorso") then
plrtorso = [Link]
end
local old = getChar().[Link]
local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")
if target == nil or tool == nil then return end
local attWeld = attachTool(tool,[Link](0,0,0))
attachTool(tool,[Link](0,0,0.2) * [Link]([Link](-
90),0,0))
[Link] = [Link]
wait(0.07)
[Link] = [Link](0, 3, -1)
firetouchinterest([Link],[Link],0)
firetouchinterest([Link],[Link],1)
wait(1.3)
until Loopstand == false
end)

[Link]({"unloopstand"}, {"unloopstand",
"Unloop stands a player endlessly"}, function(...)
Loopstand = false
end)

[Link]({"loopbanish", "looppunish", "loopjail"}, {"loopbanish <player>


(loopbanish, loopjail)", "Banishes a player endlessly"}, function(...)
Username = (...)
Loopbanish = true
repeat wait()
user = getPlr(Username)
plr = [Link]
Target = plr
[Link] = 1
local l = [Link]["1"]:Clone()
[Link] = [Link]
[Link] = "Humanoid"
[Link]()
[Link]["1"]:Destroy()
[Link] = [Link]
[Link] = true
[Link]()
[Link] = false
for i, v in pairs(game:FindService
"Players".[Link]:GetChildren()) do
[Link]:EquipTool(v)
end
[Link]()
[Link] =
Players[Target].[Link]
[Link]()
[Link] =
Players[Target].[Link]
[Link](0.7)
[Link] =
[Link]([Link](-100000, 1000000000000000000000, -100000))
[Link]()
[Link](4)
[Link] = 0
until Loopbanish == false
end)

[Link]({"unloopbanish", "unloopjail", "unlooppunish"}, {"unloopbanish


(unloopjail, unlooppunish)", "Stops loopingly punishing a player"}, function()
Loopbanish = false
end)

[Link]({"unloopfling"}, {"unloopfling", "Stops loop flinging a player"},


function(...)
Loopvoid = false
end)

[Link]({"loopkill"}, {"loopkill <player>", "Loop kills a player"},


function(...)
local Username = (...)

if Username == "all" or Username == "others" then


Loopkill = true
repeat wait()
local player_table = game:GetService('Players'):GetPlayers()
local toolsInBackpack = 0
local toolsEquipped = 0
local players = {}
local tools = {}

for i,v in pairs([Link]:GetChildren()) do


toolsInBackpack = toolsInBackpack + 1
end
for i,v in pairs([Link]:GetChildren()) do
if [Link] == "Tool" then
toolsEquipped = toolsEquipped + 1
end
end
local total_tools = toolsInBackpack + toolsEquipped
print(#player_table.." players")

for i,v in next, player_table do


if [Link] ~= true and v ~=
game:GetService('Players').LocalPlayer and [Link] ~= 0 then
[Link](players, v)
end
end

local newHum =
[Link]:Clone()
[Link] = [Link]
[Link]:Destroy()
newHum:ChangeState(15)
for i,v in next,
[Link]:GetChildren() do
if v:IsA'Tool' then
[Link] =
[Link]
end
end
wait(.1)
for i,v in next,
[Link]:GetChildren() do
if v:IsA'Tool' then
[Link](tools, v)
end
end
local currentTargets = {}
for i, tool in next, tools do
[Link] = true
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace(players[i].[Link]):Inverse()
end
local players = {}
[Link]:Wait()
getChar():WaitForChild("HumanoidRootPart").CFrame = old
wait(1)
until Loopkill == false
else

Loopkill = true
repeat wait()
local function Kill()
if not getPlr(Username) then
end

repeat
game:FindService("RunService").Heartbeat:wait() until getPlr(Username).Character
and getPlr(Username).Character:FindFirstChildOfClass("Humanoid") and
getPlr(Username).Character:FindFirstChildOfClass("Humanoid").Health > 0
local Character
local Humanoid
local RootPart
local Tool
local Handle

local TPlayer = getPlr(Username)


local TCharacter = [Link]
local THumanoid
local TRootPart

if [Link] and [Link] and


[Link] == [Link] then
Character = [Link]
else
end
if Character:FindFirstChildOfClass("Humanoid") then
Humanoid =
Character:FindFirstChildOfClass("Humanoid")
else
end
if Humanoid and [Link] then
RootPart = [Link]
else
end
if Character:FindFirstChildOfClass("Tool") then
Tool = Character:FindFirstChildOfClass("Tool")
elseif [Link]:FindFirstChildOfClass("Tool")
and Humanoid then
Tool =
[Link]:FindFirstChildOfClass("Tool")

Humanoid:EquipTool([Link]:FindFirstChildOfClass("Tool"))
else
end
if Tool and Tool:FindFirstChild("Handle") then
Handle = [Link]
else
end

--Target
if TCharacter:FindFirstChildOfClass("Humanoid") then
THumanoid =
TCharacter:FindFirstChildOfClass("Humanoid")
else
end
if [Link] then
TRootPart = [Link]
else
end

if [Link] then
end

local OldCFrame = [Link]

Humanoid:Destroy()
local NewHumanoid = Humanoid:Clone()
[Link] = Character
NewHumanoid:UnequipTools()
NewHumanoid:EquipTool(Tool)
[Link] = workspace

local Timer = [Link]()

repeat
if ([Link].p -
[Link].p).Magnitude < 500 then
[Link] = [Link]()
[Link] =
[Link]:ToObjectSpace([Link]):Inverse()
end
firetouchinterest(Handle,TRootPart,0)
firetouchinterest(Handle,TRootPart,1)

game:FindService("RunService").Heartbeat:wait()
until [Link] ~= Character or not TPlayer or not
TRootPart or [Link] <= 0 or [Link]() > Timer + .20
[Link] = nil
[Link] = 0
[Link]:wait(1)
repeat
game:FindService("RunService").Heartbeat:wait() until
[Link]:FindFirstChild("HumanoidRootPart")
[Link] = OldCFrame
end

if not LoopKill then


Kill()
else
while LoopKill do
Kill()
end
end
until Loopkill == false
end
end)

[Link]({"unloopkill"}, {"unloopkill", "Stops loop killing a


player"}, function()
Loopkill = false
end)

local netlagtab = {}

[Link]({"netlag"}, {"netlag <player>", "If the person is using


netless, or any reanimation it glitches them"}, function(...)
Username = (...)
target = getPlr(Username)

[Link](netlagtab,
game:GetService("RunService").Heartbeat:Connect(function()
for i,v in pairs([Link]:GetDescendants()) do
if v:IsA("BasePart") then
sethiddenproperty(v, "NetworkIsSleeping", true)
end
end
end))
end)

[Link]({"unnetlag"}, {"unnetlag", "Stops netlegging"},


function()
for i,v in pairs(netlagtab) do
v:Disconnect()
end
end)

[Link]({"noprompt", "nopurchaseprompts"}, {"noprompt


(nopurchaseprompts)", "remove the stupid purchase prompt"}, function()

wait();

Notify({
Description = "Purchase prompts have been disabled";
Title = "Nameless Admin";
Duration = 5;

});
[Link] = false
end)

[Link]({"prompt", "purchaseprompts"}, {"prompt


(purchaseprompts)", "allows the stupid purchase prompt"}, function()
wait();

Notify({
Description = "Purchase prompts have been enabled";
Title = "Nameless Admin";
Duration = 5;

});
[Link] = true
end)

[Link]({"nameless"}, {"nameless",
"Makes your hats visible but not your name or your body"}, function()
loadstring(game:HttpGet("[Link]
main/nameless"))()
end)

[Link]({"wallwalk"}, {"wallwalk", "Makes you walk on


walls"}, function()
loadstring(game:HttpGet("[Link]
end)

[Link]({"size"}, {"size", "Makes you big"}, function()


local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = [Link]
local Humanoid = Character:FindFirstChildOfClass("Humanoid")

function rm()
for i,v in pairs(Character:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] == "Handle" or [Link] == "Head" then
if [Link]:FindFirstChild("OriginalSize") then
[Link]:Destroy()
end
else
for i,cav in pairs(v:GetDescendants()) do
if cav:IsA("Attachment") then
if cav:FindFirstChild("OriginalPosition") then
[Link]:Destroy()
end
end
end
v:FindFirstChild("OriginalSize"):Destroy()
if v:FindFirstChild("AvatarPartScaleType") then
v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end
end
end
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
wait(1)

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
wait(1)

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
wait(1)

rm()
wait(0.5)
Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
wait(1)

rm()
wait(0.5)
Humanoid:FindFirstChild("HeadScale"):Destroy()
wait(1)
end)

[Link]({"holdparts", "hp", "grabparts"}, {"holdparts (hpr, grabparts)", "Holds


any unanchored part press ctrl + click"}, function()

wait();

Notify({
Description = "Hold parts loaded, ctrl + click on a part";
Title = "Nameless Admin";
Duration = 5;

});
-- made by joshclark756#7155
local mouse = [Link]:GetMouse()
local uis = game:GetService("UserInputService")

-- Connect
mouse.Button1Down:Connect(function()
-- Check for Target & Left Shift
if [Link] and uis:IsKeyDown([Link]) then
local npc = [Link]
local PlayerCharacter = game:GetService("Players").[Link]
local PlayerRootPart = [Link]
local A0 = [Link]("Attachment")
local AP = [Link]("AlignPosition")
local AO = [Link]("AlignOrientation")
local A1 = [Link]("Attachment")
for _, v in pairs(npc:GetDescendants()) do
if v:IsA("BasePart") and [Link] ~= "HumanoidRootPart" then
game:GetService("RunService").Stepped:Connect(function()
[Link] = false
end)
end
end

for _, v in pairs(PlayerCharacter:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] == "HumanoidRootPart" or [Link] == "UpperTorso" or [Link] == "Head" then
end
end
end
[Link] = [Link]+[Link](0, 0, 0)
[Link] = npc
[Link] = npc
[Link] = npc
[Link] = 200
[Link] = [Link]
[Link] = [Link]
[Link] = 200
AP.Attachment0 = A0
AP.Attachment1 = A1
AO.Attachment1 = A1
AO.Attachment0 = A0
[Link] = PlayerCharacter:FindFirstChild("Right Arm")
end
end)
wait(0.2)
-- made by joshclark756#7155
local mouse = [Link]:GetMouse()
local uis = game:GetService("UserInputService")

-- Connect
mouse.Button1Down:Connect(function()
-- Check for Target & Left Shift
if [Link] and uis:IsKeyDown([Link]) then
local npc = [Link]
local PlayerCharacter = game:GetService("Players").[Link]
local PlayerRootPart = [Link]
local A0 = [Link]("Attachment")
local AP = [Link]("AlignPosition")
local AO = [Link]("AlignOrientation")
local A1 = [Link]("Attachment")
for _, v in pairs(npc:GetDescendants()) do
if v:IsA("BasePart") and [Link] ~= "HumanoidRootPart" then
game:GetService("RunService").Stepped:Connect(function()
[Link] = false
end)
end
end

for _, v in pairs(PlayerCharacter:GetDescendants()) do
if v:IsA("BasePart") then
if [Link] == "HumanoidRootPart" or [Link] == "UpperTorso" or [Link] == "Head" then
end
end
end
[Link] = [Link]+[Link](0, 0, 0)
[Link] = npc
[Link] = npc
[Link] = npc
[Link] = 200
[Link] = [Link]
[Link] = [Link]
[Link] = 200
AP.Attachment0 = A0
AP.Attachment1 = A1
AO.Attachment1 = A1
AO.Attachment0 = A0
[Link] = [Link]
end
end)
end)

local hiddenGUIS = {}
[Link]({"hideguis"}, {"hideguis", "Hides guis"}, function()
function FindInTable(tbl,val)
if tbl == nil then return false end
for _,v in pairs(tbl) do
if v == val then return true end
end
return false
end

for i,v in
pairs([Link]:FindFirstChildWhichIsA("PlayerGui"):GetDescendants()
) do
if (v:IsA("Frame") or v:IsA("ImageLabel") or v:IsA("ScrollingFrame"))
and [Link] then
[Link] = false
if not FindInTable(hiddenGUIS,v) then
[Link](hiddenGUIS,v)
end
end
end
end)

[Link]({"showguis"}, {"showguis", "Show guis that were hidden using hideguis"},


function()
for i,v in pairs(hiddenGUIS) do
[Link] = true
end
hiddenGUIS = {}
end)

[Link]({"spin"}, {"spin {amount}", "Makes your character spin as fast as you


want"}, function(...)

wait();

Notify({
Description = "Spinning...";
Title = "Nameless Admin";
Duration = 5;

});
function getRoot(char)
local rootPart = char:FindFirstChild('HumanoidRootPart') or
char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
return rootPart
end

local spinSpeed = (...)


for i,v in
pairs(getRoot([Link]):GetChildren()) do
if [Link] == "Spinning" then
v:Destroy()
end
end
local Spin = [Link]("BodyAngularVelocity")
[Link] = "Spinning"
[Link] = getRoot([Link])
[Link] = [Link](0, [Link], 0)
[Link] = [Link](0,spinSpeed,0)
end)

[Link]({"unspin"}, {"unspin", "Makes your character unspin"}, function()

wait();

Notify({
Description = "Spin disabled";
Title = "Nameless Admin";
Duration = 5;

});
function getRoot(char)
local rootPart = char:FindFirstChild('HumanoidRootPart') or
char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
return rootPart
end

for i,v in pairs(getRoot([Link]):GetChildren())


do
if [Link] == "Spinning" then
v:Destroy()
end
end
end)

[Link]({"notepad"}, {"notepad", "notepad for making scripts / etc"}, function()


loadstring(game:HttpGet("[Link]
NamelessAdmin/main/Notepad"))()
end)

[Link]({"rc7"}, {"rc7", "RC7 Internal UI"}, function()


loadstring(game:HttpGet("[Link]
main/rc7"))()
end)

[Link]({"scriptviewer", "viewscripts"}, {"scriptviewer (viewscripts)", "Can view


scripts made by 0866"}, function()
loadstring(game:HttpGet("[Link] true))()
end)

[Link]({"hidename", "hname"}, {"hidename", "Hides your name only works on


billboard uis"}, function()
for _,item in pairs(workspace[[Link]].Head:GetChildren())
do
if item:IsA('BillboardGui') then
item:Remove()
end
end
wait(0.2)
wait();

Notify({
Description = "Name has been hidden, this only works on billboard guis /
custom name fonts";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"hydroxide"}, {"hydroxide", "executes hydroxide"}, function()


local owner = "Upbolt"
local branch = "revision"

local function webImport(file)


return loadstring(game:HttpGetAsync(("[Link]
Hydroxide/%s/%[Link]"):format(owner, branch, file)), file .. '.lua')()
end

webImport("init")
webImport("ui/main")
end)

[Link]({"remotespy", "simplespy"}, {"remotespy (simplespy)", "executes simplespy


v3"}, function()
loadstring(game:HttpGet("[Link]
master/[Link]"))()
end)

[Link]({"gravity", "grav"}, {"gravity <amount> (grav)", "sets game gravity to


whatever u want"}, function(...)
[Link] = (...)
end)

[Link]({"uanograv", "unanchorednograv", "unanchorednogravity"}, {"uanograv


(unanchorednograv)", "Makes unanchored parts have 0 gravity"}, function()
wait();

Notify({
Description = "Made unanchored parts have no gravity";
Title = "Nameless Admin";
Duration = 5;

});
spawn(function()
while true do
[Link] =
[Link]([Link],[Link])*[Link]
[Link] =
[Link]([Link],[Link])*[Link]
game:GetService("RunService").Stepped:wait()
end
end)
local function zeroGrav(part)
if part:FindFirstChild("BodyForce") then return end
local temp = [Link]("BodyForce")
[Link] = part:GetMass() * [Link](0,[Link],0)
[Link] = part
end

for i,v in ipairs(workspace:GetDescendants()) do


if v:IsA("Part") and [Link] == false then
if not (v:IsDescendantOf([Link])) then
zeroGrav(v)
end
end
end

[Link]:Connect(function(part)
if part:IsA("Part") and [Link] == false then
if not (part:IsDescendantOf([Link])) then
zeroGrav(part)
end
end
end)
end)

[Link]({"funfact"}, {"funfact", "Says a random fun fact"}, function()


local GetURL = game:HttpGet("[Link]
language=en")
local HTTP = game:GetService("HttpService"):JSONDecode(GetURL)

game:GetService("ReplicatedStorage").[Link]:
FireServer([Link],"All")
end)

[Link]({"fireclickdetectors", "fcd"}, {"fireclickdetectors (fcd)", "Fires every


click detector that's in workspace"}, function()
local ccamount = 0

for i,v in pairs(game:GetDescendants()) do


if v:IsA("ClickDetector") then
ccamount = ccamount + 1
fireclickdetector(v)
end
end

wait();

Notify({
Description = "Fired " .. ccamount .. " amount of click detectors";
Title = "Nameless Admin";
Duration = 7;

});
end)

[Link]({"tweengotocampos", "tweentocampos", "tweentcp"}, {"tweengotocampos


(tweentcp)", "Another version of goto camera position but bypassing more anti-
cheats"}, function(...)
local player = [Link]
local UserInputService = game:GetService("UserInputService")
local TweenService = game:GetService("TweenService")

-- function to teleport the player to the camera's position using tweening


local function teleportPlayer()
local character = [Link] or [Link]:wait(1)
local camera = [Link]
local cameraPosition = [Link]

-- create a new tween that moves the player's primary part to the camera
position
local tween = TweenService:Create([Link], [Link](2), {
CFrame = [Link](cameraPosition)
})

tween:Play()
end

local camera = [Link]


repeat wait() until [Link] ~= [Link]()

teleportPlayer()

end)

[Link]({"gotopart", "topart"}, {"gotopart {partname} (topart)", "Makes you


teleport to a part you want"}, function(...)
local parts = [Link]:GetChildren()
local targetParts = {}
for i, child in pairs(parts) do
if [Link] == (...) then
[Link](targetParts, child)
end
end

local index = 1
game:GetService("RunService").Stepped:Connect(function()
if targetParts[index] then
[Link]:MoveTo(targetParts[index].Position)
index = index + 1
wait(0.4)
end
end)
end)

[Link]({"swim"}, {"swim {speed}", "Swim in the air"}, function(...)


speaker = [Link]
[Link] = 0

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],false
)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],false)
[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],
false)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link],
false)

[Link]:SetStateEnabled([Link],false)

[Link]:SetStateEnabled([Link]
,false)

[Link]:SetStateEnabled([Link],false)
[Link]:ChangeState([Link])
[Link] = (...)
if (...) == nil then
[Link] = 16
end
end)

[Link]({"unswim"}, {"unswim", "Stops the swim script"}, function(...)


speaker = [Link]
[Link] = 168

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],
true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link],true)
[Link]:SetStateEnabled([Link],
true)

[Link]:SetStateEnabled([Link],true)

[Link]:SetStateEnabled([Link]
,true)

[Link]:SetStateEnabled([Link],true)

[Link]:ChangeState([Link])
[Link] = 16
end)

[Link]({"esppart", "partesp"}, {"esppart {partname} (partesp)", "Makes you be


able to see any part"}, function(...)
local parts = [Link]:GetChildren()
local targetParts = {}
for i, child in pairs(parts) do
if [Link] == (...) then
[Link](targetParts, child)
end
end

for i, part in ipairs(targetParts) do


-- Create a new BoxHandleAdornment
local adornment = [Link]("BoxHandleAdornment")
[Link] = part
[Link] = 5
[Link] = true
[Link] = 0.5
adornment.Color3 = [Link](1, 0, 0)

[Link] = [Link]
end
end)

[Link]({"unesppart", "unpartesp"}, {"unesppart (unpartesp)", "Removes the esp


from the parts"}, function(...)
local parts = [Link]:GetChildren()

for i, part in ipairs(parts) do


if part:IsA("BoxHandleAdornment") then
part:Destroy()
end
end
end)

[Link]({"viewpart", "viewp"}, {"viewpart {partname} (vpart)", "Views a part"},


function(...)
local parts = [Link]:GetChildren()
local partList = {}
for i, child in pairs(parts) do
if [Link] == (...) then
[Link](partList, child)
end
end

local camera = [Link]


[Link] = "Scriptable"

local index = 1
while true do
[Link] = partList[index].CFrame
index = index + 1
if index > #partList then
index = 1
end
wait(0.7)
end
end)

[Link]({"unviewpart", "unviewp"}, {"unviewpart (unviewp)", "Unviews the part"},


function()
local camera = [Link]
[Link] = "Custom"
wait(0.2)
local workspace = [Link]
Players = game:GetService("Players")
local speaker = [Link]
[Link]:remove()
wait(.1)
[Link] =
[Link]:FindFirstChildWhichIsA('Humanoid')
[Link] = "Custom"
[Link] = 0.5
[Link] = 400
[Link] = "Classic"
[Link] = false
end)

[Link]({"console"}, {"console", "Opens developer console"}, function()


[Link]:SetCore("DevConsoleVisible", true)
end)

loophitbox = false
[Link]({"hitbox", "hbox"}, {"hitbox {amount}", "Makes everyones hitbox as much as
you want"}, function(h, d)

if loophitbox == true then


loophitbox = false
end
Username = h
Plr = getPlr(h)

wait();

Notify({
Description = "Hitbox changed";
Title = "Nameless Admin";
Duration = 5;

});
_G.HeadSize = d
_G.Disabled = true

if _G.HeadSize == nil then


_G.HeadSize = 10
end

loophitbox = true

if Username == "all" or Username == "others" then


game:GetService("RunService").Stepped:Connect(function()
if loophitbox then
for i,v in next, game:GetService('Players'):GetPlayers() do
if [Link] ~= game:GetService('Players').[Link] then
[Link] =
[Link](_G.HeadSize,_G.HeadSize,_G.HeadSize)
[Link] = 0.9
[Link] = [Link]("Really
black")
[Link] = "Neon"
[Link] = false
end
end
end
end)
else
game:GetService("RunService").Stepped:Connect(function()
if loophitbox then
[Link] =
[Link](_G.HeadSize,_G.HeadSize,_G.HeadSize)
[Link] = 0.7
[Link] = [Link]("Really
black")
[Link] = "Neon"
[Link] = false

end
end)
end
end)

[Link]({"unhitbox", "unhbox"}, {"unhitbox", "Disables hitbox"}, function(h)


Username = h
Plr = getPlr(h)

_G.HeadSize = 5
_G.Disabled = false

loophitbox = false

if Username == "all" or Username == "others" then


for i,v in next, game:GetService('Players'):GetPlayers() do
if [Link] ~= game:GetService('Players').[Link] then
[Link] =
[Link](_G.HeadSize,_G.HeadSize,_G.HeadSize)
[Link] = 1
[Link] = [Link]("Really
black")
[Link] = "Neon"
[Link] = false
end
end
else
[Link] =
[Link](_G.HeadSize,_G.HeadSize,_G.HeadSize)
[Link] = 1
[Link] =
[Link]("Really black")
[Link] = "Neon"
[Link] = false
end
end)

[Link]({"breakcars", "bcars"}, {"breakcars (bcars)", "Breaks any car"},


function()

wait();

Notify({
Description = "Car breaker loaded, sit on a vehicle need to be the driver";
Title = "Nameless Admin";
Duration = 5;

});
local UserInputService = game:GetService("UserInputService")
local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
local Folder = [Link]("Folder", game:GetService("Workspace"))
local Part = [Link]("Part", Folder)
local Attachment1 = [Link]("Attachment", Part)
[Link] = true
[Link] = false
[Link] = 1
local Updated = [Link] + [Link](0, 5, 0)
local NetworkAccess = [Link](function()
settings().[Link] = false
while game:GetService("RunService").RenderStepped:Wait() do
for _, Players in next, game:GetService("Players"):GetPlayers() do
if Players ~= game:GetService("Players").LocalPlayer then
[Link] = 0
sethiddenproperty(Players, "SimulationRadius", 0)
end
end
game:GetService("Players").[Link] =
[Link]([Link],[Link])
setsimulationradius([Link])
end
end)
[Link](NetworkAccess)
local function ForcePart(v)
if v:IsA("Part") and [Link] == false and
[Link]:FindFirstChild("Humanoid") == nil and [Link]:FindFirstChild("Head") ==
nil and [Link] ~= "Handle" then
[Link] = v
for _, x in next, v:GetChildren() do
if x:IsA("BodyAngularVelocity") or x:IsA("BodyForce") or
x:IsA("BodyGyro") or x:IsA("BodyPosition") or x:IsA("BodyThrust") or
x:IsA("BodyVelocity") or x:IsA("RocketPropulsion") then
x:Destroy()
end
end
if v:FindFirstChild("Attachment") then
v:FindFirstChild("Attachment"):Destroy()
end
if v:FindFirstChild("AlignPosition") then
v:FindFirstChild("AlignPosition"):Destroy()
end
if v:FindFirstChild("Torque") then
v:FindFirstChild("Torque"):Destroy()
end
[Link] = false
local Torque = [Link]("Torque", v)
[Link] = [Link](100000, 100000, 100000)
local AlignPosition = [Link]("AlignPosition", v)
local Attachment2 = [Link]("Attachment", v)
Torque.Attachment0 = Attachment2
[Link] = 9999999999999999
[Link] = [Link]
[Link] = 200
AlignPosition.Attachment0 = Attachment2
AlignPosition.Attachment1 = Attachment1
end
end
for _, v in next, game:GetService("Workspace"):GetDescendants() do
ForcePart(v)
end
game:GetService("Workspace").DescendantAdded:Connect(function(v)
ForcePart(v)
end)
[Link]:Connect(function(Key, Chat)
if [Link] == [Link].E and not Chat then
Updated = [Link] + [Link](0, 5, 0)
end
end)
spawn(function()
while game:GetService("RunService").RenderStepped:Wait() do
[Link] = Updated
end
end)
end)

[Link]({"firetouchinterests", "fti"}, {"firetouchinterests (fti)", "Fires every


Touch Interest that's in workspace"}, function()
local ftiamount = 0

for _,v in pairs(workspace:GetDescendants()) do


if v:IsA("TouchTransmitter") then
ftiamount = ftiamount + 1
firetouchinterest([Link],
[Link], 0) --0 is touch
wait()
firetouchinterest([Link],
[Link], 1) -- 1 is untouch
end
end

wait();
Notify({
Description = "Fired " .. ftiamount .. " amount of touch interests";
Title = "Nameless Admin";
Duration = 7;

});
end)

[Link]({"infjump", "infinitejump"}, {"infjump (infinitejump)", "Makes you be able


to jump infinitly"}, function()

wait();

Notify({
Description = "Infinite jump enabled";
Title = "Nameless Admin";
Duration = 5;

});
_G.infinjump = true

local Player = game:GetService("Players").LocalPlayer


local Mouse = Player:GetMouse()
[Link]:connect(function(k)
if _G.infinjump then
if k:byte() == 32 then
Humanoid =
game:GetService("Players").[Link]:FindFirstChildOfClass("Humanoid")
Humanoid:ChangeState("Jumping")
wait(0.1)
Humanoid:ChangeState("Seated")
end
end
end)
end)

[Link]({"uninfjump", "uninfinitejump"}, {"uninfjump (uninfinitejump)", "Makes you


NOT be able to infinitly jump"}, function()

wait();

Notify({
Description = "Infinite jump disabled";
Title = "Nameless Admin";
Duration = 5;

});
_G.infinjump = false

local Player = game:GetService("Players").LocalPlayer


local Mouse = Player:GetMouse()
[Link]:connect(function(k)
if _G.infinjump then
if k:byte() == 32 then
Humanoid =
game:GetService("Players").[Link]:FindFirstChildOfClass("Humanoid")
Humanoid:ChangeState("Jumping")
wait(0.1)
Humanoid:ChangeState("Seated")
end
end
end)
end)

[Link]({"xray", "xrayon"}, {"xray (xrayon)", "Makes you be able to see through


walls"}, function()

wait();

Notify({
Description = "Xray enabled";
Title = "Nameless Admin";
Duration = 5;

});
transparent = true
x(transparent)
end)

[Link]({"unxray", "xrayoff"}, {"unxray (xrayoff)", "Makes you not be able to see


through walls"}, function()

wait();

Notify({
Description = "Xray disabled";
Title = "Nameless Admin";
Duration = 5;

});
transparent = false
x(transparent)
end)

[Link]({"pastebinscraper", "pastebinscrape"}, {"pastebinscraper


(pastebinscrape)", "Scrapes paste bin posts"}, function()

wait();

Notify({
Description = "Pastebin scraper loaded";
Title = "Nameless Admin";
Duration = 5;

});

loadstring(game:HttpGet("[Link]
main/PastebinScraperScript"))()
game:GetService("CoreGui").Scraper["Pastebin
Scraper"].BackgroundTransparency = 0.5
game:GetService("CoreGui").Scraper["Pastebin Scraper"].[Link] = "
⭐ Pastebin Post Scraper ⭐"
game:GetService("CoreGui").Scraper["Pastebin
Scraper"].[Link] = "Search for a post here..."
game:GetService("CoreGui").Scraper["Pastebin
Scraper"].[Link] = 0.4
end)

[Link]({"amongus", "amogus"}, {"amongus (amogus)", "among us in real life, sus


sus."}, function()

wait();

Notify({
Description = "Amog us...";
Title = "Nameless Admin";
Duration = 5;

});
loadstring(game:HttpGet(('[Link]
end)

[Link]({"blackhole"}, {"blackhole", "Makes unanchored parts teleport to the black


hole"}, function()
local UserInputService = game:GetService("UserInputService")
local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
local Folder = [Link]("Folder", game:GetService("Workspace"))
local Part = [Link]("Part", Folder)
local Attachment1 = [Link]("Attachment", Part)
[Link] = true
[Link] = false
[Link] = 1
local Updated = [Link] + [Link](0, 5, 0)
local NetworkAccess = [Link](function()
settings().[Link] = false
while game:GetService("RunService").RenderStepped:Wait() do
for _, Players in next, game:GetService("Players"):GetPlayers()
do
if Players ~= game:GetService("Players").LocalPlayer then
[Link] = 0
sethiddenproperty(Players, "SimulationRadius", 0)
end
end
game:GetService("Players").[Link] =
[Link]([Link],[Link])
end
end)
[Link](NetworkAccess)
local function ForcePart(v)
if v:IsA("Part") and [Link] == false and
[Link]:FindFirstChild("Humanoid") == nil and [Link]:FindFirstChild("Head") ==
nil and [Link] ~= "Handle" then
[Link] = v
for _, x in next, v:GetChildren() do
if x:IsA("BodyAngularVelocity") or x:IsA("BodyForce") or
x:IsA("BodyGyro") or x:IsA("BodyPosition") or x:IsA("BodyThrust") or
x:IsA("BodyVelocity") or x:IsA("RocketPropulsion") then
x:Destroy()
end
end
if v:FindFirstChild("Attachment") then
v:FindFirstChild("Attachment"):Destroy()
end
if v:FindFirstChild("AlignPosition") then
v:FindFirstChild("AlignPosition"):Destroy()
end
if v:FindFirstChild("Torque") then
v:FindFirstChild("Torque"):Destroy()
end
[Link] = false
local Torque = [Link]("Torque", v)
[Link] = [Link](100000, 100000, 100000)
local AlignPosition = [Link]("AlignPosition", v)
local Attachment2 = [Link]("Attachment", v)
Torque.Attachment0 = Attachment2
[Link] = 9999999999999999
[Link] = [Link]
[Link] = 200
AlignPosition.Attachment0 = Attachment2
AlignPosition.Attachment1 = Attachment1
end
end
for _, v in next, game:GetService("Workspace"):GetDescendants() do
ForcePart(v)
end
game:GetService("Workspace").DescendantAdded:Connect(function(v)
ForcePart(v)
end)
[Link]:Connect(function(Key, Chat)
if [Link] == [Link].E and not Chat then
Updated = [Link] + [Link](0, 5, 0)
end
end)
spawn(function()
while game:GetService("RunService").RenderStepped:Wait() do
[Link] = Updated
end
end)

wait();

Notify({
Description = "Blackhole has been loaded, press e to change the position to
where your mouse is";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"fullbright", "fullb"}, {"fullbright (fullb)", "Makes games that are


really dark to have no darkness and be really light"}, function()
if not _G.FullBrightExecuted then

_G.FullBrightEnabled = false

_G.NormalLightingSettings = {
Brightness = game:GetService("Lighting").Brightness,
ClockTime = game:GetService("Lighting").ClockTime,
FogEnd = game:GetService("Lighting").FogEnd,
GlobalShadows = game:GetService("Lighting").GlobalShadows,
Ambient = game:GetService("Lighting").Ambient
}

game:GetService("Lighting"):GetPropertyChangedSignal("Brightness"):Connect(function
()
if game:GetService("Lighting").Brightness ~= 1 and
game:GetService("Lighting").Brightness ~= _G.[Link] then
_G.[Link] =
game:GetService("Lighting").Brightness
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
game:GetService("Lighting").Brightness = 1
end
end)

game:GetService("Lighting"):GetPropertyChangedSignal("ClockTime"):Connect(function(
)
if game:GetService("Lighting").ClockTime ~= 12 and
game:GetService("Lighting").ClockTime ~= _G.[Link] then
_G.[Link] =
game:GetService("Lighting").ClockTime
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
game:GetService("Lighting").ClockTime = 12
end
end)

game:GetService("Lighting"):GetPropertyChangedSignal("FogEnd"):Connect(function()
if game:GetService("Lighting").FogEnd ~= 786543 and
game:GetService("Lighting").FogEnd ~= _G.[Link] then
_G.[Link] =
game:GetService("Lighting").FogEnd
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
game:GetService("Lighting").FogEnd = 786543
end
end)
game:GetService("Lighting"):GetPropertyChangedSignal("GlobalShadows"):Connect(funct
ion()
if game:GetService("Lighting").GlobalShadows ~= false and
game:GetService("Lighting").GlobalShadows ~=
_G.[Link] then
_G.[Link] =
game:GetService("Lighting").GlobalShadows
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
game:GetService("Lighting").GlobalShadows = false
end
end)

game:GetService("Lighting"):GetPropertyChangedSignal("Ambient"):Connect(function()
if game:GetService("Lighting").Ambient ~= [Link](178,
178, 178) and game:GetService("Lighting").Ambient ~=
_G.[Link] then
_G.[Link] =
game:GetService("Lighting").Ambient
if not _G.FullBrightEnabled then
repeat
wait()
until _G.FullBrightEnabled
end
game:GetService("Lighting").Ambient = [Link](178,
178, 178)
end
end)

game:GetService("Lighting").Brightness = 1
game:GetService("Lighting").ClockTime = 12
game:GetService("Lighting").FogEnd = 786543
game:GetService("Lighting").GlobalShadows = false
game:GetService("Lighting").Ambient = [Link](178, 178, 178)

local LatestValue = true


spawn(function()
repeat
wait()
until _G.FullBrightEnabled
while wait() do
if _G.FullBrightEnabled ~= LatestValue then
if not _G.FullBrightEnabled then
game:GetService("Lighting").Brightness =
_G.[Link]
game:GetService("Lighting").ClockTime =
_G.[Link]
game:GetService("Lighting").FogEnd =
_G.[Link]
game:GetService("Lighting").GlobalShadows =
_G.[Link]
game:GetService("Lighting").Ambient =
_G.[Link]
else
game:GetService("Lighting").Brightness = 1
game:GetService("Lighting").ClockTime = 12
game:GetService("Lighting").FogEnd = 786543
game:GetService("Lighting").GlobalShadows =
false
game:GetService("Lighting").Ambient =
[Link](178, 178, 178)
end
LatestValue = not LatestValue
end
end
end)
end

_G.FullBrightExecuted = true
_G.FullBrightEnabled = not _G.FullBrightEnabled
end)

[Link]({"givehat", "givehatui"}, {"givehat (givehatui)", "Executes a hat giver


gui check in console for hat names"}, function()
loadstring(game:HttpGet("[Link]
NamelessAdmin/main/GiveHat"))()
end)

[Link]({"fireproximityprompts", "fpp"}, {"fireproximityprompts (fpp)", "Fires


every Touch Interest that's in workspace"}, function()
fppamount = 0

for i,v in pairs([Link]:GetDescendants()) do


if v:IsA("Part") and [Link] == "BanditClick" then
fppamount = fppamount + 1
fireproximityprompt([Link])
end
end

wait();

Notify({
Description = "Fired " .. fppamount .. " of proximity prompts";
Title = "Nameless Admin";
Duration = 7;

});
end)

[Link]({"iy", "i"}, {"iy {command} (i)", "Executes infinite yield scripts"},


function(...)
if IYLOADED == false then
local function copytable(tbl) local copy = {} for i,v in pairs(tbl) do
copy[i] = v end return copy end
local sandbox_env = copytable(getfenv())
setmetatable(sandbox_env, {
__index = function(self, i)
if rawget(sandbox_env, i) then
return rawget(sandbox_env, i)
elseif getfenv()[i] then
return getfenv()[i]
end
end
})
sandbox_env.game = nil
iy, _ =
game:HttpGet("[Link]
source"):gsub("local Main", "Main"):gsub("[Link]","Funny =
[Link]"):gsub("local lastMessage","notify = _G.notify\nlocal
lastMessage")
setfenv(loadstring(iy),sandbox_env)()
iy_cmds_table = sandbox_env.CMDs
iy_gui = sandbox_env.Main
iy_chathandler = sandbox_env.Funny
execCmd = sandbox_env.execCmd
iy_gui:Destroy()
pcall(function()
iy_chathandler:Disconnect()
end)
IYLOADED = true
end
execCmd((...))
end)

[Link]({"chatspy"}, {"chatspy", "Spies on chat, enables chat, spies whispers


etc."}, function()

wait();

Notify({
Description = "Chat spy enabled";
Title = "Nameless Admin";
Duration = 5;

});
--This script reveals ALL hidden messages in the default chat
--chat "/spy" to toggle!
enabled = true
--if true will check your messages too
spyOnMyself = true
--if true will chat the logs publicly (fun, risky)
public = false
--if true will use /me to stand out
publicItalics = true
--customize private logs
privateProperties = {
Color = [Link](0,255,255);
Font = [Link];
TextSize = 18;
}
--////////////////////////////////////////////////////////////////
local StarterGui = game:GetService("StarterGui")
local Players = game:GetService("Players")
local player = [Link]
local saymsg =
game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("SayMessageRequest")
local getmsg =
game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("OnMessageDoneFiltering")
local instance = (_G.chatSpyInstance or 0) + 1
_G.chatSpyInstance = instance

local function onChatted(p,msg)


if _G.chatSpyInstance == instance then
if p==player and msg:lower():sub(1,4)=="/spy" then
enabled = not enabled
wait(0.3)
print("XD")
StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
elseif enabled and (spyOnMyself==true or p~=player) then
msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
local hidden = true
local conn =
[Link]:Connect(function(packet,channel)
if [Link]==[Link] and
[Link]==msg:sub(#msg-#[Link]+1) and (channel=="All" or
(channel=="Team" and public==false and
Players[[Link]].Team==[Link])) then
hidden = false
end
end)
wait(1)
conn:Disconnect()
if hidden and enabled then
if public then
saymsg:FireServer((publicItalics and "/me " or
'').."{SPY} [".. [Link] .."]: "..msg,"All")
else
[Link] = "{SPY} [".. [Link] .."]:
"..msg

StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
end
end
end
end
end

for _,p in ipairs(Players:GetPlayers()) do


[Link]:Connect(function(msg) onChatted(p,msg) end)
end
[Link]:Connect(function(p)
[Link]:Connect(function(msg) onChatted(p,msg) end)
end)
print("XD")
StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
local chatFrame = [Link]
[Link] = true
[Link] =
[Link]+[Link]([Link](),[Link]
[Link].Y)
end)
[Link]({"bhop"}, {"bhop", "bhop bhop bhop bhop bhop bhop bhop bla bla bla idk
what im saying"}, function()
-- [[ bhop functions ]] --
local player
local character
local collider
local camera
local input
local collider
local playerGrounded
local playerVelocity
local jumping
local moveInputSum
local dt = 1/60
local partYRatio
local partZRatio
local cameraYaw
local cameraLook
local movementPosition
local movementVelocity
local gravityForce
local airAccelerate
local airMaxSpeed
local groundAccelerate
local groundMaxVelocity
local friction
local playerTorsoToGround
local movementStickDistance
local jumpVelocity
local movementPositionForce
local movementVelocityForce
local maxMovementPitch
local rayYLength
local movementPositionD
local movementPositionP
local movementVelocityP
local gravity

function init(Player, Camera, Input)


player = Player
character = [Link]
collider = [Link]
camera = Camera
input = Input
playerVelocity = 0
playerGrounded = false
moveInputSum = {
["forward"] = 0,
["side"] = 0 --left is positive
}

airAccelerate = 10000
airMaxSpeed = 2.4
groundAccelerate = 250
groundMaxVelocity = 20
friction = 10
playerTorsoToGround = 3
movementStickDistance = 0.5
jumpVelocity = 52.5
movementPositionForce = 400000
movementVelocityForce = 300000
maxMovementPitch = 0.6
rayYLength = playerTorsoToGround +
movementStickDistance
movementPositionD = 125
movementPositionP = 14000
movementVelocityP = 1500
gravity = 0.4

end

function initBodyMovers()
movementPosition = [Link]("BodyPosition", collider)
[Link] = "movementPosition"
movementPosition.D = movementPositionD
movementPosition.P = movementPositionP
[Link] = [Link]()
[Link] = [Link]()

movementVelocity = [Link]("BodyVelocity", collider)


[Link] = "movementVelocity"
movementVelocity.P = movementVelocityP
[Link] = [Link]()
[Link] = [Link]()

gravityForce = [Link]("BodyForce", collider)


[Link] = "gravityForce"
[Link] = [Link](0, (1-gravity)*196.2, 0) *
getCharacterMass()
end

function update(deltaTime)
dt = deltaTime
updateMoveInputSum()
cameraYaw = getYaw()
cameraLook = [Link]
if cameraLook == nil then
return
end
local hitPart, hitPosition, hitNormal, yRatio, zRatio =
findCollisionRay()
partYRatio = yRatio
partZRatio = zRatio

playerGrounded = hitPart ~= nil and true or false


playerVelocity = [Link] - [Link](0,
[Link].y, 0)
if playerGrounded and (input["Space"] or jumping) then
jumping = true
else
jumping = false
end

setCharacterRotation()
if jumping then
jump()
elseif playerGrounded then
run(hitPosition)
else
air()
end

end

function updateMoveInputSum()
moveInputSum["forward"] = input["W"] == true and 1 or 0
moveInputSum["forward"] = input["S"] == true and
moveInputSum["forward"] - 1 or moveInputSum["forward"]
moveInputSum["side"] = input["A"] == true and 1 or 0
moveInputSum["side"] = input["D"] == true and moveInputSum["side"] - 1
or moveInputSum["side"]
end

function findCollisionRay()
local torsoCFrame = [Link]
local ignoreList = {character, camera}
local rays = {
[Link]([Link], [Link](0, -
rayYLength, 0)),
[Link]((torsoCFrame * [Link](-0.8,0,0)).p, [Link](0, -
rayYLength, 0)),
[Link]((torsoCFrame * [Link](0.8,0,0)).p, [Link](0, -
rayYLength, 0)),
[Link]((torsoCFrame * [Link](0,0,0.8)).p, [Link](0, -
rayYLength, 0)),
[Link]((torsoCFrame * [Link](0,0,-0.8)).p, [Link](0, -
rayYLength, 0))
}
local rayReturns = {}

local i
for i = 1, #rays do
local part, position, normal =
[Link]:FindPartOnRayWithIgnoreList(rays[i],ignoreList)
if part == nil then
position = [Link](0,-3000000,0)
end
if i == 1 then
[Link](rayReturns, {part, position, normal})
else
local yPos = position.y
if yPos <= rayReturns[#rayReturns][2].y then
[Link](rayReturns, {part, position, normal})
else
local j
for j = 1, #rayReturns do
if yPos >= rayReturns[j][2].y then
[Link](rayReturns, j, {part,
position, normal})
end
end
end
end
end
i = 1
local yRatio, zRatio = getPartYRatio(rayReturns[i][3])
while magnitude2D(yRatio, zRatio) > maxMovementPitch and i<#rayReturns
do
i = i + 1
if rayReturns[i][1] then
yRatio, zRatio = getPartYRatio(rayReturns[i][3])
end
end

return rayReturns[i][1], rayReturns[i][2], rayReturns[i][3], yRatio,


zRatio
end

function setCharacterRotation()
local rotationLook = [Link] +
[Link]
[Link] = [Link]([Link],
[Link](rotationLook.x, [Link].y, rotationLook.z))
[Link] = [Link]()
end

function jump()
[Link] = [Link]([Link].x, jumpVelocity,
[Link].z)
air()
end

function air()
[Link] = [Link]()
[Link] = getMovementVelocity([Link],
airAccelerate, airMaxSpeed)
[Link] = getMovementVelocityAirForce()
end

function run(hitPosition)
local playerSpeed = [Link]
local mVelocity = [Link]

if playerSpeed ~= 0 then
local drop = playerSpeed * friction * dt;
mVelocity = mVelocity * [Link](playerSpeed - drop, 0) /
playerSpeed;
end

[Link] = hitPosition +
[Link](0,playerTorsoToGround,0)
[Link] = [Link](0,movementPositionForce,0)
[Link] = getMovementVelocity(mVelocity,
groundAccelerate, groundMaxVelocity)
local VelocityForce = getMovementVelocityForce()
[Link] = VelocityForce
movementVelocity.P = movementVelocityP
end

function getMovementVelocity(prevVelocity, accelerate, maxVelocity)


local accelForward = cameraLook * moveInputSum["forward"]
local accelSide = (cameraYaw *
[Link](0,[Link](90),0)).lookVector * moveInputSum["side"];
local accelDir = (accelForward+accelSide).unit;
if moveInputSum["forward"] == 0 and moveInputSum["side"] == 0 then --
avoids divide 0 errors
accelDir = [Link](0,0,0);
end

local projVel = prevVelocity:Dot(accelDir);


local accelVel = accelerate * dt;

if (projVel + accelVel > maxVelocity) then


accelVel = [Link](maxVelocity - projVel, 0);
end

return prevVelocity + accelDir * accelVel;


end

function getMovementVelocityForce()

return [Link](movementVelocityForce,0,movementVelocityForce)
end

function getMovementVelocityAirForce()
local accelForward = cameraLook * moveInputSum["forward"];
local accelSide = (cameraYaw *
[Link](0,[Link](90),0)).lookVector * moveInputSum["side"]
local accelDir = (accelForward+accelSide).unit
if moveInputSum["forward"] == 0 and moveInputSum["side"] == 0 then
accelDir = [Link](0,0,0);
end

local xp = [Link](accelDir.x)
local zp = [Link](accelDir.z)

return
[Link](movementVelocityForce*xp,0,movementVelocityForce*zp)
end

function getPartYRatio(normal)
local partYawVector = [Link](-normal.x, 0, -normal.z)
if [Link] == 0 then
return 0,0
else
local partPitch =
math.atan2([Link],normal.y)/([Link]/2)
local vector = [Link](cameraLook.x, 0,
cameraLook.z)*partPitch
return vector:Dot(partYawVector), -partYawVector:Cross(vector).y
end
end

function getYaw() --returns CFrame


return [Link]*[Link](-getPitch(),0,0)
end

function getPitch() --returns number


return [Link]/2 -
[Link]([Link]:Dot([Link](0,1,0)))
end
function getCharacterMass()
return [Link]:GetMass() + [Link]:GetMass()
end

function magnitude2D(x,z)
return [Link](x*x+z*z)
end

local inputKeys = {
["W"] = false,
["S"] = false,
["A"] = false,
["D"] = false,
["Space"] = false,
["LMB"] = false,
["RMB"] = false
}

local plr = game:GetService("Players").LocalPlayer


local camera = [Link]
local UserInputService = game:GetService("UserInputService")
function onInput(input, gameProcessedEvent)
local inputState
--print([Link])
if [Link] == [Link] then
inputState = true
elseif [Link] == [Link] then
inputState = false
else
return
end

if [Link] == [Link] then


local key = [Link]
if inputKeys[key] ~= nil then
inputKeys[key] = inputState
end
elseif [Link] == [Link].MouseButton1 then --
LMB down
[Link] = inputState
elseif [Link] == [Link].MouseButton2 then --
RMB down
[Link] = inputState
end
end
function main()
local a = [Link]:FindFirstChildOfClass("Humanoid") or
[Link]:WaitForChild("Humanoid");
[Link] = true
--init movement
init(plr, camera, inputKeys);
initBodyMovers();

--connect input
[Link]:connect(onInput);
[Link]:connect(onInput);
--connect updateloop
game:GetService("RunService"):BindToRenderStep("updateLoop", 1,
updateLoop);
--rip
end

local prevUpdateTime = nil


local updateDT = 1/60

function setDeltaTime() --seconds


local UpdateTime = tick()
if prevUpdateTime ~= nil then
updateDT = (UpdateTime - prevUpdateTime)
else
updateDT = 1/60
end
prevUpdateTime = UpdateTime
end
function updateLoop()
setDeltaTime();
update(updateDT);
end
main()
end)

[Link]({"firstp", "1stp", "firstperson"}, {"firstperson (1stp, firstp)", "Makes


you 1st person mode"}, function()
[Link] = "LockFirstPerson"
end)

[Link]({"thirdp", "3rdp", "thirdperson"}, {"thirdperson (3rdp, thirdp)", "Makes


you 3rd person mode"}, function()
[Link] = 10
[Link] = "Classic"
end)

[Link]({"maxzoom", "camzoom"}, {"maxzoom <amount> (camzoom)", "Set your


maximum camera distance"}, function(...)
[Link] = (...)
end)

[Link]({"cameranoclip", "camnoclip", "cnoclip"}, {"cameranoclip (camnoclip,


cnoclip)", "Makes your camera clip through walls"}, function()
SetConstant = (debug and [Link]) or setconstant
GetConstants = (debug and [Link]) or getconstants
if SetConstant or GetConstants or getgc then
local Popper =
[Link]
per
for i, v in pairs(getgc()) do
if type(v) == 'function' and getfenv(v).script == Popper then
for i, v1 in pairs(GetConstants(v)) do
if tonumber(v1) == .25 then
SetConstant(v, i, 0)
elseif tonumber(v1) == 0 then
SetConstant(v, i, .25)
end
end
end
end
else
wait();

Notify({
Description = "Sorry, your exploit does not support
cameranoclip";
Title = "Nameless Admin";
Duration = 5;

});
end
end)

[Link]({"uncameranoclip", "uncamnoclip", "uncnoclip"}, {"uncameranoclip


(uncamnoclip, uncnoclip)", "Makes your camera not clip through walls"}, function()
local SetConstant = (debug and [Link]) or setconstant
local GetConstants = (debug and [Link]) or getconstants
if SetConstant or GetConstants or getgc then
local Popper =
[Link]
per
for i, v in pairs(getgc()) do
if type(v) == 'function' and getfenv(v).script == Popper then
for i, v1 in pairs(GetConstants(v)) do
if tonumber(v1) == .25 then
SetConstant(v, i, 0)
elseif tonumber(v1) == 0 then
SetConstant(v, i, .25)
end
end
end
end
else
wait();

Notify({
Description = "Sorry, your exploit does not support cameranoclip
and uncameranoclip";
Title = "Nameless Admin";
Duration = 5;

});
end
end)

[Link]({"2016anims"}, {"2016anims", "2016 animations"}, function()

loadstring(game:HttpGet("[Link]
main/2016anims"))()
end)

[Link]({"oganims"}, {"oganims", "Old animations from 2007"}, function()

wait();

Notify({
Description = "OG animations set";
Title = "Nameless Admin";
Duration = 5;

});
loadstring(game:HttpGet(('[Link]
end)

[Link]({"fakechat"}, {"fakechat", "Fake a chat gui"}, function()


loadstring(game:HttpGet("[Link]
main/fakechat"))()
end)

[Link]({"fpscap"}, {"fpscap <number>", "Sets the fps cap to whatever you want"},
function(...)
setfpscap(...)
end)

[Link]({"holdhat"}, {"holdhat", "Can make you hold your hats execute the command
and you will have them in your inventory"}, function(...)
--made by Nightmare#0930
local lp = [Link]
local char = [Link]

for i, v in pairs(char:GetChildren()) do
if v:IsA("BallSocketConstraint") then
v:Destroy()
end
end

for i, v in pairs(char:GetChildren()) do
if v:IsA("HingeConstraint") then
v:Destroy()
end
end

for i, v in pairs([Link]:GetAccessories()) do
local hat = [Link]

char[hat].Archivable = true
local fake = char[hat]:Clone()
[Link] = char
[Link] = 1

local hold = false


local enabled = false

char[hat].[Link]:Destroy()

local tool = [Link]("Tool", [Link])


[Link] = true
[Link] = false
[Link] = hat

local handle = [Link]("Part", tool)


[Link] = "Handle"
[Link] = [Link](1, 1, 1)
[Link] = true
[Link] = 1

local positions = {
forward = [Link],
pos = [Link],
right = [Link],
up = [Link]
}

[Link]:connect(function()
hold = true
end)

[Link]:connect(function()
hold = false
end)

[Link]:connect(function()
if enabled == false then
enabled = true
[Link] = [Link](-0.976,0,-0.217)
[Link] = [Link](.95,-0.76,1.4)
[Link] = [Link](0.217,0, 0.976)
[Link] = [Link](0,1,0)
wait(.8)
[Link] = [Link]
[Link] = [Link]
[Link] = [Link]
[Link] = [Link]
enabled = false
end
end)

game:GetService("RunService").Heartbeat:connect(function()
pcall(function()
char[hat].[Link] = [Link](30, 0, 0)
if hold == false then
char[hat].[Link] = [Link]
elseif hold == true then
char[hat].[Link] = [Link]
end
end)
end)
end
end)

[Link]({"toolinvisible"}, {"toolinvisible", "Be invisible while still be able to


use tools"}, function()
local offset = 1100
local invisible = [Link]
local grips = {}
local heldTool
local gripChanged
local handle
local weld
function setDisplayDistance(distance)
for _, player in pairs([Link]:GetPlayers()) do
if [Link] and
[Link]:FindFirstChildWhichIsA("Humanoid") then

[Link]:FindFirstChildWhichIsA("Humanoid").NameDisplayDistance =
distance
[Link]:FindFirstChildWhichIsA("Humanoid").HealthDisplayDistance =
distance
end
end
end
local tool = [Link]("Tool", [Link])
[Link] = "Turn Invisible"
[Link] = false
[Link] = false
[Link]:Connect(
function()
wait()
if not invisible then
invisible = true
[Link] = "Visible enabled"
if handle then
handle:Destroy()
end
if weld then
weld:Destroy()
end
handle = [Link]("Part", workspace)
[Link] = "Handle"
[Link] = 1
[Link] = false
[Link] = [Link](2, 1, 1)
weld = [Link]("Weld", handle)
weld.Part0 = handle
weld.Part1 =
[Link]
weld.C0 = [Link](0, offset - 1.5, 0)
setDisplayDistance(offset + 100)
[Link] = handle
[Link]
= [Link] * [Link](0,
offset, 0)
[Link] =
offset
[Link]:ChangeState(11)
for _, child in
pairs([Link]:GetChildren()) do
if child:IsA("Tool") and child ~= tool then
grips[child] = [Link]
end
end
elseif invisible then
invisible = false
[Link] = "Visible Disabled"
if handle then
handle:Destroy()
end
if weld then
weld:Destroy()
end
for _, child in
pairs([Link]:GetChildren()) do
if child:IsA("Tool") then
[Link] =
[Link]
end
end
for tool, grip in pairs(grips) do
if tool then
[Link] = grip
end
end
heldTool = nil
setDisplayDistance(100)
[Link] =
[Link]
[Link]
= [Link] * [Link](0, -
offset, 0)
[Link] = 0
end
[Link] = [Link]
end
)
[Link]:Connect(
function(child)
wait()
if invisible and child:IsA("Tool") and child ~= heldTool and
child ~= tool then
heldTool = child
local lastGrip = [Link]
if not grips[heldTool] then
grips[heldTool] = lastGrip
end
for _, track in
pairs([Link]:GetPlayingAnimationTracks()) do
track:Stop()
end
[Link] = true
[Link] = [Link] * ([Link](0, offset -
1.5, 1.5) * [Link]([Link](-90), 0, 0))
[Link] = [Link]
[Link] = [Link]
if gripChanged then
gripChanged:Disconnect()
end
gripChanged =
heldTool:GetPropertyChangedSignal("Grip"):Connect(
function()
wait()
if not invisible then
gripChanged:Disconnect()
end
if [Link] ~= lastGrip then
lastGrip =
[Link] * ([Link](0,
offset - 1.5, 1.5) * [Link]([Link](-90), 0, 0))
[Link] = lastGrip
[Link] =
[Link]
[Link] =
[Link]
end
end
)
end
end
)
end)

[Link]({"invisible"}, {"invisible", "Sets invisibility to scare people or


something"}, function()
Keybind = "E"

local CS = game:GetService("CollectionService")
local UIS = game:GetService("UserInputService")

if invisRunning then return end


invisRunning = true
-- Full credit to AmokahFox @V3rmillion
local Player = [Link]
repeat wait(.1) until [Link]
local Character = [Link]
[Link] = true
local IsInvis = false
local IsRunning = true
local InvisibleCharacter = Character:Clone()
[Link] = [Link]
local Void = [Link]
[Link] = ""
local CF

local invisFix =
game:GetService("RunService").Stepped:Connect(function()
pcall(function()
local IsInteger
if tostring(Void):find'-' then
IsInteger = true
else
IsInteger = false
end
local Pos =
[Link]
local Pos_String = tostring(Pos)
local Pos_Seperate = Pos_String:split(', ')
local X = tonumber(Pos_Seperate[1])
local Y = tonumber(Pos_Seperate[2])
local Z = tonumber(Pos_Seperate[3])
if IsInteger == true then
if Y <= Void then
Respawn()
end
elseif IsInteger == false then
if Y >= Void then
Respawn()
end
end
end)
end)

for i,v in pairs(InvisibleCharacter:GetDescendants())do


if v:IsA("BasePart") then
if [Link] == "HumanoidRootPart" then
[Link] = 1
else
[Link] = .5
end
end
end

function Respawn()
IsRunning = false
if IsInvis == true then
pcall(function()
[Link] = Character
wait()
[Link] = workspace
Character:FindFirstChildWhichIsA'Humanoid':Destroy()
IsInvis = false
[Link] = nil
invisRunning = false
end)
elseif IsInvis == false then
pcall(function()
[Link] = Character
wait()
[Link] = workspace
Character:FindFirstChildWhichIsA'Humanoid':Destroy()
TurnVisible()
end)
end
end

local invisDied
invisDied =
InvisibleCharacter:FindFirstChildOfClass'Humanoid'.Died:Connect(function()
Respawn()
invisDied:Disconnect()
end)

function TurnVisible()
if IsInvis == false then return end
invisFix:Disconnect()
invisDied:Disconnect()
CF = [Link]
Character = Character
local CF_1 = [Link]
[Link] = CF_1
[Link] = [Link]
[Link] = Character
[Link] = workspace
IsInvis = false
[Link] = true
[Link] = false
invisDied =
Character:FindFirstChildOfClass'Humanoid'.Died:Connect(function()
Respawn()
invisDied:Disconnect()
end)
invisRunning = false
end
local CS = game:GetService("CollectionService")
local UIS = game:GetService("UserInputService")

[Link]:Connect(function(input, gameProcessed)
if [Link] == [Link] then
if [Link] == [Link].E and not gameProcessed then
if IsInvis == false then
IsInvis = true
CF = [Link]
local CF_1 =
[Link]
Character:MoveTo([Link](0,[Link]*1000000,0))
[Link] = [Link]
wait(.1)
[Link] = [Link]
InvisibleCharacter = InvisibleCharacter
[Link] = [Link]
[Link] = [Link]
[Link] = CF_1
[Link] = InvisibleCharacter
local workspace = [Link]
Players = game:GetService("Players")
local speaker = [Link]
[Link]:remove()
wait(.1)
[Link] =
[Link]:FindFirstChildWhichIsA('Humanoid')
[Link] = "Custom"
[Link] = 0.5
[Link] = 400
[Link] = "Classic"
[Link] = false
[Link] = true
[Link] = false
elseif IsInvis == true then
TurnVisible()
IsInvis = false
end
end
end
end)

wait();

Notify({
Description = "Invisible loaded, press " .. Keybind .. " to toggle";
Title = "Nameless Admin";
Duration = 10;

});

if [Link]({[Link], [Link]},
game:GetService("UserInputService"):GetPlatform()) then
wait();

Notify({
Description = "Nameless Admin has detected you using mobile you now have a
invisible button click it to enable / disable invisibility";
Title = "Nameless Admin";
Duration = 7;
});

local ScreenGui = [Link]("ScreenGui")


local TextButton = [Link]("TextButton")
local UICorner = [Link]("UICorner")
local UIAspectRatioConstraint = [Link]("UIAspectRatioConstraint")

--Properties:

[Link] = [Link]
[Link] = [Link]
[Link] = false

[Link] = ScreenGui
TextButton.BackgroundColor3 = [Link](12, 4, 20)
[Link] = 0.140
[Link] = [Link](0.933, 0,0.621, 0)
[Link] = [Link](0.043, 0,0.083, 0)
[Link] = [Link]
[Link] = "Become Invisible"
TextButton.TextColor3 = [Link](255, 255, 255)
[Link] = 15.000
[Link] = true
[Link] = true
[Link] = true
TextScaled = true

[Link] = TextButton

[Link] = TextButton
[Link] = 1.060

-- Scripts:

local function FEPVI_fake_script() -- [Link]


local script = [Link]('LocalScript', TextButton)

IsInvis = false
[Link].MouseButton1Click:Connect(function()
if IsInvis == false then
IsInvis = true
CF = [Link]
local CF_1 =
[Link]
Character:MoveTo([Link](0,[Link]*1000000,0))
[Link] = [Link]
wait(.1)
[Link] = [Link]
InvisibleCharacter = InvisibleCharacter
[Link] = [Link]
[Link] = [Link]
[Link] = CF_1
[Link] = InvisibleCharacter
local workspace = [Link]
Players = game:GetService("Players")
local speaker = [Link]
[Link]:remove()
wait(.1)
[Link] =
[Link]:FindFirstChildWhichIsA('Humanoid')
[Link] = "Custom"
[Link] = 0.5
[Link] = 400
[Link] = "Classic"
[Link] = false
[Link] = true
[Link] = false
[Link] = "Become Visible"
elseif IsInvis == true then
TurnVisible()
IsInvis = false
[Link] = "Become Invisible"
end
end)
end
[Link](FEPVI_fake_script)()
else
end
end)

[Link]({"unchatspy"}, {"unchat", "Unspies on chat, enables chat, spies whispers


etc."}, function()

wait();

Notify({
Description = "Chat spy enabled";
Title = "Nameless Admin";
Duration = 5;

});
--This script reveals ALL hidden messages in the default chat
--chat "/spy" to toggle!
enabled = false
--if true will check your messages too
spyOnMyself = true
--if true will chat the logs publicly (fun, risky)
public = false
--if true will use /me to stand out
publicItalics = true
--customize private logs
privateProperties = {
Color = [Link](0,255,255);
Font = [Link];
TextSize = 18;
}
--////////////////////////////////////////////////////////////////
local StarterGui = game:GetService("StarterGui")
local Players = game:GetService("Players")
local player = [Link]
local saymsg =
game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("SayMessageRequest")
local getmsg =
game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("OnMessageDoneFiltering")
local instance = (_G.chatSpyInstance or 0) + 1
_G.chatSpyInstance = instance

local function onChatted(p,msg)


if _G.chatSpyInstance == instance then
if p==player and msg:lower():sub(1,4)=="/spy" then
enabled = not enabled
wait(0.3)
print("XD")
StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
elseif enabled and (spyOnMyself==true or p~=player) then
msg = msg:gsub("[\n\r]",''):gsub("\t",' '):gsub("[ ]+",' ')
local hidden = true
local conn =
[Link]:Connect(function(packet,channel)
if [Link]==[Link] and
[Link]==msg:sub(#msg-#[Link]+1) and (channel=="All" or
(channel=="Team" and public==false and
Players[[Link]].Team==[Link])) then
hidden = false
end
end)
wait(1)
conn:Disconnect()
if hidden and enabled then
if public then
saymsg:FireServer((publicItalics and "/me " or
'').."{SPY} [".. [Link] .."]: "..msg,"All")
else
[Link] = "{SPY} [".. [Link] .."]:
"..msg

StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
end
end
end
end
end

for _,p in ipairs(Players:GetPlayers()) do


[Link]:Connect(function(msg) onChatted(p,msg) end)
end
[Link]:Connect(function(p)
[Link]:Connect(function(msg) onChatted(p,msg) end)
end)
print("XD")
StarterGui:SetCore("ChatMakeSystemMessage",privateProperties)
local chatFrame = [Link]
[Link] = true
[Link] =
[Link]+[Link]([Link](),[Link]
[Link].Y)
end)
[Link]({"fireremotes"}, {"fireremotes", "Fires every remote."}, function()
local remoteamount = 0

for i,v in pairs(game:GetDescendants()) do


if v:IsA("RemoteEvent") then
remoteamount = remoteamount + 1
v:FireServer()
if v:IsA("BindableEvent") then
remoteamount = remoteamount + 1
v:Fire()
if v:IsA("RemoteFunction") then
remoteamount = remoteamount + 1
v:InvokeServer()
end
end
end
end
wait();

Notify({
Description = "Fired " .. remoteamount .. " amount of remotes";
Title = "Nameless Admin";
Duration = 7;

});
end)

[Link]({"uafollow", "unanchoredfollow"}, {"uafollow (unanchoredfollow)", "Makes


unanchored parts follow you"}, function()
wait();

Notify({
Description = "Unanchored follow executed";
Title = "Nameless Admin";
Duration = 5;

});
local LocalPlayer = game:GetService("Players").LocalPlayer
local unanchoredparts = {}
local movers = {}
for index, part in pairs(workspace:GetDescendants()) do
if part:IsA("Part") and [Link] == false and
part:IsDescendantOf([Link]) == false then
[Link](unanchoredparts, part)
[Link] = true
[Link] = false
if part:FindFirstChildOfClass("BodyPosition") ~= nil then
part:FindFirstChildOfClass("BodyPosition"):Destroy()
end
end
end
for index, part in pairs(unanchoredparts) do
local mover = [Link]("BodyPosition", part)
[Link](movers, mover)
[Link] = [Link]([Link], [Link], [Link])
end
repeat
for index, mover in pairs(movers) do
[Link] =
[Link]:FindFirstChild("HumanoidRootPart").CFrame:PointToWorldSpace(V
[Link](0, 0, 5))
end
wait(0.5)
until [Link]:FindFirstChild("Humanoid").Health <= 0
for _, mover in pairs(movers) do
mover:Destroy()
end
end)

[Link]({"fov"}, {"fov <number>", "Makes your FOV to something custom you want (1-
120 FOV)"}, function(...)
[Link] = (...)
end)

[Link]({"homebrew"}, {"homebrew", "Executes homebrew admin"}, function()


_G.CustomUI = false
loadstring(game:HttpGet(('[Link]
HomebrewAdmin/master/Main'),true))()
end)

[Link]({"iy", "i"}, {"iy {command} (i)", "Executes infinite yield


scripts"}, function(...)
-- [[ thanks to homebrew devs for this ]] --
if IYLOADED == false then
local function copytable(tbl) local copy = {} for i,v in
pairs(tbl) do copy[i] = v end return copy end
local sandbox_env = copytable(getfenv())
setmetatable(sandbox_env, {
__index = function(self, i)
if rawget(sandbox_env, i) then
return rawget(sandbox_env, i)
elseif getfenv()[i] then
return getfenv()[i]
end
end
})
sandbox_env.game = nil
iy, _ =
game:HttpGet("[Link]
source"):gsub("local Main", "Main"):gsub("[Link]","Funny =
[Link]"):gsub("local lastMessage","notify = _G.notify\nlocal
lastMessage")
setfenv(loadstring(iy),sandbox_env)()
iy_cmds_table = sandbox_env.CMDs
iy_gui = sandbox_env.Main
iy_chathandler = sandbox_env.Funny
execCmd = sandbox_env.execCmd
iy_gui:Destroy()
pcall(function()
iy_chathandler:Disconnect()
end)
IYLOADED = true
end
execCmd((...))
end)

[Link]({"fatesadmin"}, {"fatesadmin", "Executes fates admin"}, function()


loadstring(game:HttpGet("[Link]
fates-admin/main/[Link]"))();
end)

[Link]({"savetools", "stools"}, {"savetools (stools)", "puts your tools in


[Link]"}, function()
for _,v in pairs([Link]:GetChildren()) do
if (v:IsA("Tool")) then
[Link] = [Link]
end
end
end)

[Link]({"loadtools", "ltools"}, {"loadtools (ltools)", "puts your tools back in


the backpack"}, function()
for _,v in pairs([Link]:GetChildren()) do
if (v:IsA("Tool")) then
[Link] = [Link]
end
end
end)

[Link]({"grabtools", "gt"}, {"grabtools", "Grabs any dropped tools"},


function()
local p = game:GetService("Players").LocalPlayer
local c = [Link]
if c and c:FindFirstChild("Humanoid") then
for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
if v:IsA("Tool") then
c:FindFirstChild("Humanoid"):EquipTool(v)
end
end
end
wait();

Notify({
Description = "Grabbed all tools";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"ws", "speed", "walkspeed"}, {"walkspeed <number> (speed, ws)", "Makes


your WalkSpeed whatever you want"}, function(...)
[Link] = (...)
end)

[Link]({"cuff", "jail"}, {"cuff <player> (jail)", "Cuffs the


player"}, function(...)
Username = (...)

local target = getPlr(Username)


local THumanoidPart
local plrtorso
local TargetCharacter = [Link]
if TargetCharacter:FindFirstChild("Torso") then
plrtorso = [Link]
elseif TargetCharacter:FindFirstChild("UpperTorso") then
plrtorso = [Link]
end
local old = getChar().[Link]
local tool = getBp():FindFirstChildOfClass("Tool") or
getChar():FindFirstChildOfClass("Tool")
if target == nil or tool == nil then return end
local attWeld = attachTool(tool,[Link](0,0,0))
attachTool(tool,[Link](0,0,0.2) * [Link]([Link](-
90),0,0))
[Link] = [Link]
wait(0.07)
[Link] = [Link](0, -7, -3)
firetouchinterest([Link],[Link],0)
firetouchinterest([Link],[Link],1)
end)

[Link]({"jp", "jumppower"}, {"jumppower <number> (jp)", "Makes your


JumpPower whatever you want"}, function(...)
[Link] = (...)
end)

[Link]({"oofspam"}, {"oofspam", "Spams oof"}, function()


_G.enabled = true
_G.speed = 100
local HRP = [Link] or Humanoid:FindFirstChild("HumanoidRootPart")
if not Humanoid or not _G.enabled then
if Humanoid and [Link] <= 0 then
Humanoid:Destroy()
end
return
end
Humanoid:SetStateEnabled([Link], false)
[Link] = false
[Link] = false
local con; con = [Link]:Connect(function()
if not Humanoid then return con:Disconnect() end
Humanoid:ChangeState([Link])
end)
[Link] = nil
[Link] = Character
[Link]([Link] + 0.1)
while [Link](1/_G.speed) do
Humanoid:ChangeState([Link])
end
end)

[Link]({"partgrabber"}, {"partgrabber", "Press Q"}, function()


wait();

Notify({
Description = "Part grabber executed, press Q on a part";
Title = "Nameless Admin";
Duration = 5;

});
local player = [Link]
local mouse = [Link]:GetMouse()
local key = game:GetService("UserInputService")

BodyAngularVelocity = true
local keyyy = [Link].Q

local y = 5.7
local y2 = 7.2
local P = 1000000
local V = [Link](100000,100000,100000)
local SBT = [Link]("SelectionBox")
[Link] = "SB"
[Link] = [Link]
[Link] = [Link]
SBT.Color3 = [Link](0,0,0)

while wait(.3) do
[Link]:Connect(function(k)
if [Link] == keyyy then
local handle = [Link]
if [Link] == false then
wait(.3)
[Link] = [Link] + [Link](0,1,0)
local BP = [Link]("BodyPosition")
[Link] = "BP"
[Link] = handle
BP.P = P
[Link] = V
local SB = [Link]("SelectionBox")
[Link] = "SB"
[Link] = handle
[Link] = handle
local colour = [Link](1,7)
if colour == 1 then
SB.Color3 = [Link](255,0,0)
end
if colour == 2 then
SB.Color3 = [Link](255,170,0)
end
if colour == 3 then
SB.Color3 = [Link](255,255,0)
end
if colour == 4 then
SB.Color3 = [Link](0,255,0)
end
if colour == 5 then
SB.Color3 = [Link](0,170,255)
end
if colour == 6 then
SB.Color3 = [Link](170,0,255)
end
if colour == 7 then
SB.Color3 = [Link](0,0,0)
end
[Link] = true
if BodyAngularVelocity == true then
local BAV = [Link]("BodyAngularVelocity")
[Link] = "BAV"
[Link] = handle
BAV.P =
99900000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000000
[Link] =
[Link](99900000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000,99900000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000,999000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000000000000000000000000000000000000000000
00)
end
wait(.3)
[Link] = false
while wait(.3) do
if handle:FindFirstChild("BP",true) then
[Link] = false
end
[Link] = [Link] +
[Link](0,y,0)
wait(.3)
if handle:FindFirstChild("BP",true) then
[Link] = false
end
[Link] = [Link]
+ [Link](0,y2,0)
end
end
end
end)
end
end)

[Link]({"tpua", "bringua"}, {"tpua <player> (bringua)", "brings every unanchored


part on the map"}, function(...)
local heartbeat = game:GetService("RunService").Heartbeat
spawn(function()
while true do heartbeat:Wait()
[Link] =
[Link]([Link],[Link])*[Link]

sethiddenproperty([Link],"SimulationRadius",[Link]([Link],ma
[Link])*[Link])
game:GetService("RunService").Stepped:wait()
end
end)

execute = function(name)
for index, part in pairs(game:GetDescendants()) do
if part:IsA("BasePart" or "UnionOperation" or "Model") and [Link] ==
false and part:IsDescendantOf([Link]) == false and
[Link] == "Torso" == false and [Link] == "Head" == false and [Link] ==
"Right Arm" == false and [Link] == "Left Arm" == false and [Link] == "Right
Leg" == false and [Link] == "Left Leg" == false and [Link] ==
"HumanoidRootPart" == false then --// Checks Part Properties
[Link] = [Link]([Link][name].[Link]) --TP Part To
User
if spam == true and part:FindFirstChild("BodyGyro") == nil then
local bodyPos = [Link]("BodyPosition")
[Link] = [Link]
[Link] = [Link]([Link], [Link], [Link])
bodyPos.P = 1e6
[Link] = part
end
end
end
end
User = (...)
Target = getPlr(User)
TargetName = [Link]
execute(TargetName)
wait();

Notify({
Description = "Unanchored parts have been teleported to " .. TargetName ..
"" ;
Title = "Nameless Admin";
Duration = 5;

});

end)

[Link]({"freezeua", "thawua"}, {"freezeua (thawua)", "freezes every


unanchored part on the map"}, function()
frozenParts = {}
if sethidden then
local badnames = {
"Head",
"UpperTorso",
"LowerTorso",
"RightUpperArm",
"LeftUpperArm",
"RightLowerArm",
"LeftLowerArm",
"RightHand",
"LeftHand",
"RightUpperLeg",
"LeftUpperLeg",
"RightLowerLeg",
"LeftLowerLeg",
"RightFoot",
"LeftFoot",
"Torso",
"Right Arm",
"Left Arm",
"Right Leg",
"Left Leg",
"HumanoidRootPart"
}
local function FREEZENOOB(v)
if v:IsA("BasePart" or "UnionOperation") and
[Link] == false then
local BADD = false
for i = 1,#badnames do
if [Link] == badnames[i] then
BADD = true
end
end
if [Link] and
v:IsDescendantOf([Link]) then
BADD = true
end
if BADD == false then
for i,c in pairs(v:GetChildren()) do
if c:IsA("BodyPosition") or
c:IsA("BodyGyro") then
c:Destroy()
end
end
local bodypos =
[Link]("BodyPosition")
[Link] = v
[Link] = [Link]
[Link] =
[Link]([Link],[Link],[Link])
local bodygyro =
[Link]("BodyGyro")
[Link] = v
[Link] = [Link]
[Link] =
[Link]([Link],[Link],[Link])
if not [Link](frozenParts,v) then
[Link](frozenParts,v)
end
end
end
end
for i,v in pairs(workspace:GetDescendants()) do
FREEZENOOB(v)
end
freezingua = [Link]:Connect(FREEZENOOB)
end
end)

[Link]({"unfreezeua", "unthawua"}, {"unfreezeua (unthawua)",


"unfreezes every unanchored part on the map"}, function()
wait();

Notify({
Description = "Unfroze unanchored parts";
Title = "Nameless Admin";
Duration = 5;

});
if sethidden then
if freezingua then
freezingua:Disconnect()
end
for i,v in pairs(frozenParts) do
for i,c in pairs(v:GetChildren()) do
if c:IsA("BodyPosition") or c:IsA("BodyGyro")
then
c:Destroy()
end
end
end
frozenParts = {}
end
end)
[Link]({"highlightua", "highlightunanchored"}, {"highlightua
(hightlightunanchored)", "Highlights all unanchored parts"}, function()
wait();

Notify({
Description = "Highlighted all unanchored parts";
Title = "Nameless Admin";
Duration = 5;

});
for _,part in pairs(workspace:GetDescendants()) do
if part:IsA("BasePart") and [Link] == false and
part:IsDescendantOf([Link]) == false and [Link] ==
"Torso" == false and [Link] == "Head" == false and [Link] == "Right Arm" ==
false and [Link] == "Left Arm" == false and [Link] == "Right Leg" == false
and [Link] == "Left Leg" == false and [Link] == "HumanoidRootPart" == false
and part:FindFirstChild("Weld") == nil then --// probably could've made the check
better
local selectionBox = [Link]("SelectionBox")
[Link] = part
selectionBox.Color3 = [Link](1,0,0)
[Link] = part
end
end
end)

[Link]({"unhighlightua", "unhighlightunanchored"}, {"unhighlightua


(unhightlightunanchored)", "Unhighlights all unanchored parts"}, function()
wait();

Notify({
Description = "Unhighlighted unanchored parts";
Title = "Nameless Admin";
Duration = 5;

});
for _,part in pairs(workspace:GetDescendants()) do
if part:IsA("BasePart") and [Link] == false and
part:IsDescendantOf([Link]) == false and [Link] ==
"Torso" == false and [Link] == "Head" == false and [Link] == "Right Arm" ==
false and [Link] == "Left Arm" == false and [Link] == "Right Leg" == false
and [Link] == "Left Leg" == false and [Link] == "HumanoidRootPart" == false
and part:FindFirstChild("Weld") == nil then --// Checks Part Properties
if part:FindFirstChild("SelectionBox") then
[Link]:Destroy()
end
end
end
end)

[Link]({"countua", "countunanchoreed"}, {"countua (countunanchored)", "Counts all


unanchored parts in the console"}, function()
b = 0
for index, part in pairs([Link]:GetDescendants()) do
if part:IsA("BasePart") and [Link] == false and
part:IsDescendantOf([Link]) == false and [Link] ==
"Torso" == false and [Link] == "Head" == false and [Link] == "Right Arm" ==
false and [Link] == "Left Arm" == false and [Link] == "Right Leg" == false
and [Link] == "Left Leg" == false and [Link] == "HumanoidRootPart" == false
and part:FindFirstChild("Weld") == nil then --// Checks Part Properties
b = b + 1
end
end
wait();

Notify({
Description = "Parts have been counted, the amount is " .. b .. "";
Title = "Nameless Admin";
Duration = 5;

});
end)

[Link]({"httpspy"}, {"httspy", "HTTP Spy"}, function()

loadstring(game:HttpGet('[Link]
NamelessAdmin/main/HttpSpy'))()
end)

[Link]({"keystroke"}, {"keystroke", "Executes a keystroke ui script"}, function()


loadstring(game:HttpGet("[Link]
[Link]",true))()
end)

[Link]({"ownerid"}, {"ownerid", "Changes the client id to the owner's. Can give


special things"}, function()
wait();

Notify({
Description = "Set local player id to the owner id";
Title = "Nameless Admin";
Duration = 5;

});
if [Link] == [Link] then
[Link] = [Link]
end
if [Link] == [Link] then
[Link] =
game:GetService("GroupService"):GetGroupInfoAsync([Link]).[Link]
end
end)

[Link]({"errorchat"}, {"errorchat", "Makes the chat error appear when roblox chat
is slow"}, function()
for i=1,3 do
if game:GetService("TextChatService"):FindFirstChild("TextChannels")
then

game:GetService("TextChatService").[Link]:SendAsync("\0")
else

game:GetService("ReplicatedStorage").[Link]:
FireServer("\0", "All")
end
end
end)
-- [[ PLUGIN LOADER ]] --
local PluginsLoaded = 0
PluginsErrored = 0

if CustomFunctionSupport then
local success, result = pcall(function()
for i,v in pairs(listfiles("Nameless-Admin/Plugins")) do
loadstring(readfile(listfiles("Nameless-Admin/Plugins")[i]))();
PluginsLoaded = PluginsLoaded + 1
end
end)

if not success then


PluginsErrored = PluginsErrored + 1
Notify({
Description = "Plugin error: " .. result .. "";
Title = "Nameless Admin";
Duration = 3;

});
end

-- [[ PLUGINS LOADED NOTIFICATION ]] --


if PluginsErrored == 0 then
Notify({
Description = "Loaded " .. PluginsLoaded .. " plugins";
Title = "Nameless Admin";
Duration = 3;

});
else
Notify({
Description = "Loaded " .. PluginsLoaded .. " plugins, although " ..
PluginsErrored .. " plugins have errored";
Title = "Nameless Admin";
Duration = 3;

});
end
end

--[[ FUNCTIONALITY ]]--


[Link]:Connect(function(str)
[Link](str)
end)

-- [[ Admin Player]]
function AdminChatted(Message, Player)
[Link]:Connect(function(Message, Player)
[Link](Message, Player)
end)
end

function CheckPermissions(Player)
[Link]:Connect(function(Message)
if Admin[[Link]] then
AdminChatted(Message, Player)
end
end)
end
[Link]:Connect(function(Player)
CheckPermissions(Player)
end)
for i,v in pairs(Players:GetPlayers()) do
if v ~= LocalPlayer then
CheckPermissions(v)
end
end

--[[ GUI VARIABLES ]]--


local ScreenGui
if not RunService:IsStudio() then
ScreenGui = game:GetObjects("rbxassetid://13510552309")[1]
else
repeat wait() until player:FindFirstChild("AdminUI", true)
ScreenGui = player:FindFirstChild("AdminUI", true)
end

local description = [Link]


local cmdBar = [Link]
local centerBar = [Link]
local cmdInput = [Link]
local cmdAutofill = [Link]
local cmdExample = [Link]
local leftFill = [Link]
local rightFill = [Link]
local chatLogsFrame = [Link]
local chatLogs = [Link]
local chatExample = [Link]
local commandsFrame = [Link]
local commandsFilter = [Link]
local commandsList = [Link]
local commandExample = [Link]
local resizeFrame = [Link]
local resizeXY = {
Top = {[Link](0, -1), [Link](0, -1),
"rbxassetid://2911850935"},
Bottom = {[Link](0, 1), [Link](0, 0),
"rbxassetid://2911850935"},
Left = {[Link](-1, 0), [Link](1, 0),
"rbxassetid://2911851464"},
Right = {[Link](1, 0), [Link](0, 0),
"rbxassetid://2911851464"},

TopLeft = {[Link](-1, -1), [Link](1, -1),


"rbxassetid://2911852219"},
TopRight = {[Link](1, -1), [Link](0, -1),
"rbxassetid://2911851859"},
BottomLeft = {[Link](-1, 1), [Link](1, 0),
"rbxassetid://2911851859"},
BottomRight = {[Link](1, 1), [Link](0, 0),
"rbxassetid://2911852219"},
}

[Link] = nil
[Link] = nil
[Link] = nil
[Link] = nil

local rPlayer = Players:FindFirstChildWhichIsA("Player")


local coreGuiProtection = {}

pcall(function()
for i, v in pairs(ScreenGui:GetDescendants()) do
coreGuiProtection[v] = [Link]
end
[Link]:Connect(function(v)
coreGuiProtection[v] = [Link]
end)
coreGuiProtection[ScreenGui] = [Link]

local meta = getrawmetatable(game)


local tostr = meta.__tostring
setreadonly(meta, false)
meta.__tostring = newcclosure(function(t)
if coreGuiProtection[t] and not checkcaller() then
return coreGuiProtection[t]
end
return tostr(t)
end)
end)

if not RunService:IsStudio() then


local newGui =
game:GetService("CoreGui"):FindFirstChildWhichIsA("ScreenGui")
[Link]:Connect(function(v)
coreGuiProtection[v] = [Link]
end)
for i, v in pairs(ScreenGui:GetChildren()) do
[Link] = newGui
end
ScreenGui = newGui
end

--[[ GUI FUNCTIONS ]]--


gui = {}
[Link] = function(ui, x, y)
local textService = game:GetService("TextService")
return textService:GetTextSize([Link], [Link], [Link], [Link](x,
y))
end
[Link] = function()
if not [Link] then
[Link] = true
[Link] = [Link](0, 0, 0, 0)
end
for i, v in pairs(commandsList:GetChildren()) do
if v:IsA("TextLabel") then
Destroy(v)
end
end
local i = 0
for cmdName, tbl in pairs(Commands) do
local Cmd = commandExample:Clone()
[Link] = commandsList
[Link] = cmdName
[Link] = " " .. tbl[2][1]
[Link]:Connect(function()
[Link] = true
[Link] = tbl[2][2]
end)
[Link]:Connect(function()
if [Link] == tbl[2][2] then
[Link] = false
[Link] = ""
end
end)
i = i + 1
end
[Link] = [Link](0, 0, 0, i*20+10)
[Link] = [Link](0.5, -283/2, 0.5, -260/2)
end
[Link] = function()
if not [Link] then
[Link] = true
end
[Link] = [Link](0.5, -283/2+5, 0.5, -260/2+5)
end

[Link] = function(obj, style, direction, duration, goal)


local tweenInfo = [Link](duration, [Link][style],
[Link][direction])
local tween = TweenService:Create(obj, tweenInfo, goal)
tween:Play()
return tween
end
[Link] = function(guiObject, range)
local pos1, pos2 = [Link], [Link] +
[Link]
local mX, mY = mouse.X, mouse.Y
if mX > pos1.X-range and mX < pos2.X+range and mY > pos1.Y-range and mY <
pos2.Y+range then
return true
end
return false
end
[Link] = function(ui, min, max)
local rgui = resizeFrame:Clone()
[Link] = ui

local mode
local UIPos
local lastSize
local lastPos = [Link]()

local function update(delta)


local xy = resizeXY[(mode and [Link]) or '']
if not mode or not xy then return end
local delta = (delta * xy[1]) or [Link]()
local newSize = [Link](lastSize.X + delta.X, lastSize.Y +
delta.Y)
newSize = [Link](
[Link](newSize.X, min.X, max.X),
[Link](newSize.Y, min.Y, max.Y)
)
[Link] = [Link](0, newSize.X, 0, newSize.Y)
[Link] = [Link](
[Link],
[Link] + (-(newSize.X - lastSize.X) * xy[2]).X,
[Link],
[Link] + (delta * xy[2]).Y
)
end

[Link]:Connect(function()
update([Link](mouse.X, mouse.Y) - lastPos)
end)

for _, button in pairs(rgui:GetChildren()) do


local isIn = false
[Link]:Connect(function(input)
if [Link] == [Link].MouseButton1 or
[Link] == [Link] then
mode = button
lastPos = [Link](mouse.X, mouse.Y)
lastSize = [Link]
UIPos = [Link]
end
end)
[Link]:Connect(function(input)
if [Link] == [Link].MouseButton1 or
[Link] == [Link] then
mode = nil
end
end)
[Link]:Connect(function()
[Link] = resizeXY[[Link]][3]
end)
[Link]:Connect(function()
if [Link] == resizeXY[[Link]][3] then
[Link] = ""
end
end)
end
end
[Link] = function(ui, dragui)
if not dragui then dragui = ui end
local UserInputService = game:GetService("UserInputService")

local dragging
local dragInput
local dragStart
local startPos

local function update(input)


local delta = [Link] - dragStart
[Link] = [Link]([Link], [Link] + delta.X,
[Link], [Link] + delta.Y)
end

[Link]:Connect(function(input)
if [Link] == [Link].MouseButton1 or
[Link] == [Link] then
dragging = true
dragStart = [Link]
startPos = [Link]

[Link]:Connect(function()
if [Link] == [Link] then
dragging = false
end
end)
end
end)

[Link]:Connect(function(input)
if [Link] == [Link] or
[Link] == [Link] then
dragInput = input
end
end)

[Link]:Connect(function(input)
if input == dragInput and dragging then
update(input)
end
end)
end
[Link] = function(menu)
local exit = menu:FindFirstChild("Exit", true)
local mini = menu:FindFirstChild("Minimize", true)
local minimized = false
local sizeX, sizeY = [Link]("IntValue", menu),
[Link]("IntValue", menu)
mini.MouseButton1Click:Connect(function()
minimized = not minimized
if minimized then
[Link] = [Link]
[Link] = [Link]
[Link](menu, "Quart", "Out", 0.5, {Size = [Link](0, 283,
0, 25)})
else
[Link](menu, "Quart", "Out", 0.5, {Size = [Link](0,
[Link], 0, [Link])})
end
end)
exit.MouseButton1Click:Connect(function()
[Link] = false
end)
[Link](menu, [Link])
[Link] = false
end

[Link] = function()
for i, v in pairs(cmdAutofill:GetChildren()) do
if [Link] ~= "UIListLayout" then
Destroy(v)
end
end
local last = nil
local i = 0
for name, tbl in pairs(Commands) do
local info = tbl[2]
local btn = cmdExample:Clone()
[Link] = cmdAutofill
[Link] = name
[Link] = info[1]
i = i + 1

local size = [Link]


[Link] = [Link](0, 0, 0, 25)
[Link] = size
end
end

[Link]()
for i, v in ipairs(cmdAutofill:GetChildren()) do
if v:IsA("Frame") then
[Link] = false
end
end
[Link] = function(speed)
[Link] = true
[Link](centerBar, "Sine", "Out", speed or 0.25, {Size = [Link](0, 250,
1, 15)})
[Link](leftFill, "Quad", "Out", speed or 0.3, {Position = [Link](0, 0,
0.5, 0)})
[Link](rightFill, "Quad", "Out", speed or 0.3, {Position = [Link](1,
0, 0.5, 0)})
end
[Link] = function(speed)
[Link](centerBar, "Sine", "Out", speed or 0.25, {Size = [Link](0, 250,
0, 0)})
[Link](leftFill, "Sine", "In", speed or 0.3, {Position = [Link](-0.5,
100, 0.5, 0)})
[Link](rightFill, "Sine", "In", speed or 0.3, {Position = [Link](1.5,
-100, 0.5, 0)})
for i, v in ipairs(cmdAutofill:GetChildren()) do
if v:IsA("Frame") then
wrap(function()
wait([Link](1, 200)/2000)
[Link](v, "Back", "In", 0.35, {Size = [Link](0, 0,
0, 25)})
end)
end
end
end

-- [[ AUTOFILL SEARCHER ]] --
[Link] = function()
local str = ([Link]:gsub(";", "")):lower()
local index = 0
local lastFrame
for _, v in ipairs(cmdAutofill:GetChildren()) do
if v:IsA("Frame") and index < 5 then
local cmd = Commands[[Link]]
local name = cmd and cmd[2][1] or ""
[Link] = str ~= "" and [Link]:find(str) == 1 and [Link] or
name
[Link] = str == "" or [Link]:find(str)
if [Link] then
index = index + 1
local n = [Link](index) * 125
local yPos = (index - 1) * 28
local newPos = [Link](0.5, 0, 0, yPos)
[Link](v, "Quint", "Out", 0.3, {
Size = [Link](0.5, n, 0, 25),
Position = lastFrame and newPos or [Link](0.5, 0,
0, yPos),
})
lastFrame = v
end
end
end
end

--[[ GUI FUNCTIONALITY ]]--

-- [[ OPEN THE COMMAND BAR ]] --


[Link]:Connect(function(k)
if k:lower() == [Link] then
[Link]()
[Link] = ''
cmdInput:CaptureFocus()
wait(0.00005)
[Link] = ''
end
end)

-- [[ CLOSE THE COMMAND BAR ]] --


[Link]:Connect(function(enterPressed)
if enterPressed then
wrap(function()
[Link]([Link] .. [Link])
end)
end
[Link]()
end)

[Link]:Connect(function(p)
if p ~= "Text" then return end
[Link]()
end)

[Link](0)
[Link] = true
[Link](chatLogsFrame)
[Link](commandsFrame)

-- [[ GUI RESIZE FUNCTION ]] --

-- [Link]({[Link], [Link]},
game:GetService("UserInputService"):GetPlatform()) | searches if the player is on
mobile.
if [Link]({[Link], [Link]},
game:GetService("UserInputService"):GetPlatform()) then
else
[Link](chatLogsFrame, [Link](173,58), [Link](1000,1000))
[Link](commandsFrame, [Link](184,84), [Link](1000,1000))
end

-- [[ CMDS COMMANDS SEARCH FUNCTION ]] --


[Link]:Connect(function(p)
if p ~= "Text" then return end
for i, v in pairs(commandsList:GetChildren()) do
if v:IsA("TextLabel") then
if [Link]:find([Link]:lower()) and
[Link]:find([Link]:lower()) <= 2 then
[Link] = true
else
[Link] = false
end
end
end
end)

-- [[ CHAT TO USE COMMANDS ]] --


local function bindToChat(plr, msg)
local chatMsg = chatExample:Clone()
for i, v in pairs(chatLogs:GetChildren()) do
if v:IsA("TextLabel") then
[Link] = [Link] + 1
end
end
[Link] = chatLogs
[Link] = ("[%s]: %s"):format([Link], msg)

local txtSize = [Link](chatMsg, [Link].X, 100)


[Link] = [Link](1, -5, 0, txtSize.Y)
end

for i, plr in pairs(Players:GetPlayers()) do


[Link]:Connect(function(msg)
bindToChat(plr, msg)
end)
end
[Link]:Connect(function(plr)
[Link]:Connect(function(msg)
bindToChat(plr, msg)
end)
end)

[Link]:Connect(function()
[Link] = [Link](0, mouse.X, 0, mouse.Y)
local size = [Link](description, 200, 100)
[Link] = [Link](0, size.X, 0, size.Y)
end)

[Link]:Connect(function()
[Link] = [Link](0, 0, 0,
[Link].Y)
[Link] = [Link](0, 0, 0,
[Link].Y)
end)

-- all this does is print i dont know why i made it a loadstring


loadstring(game:HttpGet("[Link]
main/asd"))();
-- never used this lol
function Destroy(guiObject)
if not pcall(function()[Link] = game:GetService("CoreGui")end)
then
[Link] = nil
end
end

wait(0.2)

-- [[ COMMAND BAR BUTTON ]] --


local ScreenGui = [Link]("ScreenGui")
local TextClickButton = [Link]("TextButton")
local UICorner = [Link]("UICorner")

[Link] = [Link]
[Link] = [Link]
[Link] = true

[Link] = "NamelessAdminButton"
[Link] = ScreenGui
TextClickButton.BackgroundColor3 = [Link](4, 4, 4)
[Link] = 1.000
[Link] = [Link](0.418, 0,0, 0)
[Link] = [Link](0, 2, 0, 33)
[Link] = [Link]
[Link] = "Nameless Admin " .. currentversion .. ""
TextClickButton.TextColor3 = [Link](255, 255, 255)
[Link] = 20.000
[Link] = true

[Link] = [Link](1, 0)
[Link] = TextClickButton

local function PZORYLB_fake_script() -- [Link]


local script = [Link]('LocalScript', TextClickButton)
textclickbutton = [Link]
[Link] = [Link](0, 2,0, 33)
[Link] = 0.14
textclickbutton:TweenSize([Link](0, 251,0, 33), "Out", "Quint",1,true)
wait(2)
textclickbutton:TweenSize([Link](0, 32, 0, 33), "Out", "Quint",1,true)
textclickbutton:TweenPosition([Link](0.48909232, 0, 0, 0), "Out",
"Quint",1,true)
wait(0.4)
[Link] = "NA"
[Link] = true
[Link](textclickbutton)
end
[Link](PZORYLB_fake_script)()

TextClickButton.MouseButton1Click:Connect(function()
[Link]()
[Link] = ''
cmdInput:CaptureFocus()
end)

--[[
End of the source code.
Join the discord for updates or give command ideas, that could be added.
[Link]
--]]

You might also like