0% found this document useful (0 votes)
28 views8 pages

Roblox Zx Hub Script Features

Uploaded by

markkoronfuly
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)
28 views8 pages

Roblox Zx Hub Script Features

Uploaded by

markkoronfuly
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

local desync = false

local flying = false


local flySpeed = 100
local espActive = false

local Players = game:GetService("Players")


local ReplicatedStorage = game:GetService("ReplicatedStorage")
local UserInputService = game:GetService("UserInputService")
local Workspace = game:GetService("Workspace")
local RunService = game:GetService("RunService")
local LocalPlayer = [Link]
--credit to stellar for desync and bodybox but i made the desync method to ykyk
local function attach(char)
local hrp = char:WaitForChild("HumanoidRootPart")
for _, oldBox in pairs(workspace:GetChildren()) do
if [Link] == "BodyBox" then oldBox:Destroy() end
end
local box = [Link]("Part")
[Link] = [Link](2, 2, 2)
[Link] = [Link](255, 0, 255)
[Link] = false
[Link] = [Link]
[Link] = "BodyBox"
[Link] = workspace
if desync then
[Link] = true
[Link] = [Link]
if setfflag then
setfflag("PhysicsSenderMaxBandwidthBps", "0.35")
setfflag("WorldStepsOffsetAdjustRate", "-9999999999")
end
else
[Link] = false
[Link] = [Link]
local weld = [Link]("WeldConstraint")
weld.Part0 = hrp
weld.Part1 = box
[Link] = box
if setfflag then
setfflag("PhysicsSenderMaxBandwidthBps", "1000000")
setfflag("WorldStepsOffsetAdjustRate", "-1")
end
end
end

if [Link] then attach([Link]) end


[Link]:Connect(attach)

local screen = [Link]("ScreenGui")


[Link] = "ZxHub"
[Link] = false
[Link] = LocalPlayer:WaitForChild("PlayerGui")

local frame = [Link]("Frame", screen)


[Link] = [Link](0, 240, 0, 380)
[Link] = [Link](0.7, 0, 0.3, 0)
frame.BackgroundColor3 = [Link](30, 30, 30)
[Link] = 0.15
frame.BorderColor3 = [Link](170, 0, 255)
[Link] = 2
[Link] = true
[Link] = true

local uicorner = [Link]("UICorner", frame)


[Link] = [Link](0, 12)

local title = [Link]("TextLabel", frame)


[Link] = [Link](1, 0, 0, 28)
[Link] = [Link](0, 0, 0, 0)
[Link] = 1
[Link] = "Zx Hub"
title.TextColor3 = [Link](200, 0, 255)
[Link] = [Link]
[Link] = true

local desyncBtn = [Link]("TextButton", frame)


[Link] = [Link](0, 200, 0, 36)
[Link] = [Link](0, 20, 0, 40)
desyncBtn.BackgroundColor3 = [Link](40, 0, 80)
[Link] = 0
desyncBtn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 18
[Link] = "DESYNC: OFF"

local desyncBtnCorner = [Link]("UICorner", desyncBtn)


[Link] = [Link](0, 8)
local desyncStroke = [Link]("UIStroke", desyncBtn)
[Link] = [Link](170, 0, 255)
[Link] = 2

[Link]:Connect(function() [Link] = 0.3 end)


[Link]:Connect(function() [Link] = 0 end)
desyncBtn.MouseButton1Click:Connect(function()
desync = not desync
[Link] = "DESYNC: " .. (desync and "ON" or "OFF")
if [Link] then attach([Link]) end
if desync then
[Link](function()
pcall(function()
local char = [Link] or
[Link]:Wait()
local hum = char:WaitForChild("Humanoid")
local bp = LocalPlayer:WaitForChild("Backpack")
local tool = bp:FindFirstChild("Quantum Cloner") or
char:FindFirstChild("Quantum Cloner")
if not tool then return end
[Link] = char
hum:EquipTool(tool)
[Link](0.5)
local net =
ReplicatedStorage:WaitForChild("Packages"):WaitForChild("Net")
net:WaitForChild("RE/UseItem"):FireServer()
[Link](0.5)
net:WaitForChild("RE/QuantumCloner/OnTeleport"):FireServer()
[Link](2)
end)
end)
end
end)

local flyBtn = [Link]("TextButton", frame)


[Link] = [Link](0, 200, 0, 36)
[Link] = [Link](0, 20, 0, 85)
flyBtn.BackgroundColor3 = [Link](40, 0, 80)
flyBtn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 18
[Link] = "FLY: OFF"

