Skip to content

Commit e2161f8

Browse files
authored
Update ZenX
1 parent 775ace0 commit e2161f8

File tree

1 file changed

+198
-136
lines changed

1 file changed

+198
-136
lines changed

ZenX

Lines changed: 198 additions & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -1,181 +1,243 @@
1-
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
2-
3-
local Window = Library.CreateLib("ZenX Hub", "DarkTheme")
4-
5-
--MAIN
6-
local Locks = Window:NewTab("Locks")
7-
local LocksSection = Locks:NewSection("Locks")
8-
9-
10-
11-
12-
13-
LocksSection:NewButton("streamable silent", "Q lock", function()
14-
loadstring(game:HttpGet("https://pastebin.com/raw/J66ZWaRZ"))()
1+
local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
2+
getgenv().SecureMode = true
3+
4+
5+
6+
local Window = Rayfield:CreateWindow({
7+
Name = "discord.gg/rCx54xGTmd MADE BY 8.#9308 and poof#8110",
8+
LoadingTitle = "ZenX Ontop Join discord.gg/rCx54xGTmd",
9+
LoadingSubtitle = "by 8.#9308",
10+
ConfigurationSaving = {
11+
Enabled = true,
12+
FolderName = nil, -- Create a custom folder for your hub/game
13+
FileName = "ZenX Hub"
14+
},
15+
Discord = {
16+
Enabled = false,
17+
Invite = "rCx54xGTmd", -- The Discord invite code, do not include discord.gg/
18+
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
19+
},
20+
KeySystem = true, -- Set this to true to use our key system
21+
KeySettings = {
22+
Title = "ZenX Hub",
23+
Subtitle = "Key System",
24+
Note = "Join the discord (discord.gg/rCx54xGTmd)",
25+
FileName = "ZenX Key",
26+
SaveKey = false,
27+
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
28+
Key = "1010-PVPOP;091I2J-APOSLF"
29+
}
30+
})
31+
32+
local Tab = Window:CreateTab("locks/anti locks", 4483362458) -- Title, Image
33+
local Section = Tab:CreateSection("Locks")
34+
local Button = Tab:CreateButton({
35+
Name = "Lock SILENT",
36+
Callback = function()
37+
loadstring(game:HttpGet(('https://pastebin.com/raw/tL3Rvzu8')))()
38+
end,
39+
})
40+
41+
local Button = Tab:CreateButton({
42+
Name = "SPECTER LEAKED",
43+
Callback = function()
44+
loadstring(game:HttpGet("https://pastebin.com/raw/DenR2tZ1"))()
45+
end,
46+
})
47+
48+
49+
50+
local Button = Tab:CreateButton({
51+
Name = "Lock UI LEAKED (Azure)",
52+
Callback = function()
53+
loadstring(game:HttpGet(('https://pastebin.com/raw/C41gr7fv')))()
54+
end,
55+
})
56+
57+
local Button = Tab:CreateButton({
58+
Name = "Universal SILENT",
59+
Callback = function()
60+
loadstring(game:HttpGet("https://raw.githubusercontent.com/xUnanimous/es/main/uni-sa0/main.lua"))()
61+
end,
62+
})
63+
64+
local Button = Tab:CreateButton({
65+
Name = "TOGGLE WITH LOWERCASE v",
66+
Callback = function()
67+
getgenv().Toggle = "v"--Must be lowercase
68+
getgenv().Intro = false
69+
loadstring(game:HttpGet("https://raw.githubusercontent.com/NoUGotbannedlol/DaHubV3/main/Launch"))()
70+
end,
71+
})
72+
73+
local Button = Tab:CreateButton({
74+
Name = "akon private LOCK leaked",
75+
Callback = function()
76+
loadstring(game:HttpGet("https://raw.githubusercontent.com/S1NSWRLD/Akon-Private/main/akon%20BEST%20LOCK.lua", true))()
77+
end,
78+
})
79+
80+
local Button = Tab:CreateButton({
81+
Name = "Rage Resolver",
82+
Callback = function()
83+
loadstring(game:HttpGet("https://raw.githubusercontent.com/nyulachan/nyula/main/nyulauh"))();
84+
end,
85+
})
86+
87+
local Button = Tab:CreateButton({
88+
Name = "IDFK what this is Buy Use lower case v to toggle",
89+
Callback = function()
90+
getgenv().Toggle = "v"--Must be lowercase
91+
getgenv().Intro = false
92+
local Zenaki = false
93+
94+
function onKeyPress(inputObject, gameProcessedEvent)
95+
if inputObject.KeyCode == Enum.KeyCode.Y and gameProcessedEvent == false then
96+
if Zenaki == false then
97+
Zenaki = true
98+
99+
elseif Zenaki == true then
100+
Zenaki = false
101+
102+
103+
end
104+
end
105+
end
106+
107+
game:GetService("UserInputService").InputBegan:connect(onKeyPress)
108+
109+
110+
game:GetService("RunService").RenderStepped:Connect(function()
111+
if Zenaki == true then
112+
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame.lookVector * 14
113+
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(3.50), 0)
114+
end
115+
15116
end)
117+
loadstring(game:HttpGet("https://gist.githubusercontent.com/murderspree/84309f4b27fc481923f1a647c204826d/raw/a1134751b9ab8cdae1b4fbc7db9230516d8d0eca/gistfile1.txt"))()
118+
end,
119+
})
16120

