1 | local Library=loadstring(game:HttpGet("https://raw.githubusercontent.com/rrixh/uwuware/main/lib/wizard",true))(); |
2 | local rrixh=Library:NewWindow("Zombie Attaxk (OP)"); |
3 | local a=rrixh:NewSection("Main"); |
4 | |
5 | |
6 | a:CreateToggle("Kill Aura (Sword)", function(rrixh1) |
7 | _G.abc1 = rrixh1 |
8 | if rrixh1 then |
9 | spawn(function() |
10 | while _G.abc1 do wait() |
11 | |
12 | local knife |
13 | for _, i in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do |
14 | if i.Name == "KnifeController" then |
15 | knife = i.Parent.Name |
16 | end |
17 | end |
18 | |
19 | |
20 | task.spawn(function() |
21 | local character = game.Players.LocalPlayer.Character |
22 | if not character then |
23 | return |
24 | end |
25 | |
26 | local parts = workspace.enemies:GetDescendants() |
27 | |
28 | local closestParts = {} |
29 | local closestDistance = math.huge |
30 | |
31 | for _, part in ipairs(parts) do |
32 | if part.Name == "Head" then |
33 | local distance = (part.Position - character.HumanoidRootPart.Position).magnitude |
34 | |
35 | if distance <= closestDistance then |
36 | table.insert(closestParts, part) |
37 | closestDistance = distance |
38 | end |
39 | end |
40 | end |
41 | |
42 | for _, closestPart in ipairs(closestParts) do |
43 | local args = { |
44 | [1] = "hit", |
45 | [2] = knife, |
46 | [3] = closestPart |
47 | } |
48 | |
49 | game:GetService("ReplicatedStorage"):WaitForChild("forhackers"):InvokeServer(unpack(args)) |
50 | end |
51 | end) end |
52 | end) |
53 | end |
54 | end); |
55 | |
56 | local gun |
57 | |
58 | a:CreateButton("Refresh Gun", function() |
59 | for _, i in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do |
60 | if i.Name == "GunController" then |
61 | gun = i.Parent.Name |
62 | end |
63 | end |
64 | game:GetService("StarterGui"):SetCore("SendNotification", { |
65 | Title = "Your Gun Now: " .. gun , |
66 | Duration = 3, |
67 | Button1 = "", |
68 | Callback = function() end, |
69 | -- Text = "" |
70 | }) |
71 | end) |
72 | |
73 | a:CreateToggle("Kill Aura (Gun)", function(strapped) |
74 | _G.abc = strapped |
75 | if strapped then |
76 | spawn(function() |
77 | while _G.abc do wait() |
78 | task.spawn(function() |
79 | local character = game.Players.LocalPlayer.Character |
80 | if not character then |
81 | return |
82 | end |
83 | |
84 | local parts = workspace.enemies:GetDescendants() |
85 | |
86 | local closestParts = {} |
87 | local closestDistance = math.huge |
88 | |
89 | for _, part in ipairs(parts) do |
90 | if part.Name == "Head" then |
91 | local distance = (part.Position - character.HumanoidRootPart.Position).magnitude |
92 | |
93 | if distance <= closestDistance then |
94 | table.insert(closestParts, part) |
95 | closestDistance = distance |
96 | end |
97 | end |
98 | end |
99 | |
100 | for _, closestPart in ipairs(closestParts) do |
101 | local closestPartPosition = closestPart.Position |
102 | local args = { |
103 | [1] = { |
104 | ["Normal"] = Vector3.new(closestPartPosition), |
105 | ["Direction"] = Vector3.new(closestPartPosition), |
106 | ["Name"] = gun, |
107 | ["Hit"] = closestPart, |
108 | ["Origin"] = Vector3.new(closestPartPosition), |
109 | ["Pos"] = Vector3.new(closestPartPosition) |
110 | } |
111 | } |
112 | |
113 | game:GetService("ReplicatedStorage"):WaitForChild("Gun"):FireServer(unpack(args)) |
114 | end |
115 | |
116 | |
117 | end) |
118 | end |
119 | end) |
120 | end |
121 | end); -- gun aura |
122 | |
123 | local espInstances = {} |
124 | |
125 | local function deleteAllESP() |
126 | for _, gui in ipairs(espInstances) do |
127 | gui:Destroy() |
128 | end |
129 | espInstances = {} |
130 | end |
131 | |
132 | local function deleteESP(enemy) |
133 | for i, gui in ipairs(espInstances) do |
134 | if gui.Adornee == enemy then |
135 | gui:Destroy() |
136 | table.remove(espInstances, i) |
137 | end |
138 | end |
139 | end |
140 | |
141 | local function kreateESP(enemy) |
142 | deleteESP(enemy) |
143 | |
144 | local billboardGui = Instance.new("BillboardGui") |
145 | billboardGui.Adornee = enemy |
146 | billboardGui.Size = UDim2.new(5, 0, 5, 0) |
147 | billboardGui.StudsOffset = Vector3.new(0, 2, 0) |
148 | billboardGui.AlwaysOnTop = true |
149 | |
150 | local espFrame = Instance.new("Frame") |
151 | espFrame.Parent = billboardGui |
152 | espFrame.Size = UDim2.new(1, 0, 1, 0) |
153 | espFrame.BackgroundTransparency = 0.5 |
154 | espFrame.BackgroundColor3 = Color3.new(1, 0, 0) |
155 | |
156 | billboardGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") |
157 | |
158 | table.insert(espInstances, billboardGui) |
159 | end |
160 | |
161 | local function onEnemyAdded(enemy) |
162 | if enemy:IsA("Model") then |
163 | if enemy.Parent.Name == "enemies" or enemy.Parent.Name == "BossFolder" then |
164 | kreateESP(enemy) |
165 | end |
166 | end |
167 | end; |
168 | |
169 | local toggleEnabled=false; |
170 | |
171 | |
172 | a:CreateToggle("Zombie ESP", function(e) |
173 | toggleEnabled = e |
174 | if e then |
175 | deleteAllESP() |
176 | for _, enemy in ipairs(game.Workspace.enemies:GetChildren()) do |
177 | onEnemyAdded(enemy) |
178 | end |
179 | for _, enemy1 in ipairs(game.Workspace.BossFolder:GetChildren()) do |
180 | onEnemyAdded(enemy1) |
181 | end |
182 | else |
183 | deleteAllESP() |
184 | end |
185 | end) |
186 | |
187 | game:GetService("RunService").Heartbeat:Connect(function() |
188 | for _, enemy in ipairs(game.Workspace.enemies:GetChildren()) do |
189 | if toggleEnabled then |
190 | onEnemyAdded(enemy) |
191 | else |
192 | deleteESP(enemy) |
193 | end |
194 | end |
195 | for _, enemy1 in ipairs(game.Workspace.BossFolder:GetChildren()) do |
196 | if toggleEnabled then |
197 | onEnemyAdded(enemy1) |
198 | else |
199 | deleteESP(enemy1) |
200 | end |
201 | end |
202 | end); --end of esp |
203 | |
204 | a:CreateToggle("Auto Kollect Drops", function(kollekt) |
205 | _G.abc3 = kollekt |
206 | if kollekt then |
207 | spawn(function() |
208 | while _G.abc3 do wait() |
209 | local player = game.Players.LocalPlayer |
210 | local auto_grab = workspace.Powerups |
211 | local playerCharacter = player.Character |
212 | |
213 | task.spawn(function() |
214 | if playerCharacter then |
215 | local playerPosition = playerCharacter:FindFirstChild("HumanoidRootPart") |
216 | if playerPosition then |
217 | playerPosition = playerPosition.Position |
218 | for _, NPC in pairs(auto_grab:GetChildren()) do |
219 | local NPCRootPart = NPC:FindFirstChild("Part") |
220 | if NPCRootPart then |
221 | NPCRootPart.Position = playerPosition |
222 | |
223 | end |
224 | end |
225 | else |
226 | local RRixh1 = loadstring(game:HttpGet("https://pastecode.dev/raw/xhglimlq/lakayli_lulaslollipopnotif.xl9.x7s.xls.xlsx",true))() local Notify = RRixh1.Notify; wait(); Notify({ Description = "player's HumanoidRootPart not found";Duration = 3; }); |
227 | end |
228 | else |
229 | local RRixh1 = loadstring(game:HttpGet("https://pastecode.dev/raw/xhglimlq/lakayli_lulaslollipopnotif.xl9.x7s.xls.xlsx",true))() local Notify = RRixh1.Notify; wait(); Notify({ Description = "player's xharakter not found";Duration = 3; }); |
230 | end |
231 | end) |
232 | wait(0.2) |
233 | end |
234 | end) |
235 | end |
236 | end); -- auto kollekt |
237 | |
238 | a:CreateButton("Inf Jump", function() |
239 | local infJump |
240 | local infJumpDebounce = false |
241 | |
242 | local function handleInfJump() |
243 | if infJump then |
244 | infJump:Disconnect() |
245 | end |
246 | |
247 | infJumpDebounce = false |
248 | |
249 | infJump = game:GetService("UserInputService").JumpRequest:Connect(function() |
250 | if not infJumpDebounce then |
251 | infJumpDebounce = true |
252 | |
253 | local character = game.Players.LocalPlayer.Character |
254 | if character then |
255 | local humanoid = character:FindFirstChildOfClass("Humanoid") |
256 | if humanoid then |
257 | humanoid:ChangeState(Enum.HumanoidStateType.Jumping) |
258 | wait() |
259 | infJumpDebounce = false |
260 | end |
261 | end |
262 | end |
263 | end) |
264 | end; |
265 | handleInfJump() |
266 | end) |
267 | |
268 | a:CreateTextbox("Jump", function(...) |
269 | game.Players.LocalPlayer.Character.Humanoid.JumpPower=... |
270 | end) |
271 | a:CreateTextbox("Speed", function(...) |
272 | game.Players.LocalPlayer.Character.Humanoid.WalkSpeed=... |
273 | end) |
274 | |
275 | a:CreateToggle("Bring Players", function(bringNiggaz) |
276 | _G.abc15 = bringNiggaz |
277 | if bringNiggaz then |
278 | spawn(function() |
279 | while _G.abc15 do wait(0.2) |
280 | task.spawn(function() |
281 | local fag = game:GetService("Players").LocalPlayer |
282 | local distanxe = 1 |
283 | |
284 | for i,v in pairs(game:GetService("Players"):GetChildren()) do |
285 | if v.ClassName == "Player" and v.Name ~= fag.Name then |
286 | if v.Character and v.Character:FindFirstChild("HumanoidRootPart") then |
287 | local direktion = (fag.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).unit |
288 | |
289 | v.Character.HumanoidRootPart.CFrame = CFrame.new(fag.Character.HumanoidRootPart.Position - direktion * distanxe) |
290 | end |
291 | end |
292 | end |
293 | |
294 | |
295 | end) |
296 | end |
297 | end) |
298 | end |
299 | end); --bring plrs (while being zombie) |
300 | |
301 | |
302 | local updatedNPCs = {} |
303 | |
304 | local function updateHeadSize(npc) |
305 | local head = npc:FindFirstChild("Head") |
306 | if head then |
307 | local headSize = head.Size |
308 | if headSize then |
309 | head.Size = headSize * Vector3.new(4, 4, 4) |
310 | end |
311 | end |
312 | end; |
313 | |
314 | local function updateAllNPCs() |
315 | for _, npc in pairs(workspace.enemies:GetChildren()) do |
316 | if not updatedNPCs[npc] then |
317 | updateHeadSize(npc) |
318 | updatedNPCs[npc] = true |
319 | end |
320 | end |
321 | end; |
322 | |
323 | a:CreateToggle("Big Head Zombie", function(bigasshead) |
324 | _G.abc5 = bigasshead; |
325 | if bigasshead then |
326 | spawn(function() |
327 | while _G.abc5 do wait() |
328 | updateAllNPCs() |
329 | end |
330 | end) |
331 | end |
332 | end);--make big head zombies |
333 | |
334 | |
335 | a:CreateToggle("Auto Zombie", function(killtheseniggaz) |
336 | _G.abc16 = killtheseniggaz |
337 | if killtheseniggaz then |
338 | spawn(function() |
339 | while _G.abc16 do wait() |
340 | local tp |
341 | for _, v in pairs(workspace.enemies:GetDescendants()) do |
342 | if v.Name == "Head" then |
343 | tp = v.CFrame |
344 | break |
345 | end |
346 | end |
347 | |
348 | for _, v in pairs(game.Workspace.BossFolder:GetDescendants()) do |
349 | if v.Name == "Head" then |
350 | tp = v.CFrame |
351 | break |
352 | end |
353 | end |
354 | local tweenspeed = 6969 |
355 | local Players = game:GetService("Players") |
356 | local TweenService = game:GetService("TweenService") |
357 | local LocalPlayer = Players.LocalPlayer |
358 | |
359 | local function TweenTo(cf, dur) |
360 | local Character = LocalPlayer.Character |
361 | if not Character or not Character:FindFirstChild("HumanoidRootPart") then |
362 | return |
363 | end |
364 | |
365 | local rootPart = Character:WaitForChild("HumanoidRootPart") |
366 | local targetPosition = cf.Position + Vector3.new(0, 7, 0) |
367 | local direktion = (targetPosition - rootPart.Position).unit |
368 | local targetCFrame = CFrame.new(targetPosition) |
369 | local distanxe = (targetCFrame.p - rootPart.CFrame.p).Magnitude |
370 | local tweenInfo = TweenInfo.new(distanxe / tweenspeed, Enum.EasingStyle.Linear) |
371 | local tween = TweenService:Create(rootPart, tweenInfo, { |
372 | CFrame = targetCFrame |
373 | }) |
374 | tween:Play() |
375 | tween.Completed:Wait() |
376 | return tween |
377 | end |
378 | |
379 | |
380 | local isThatRRixh = Instance.new('BodyVelocity', game.Workspace) |
381 | isThatRRixh.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart |
382 | isThatRRixh.velocity = Vector3.new(0, 0, 0) |
383 | isThatRRixh.maxForce = Vector3.new(9e9, 9e9, 9e9) |
384 | isThatRRixh.Name = "Main" |
385 | |
386 | TweenTo(tp) |
387 | wait(0) |
388 | game.Players.LocalPlayer.Character.HumanoidRootPart["Main"]:Destroy() |
389 | |
390 | end |
391 | end) |
392 | end |
393 | end); |
394 | |
395 | |
396 | |
397 | |
398 | |
399 | |
400 | -- [ kreds ] -- |
401 | local wiz = rrixh:NewSection("Made by") |
402 | wiz:CreateButton("@lulaslollipop🍭 on Roblox", function() setclipboard("https://www.roblox.com/users/3001347724/profile") |
403 | wait(0.1) |
404 | local AkaliNotif = loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/NotificationUI"))(); |
405 | local Notify = AkaliNotif.Notify; |
406 | wait(); |
407 | Notify({ |
408 | Description = "Roblox Profile link kopied to klipboard"; |
409 | --Title = ""; |
410 | Duration = 1; |
411 | }); |
412 | end) |
413 | |
414 | wiz:CreateButton("@rrixh👺 on Diskord", function() setclipboard("https://discordapp.com/users/607988645567266922") |
415 | wait(0.1) |
416 | local AkaliNotif = loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/NotificationUI"))(); |
417 | local Notify = AkaliNotif.Notify; |
418 | wait(); |
419 | Notify({ |
420 | Description = "Diskord link kopied to klipboard"; |
421 | --Title = ""; |
422 | Duration = 1; |
423 | }); |
424 | end) |
425 | |
426 | wiz:CreateButton("@sIipped 🖇️ on Telegram", function() setclipboard("https://t.me/sIipped") |
427 | wait(0.1) |
428 | local AkaliNotif = loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/NotificationUI"))(); |
429 | local Notify = AkaliNotif.Notify; |
430 | wait(); |
431 | Notify({ |
432 | Description = "Telegram link kopied to klipboard"; |
433 | --Title = ""; |
434 | Duration = 1; |
435 | }); |
436 | end) |