local flyCorner = [Link]("UICorner", flyBtn)


[Link] = [Link](0, 8)
local flyStroke = [Link]("UIStroke", flyBtn)
[Link] = [Link](170, 0, 255)
[Link] = 2

local bv, bagv


local mobileControl = [Link](0,0,0)

[Link]:Connect(function() [Link] = 0.3 end)


[Link]:Connect(function() [Link] = 0 end)
flyBtn.MouseButton1Click:Connect(function()
flying = not flying
[Link] = "FLY: " .. (flying and "ON" or "OFF")
local char = [Link] or [Link]:Wait()
local hrp = char:WaitForChild("HumanoidRootPart")
if flying then
bv = [Link]("BodyVelocity")
[Link] = [Link](1e5,1e5,1e5)
[Link] = [Link](0,0,0)
[Link] = hrp
bagv = [Link]("BodyGyro")
[Link] = [Link](1e5,1e5,1e5)
bagv.P = 10000
[Link] = hrp
else
if bv then bv:Destroy() end
if bagv then bagv:Destroy() end
bv, bagv = nil, nil
end
end)

[Link]:Connect(function()
if flying and [Link] and
[Link]:FindFirstChild("HumanoidRootPart") then
local hrp = [Link]
local cam = [Link]
local move = [Link](0,0,0)
if UserInputService:IsKeyDown([Link].W) then move = move +
[Link] end
if UserInputService:IsKeyDown([Link].S) then move = move -
[Link] end
if UserInputService:IsKeyDown([Link].A) then move = move -
[Link] end
if UserInputService:IsKeyDown([Link].D) then move = move +
[Link] end
if UserInputService:IsKeyDown([Link]) then move = move +
[Link](0,1,0) end
if UserInputService:IsKeyDown([Link]) then move = move -
[Link](0,1,0) end
move = move + mobileControl
if bv then [Link] = [Link] * flySpeed end
if bagv then [Link] = [Link] end
end
end)

[Link]:Connect(function(touch, gp)
if gp then return end
if flying then
local delta = [Link]
mobileControl = [Link](delta.X/5, 0, -delta.Y/5)
end
end)

[Link]:Connect(function()
mobileControl = [Link](0,0,0)
end)

local laserActive = false


local laserBtn = [Link]("TextButton", frame)
[Link] = [Link](0, 200, 0, 36)
[Link] = [Link](0, 20, 0, 130)
laserBtn.BackgroundColor3 = [Link](40, 0, 80)
laserBtn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 16
[Link] = "AUTO LASER: OFF"

local lCorner = [Link]("UICorner", laserBtn)


[Link] = [Link](0, 8)
local lStroke = [Link]("UIStroke", laserBtn)
[Link] = [Link](170, 0, 255)
[Link] = 2

laserBtn.MouseButton1Click:Connect(function()
laserActive = not laserActive
[Link] = "AUTO LASER: " .. (laserActive and "ON" or "OFF")
if laserActive then
[Link](function()
while laserActive do
[Link]()
pcall(function()
local net =
ReplicatedStorage:WaitForChild("Packages"):WaitForChild("Net")
local useItem = net:FindFirstChild("RE/UseItem") or
net:FindFirstChild("UseItem")
if useItem then useItem:FireServer() end
end)
end
end)
end
end)

local espBtn = [Link]("TextButton", frame)


[Link] = [Link](0, 200, 0, 36)
[Link] = [Link](0, 20, 0, 175)
espBtn.BackgroundColor3 = [Link](40, 0, 80)
espBtn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 16
[Link] = "ESP: OFF"

local espCorner = [Link]("UICorner", espBtn)


[Link] = [Link](0, 8)
local espStroke = [Link]("UIStroke", espBtn)
[Link] = [Link](170, 0, 255)
[Link] = 2

local f, b, c, bm, pi, a0, a1

