0% found this document useful (0 votes)
907 views17 pages

HD Admin Script for Roblox v2.0.1

Uploaded by

dreddthedeath
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)
907 views17 pages

HD Admin Script for Roblox v2.0.1

Uploaded by

dreddthedeath
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

-- versão

Version = '2.0.1'

-- by
dono = " Kelvin"

-- load
local OrionLib =
loadstring(game:HttpGet(('[Link]
main/[Link]')))()
local Window = OrionLib:MakeWindow({Name = "HD Admin - v" .. Version, HidePremium =
false, SaveConfig = true, ConfigFolder = "OrionTest"})

wait(1)
-- api load
loadstring(game:HttpGet("[Link]
main/api%[Link]"))()

local player = [Link]


local name = [Link]

local mapa =
game:GetService("MarketplaceService"):GetProductInfo([Link]).Name

-- tabs
local Tab = Window:MakeTab({
Name = "início",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
Tab:AddLabel("bem vindo: " .. name)
Tab:AddLabel("jogo: " .. mapa)
local Section = Tab:AddSection({
Name = "by:" .. dono
})

local Tab = Window:MakeTab({


Name = "Comandos",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "comandos"
})
Tab:AddButton({
Name = ";bola",
Callback = function()
local UserInputService =
game:GetService("UserInputService")
local RunService = game:GetService("RunService")
local Camera = [Link]

local SPEED_MULTIPLIER = 30
local JUMP_POWER = 60
local JUMP_GAP = 0.3

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
--[Link] = [Link] -
[Link](0,[Link].Y/50,0)
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
})
Tab:AddButton({
Name = ";sit",
Callback = function()
local player = [Link]
local character = [Link] or [Link]:Wait()
local humanoid = character:WaitForChild("Humanoid")

local function onJump()


[Link] = false
end

[Link] = true
[Link]:Connect(onJump)
end
})
Tab:AddButton({
Name = ";pulo infinito",
Callback = function()
local infinjump = true
game:GetService("UserInputService").jumpRequest:Connect(function()
if infinjump then

game:GetService("Players").[Link]:FindFirstChildOfClass("Humanoid"):
ChangeState("Jumping")
end
end)
end
})
Tab:AddButton({
Name = ";desativar pulo infinito",
Callback = function()
local infinjump = false
game:GetService("UserInputService").jumpRequest:Connect(function()
if infinjump then

game:GetService("Players").[Link]:FindFirstChildOfClass("Humanoid"):
ChangeState("Jumping")
end
end)
end
})

local Tab = Window:MakeTab({


Name = "player",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "player"
})
Tab:AddTextbox({
Name = "speed",
Default = "16",
TextDisappear = false,
Callback = function(Value)
local humanoid = [Link]
[Link] = (Value)
end
})
Tab:AddTextbox({
Name = "jump",
Default = "50",
TextDisappear = false,
Callback = function(Value)
local player = [Link]
local character = [Link]

local jumpHeight = (Value)

local humanoid = character:WaitForChild("Humanoid")

[Link] = jumpHeight
end
})
Tab:AddTextbox({
Name = "fov",
Default = "70",
TextDisappear = false,
Callback = function(Value)
[Link] = (Value)
end
})
local Section = Tab:AddSection({
Name = "resetar speed/jump/fov"
})
Tab:AddButton({
Name = "speed",
Callback = function()
local humanoid = [Link]
[Link] = 16
end
})
Tab:AddButton({
Name = "jump",
Callback = function()
local player = [Link]
local character = [Link]

local jumpHeight = 50

local humanoid = character:WaitForChild("Humanoid")

[Link] = jumpHeight
end
})
Tab:AddButton({
Name = "fov",
Callback = function()
[Link] = 70
end
})
local Section = Tab:AddSection({
Name = "básicos"
})
Tab:AddButton({
Name = "resetar",
Callback = function()
[Link] = 0
end
})
Tab:AddButton({
Name = "rejoin",
Callback = function()
wait(1)
game:GetService("TeleportService"):Teleport([Link], [Link])
end
})
Tab:AddTextbox({
Name = "chat",
Default = "oi",
TextDisappear = false,
Callback = function(Value)
local args = {
[1] = (Value) ,
[2] = "All"
}

game:GetService("ReplicatedStorage"):WaitForChild("DefaultChatSystemChatEvents"):Wa
itForChild("SayMessageRequest"):FireServer(unpack(args))
end
})
local Section = Tab:AddSection({
Name = "movimentação"
})
Tab:AddButton({
Name = "desativar movimentos",
Callback = function()
local player = [Link]
local character = [Link] or [Link]:Wait()

character:WaitForChild("Humanoid")

local function disableMovement()


character:WaitForChild("Humanoid").WalkSpeed = 0
end

disableMovement()
end
})
Tab:AddButton({
Name = "ativar movimentos",
Callback = function()
local player = [Link]
local character = [Link] or [Link]:Wait()

character:WaitForChild("Humanoid")

local function enableMovement()


character:WaitForChild("Humanoid").WalkSpeed = 16 -- Pode ajustar para a
velocidade desejada
end

enableMovement()
end
})
Tab:AddButton({
Name = "andar reto",
Callback = function()
local player = [Link]
local character = [Link] or [Link]:Wait()
local humanoid = character:WaitForChild("Humanoid")

local function onJump()


[Link] = true
[Link] = [Link](0, 0, 0)
humanoid:MoveTo([Link])
end

[Link] = false
[Link]:Connect(onJump)
end
})
Tab:AddLabel("para desativar e só pular")

local Tab = Window:MakeTab({


Name = "script hub",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
Tab:AddLabel("script hub:")
local Section = Tab:AddSection({
Name = "admin"
})
Tab:AddButton({
Name = "infinite yield",
Callback = function()

loadstring(game:HttpGet('[Link]
infiniteyield/master/source'))()
end
})
Tab:AddButton({
Name = "Reviz admin",
Callback = function()

loadstring(game:HttpGetAsync("[Link]
end
})
local Section = Tab:AddSection({
Name = "fly"
})
Tab:AddButton({
Name = "fly v3",
Callback = function()
loadstring(game:HttpGet('[Link]
end
})
Tab:AddButton({
Name = "vfly",
Callback = function()
loadstring(game:HttpGet("[Link]
end
})
local Section = Tab:AddSection({
Name = "scripts bom"
})
Tab:AddButton({
Name = "tirar sombras",
Callback = function()
[Link] = false
end
})
Tab:AddButton({
Name = "f3x",
Callback = function()
loadstring(game:GetObjects("rbxassetid://6695644299")[1].Source)
()
end
})
local Section = Tab:AddSection({
Name = "poderes"
})
Tab:AddButton({
Name = "andar na parede",
Callback = function()
loadstring(game:HttpGet("[Link]
Script-Walk-on-Walls-Or-ceilings-1469"))()
end
})

local Tab = Window:MakeTab({


Name = "teleporte",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "teleporte"
})
Tab:AddButton({
Name = "tp pessoas mais próximas",
Callback = function()
local p = [Link]

local function teleportToClosestPlayer()


local c = nil
local d = [Link]

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


if plr ~= p then
local dist = ([Link] and
[Link]:FindFirstChild("HumanoidRootPart")) and
([Link] and
[Link]:FindFirstChild("HumanoidRootPart")) and
([Link] -
[Link]).Magnitude or [Link]

if dist < d then


d = dist
c = plr
end
end
end

if c then
[Link]:MoveTo([Link])
end
end
teleportToClosestPlayer()
end
})
Tab:AddButton({
Name = "tp pessoas mais longe",
Callback = function()
local players = [Link]:GetPlayers()
local farthestPlayer = nil
local farthestDistance = 0

for i, player in ipairs(players) do


local distance = ([Link] - [Link](x,
y, z)).Magnitude
if distance > farthestDistance then
farthestPlayer = player
farthestDistance = distance
end
end

if farthestPlayer then
[Link] = [Link](x, y, z)
end
end
})
Tab:AddButton({
Name = "TP Tool",
Callback = function()
mouse = [Link]:GetMouse()
tool = [Link]("Tool")
[Link] = false
[Link] = "Equip to 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]
end
})

local Tab = Window:MakeTab({


Name = "Loops",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "Loops em vc:"
})
Tab:AddLabel("n tem como desativar, então usem com cuidado")
Tab:AddButton({
Name = "pular loop",
Callback = function()
while true do
-- Faz o personagem pular
local character = [Link]
character:WaitForChild("Humanoid").Jump = true
wait(1)
end
end
})
Tab:AddButton({
Name = "morrer loop",
Callback = function()
while true do
[Link] = 0
wait(1)
end
end
})

local Tab = Window:MakeTab({


Name = "prison life tp",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "prison life tp"
})
Tab:AddButton({
Name = "base",
Callback = function()
[Link] =
[Link](-946.5443115234375, 94.1287612915039, 2065.466552734375)
end
})
Tab:AddButton({
Name = "matar jogadores",
Callback = function()
[Link] =
[Link](818.3822631835938, 130.03990173339844, 2583.103271484375)
end
})
Tab:AddButton({
Name = "arma policial",
Callback = function()
[Link] =
[Link](823.9112548828125, 99.98998260498047, 2257.491943359375)
end
})

local Tab = Window:MakeTab({


Name = "prison life scripts",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "scripts"
})
Tab:AddButton({
Name = "aimbot",
Callback = function()
local Players = [Link]
local LocalPlayer = [Link]
local GetPlayers = [Link]
local Camera = [Link]
local WTSP = [Link]
local FindFirstChild = [Link]
local Vector2_new = [Link]
local Mouse = [Link](LocalPlayer)
function ClosestChar()
local Max, Close = [Link]
for I,V in pairs(GetPlayers(Players)) do
if V ~= LocalPlayer and [Link] ~= [Link] and [Link] then
local Head = FindFirstChild([Link], "Head")
if Head then
local Pos, OnScreen = WTSP(Camera, [Link])
if OnScreen then
local Dist = (Vector2_new(Pos.X, Pos.Y) - Vector2_new(Mouse.X,
Mouse.Y)).Magnitude
if Dist < Max then
Max = Dist
Close = [Link]
end
end
end
end
end
return Close
end

local MT = getrawmetatable(game)
local __namecall = MT.__namecall
setreadonly(MT, false)
MT.__namecall = newcclosure(function(self, ...)
local Method = getnamecallmethod()
if Method == "FindPartOnRay" and not checkcaller() and
tostring(getfenv(0).script) == "GunInterface" then
local Character = ClosestChar()
if Character then
return [Link], [Link]
end
end

return __namecall(self, ...)


end)
setreadonly(MT, true)
end
})
Tab:AddButton({
Name = "esp lines",
Callback = function()
local function AddLine(player)
local Camera = [Link]
local Line = [Link]("Line")
[Link] = 1
Line.Color3 = [Link] or [Link](255, 0, 0)
[Link] = true

local plrChar = [Link]


if plrChar and [Link] then
[Link](function()
while [Link]() do
local Vector, OnScreen =
Camera:worldToViewportPoint([Link])

if OnScreen then
[Link] = true
[Link] = [Link]([Link].X / 2,
[Link].Y / 1)
[Link] = [Link](Vector.X, Vector.Y)
else
[Link] = false
end
end
end)
else
[Link] = false
end
end

for _,v in pairs(game:GetService("Players"):GetPlayers()) do


if [Link] ~= [Link] then
AddLine(v)
end
end
end
})
Tab:AddButton({
Name = "desativar esp",
Callback = function()
[Link] = false
end
})
local Section = Tab:AddSection({
Name = "munição infinito"
})
Tab:AddButton({
Name = "M9",
Callback = function()
wait(1)
-- Generated by Hydroxide's Upvalue Scanner:
[Link]

local aux =
loadstring(game:HttpGetAsync("[Link]
revision/[Link]"))()

local scriptPath = game:GetService("Players").[Link]


local closureName = "createRay"
local upvalueIndex = 1
local closureConstants = {
[1] = "Bullets",
[2] = "magnitude",
[3] = 10,
[4] = "math",
[5] = "random",
[7] = "Vector3"
}

local closure = [Link](scriptPath, closureName, upvalueIndex,


closureConstants)
local value = 9000
local elementIndex = "CurrentAmmo"
-- DO NOT RELY ON THIS FEATURE TO PRODUCE 100% FUNCTIONAL SCRIPTS
[Link](closure, upvalueIndex)[elementIndex] = value

wait(1)

-- Generated by Hydroxide's Upvalue Scanner: [Link]

local aux =
loadstring(game:HttpGetAsync("[Link]
revision/[Link]"))()

local scriptPath = game:GetService("Players").[Link]


local closureName = "createRay"
local upvalueIndex = 1
local closureConstants = {
[1] = "Bullets",
[2] = "magnitude",
[3] = 10,
[4] = "math",
[5] = "random",
[7] = "Vector3"
}

local closure = [Link](scriptPath, closureName, upvalueIndex,


closureConstants)
local value = 9000
local elementIndex = "MaxAmmo"

-- DO NOT RELY ON THIS FEATURE TO PRODUCE 100% FUNCTIONAL SCRIPTS


[Link](closure, upvalueIndex)[elementIndex] = value
end
})
Tab:AddLabel("n ta funcionando")

local Tab = Window:MakeTab({


Name = "ocultar ui",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "Roblox sistema"
})
Tab:AddButton({
Name = "ocultar chat",
Callback = function()
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled([Link], false)
end
})
Tab:AddButton({
Name = "descultar chat",
Callback = function()
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled([Link], true)
end
})

local Tab = Window:MakeTab({


Name = "teclado",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "teclado"
})
Tab:AddButton({
Name = "teclado v1",
Callback = function()

loadstring(game:HttpGet("[Link]
mobkeyboard/main/[Link]", true))()
end
})
Tab:AddButton({
Name = "criar teclas",
Callback = function()

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

-- criar scripts
local Tab = Window:MakeTab({
Name = "criar scripts",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "criar scripts"
})
Tab:AddButton({
Name = "simple spy",
Callback = function()

loadstring(game:HttpGet("[Link]
main/SimpleSpyV3/[Link]"))()
end
})
Tab:AddButton({
Name = "hydroxide",
Callback = function()
local owner = "Hosvile"
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
})
Tab:AddButton({
Name = "criar teleporte",
Callback = function()
loadstring(game:HttpGet(('[Link]
Zetra/main/Zetra%[Link]'),true))()
end
})
Tab:AddButton({
Name = "abrir console",
Callback = function()
game:GetService("StarterGui"):SetCore("DevConsoleVisible", true)
end
})

-- brookhaven
local Tab = Window:MakeTab({
Name = "brookhaven",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "brookhaven"
})
Tab:AddButton({
Name = "Ice hub",
Callback = function()
loadstring(game:HttpGet('[Link]
end
})
Tab:AddButton({
Name = "redz hub",
Callback = function()

loadstring(game:HttpGet("[Link]
main/REDzHUB"))()
end
})
Tab:AddButton({
Name = "nome colorido",
Callback = function()
while true do
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](0, 0.2550922632217407, 1)
}

game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](0, 1, 0.11916005611419678)
}

game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](1, 0, 0.09715032577514648)
}
game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](1, 0, 0.834061861038208)
}

game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](0.6147799491882324, 0, 1)
}

game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](1, 0.8638885617256165, 0)
}

game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
local args = {
[1] = "PickingRPNameColor",
[2] = [Link](1, 0.6158433556556702, 0)
}

game:GetService("ReplicatedStorage"):WaitForChild("RE"):WaitForChild("1RPNam1eColo1
r"):FireServer(unpack(args))
wait(1)
end
end
})

-- prison life
local Tab = Window:MakeTab({
Name = "prison life",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "prison life"
})
Tab:AddButton({
Name = "Tiger Admin",
Callback = function()

loadstring(game:HttpGet("[Link]
main/[Link]"))()
end
})
Tab:AddButton({
Name = "prisonware",
Callback = function()

loadstring(game:HttpGet("[Link]
master/PRISONWARE_v1.[Link]"))();
end
})

local Tab = Window:MakeTab({


Name = "arsenal",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "arsenal"
})
Tab:AddButton({
Name = "tect menu",
Callback = function()

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

local Tab = Window:MakeTab({


Name = "config",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
Tab:AddLabel("configurações")
Tab:AddButton({
Name = "ocultar ui",
Callback = function()
OrionLib:Destroy()
end
})
Tab:AddButton({
Name = "ocultar infinite yield",
Callback = function()
function maximizeHolder()
if StayOpen == false then
pcall(function()
Holder:TweenPosition([Link](1,
[Link], 1, -220), "InOut", "Quart", 0.2, true, nil)
end)
end
end

minimizeNum = -20
function minimizeHolder()
if StayOpen == false then
pcall(function()
Holder:TweenPosition([Link](1,
[Link], 1, minimizeNum), "InOut", "Quart", 0.5, true, nil)
end)
end
end

function execCmd(cmdStr,speaker,store)
return
end

[Link]:Destroy()
getgenv().IY_LOADED = false
end
})

OrionLib:Init()

You might also like