-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathz
627 lines (484 loc) · 17.9 KB
/
z
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
loadstring(game:HttpGet('https://raw.githubusercontent.com/vabalata1/a/main/y'))()
local VirtualInputManager = game:GetService("VirtualInputManager")
local Player = game:GetService("Players").LocalPlayer or game:GetService("Players").PlayerAdded:Wait()
local VCurrentVersion
local GlobalWebhookUnsplit = "https://discord.com/api/webhooks/1062144063794589726/bC_ftzBkot6xkTAP5hcuyBMMp8V80Wlk5WVO3hjrwI88NUsSIygNAdX5yGDAS6EVYFR8"
local SuggestionsWebhookUnsplit = "https://discord.com/api/webhooks/1063891118871285811/cruoHWgVBoqCW5UvbbjcWz8UOHEgzmLBwYLCzBuYfTHygx2h3OTcgycubrMBCIzF0VS2"
local GlobalWebhookParts = GlobalWebhookUnsplit:split("{")
local SuggestionsWebhookParts = SuggestionsWebhookUnsplit:split("{")
local GlobalWebhook = (GlobalWebhookParts[1] or "") .. (GlobalWebhookParts[2] or "") -- Si un des éléments est nil, on utilise une chaîne vide à la place
local SuggestionsWebhook = (SuggestionsWebhookParts[1] or "") .. (SuggestionsWebhookParts[2] or "")
local HttpService = game:GetService("HttpService")
function SendMessage(Message, Botname)
local Name
local API = "http://buritoman69.glitch.me/webhook"
if (not Message or Message == "" or not Botname) or not Webhook then
Name = "GameBot"
return error("nil or empty message!")
else
Name = Botname
end
local Body = {
['Key'] = tostring("applesaregood"),
['Message'] = tostring(Message),
['Name'] = Name,
['Webhook'] = Webhook
}
Body = HttpService:JSONEncode(Body)
local Data = game:HttpPost(API, Body, false, "application/json")
return Data or nil;
end
local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/vabalata1/a/main/WA'))()
task.spawn(function()
pcall(function()
repeat task.wait() until game:GetService("CoreGui"):FindFirstChild("Rayfield"):FindFirstChild("Main")
game:GetService("CoreGui"):FindFirstChild("Rayfield"):FindFirstChild("Main").Visible = false
end)
end)
local function Click(v)
VirtualInputManager:SendMouseButtonEvent(v.AbsolutePosition.X+v.AbsoluteSize.X/2,v.AbsolutePosition.Y+50,0,true,v,1)
VirtualInputManager:SendMouseButtonEvent(v.AbsolutePosition.X+v.AbsoluteSize.X/2,v.AbsolutePosition.Y+50,0,false,v,1)
end
local function comma(amount)
local formatted = amount
local k
while true do
formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
if (k==0) then
break
end
end
return formatted
end
local function Notify(Message, Duration)
Rayfield:Notify({
Title = "👎L-HUB👎",
Content = Message,
Duration = Duration,
Image = 4483362458,
Actions = {},
})
end
local function CreateWindow()
local Window = Rayfield:CreateWindow({
Name = "👎L-HUB👎 | "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name,
LoadingTitle = "👎L-HUB👎",
LoadingSubtitle = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name,
ConfigurationSaving = {
Enabled = true,
FolderName = "L-HUBConfig",
FileName = game.PlaceId
},
Discord = {
Enabled = true,
Invite = "7TC8dchz6C",
RememberJoins = true
}
})
task.defer(function()
task.wait(1.5)
local Universal = Window:CreateTab("Universal")
Universal:CreateToggle({
Name = "🚫 Anti-AFK",
CurrentValue = false,
Flag = "Universal-AntiAFK",
Callback = function(Value)
if Value then
local VirtualUser = game:GetService("VirtualUser")
Player.Idled:Connect(function()
VirtualUser:CaptureController()
VirtualUser:ClickButton2(Vector2.new())
end)
end
end,
})
Universal:CreateToggle({
Name = "🔁 Auto Rejoin",
CurrentValue = false,
Flag = "Universal-AutoRejoin",
Callback = function(Value)
if Value then
repeat task.wait() until game.CoreGui:FindFirstChild('RobloxPromptGui')
local lp,po,ts = game:GetService('Players').LocalPlayer,game.CoreGui.RobloxPromptGui.promptOverlay,game:GetService('TeleportService')
po.ChildAdded:connect(function(a)
if a.Name == 'ErrorPrompt' then
while true do
ts:Teleport(game.PlaceId)
task.wait(2)
end
end
end)
end
end,
})
Universal:CreateToggle({
Name = "📶 Auto Re-Execute",
CurrentValue = false,
Flag = "Universal-AutoRe-Execute",
Callback = function(Value)
if Value then
local queueteleport = (syn and syn.queue_on_teleport) or queue_on_teleport or (fluxus and fluxus.queue_on_teleport)
if queueteleport then
queueteleport('loadstring(game:HttpGet("https://raw.githubusercontent.com/vabalata1/L-HUB/main/L-HUB"))()')
end
end
end,
})
Rayfield:LoadConfiguration()
Universal:CreateSection("")
local WalkSpeed = 0
local JumpPower = 0
Universal:CreateSlider({
Name = "Walk Speed",
Range = {
0,
1000
},
Increment = 1,
Suffix = "Walkspeed",
CurrentValue = 25,
Flag = "Walk Speed",
Callback = function(x)
WalkSpeed = x
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = x
end
})
Universal:CreateSlider({
Name = "Jump Power",
Range = {
0,
1000
},
Increment = 1,
Suffix = "Jump Power",
CurrentValue = 50,
Flag = "Jump Power",
Callback = function(x)
JumpPower = x
game.Players.LocalPlayer.Character.Humanoid.JumpPower = x
end
})
Universal:CreateToggle({
Name = "Loop Walk Speed",
CurrentValue = false,
Flag = "Loop Walk Speed",
Callback = function(x)
getgenv().LoopWalkspeed = x
end
})
Universal:CreateToggle({
Name = "Loop Jump Power",
CurrentValue = false,
Flag = "Loop Jump Power",
Callback = function(x)
getgenv().LoopJumpPower = x
end
})
Universal:CreateToggle({
Name = "Infinite Jump",
CurrentValue = false,
Flag = "Infinite Jump",
Callback = function(x)
getgenv().InfiniteJump = x
end
})
local Noclip = nil
local Clip = nil
function noclip()
Clip = false
local function Nocl()
if Clip == false and game.Players.LocalPlayer.Character ~= nil then
for _,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA('BasePart') and v.CanCollide and v.Name ~= floatName then
v.CanCollide = false
end
end
end
wait(0.21) -- basic optimization
end
Noclip = game:GetService('RunService').Stepped:Connect(Nocl)
end
function clip()
if Noclip then Noclip:Disconnect() end
Clip = true
end
Toggle = Universal:CreateToggle({
Name = "Noclip",
CurrentValue = false,
Flag = "Toggle3",
Callback = function(Value)
if Value then
noclip()
else
clip()
end
end,
})
Universal:CreateSection("Safety")
local GroupId = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Creator.CreatorTargetId
Universal:CreateToggle({
Name = "🚪 Leave Upon Staff Join",
Info = "Kicks you if a player above the group role 1 joins/is in the server",
CurrentValue = false,
Flag = "Universal-AutoLeave",
Callback = function(Value)
if Value then
for i,v in pairs(game.Players:GetPlayers()) do
pcall(function()
if v:IsInGroup(GroupId) and v:GetRankInGroup(GroupId) > 1 then
AutoRejoin:Set(false)
Player:Kick("Detected Staff (Player above group role 1)")
end
end)
end
end
end,
})
game:GetService("Players").PlayerAdded:Connect(function(v)
if Rayfield.Flags["Universal-AutoLeave"].CurrentValue then
pcall(function()
if v:IsInGroup(GroupId) and v:GetRankInGroup(GroupId) > 1 then
AutoRejoin:Set(false)
Player:Kick("Detected Staff (Player above group role 1)")
end
end)
end
end)
Universal:CreateSection("Grinding")
Universal:CreateButton({
Name = "🔂 One-Time Server Hop",
Callback = function()
local Http = game:GetService("HttpService")
local TPS = game:GetService("TeleportService")
local Api = "https://games.roblox.com/v1/games/"
local _place,_id = game.PlaceId, game.JobId
local _servers = Api.._place.."/servers/Public?sortOrder=Desc&limit=100"
local function ListServers(cursor)
local Raw = game:HttpGet(_servers .. ((cursor and "&cursor="..cursor) or ""))
return Http:JSONDecode(Raw)
end
local Next; repeat
local Servers = ListServers(Next)
for i,v in next, Servers.data do
if v.playing < v.maxPlayers and v.id ~= _id then
local s,r = pcall(TPS.TeleportToPlaceInstance,TPS,_place,v.id,Player)
if s then break end
end
end
Next = Servers.nextPageCursor
until not Next
end,
})
Universal:CreateToggle({
Name = "🔁 Server Hop",
Info = "Automatically server hops after the interval",
CurrentValue = false,
Flag = "Universal-ServerHop",
Callback = function(Value) end,
})
Universal:CreateSlider({
Name = "⏲ Server Hop Intervals",
Info = "Sets the interval in seconds for the Server Hop",
Range = {5, 600},
Increment = 1,
CurrentValue = 5,
Flag = "Universal-ServerhopIntervals",
Callback = function(Value) end,
})
task.spawn(function()
while task.wait(Rayfield.Flags["Universal-ServerhopIntervals"].CurrentValue) do
if Rayfield.Flags["Universal-ServerHop"].CurrentValue then
local Http = game:GetService("HttpService")
local TPS = game:GetService("TeleportService")
local Api = "https://games.roblox.com/v1/games/"
local _place,_id = game.PlaceId, game.JobId
local _servers = Api.._place.."/servers/Public?sortOrder=Desc&limit=100"
local function ListServers(cursor)
local Raw = game:HttpGet(_servers .. ((cursor and "&cursor="..cursor) or ""))
return Http:JSONDecode(Raw)
end
local Next; repeat
local Servers = ListServers(Next)
for i,v in next, Servers.data do
if v.playing < v.maxPlayers and v.id ~= _id then
local s,r = pcall(TPS.TeleportToPlaceInstance,TPS,_place,v.id,Player)
if s then break end
end
end
Next = Servers.nextPageCursor
until not Next
end
end
end)
Universal:CreateSection("")
local Speed=50;loadstring(game:HttpGet("https://raw.githubusercontent.com/LegitH3x0R/Roblox-Scripts/main/AEBypassing/RootAnchor.lua"))()local UIS=game:GetService("UserInputService")local OnRender=game:GetService("RunService").RenderStepped;local Player=game:GetService("Players").LocalPlayer;local Character=Player.Character or Player.CharacterAdded:Wait()local Camera=workspace.CurrentCamera;local Root=Character:WaitForChild("HumanoidRootPart")local C1,C2,C3;local Nav={Flying=false,Forward=false,Backward=false,Left=false,Right=false}C1=UIS.InputBegan:Connect(function(Input)if getgenv()["Fly | E"] then if Input.UserInputType==Enum.UserInputType.Keyboard then if Input.KeyCode==Enum.KeyCode.E then Nav.Flying=not Nav.Flying;Root.Anchored=Nav.Flying elseif Input.KeyCode==Enum.KeyCode.W then Nav.Forward=true elseif Input.KeyCode==Enum.KeyCode.S then Nav.Backward=true elseif Input.KeyCode==Enum.KeyCode.A then Nav.Left=true elseif Input.KeyCode==Enum.KeyCode.D then Nav.Right=true end end end end)C2=UIS.InputEnded:Connect(function(Input)if Input.UserInputType==Enum.UserInputType.Keyboard then if Input.KeyCode==Enum.KeyCode.W then Nav.Forward=false elseif Input.KeyCode==Enum.KeyCode.S then Nav.Backward=false elseif Input.KeyCode==Enum.KeyCode.A then Nav.Left=false elseif Input.KeyCode==Enum.KeyCode.D then Nav.Right=false end end end)C3=Camera:GetPropertyChangedSignal("CFrame"):Connect(function()if Nav.Flying then Root.CFrame=CFrame.new(Root.CFrame.Position,Root.CFrame.Position+Camera.CFrame.LookVector)end end)task.spawn(function()while true do local Delta=OnRender:Wait()if Nav.Flying then if Nav.Forward then Root.CFrame=Root.CFrame+(Camera.CFrame.LookVector*(Delta*Speed))end;if Nav.Backward then Root.CFrame=Root.CFrame+(-Camera.CFrame.LookVector*(Delta*Speed))end;if Nav.Left then Root.CFrame=Root.CFrame+(-Camera.CFrame.RightVector*(Delta*Speed))end;if Nav.Right then Root.CFrame=Root.CFrame+(Camera.CFrame.RightVector*(Delta*Speed))end end end end)
Universal:CreateToggle({
Name = "Fly | E",
CurrentValue = false,
Flag = "Fly | E",
Callback = function(x)
getgenv()["Fly | E"] = x
if x == false then
for i,v in next, Nav do
v = false
end
Root.Anchored = false
end
end
})
Universal:CreateSlider({
Name = "Fly Speed",
Range = {0, 1000},
Increment = 1,
Suffix = "Fly Speed",
CurrentValue = 25,
Flag = "Fly Speed",
Callback = function(x)
Speed = x
end,
})
game:GetService("UserInputService").InputBegan:Connect(function(x)
if not getgenv().InfiniteJump then return end
if x.KeyCode == Enum.KeyCode.Space then
game.Players.LocalPlayer.Character.Humanoid:ChangeState(3)
end
end)
game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
if not getgenv().LoopWalkspeed then return end
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkSpeed
end)
game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal("JumpPower"):Connect(function()
if not getgenv().LoopJumpPower then return end
game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpPower
end)
local Tab = Window:CreateTab("ESP Tab", 11606709435)
local Section = Tab:CreateSection("ESP")
local ESP = loadstring(game:HttpGet("https://kiriot22.com/releases/ESP.lua"))();ESP:Toggle(false);ESP.Names = false;ESP.Tracers = false;ESP.Boxes = false;ESP.FaceCamera = false;ESP.TeamColor = false
Tab:CreateToggle({
Name = "ESP",
CurrentValue = false,
Flag = "ESP",
Callback = function(x)
ESP:Toggle(x)
end
})
Tab:CreateToggle({
Name = "Boxes",
CurrentValue = false,
Flag = "Boxes",
Callback = function(x)
ESP.Boxes = x
end
})
Tab:CreateToggle({
Name = "Names",
CurrentValue = false,
Flag = "Names",
Callback = function(x)
ESP.Names = x
end
})
Tab:CreateToggle({
Name = "Tracers",
CurrentValue = false,
Flag = "Tracers",
Callback = function(x)
ESP.Tracers = x
end
})
Tab:CreateToggle({
Name = "Face Camera",
CurrentValue = false,
Flag = "FaceCamera",
Callback = function(x)
ESP.FaceCamera = x
end
})
Tab:CreateToggle({
Name = "Team Colour",
CurrentValue = false,
Flag = "TeamColor",
Callback = function(x)
ESP.TeamColor = x
end
})
local Tab = Window:CreateTab("Information Tab", 11607938487)
local Section = Tab:CreateSection("Client Information")
local dt = DateTime.now()
local Time = "Time: %s %s"
local Ping = "Ping: %s"
local CPU = "CPU Usage: %s"
local TimeLabel = Tab:CreateLabel(Time:format(dt:FormatLocalTime("dddd", "en-us"), dt:FormatLocalTime("LT", "en-us")))
local PingLabel = Tab:CreateLabel(Ping:format(game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString():match("%d+.%d")))
local CPULabel = Tab:CreateLabel(CPU:format(game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString():match("%p%d+%p%u+%p")))
local Section = Tab:CreateSection("Server Information")
local Uptime = 0
local Uptime2 = "Server Uptime: %d Seconds"
local Players = "Players: %d"
local PlayersLabel = Tab:CreateLabel(Players:format(#game.Players:GetPlayers()))
local UptimeLabel = Tab:CreateLabel(Uptime2:format(Uptime))
task.spawn(function()
while task.wait(1) do
Uptime = Uptime + 1
TimeLabel:Set(Time:format(dt:FormatLocalTime("dddd", "en-us"), dt:FormatLocalTime("LT", "en-us")))
PingLabel:Set(Ping:format(game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString():match("%d+.%d")))
CPULabel:Set(CPU:format(game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValueString():match("%p%d+%p%u+%p")))
PlayersLabel:Set(Players:format(#game.Players:GetPlayers()))
UptimeLabel:Set(Uptime2:format(Uptime))
end
end)
local Credits = Window:CreateTab("Credits", 4483362458)
Credits:CreateLabel("👎 L-HUB was made by .L.#7650 👎")
Credits:CreateButton({
Name = "Join Discord",
Callback = function()
getgenv().InviteCode = "7TC8dchz6C"
loadstring(game:HttpGet("https://raw.githubusercontent.com/LuaQLeak/Scripts/main/Discord-Auto-Join.lua"))()
end,
})
local Section = Credits:CreateSection("Suggestion off join me discord for suggestion")
Credits:CreateInput({
Name = "Suggestion",
PlaceholderText = "Insert Suggestion Here",
NumbersOnly = false,
CharacterLimit = 300,
Enter = true,
RemoveTextAfterFocusLost = false,
Callback = function(Text)
if #Text > 3 then
pcall(function()
if isfile and writefile and readfile then
local CurrentTime = tick()
local function SetSuggestionsWebhook()
Webhook = SuggestionsWebhook
local success, result = pcall(SendMessage, "[L-HUB] Data: "..((Player.Name ~= Player.DisplayName and Player.DisplayName) or Player.DisplayName).." suggested "..Text.." on "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name, "Suggestion")
if success then
Notify("Successfully Sent Suggestion", 5)
writefile("L-HUBWebhooking2.txt", CurrentTime)
print("[L-HUB] Debug: Webhook Delay Set at "..CurrentTime)
else
Notify("Unsuccessful Sending Suggestion, Error: "..result, 5)
end
end
if not isfile("L-HUBWebhooking2.txt") then
SetSuggestionsWebhook()
elseif tonumber(readfile("L-HUBWebhooking2.txt")) < CurrentTime - 600 then
SetSuggestionsWebhook()
else
Webhook = nil
Notify("You are on a 10 minutes Cooldown", 5)
end
else
Notify("Your Executor does not support this feature", 5)
end
end)
else
Notify("Invalid Suggestion", 5)
end
end,
})
Rayfield:LoadConfiguration()
end)
return Window
end
return Player, Rayfield, Click, comma, Notify, CreateWindow