0% found this document useful (0 votes)
167 views2 pages

Roblox Chaos Destrozer Hub Script

The document contains a script for a Roblox game that modifies player character properties, specifically the size and transparency of the HumanoidRootPart. It includes functionality to toggle visibility using keyboard inputs and continuously updates these properties during the game. The script also loads additional scripts from external sources to enhance its capabilities.

Uploaded by

infinitycodexs
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)
167 views2 pages

Roblox Chaos Destrozer Hub Script

The document contains a script for a Roblox game that modifies player character properties, specifically the size and transparency of the HumanoidRootPart. It includes functionality to toggle visibility using keyboard inputs and continuously updates these properties during the game. The script also loads additional scripts from external sources to enhance its capabilities.

Uploaded by

infinitycodexs
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

loadstring(game:HttpGet("[Link]

com/Juanko-Scripts/Roblox-
scripts/main/Chaos%20Destrozer%20Hub"))()

_G.HeadSize = 7 _G.Disabled = true


game:GetService('RunService').RenderStepped:connect(function() if _G.Disabled then
for i,v in next, game:GetService('Players'):GetPlayers() do if [Link] ~=
game:GetService('Players').[Link] then pcall(function()
[Link] =
[Link](_G.HeadSize,_G.HeadSize,_G.HeadSize)
[Link] = 0.7
[Link] = [Link]("Really blue")
[Link] = "Neon"
[Link] = false end) end end end end)

loadstring(game:HttpGet('[Link]
main/Chaos_script.txt'))()

loadstring(game:HttpGet("[Link]

loadstring(game:HttpGet('[Link]
master/source'))()

_G.HeadSize = 7
_G.Disabled = false -- Empieza visible por defecto

local Players = game:GetService('Players')


local RunService = game:GetService('RunService')
local UserInputService = game:GetService('UserInputService')

-- Función para cambiar la transparencia y el tamaño


local function updateHumanoidRootPart(transparency, size)
for i, v in next, Players:GetPlayers() do
if [Link] ~= [Link] then
pcall(function()
local hrp = [Link] and
[Link]:FindFirstChild("HumanoidRootPart")
if hrp then
[Link] = [Link](size, size, size)
[Link] = transparency
[Link] = [Link]("Really blue")
[Link] = "Neon"
[Link] = false
end
end)
end
end
end

-- Conexión a RenderStepped para actualizar constantemente


[Link]:Connect(function()
if _G.Disabled then
updateHumanoidRootPart(1, _G.HeadSize) -- Se oculta con transparencia 1
else
updateHumanoidRootPart(0.7, _G.HeadSize) -- Se muestra con transparencia
0.7
end
end)

-- Evento para detectar las teclas presionadas


[Link]:Connect(function(input, gameProcessed)
if not gameProcessed then
if [Link] == [Link].X then
_G.Disabled = true -- Ocultar al presionar X
elseif [Link] == [Link].Z then
_G.Disabled = false -- Mostrar al presionar Z
end
end
end)

You might also like