17121

18-
LocksSection:NewButton("Anti Fling", "bind is P", function()
19-
loadstring(game:HttpGet("loadstring(game:HttpGet('https://raw.githubusercontent.com/Linux6699/DaHubRevival/main/AntiFling.lua'))()"))()
20-
end)
122+
local Section = Tab:CreateSection("Anti Locks")
21123

22124

23-
LocksSection:NewButton("Leaked", "ButtonInfo", function()
24-
loadstring(game:HttpGet("https://raw.githubusercontent.com/tinyunix1/leaked-lock/main/source"))()
25-
end)
125+
local Button = Tab:CreateButton({
126+
Name = "DeSync",
127+
Callback = function()
128+
loadstring(game:HttpGet("https://pastebin.com/raw/q8LXbdrH",true))()
129+
end,
130+
})
26131

27132

133+
local Button = Tab:CreateButton({
134+
Name = "SYNAPSE ONLY ANTI LOCK",
135+
Callback = function()
136+
loadstring(game:HttpGet("https://raw.githubusercontent.com/tailgater/Fatality/main/Synapse"))()
137+
end,
138+
})
28139

29-
LocksSection:NewButton("Streamable lock", "ButtonInfo", function()
30-
loadstring(game:HttpGet("https://pastebin.com/raw/Q3jGyVHX"))()
31-
end)
140+
local Button = Tab:CreateButton({
141+
Name = "Z TO TOGGLE AIM VIEW C FOR ANTI LOCK",
142+
Callback = function()
143+
--< DM fear#0004 for help >--
32144

145+
--< Aimviewer Settings >--
146+
AimviewerToggleKeybind = "z" -- Aimviewer toggle keybind
147+
AimviewerSwitchKeybind = "x" -- Switch player keybind
148+
AimviewerColor = Color3.fromRGB(255, 0, 0) -- Color of Aimviewer beam
149+
AimviewerBeamWidth = 0.3 -- Width of Aimviewer beam
33150

151+
--< Desync Settings >--
152+
DesyncKeybind = (Enum.KeyCode.V) -- Desync toggle keybind
153+
DesyncOffset = 3 -- Desync Offset
34154

155+
--< Antilock >--
156+
AntiKeybind = "c" -- Antilock toggle keybind
157+
AntiVelocity = 1450,1450,1450 -- Only change this if yk what youre doing
35158

36-
LocksSection:NewButton("ASS", "lock button is c and it is silent aim", function()
37-
--[[
159+
--< Miscallaneous >--
160+
icon = "rbxassetid://12319510751" -- Notification Image
38161

162+
--------------------------------------------------------------------------------
163+
loadstring(game:HttpGet("https://raw.githubusercontent.com/fear0004/script/main/endlockers"))()
164+
end,
165+
})
39166

167+
local Button = Tab:CreateButton({
168+
Name = "SYNAPSE ONLY ANTI LOCK",
169+
Callback = function()
170+
loadstring(game:HttpGet("https://raw.githubusercontent.com/tailgater/Fatality/main/Synapse"))()
171+
end,
172+
})
40173

41-
██████ ██████ ██ ████████
42-
████████ ████████ ██ ████████
43-
████ ███ ██ ██ ██
44-
██ ██ ██ ██ ██
45-
█████ ██ ███ ██ ██
46-
████████ ████████ ██████ ██
47-
█████ ██████ ██████ ██
48-
49-
-- resolver made by colt, dont pick people up it will make you slightly cframe.
50-
]]
51174

52-
loadstring(game:HttpGet("https://pastebin.com/raw/zVeEZTs6"))()
53-
DaHoodSettings.Prediction = 0.1437 -- lower for lower ping and higher for higher ping.
54-
Aiming.FOV = 11.5 -- size of silent aim
55-
Aiming.FOVSides = 25 -- how smooth silent aim circle is
56-
Aiming.HitChance = 100
57-
Aiming.ShowFOV = false
58175

59-
getgenv().AimlockKey = "c" -- aimbot toggle
60-
getgenv().AimPart = "UpperTorso" -- UpperTorso, LowerTorso, HumanoidRootPart, Head
61-
getgenv().PredictionVelocity = 3 -- aimbot prediction.
62-
getgenv().SmoothnessAmount = 0.009 -- dont go over 0.01 to look legit
63-
end)
64-
LocksSection:NewButton("ButtonText", "q Lock is silent dm me on discord if i should add more look at credits for all details", function()
65-
getgenv().AimingSettings = {
66-
Aimbot = {
67-
Radius = 45,
68-
Hitbox = "Head",
69-
CameraMode = true,
70-
MouseMode = false,
71-
HitAirshots = false,
72-
AutoPrediction = false,
73-
NotificationMode = false,
74-
Keybind = Enum.KeyCode.Q,
75-
PredictionAmount = 0.165,
76-
77-
78-
79-
Smoothing = {
80-
Enabled = true,
81-
Amount = 0.030
82-
},
83-
}
84-
}
85-
86-
loadstring(game:HttpGet("https://raw.githubusercontent.com/Tenakii/tenaaki/main/genericaimbot.v.2.0.0"))()
87-
end)
88-
local Player = Window:NewTab("Player")
89-
local PlayerSection = Player:NewSection("Player")
90176