espBtn.MouseButton1Click:Connect(function()
espActive = not espActive
[Link] = "ESP: " .. (espActive and "ON" or "OFF")
if espActive then
f = [Link]("Folder")
[Link] = "Esp"
[Link] = LocalPlayer:WaitForChild("PlayerGui")
b = [Link]("Folder")
[Link] = "espstuff"
[Link] = Workspace
local function m(t)
t = t:match("^%s*(.-)%s*$")
local n,s = t:match("%$([%d%.]+)%s*([kKmMbB]?)%s*/?s?")
n = tonumber(n) or 0
if s then s = s:lower()
if s=="k" then n=n*1000
elseif s=="m" then n=n*1000000
elseif s=="b" then n=n*1000000000 end
end
return n
end
local function e(pn,it,mt,tp)
if c then c:Destroy() end
local bg = [Link]("BillboardGui")
[Link] = [Link](0,150,0,50)
[Link] = true
[Link] = tp
[Link] = f
[Link] = [Link](0,3,0)
local tl = [Link]("TextLabel")
[Link] = [Link](1,0,1,0)
[Link] = 1
tl.TextColor3 = [Link](255,255,255)
tl.TextStrokeColor3 = [Link](0,0,0)
[Link] = 0
[Link] = false
[Link] = 10
[Link] = true
[Link] = [Link]('<font color="rgb(255,0,0)">%s</font>\n<font
color="rgb(0,255,0)">%s</font>\n<font color="rgb(255,255,0)">%s</font>',pn,it,mt
or"")
[Link] = bg
c = bg
end
local function cb(tp)
local ch = [Link]
if not ch or not ch:FindFirstChild("HumanoidRootPart") or not tp then
return end
if bm then bm:Destroy() if a0 then a0:Destroy() end if a1 then
a1:Destroy() end end
a0 = [Link]("Attachment")
[Link] = [Link]
a1 = [Link]("Attachment")
[Link] = tp
local bn = [Link]("Beam")
bn.Attachment0 = a0
bn.Attachment1 = a1
bn.Width0 = 0.35
bn.Width1 = 0.35
[Link] = true
[Link] = 0
[Link] = b
bm = bn
[Link](function()
while [Link] do
local cl = [Link]((tick()%5)/5,1,1)
[Link] = [Link](cl)
[Link](0.05)
end
end)
end
local function fb()
local pf = Workspace:FindFirstChild("Plots")
if not pf then return end
local bv = -1
local bp = nil
for _,pt in ipairs(pf:GetChildren()) do
local pd = pt:FindFirstChild("AnimalPodiums")
if pd then
for _,pdm in ipairs(pd:GetChildren()) do
local sp = pdm:FindFirstChild("Base") and
[Link]:FindFirstChild("Spawn")
if sp then
local at = sp:FindFirstChild("Attachment")
local oh = at and at:FindFirstChild("AnimalOverhead")
if oh then
local nl = oh:FindFirstChild("DisplayName")
local gl = oh:FindFirstChild("Generation")
local ml = oh:FindFirstChild("Mutation")
if gl then
local pn = nl and [Link] or "Unknown"
local gt = [Link]
local mut = ml and [Link] or ""
local mps = m(gt)
local gn = tonumber(gt:match("%d+")) or 0
local v = mps>0 and mps or gn
if v>bv then
bv = v
bp =
{name=pn,info=gt,mutation=mut,part=sp,value=v}
end
end
end
end
end
end
end
return bp
end
local function ue()
local pt = fb()
if pt then
local nu = false
if not c then nu = true
elseif pi then
if [Link]>[Link] or [Link]~=[Link] then nu = true
end
end
if nu then
pi = pt
e([Link],[Link],[Link],[Link])
cb([Link])
end
else
if c then c:Destroy() c=nil pi=nil end
if bm then bm:Destroy() bm=nil end
end
end
[Link](function()
while espActive do
[Link](0.3)
ue()
end
end)
else
if f then f:Destroy() end
if b then b:Destroy() end
c,bm,pi,a0,a1 = nil,nil,nil,nil,nil
end
end)

local antiBeeBtn = [Link]("TextButton", frame)


[Link] = [Link](0, 200, 0, 36)
[Link] = [Link](0, 20, 0, 220)
antiBeeBtn.BackgroundColor3 = [Link](40, 0, 80)
antiBeeBtn.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = 16
[Link] = "ANTI BEE"

local abCorner = [Link]("UICorner", antiBeeBtn)


[Link] = [Link](0, 8)
local abStroke = [Link]("UIStroke", antiBeeBtn)
[Link] = [Link](170, 0, 255)
[Link] = 2

antiBeeBtn.MouseButton1Click:Connect(function()
local Net = require([Link])
local Event = Net:RemoteEvent("UseItem")
for _,v in pairs(getconnections([Link])) do v:Disable() end
[Link]:Connect(function(action,...)
if action == "Bee Attack" then return end
for _,v in pairs(getconnections([Link])) do
if [Link] then v:Enable() pcall([Link],action,...) v:Disable()
end
end
end)
end)

You might also like