91-
local Main = Window:NewTab("Main")
92-
local MainSection = Main:NewSection("Main")
93177

94-
local Anti Lock = Window:NewTab("Anti Lock")
95-
local Anti LockSection = Anti Lock:NewSection("Anti Lock")
178+
local Tab = Window:CreateTab("Misc", 4483362458) -- Title, Image
96179

97-
AntiLockSection:NewButton("BEST AA I CAN FIND", "ButtonInfo", function()
98-
loadstring(game:HttpGet("https://raw.githubusercontent.com/chrsschrs/antilocks/main/aa"))()
99-
end)
100-
101-
102-
103-
104-
local Player Mods = Window:NewTab("Player Mods")
105-
local Player ModsSection = Player Mods:NewSection("Player Mods")
106-
107-
PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
108-
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
109-
end)
110-
111-
PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
112-
game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
113-
end)
114-
115-
PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
116-
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
117-
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
118-
end)
180+
local Button = Tab:CreateButton({
181+
Name = "TELEPORTS",
182+
Callback = function()
183+
db:getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1039.59985, 18.8513641, -256.449951, -1, 0, 0, 0, 1, 0, 0, 0, -1)
184+
rev:getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-638.75, 18.8500004, -118.175011, -1, 0, 0, 0, 1, 0, 0, 0, -1)
185+
Bank :getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-402.123718, 21.75, -283.988617, 0.0159681588, -0.000121377925, -0.999872446, -2.60148026e-05, 1, -0.000121808866, 0.999872506, 2.79565484e-05, 0.0159681737)
186+
Food :getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-338.352173, 23.6826477, -297.2146, -0.0060598203, -1.03402984e-08, -0.999981582, -1.61653102e-09, 1, -1.03306892e-08, 0.999981582, 1.55389912e-09, -0.0060598203)
187+
Armor :getgenv().game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-607.978455, 7.44964886, -788.494263, -1.1920929e-07, 0, 1.00000012, 0, 1, 0, -1.00000012, 0, -1.1920929e-07)
188+
end,
189+
})
119190

191+
local Button = Tab:CreateButton({
192+
Name = "spoofs ip to 69.69.69:4200",
193+
Callback = function()
194+
spoofedIP = "69.69.69:4200"
195+
loadstring(game:HttpGet("https://raw.githubusercontent.com/GuizzyisbackV2LOL/HelloLua/main/looferrlua"))()
196+
end,
197+
})
120198

121-
local Loaders = Window:NewTab("Loaders")
122-
local LoadersSection = Loaders:NewSection("Loaders")
199+
local Button = Tab:CreateButton({
200+
Name = "Speed made by ZenX DEV'S",
201+
Callback = function()
202+
loadstring(game:HttpGet("https://pastebin.com/raw/wQtVH6f6"))();
203+
end,
204+
})
123205

124-
local Universal = Window:NewTab("Universal")
125-
local UniversalSection = Universal:NewSection("Universal")
126206

127207

128-
local Other = Window:NewTab("Other")
129-
local OtherSection = Other:NewSection("Other")
208+
local Tab = Window:CreateTab("Local Player", 4483362458) -- Title, Image
130209

131-
OtherSection:NewButton("Chat Spoofer", "Lets you chat for other people", function()
132-
loadstring(game:HttpGet(('https://pastebin.com/raw/djBfk8Li'),true))()
133-
end)
210+
local Button = Tab:CreateButton({
211+
Name = "RAINBOW CHARACTER",
212+
Callback = function()
213+
loadstring(game:HttpGet("https://pastebin.com/raw/ce5rWJJ9"))();
214+
end,
215+
})
134216

135-
OtherSection:NewButton("Bypassed Fly", "bird mode", function()
136-
loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
137217

138-
Fly(true)
139-
end)
140218

141219

142-
local Player Spoofer = Window:NewTab("Player Mods")
143-
local Spoofer SpooferSection = Player Mods:NewSection("Spoofer")
144220

145-
OtherSection:NewButton("Ip Spoofer", "Spoofs Ip Too 69.69.420", function()
146-
spoofedIP = "69.69.420"
147-
loadstring(game:HttpGet("https://raw.githubusercontent.com/GuizzyisbackV2LOL/HelloLua/main/looferrlua"))()
148-
end)
221+
local Tab = Window:CreateTab("Esp", 4483362458) -- Title, Image
149222

150223

151-
local Fun = Window:NewTab("Main")
152-
local FunSection = Main:NewSection("Main")
153224

154225

155-
FunSection:NewButton("Back/Front Flip", "Makes you do gymnastics", function()
156-
loadstring(game:HttpGet('https://pastebin.com/raw/7wDcPtLk'))()
157-
end)
226+
local Tab = Window:CreateTab("Anti Toggles", 4483362458) -- Title, Image
158227

159-
FunSection:NewToggle("Super-Human", "go fast and jump high", function(state)
160-
if state then
161-
game.player.Character.Humanoid.WalkSpeed = 120
162-
game.player.Character.Humanoid.JumpPower = 120
163-
else
164-
game.player.Character.Humanoid.WalkSpeed = 16
165-
game.player.Character.Humanoid.JumpPower = 50
166-
end
167-
end)
168228

169-
FunSection:NewButton("Infinite Yield", "FE Admin Commands", function()
170-
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
171-
end)
229+
local Button = Tab:CreateButton({
230+
Name = "ANTI BAG",
231+
Callback = function()
232+
loadstring(game:HttpGet("https://pastebin.com/raw/hgKFQWFq"))();
233+
end,
234+
})
172235

173236

174237

175238

176239

177240

178-
local Credits = Window:NewTab("Credits")
179-
local CreditsSection = Credits:NewSection("Credits")
180241

181242

243+
Rayfield:LoadConfiguration()

0 commit comments

Comments
 (0)