-
Notifications
You must be signed in to change notification settings - Fork 8
/
Project-XL
1380 lines (1248 loc) · 57 KB
/
Project-XL
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
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local blur = Instance.new("BlurEffect", game.Lighting)
blur.Size = 0
local ScreenGui = Instance.new("ScreenGui")
local ImageLabel = Instance.new("ImageLabel")
ScreenGui.Parent = game.CoreGui
ImageLabel.Parent = ScreenGui
ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
ImageLabel.BackgroundTransparency = 1
ImageLabel.Position = UDim2.new(0.5, -(303 / 2), 0.5, -(263 / 2))
ImageLabel.Rotation = 0
ImageLabel.Size = UDim2.new(0, 303,0, 263)
ImageLabel.Image = "rbxassetid://6587457747"
ImageLabel.ImageTransparency = 1
for i = 1, 50, 2 do
blur.Size = i
ImageLabel.ImageTransparency = ImageLabel.ImageTransparency - 0.1
wait()
end
wait(0.1)
for i = 1, 50, 2 do
blur.Size = 50 - i
ImageLabel.ImageTransparency = ImageLabel.ImageTransparency + 0.1
wait()
end
blur:Destroy()
ScreenGui:Destroy()
local Config = {
WindowName = "V.G Hub",
Color = Color3.fromRGB(255,128,64),
Keybind = Enum.KeyCode.RightControl
}
repeat wait() until game:IsLoaded() wait()
game:GetService("Players").LocalPlayer.Idled:connect(function()
game:GetService("VirtualUser"):ClickButton2(Vector2.new())
end)
local Meta = getrawmetatable(game)
local NewIndex = Meta.__newindex
setreadonly(Meta, false)
Meta.__newindex = newcclosure(function(t, k, ...)
if not checkcaller() and (k == "WalkSpeed" or k == "JumpPower") then
return
end
NewIndex(t, k, ...)
end)
setreadonly(Meta, true)
uu = 4
aa = 0
hh = 30
getgenv().delay = 2
local Part = Instance.new('Part',workspace)
Part.Name = "poopy"
Part.Size = Vector3.new(1000,0,1000)
Part.Anchored = true
Part.Transparency = 1
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
game:GetService('RunService').Stepped:connect(function()
pcall(function()
if game.Players.LocalPlayer.Character.Head:FindFirstChild('Overhead') then
game.Players.LocalPlayer.Character.Head.Overhead:remove()
end end) end)
function c()
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("Combat Script") then
v.Parent = game.Players.LocalPlayer.Character
end
end
end
code = {}
for i,v in pairs(game:GetService("Players").LocalPlayer.Codes:GetDescendants()) do
table.insert(code,v.Name)
end
ab1={"Blaze",'Fire Breath','Sound Breathing','Insect Breathing','Voice','Sleep-Inducing Gas',"Simon's Dark Magic",'Purple Flare','Blazing Knight','Burning Spear','Shock Fist','Ittoryu; Wado Ichimonji','Ittoryu; Shusui','Black Leg Style','Moku Moku no mi','Pika Pika no mi','Kage Kage no mi','Mera Mera no mi','Cremation','Electrification','Gura Gura no mi','Goro Goro no mi','Yami Yami no mi','Determined Defender Goku',"Yami's Dark Magic",'The Trump Card Goku','Explosive Super Elite Vegeta','Magma Knight','Scorching Spear','Bolt Master','Diable Jambe'
}
ab2={'Nagi Nagi no mi v1','Flashstep','Nagi Nagi no mi v2','Suke Suke no mi v1','Sonido','Danger Sense v1','Danger Sense v2','Hirenkyaku'
}
ab3={'Ashen Mage','Ash Crow','Berserker','Black Foot','Black Swordsman','Cotton Candy Lover','Cat Burglar','Cyborg','Devils Child','Demon God','Falcon of Light','Fire Fist','Falcon of Darkness','flamingo lord','God of Calamity','God','He Who is Above God','Iron Man','Iron Mace','King of The Sea','Knight of the Sea','Loan Shark','Nobody','One Piecee','Pirate Hunter','Slug Baron','Symbol of Evil','Shiva','Soul King',"Struggler",'Straw Hat','The Beast Tamer','The Forbidden One','Thunder Emperor','The Acrobat','White Falcon','God of Destruction'
}
ab4={'Human',"Ghoul","Namekian",'Kumate Tribe','Spypiean','Torino Tribe','Vermin','A Bizarre Human','Human (Hybrid)',"Mink",'Celestial Dragon','Frieza Race','Fanalis','Uzumaki Clan','Saiyan'
}
ab5={'Hisashi Midoriya','Cain Barzad','Present Mic','Ace','Enel','Whitebeard','Dabi','Gecko Moria'
}
ab6={'Potency','Resilience','Speed','Angry','Balanced','Brave','Brute','Compassionate','Courageous','Fighter','Fragile','Humble','Hypersonic','Indestructible','Inspiring','Legendary','Light','Mighty','Muscular','Noble','Paranoid','Patient','Perfect','Powerful','Quick','Resilient','Sensitive','Slim','Slow','Slugger','Speedy','Strong','Tank','Tough','Useless','Valiant','Weak'
}
ab7={'Bruiser','Scrapper','Infiltrator','Tactician','Blaster'
}
ab8={'Hunter Snow Cap','Paper Hat','Du-rag','Ski Cap','Straw Hat','White Du-rag','Dark Hood','Bamboo Hat','Fancy Black Cowboy Hat','Snake Slate Hood','Socialite Hat','The Eliminator Hood','Ruby Adorned Fencer Helmet','Triple Threat Helmet','Yellow Banded Top Hat','Green Banded Top Hat','Purple Banded Top Hat','Blue Banded Top Hat','Bathysphere','Bluesteel Bathysphere','Bucket',"Bandit's Mask",'Black Ninja Headband','Black Round Glasses','Crimson Winter Scarf','Dust Mask','Eyepatch','Purple Pirate Headband','Rose Colored Glasses','Round Glasses','Shredded Bandit Mask','White Ninja Headband',
}
ab10={'One Tomoe Sharingan','Two Tomoe Sharingan','Three Tomoe Sharingan',"Izuna's Mangekyo Sharingan v1","Indra's Mangekyo Sharingan v1","Sasuke's Mangekyo Sharingan v2","Obito's Mangekyo Sharingan v1","Itachi's Mangekyou Sharingan v1","Itachi's Mangekyo Sharingan v2","Madara's Mangekyo Sharingan v1","Madara's Mangekyo Sharingan v2","Obito's Mangekyo sharingan v2"
}
ab9={'Black Knight Armor','Blue Knight Armor',"Bounty Hunter's Gambeson",'Carta Assassin Armor',"Disciple's Armor",'Elite Mercenary Coat','Enchanter Robes','Fancy Suit','Griffon Plate','Heavy Adventurer Armor',"Innkeeper's Attire",'Iron Armor','Leather Armor','Mercenary Coat',"Nalthur's Armor","Oathbreaker's Armor","Pirate Hunter's Starter Outfit","Pirate's Outfit","Rice Farmer's Outfit",'Squire Armor','Rugged Adventurer Armor','Steel Armor',"Superior Battlemaster Coat","Superior Battlemaster Armor","Superior Battlemaster Mail","Superior Enchanter Coat",'Superior Vanguard Armor',"Templar Commander Armor",'Titanium Armor',"Vanguard Armor","Wizard Robes","Ancient Empyrean Armor","Ash Trap Mage's Outfit","Usopp's Pre Time-Skip Outfit","Franky's Outfit","Buggy's Outfit","Enel's Outfit","Enel's Outfit 2","Blackbeard's Outfit","Blackbeard's Outfit 2","Kidd's Outfit","UA Student's Outfit","The Almighty's Outfit","Muken Aizen's Outfit","Jiren's Outfit","Overhaul's Outfit","Usopp's Post Time-Skip Outfit","Magellan's Outfit","Black Foot's Outfit","Luffy's Marineford Outfit","Crocodile's Pre Time-Skip Outfit","Prime Whitebeard's Outfit","Sanji's Post Time-Skip Outfit","Kaido's Outfit","Kaido's Outfit 2","Dragon's Outfit"}
aka={"Requiem Arrow","Lucky Arrow"}
system = {'Bandit',"Agni's Overseer","Agni's Minion","Lars' Minion","Lars' Overseer","Rahgan's Minion","Rahgan's Overseer"}
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/1201for/V.G-Hub/main/im-retarded-3"))()
local Window = Library:CreateWindow(Config, game:GetService("CoreGui"))
local Tab1 = Window:CreateTab("Project XL")
local Tab2 = Window:CreateTab("UI Settings")
local Section1 = Tab1:CreateSection("AutoFarms")
local Section2 = Tab1:CreateSection("Auto Stuff")
local SectionA = Tab1:CreateSection("Misc")
local Section3 = Tab2:CreateSection("Menu")
local Section4 = Tab2:CreateSection("Background")
local Toggle1 = Section1:CreateToggle("Auto Attack", nil, function(State)
w2 = State
while w2 do wait()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
end end)
local Toggle1 = Section1:CreateToggle("Auto Skills", nil, function(State)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
ee = State
coroutine.wrap(function() --Credits for help/teaching me coroutine.wrap by nil#0001
while ee do wait()
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
end)()
end end)
local Toggle1 = Section1:CreateToggle("Auto Dummy", nil, function(State)
yourdumb = State
game:GetService('RunService').Stepped:connect(function()
if yourdumb then
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
game.Players.LocalPlayer.Character:WaitForChild("Humanoid"):ChangeState(11)
end end)
while yourdumb do wait()
pcall(function()
c() wait(0.5)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").Live["Training dummy"].Torso.CFrame * CFrame.new(-7,0,0) *CFrame.Angles(aa,0,0)end) end end)
local Toggle1 = Section1:CreateToggle("Legit Mode", nil, function(State)
Legit = State
game:GetService('RunService').Stepped:connect(function() pcall(function()
if Legit then
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end end) end)
spawn(function()
while Legit do wait()
pcall(function()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2846, 334, 2919)
game:GetService("VirtualUser"):ClickButton1(Vector2.new(9e9,9e9))
end)
end end)
c()
game.Players.LocalPlayer.Backpack.ChildAdded:Connect(function()
pcall(function()
if Legit then
wait(3)
c()
end
end)
end)
end)
local Toggle1 = Section1:CreateToggle("Anti Leveling", nil, function(State)
yes = State
local OldNameCall = nil
OldNameCall = hookmetamethod(game, "__namecall", function(...)
local Args = {...}
local Self = Args[1]
if getnamecallmethod()== "FireServer" and tostring(Self)== "LevelingRemote" and yes then
return wait(math.huge)
end
return OldNameCall(...)
end)
end)
Toggle1:AddToolTip("Makes you not able to level up")
local Toggle1 = Section1:CreateToggle("Auto Mob", nil, function(State)
system2 =State
game:GetService('RunService').Stepped:connect(function() pcall(function()
if system2 then
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end end) end)
c()
spawn(function()
while system2 do wait()
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == system and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Torso.CFrame * CFrame.new(0,-7,0)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
if not system2 then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
end
end
end
end
end)
game:GetService('RunService').Stepped:connect(function()
pcall(function()
if system2 then
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end end) end)
end)
local Dropdown1 = Section1:CreateDropdown("Select Mob")
Dropdown1:AddToolTip("Select Mob")
for i,v in next, system do
Dropdown1:AddOption(v, function(String)
system = String
end)
end
local Button1 = Section1:CreateButton("Anti Effects", function()
pcall(function()
game.StarterGui:SetCore("SendNotification", {
Title = "Effects Gone";
Text = "Try one of your gay ugly weak moves unless you use OFA then u cool";
})
game:GetService("Workspace").Effects:remove() end) end)
local Slider2 = Section1:CreateSlider("Attack Distance", 0,100,nil,false, function(Value)
hh = Value
end)
local Button1 = Section1:CreateButton("Redeem Selected Code", function()
game:GetService("ReplicatedStorage").RemoteEvents.CodeRemote:FireServer(code)
end)
local Dropdown1 = Section1:CreateDropdown("Select Code")
Dropdown1:AddToolTip("Select Code")
for i,v in next, code do
Dropdown1:AddOption(v, function(String)
code = String
end)
end
local Button1 = Section1:CreateButton("Redeem All Codes", function()
for i,v in pairs(game:GetService("Players").LocalPlayer.Codes:GetDescendants()) do
game:GetService("ReplicatedStorage").RemoteEvents.CodeRemote:FireServer(v.Name)
end
end)
local Toggle1 = Section1:CreateToggle("Stun All Mobs", nil, function(State)
stun = State
while wait(2) do
pcall(function()
if stun then
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:FindFirstChild("Humanoid") then
v.Humanoid.PlatformStand = true
end end end end) end end)
local Toggle1 = Section1:CreateToggle("Auto Bosses", nil, function(State)
system3 = State
spawn(function()
game:GetService('RunService').Stepped:connect(function()
if system3 then
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
game.Players.LocalPlayer.Character:WaitForChild("Humanoid"):ChangeState(11)
end end)
while system3 do wait()
pcall(function()
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "KiddStan" or v.Name == "CrimsonMikami" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Torso.CFrame * CFrame.new(0,-7,2) *CFrame.Angles(90,0,0)
wait(0.3)
c()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
end
if not system3 then
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
end
end
end)
end end)
end)
local Label1 = Section1:CreateLabel("Auto Quests")
local Toggle1 = Section1:CreateToggle("Defeat 10 Bandits", nil, function(State)
Ban = State
game:GetService('RunService').Stepped:connect(function()
if Ban then
pcall(function()
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"Kaji")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 10 Bandits"))
repeat wait()
repeat wait()
pcall(function()
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == 'Bandit' and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 10 Bandits"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
game:GetService("ReplicatedStorage").RemoteEvents.ClearQuestRemote:FireServer() end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"Kaji")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 10 Bandits"))
until Ban == false
end)
local Toggle1 = Section1:CreateToggle("Defeat 9 of Agni's Minions", nil, function(State)
Ban7 = State
game:GetService('RunService').Stepped:connect(function()
if Ban7 then
pcall(function()
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"Laji")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 9 of Agni's Minions"))
repeat wait()
pcall(function()
repeat wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "Agni's Minion" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 9 of Agni's Minions"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban7 == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
game:GetService("ReplicatedStorage").RemoteEvents.ClearQuestRemote:FireServer() end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"Laji")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 9 of Agni's Minions"))
end)
until Ban7 == false
end)
local Toggle1 = Section1:CreateToggle("Defeat 8 of Lars' Minions", nil, function(State)
Ban1 = State
game:GetService('RunService').Stepped:connect(function()
if Ban1 then
pcall(function()
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"flamingo kaji")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 8 of Lars' Minions"))
repeat wait()
pcall(function()
repeat wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "Lars' Minion" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 8 of Lars' Minions"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban1 == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
game:GetService("ReplicatedStorage").RemoteEvents.ClearQuestRemote:FireServer() end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"flamingo kaji")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 8 of Lars' Minions"))
end)
until Ban1 == false
end)
local Toggle1 = Section1:CreateToggle("Defeat 7 of Rahgan's Minions", nil, function(State)
Ban2 = State
game:GetService('RunService').Stepped:connect(function()
if Ban2 then
pcall(function()
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"MlgSteakStyle")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 7 of Rahgan's Minions"))
repeat wait()
pcall(function()
repeat wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "Rahgan's Minion" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 7 of Rahgan's Minions"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban2 == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
game:GetService("ReplicatedStorage").RemoteEvents.ClearQuestRemote:FireServer() end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"MlgSteakStyle")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 7 of Rahgan's Minions"))
end)
until Ban2 == false
end)
local Toggle1 = Section1:CreateToggle("Defeat 6 of Agni's Overseers", nil, function(State)
Ban3 = State
game:GetService('RunService').Stepped:connect(function()
if Ban3 then
pcall(function()
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"pilgrism")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 6 of Agni's Overseers"))
repeat wait()
pcall(function()
repeat wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "Agni's Overseer" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 6 of Agni's Overseers"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban3 == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
game:GetService("ReplicatedStorage").RemoteEvents.ClearQuestRemote:FireServer() end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"pilgrism")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 6 of Agni's Overseers"))
end)
until Ban3 == false
end)
local Toggle1 = Section1:CreateToggle("Defeat 5 of Lars's Overseers", nil, function(State)
Ban4 = State
game:GetService('RunService').Stepped:connect(function()
if Ban4 then
pcall(function()
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"Aito")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 5 of Lars' Overseers"))
repeat wait()
pcall(function()
repeat wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "Lars' Overseer" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 5 of Lars' Overseers"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban4 == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible = false
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer( game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"Aito")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 5 of Lars' Overseers"))
end)
until Ban4 == false
end)
local Toggle1 = Section1:CreateToggle("Defeat 4 of Rahgan's Overseers", nil, function(State)
Ban5 = State
game:GetService('RunService').Stepped:connect(function()
if Ban5 then
pcall(function()
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", math.huge)
Part.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,-5,0)
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11) end)
end end)
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"KINGKONGKINGGKONGGG")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 4 of Rahgan's Overseers"))
repeat wait()
pcall(function()
repeat wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,Vector3.new(0,0,0),CFrame.new(Vector3.new(0,0,0), Vector3.new(0,0,0)))
if game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == true then
for i,v in pairs(game:GetService("Workspace").Live:GetDescendants()) do
if v:IsA("Model") and v.Name == "Rahgan's Overseer" and v:FindFirstChildOfClass("Humanoid") and v.Humanoid.Health > 0 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game:GetService("Workspace").QuestMarkers["Defeat 4 of Rahgan's Overseers"].CFrame * CFrame.new(math.random(1,50),-hh,math.random(1,50))
v.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-2)
wait(0.3)
c()
wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
game:GetService("ReplicatedStorage").RemoteEvents.BladeCombatRemote:FireServer(false,nil,nil)
wait(0.3)
for i,v in pairs({'E','R','C','X','Y',"V"}) do
game:GetService('VirtualInputManager'):SendKeyEvent(true,v,false,uwu)
end
if game.Players.LocalPlayer.Character:FindFirstChild("Player") then
game.Players.LocalPlayer.Character.Player:remove()
end
end end
if Ban5 == false then
game.Players.LocalPlayer.Character.Humanoid.Health = 0
game:GetService("ReplicatedStorage").RemoteEvents.ClearQuestRemote:FireServer()
sethiddenproperty(game.Players.LocalPlayer, "SimulationRadius", 0)
end
end end) until game:GetService("Players").LocalPlayer.PlayerGui.Menu.QuestFrame.Visible == false wait()
game:GetService("ReplicatedStorage").RemoteEvents.ChangeNpcValueRemote:FireServer(game:GetService("Players").LocalPlayer.PlayerValues.DialogNpc,"KINGKONGKINGGKONGGG")
game:GetService("ReplicatedStorage").RemoteEvents.ChangeQuestRemote:FireServer(game:GetService("ReplicatedStorage").Quests:FindFirstChild("Defeat 4 of Rahgan's Overseers"))
end)
until Ban5 == false
end)
local Button1 = Section2:CreateButton("Find Lucky or Requiem Arrows", function()
hunt = true
game:GetService("ReplicatedStorage").RemoteEvents.ClearInventoryRemote:FireServer()
wait(0.5)
while hunt do wait()
if #game.Players.LocalPlayer.Backpack:GetChildren() >= 20 then
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if not table.find(aka,v.Name) and v.Name:find("Arrow") then
v.Parent = game.Players.LocalPlayer.Character
v:Destroy()
elseif v.Name:find("Arrow") and table.find(aka,v.Name) then
game.StarterGui:SetCore("SendNotification", {
Title = "Found One";
Text = "Check your inventory plz";
})
hunt = false
end
end
else
game.ReplicatedStorage.RemoteEvents.BuyItemRemote:FireServer("Arrow")
end
end
end)
local Button1 = Section2:CreateButton("Find Uchiha Eyeball", function()
hhg = true
game:GetService("ReplicatedStorage").RemoteEvents.ClearInventoryRemote:FireServer()
wait(0.5)
while hhg do wait()
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Specialization")
if #game.Players.LocalPlayer.Backpack:GetChildren() >= 10 then
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("Meshes/Sphere_009") then
v.Parent = game.Players.LocalPlayer.Character
game.StarterGui:SetCore("SendNotification", {
Title = "Found One";
Text = "Check your inventory plz";
})
hhg = false
end
end
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("Scroll") or v:FindFirstChild("Fruit") then
v.Parent = game.Players.LocalPlayer.Character
v:remove()
end
end
end
end
end)
local Button1 = Section2:CreateButton("Find Legendary Armor", function()
hhfg = true
game:GetService("ReplicatedStorage").RemoteEvents.ClearInventoryRemote:FireServer()
wait(0.5)
while hhfg do wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Armor")
if #game.Players.LocalPlayer.Backpack:GetChildren() >= 10 then
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v.Name == "Bag" and v:FindFirstChild("Handle") then
if v.BagPart.Overhead.Rarity.Text == "Legendary" then
v.Parent = game.Players.LocalPlayer.Character
game.StarterGui:SetCore("SendNotification", {
Title = "Found One";
Text = "Check your inventory plz";
})
hhfg = false
end
end
end
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v.Name == "Bag" and v:FindFirstChild("Handle") then
if v.BagPart.Overhead.Rarity.Text == "Common" or v.BagPart.Overhead.Rarity.Text == "Rare" then
v.Parent = game.Players.LocalPlayer.Character
v:remove()
end
end
end
end
end)
end
end)
local Button1 = Section2:CreateButton("Find Rare Armor", function()
hhfg = true
game:GetService("ReplicatedStorage").RemoteEvents.ClearInventoryRemote:FireServer()
wait(0.5)
while hhfg do wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Armor")
if #game.Players.LocalPlayer.Backpack:GetChildren() >= 10 then
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v.Name == "Bag" and v:FindFirstChild("Handle") then
if v.BagPart.Overhead.Rarity.Text == "Legendary" or v.BagPart.Overhead.Rarity.Text == "Rare" then
v.Parent = game.Players.LocalPlayer.Character
game.StarterGui:SetCore("SendNotification", {
Title = "Found One";
Text = "Check your inventory plz";
})
hhfg = false
end
end
end
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v.Name == "Bag" and v:FindFirstChild("Handle") then
if v.BagPart.Overhead.Rarity.Text == "Common" then
v.Parent = game.Players.LocalPlayer.Character
v:remove()
end
end
end
end
end)
end
end)
local Button1 = Section2:CreateButton("Find Rare Accessory", function()
hh1fg = true
game:GetService("ReplicatedStorage").RemoteEvents.ClearInventoryRemote:FireServer()
wait(0.5)
while hh1fg do wait()
pcall(function()
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Accessory")
if #game.Players.LocalPlayer.Backpack:GetChildren() >= 10 then
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v.Name == "Bag" and v:FindFirstChild("Handle") then
if v.BagPart.Overhead.Rarity.Text == "Legendary" or v.BagPart.Overhead.Rarity.Text == "Rare" then
v.Parent = game.Players.LocalPlayer.Character
game.StarterGui:SetCore("SendNotification", {
Title = "Found One";
Text = "Check your inventory plz";
})
hh1fg = false
end
end
end
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v.Name == "Bag" and v:FindFirstChild("Handle") then
if v.BagPart.Overhead.Rarity.Text == "Common" or v.BagPart.Overhead.Rarity.Text == "Uncommon" then
v.Parent = game.Players.LocalPlayer.Character
v:remove()
end
end
end
end
end)
end
end)
local Slider2 = Section2:CreateSlider("Auto Stuff Wait time", 0,7,nil,false, function(Value)
getgenv().delay = Value
end)
Slider2:AddToolTip("Control Delay Time For Auto Applying everything below this")
local Toggle1 = Section2:CreateToggle("Auto Buy Arrows", nil, function(State)
deeznuts33 = State
while deeznuts33 do wait(0.3)
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Arrow") end end)
local Toggle1 = Section2:CreateToggle("Auto Ability", nil, function(State)
Abily = State
while Abily do wait(2)
pcall(function()
if game.Players.LocalPlayer.PlayerValues.Ability.Value ~= ab1 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Rokakaka")
game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Rokakaka)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer()
wait(delay)
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Arrow")
game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Arrow)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer()
end
end)
end
end)
local Dropdown1 = Section2:CreateDropdown("Select Ability")
Dropdown1:AddToolTip("Select Ability")
for i,v in next, ab1 do
Dropdown1:AddOption(v, function(String)
ab1 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Tile", nil, function(State)
newpaper = State
while newpaper do wait(getgenv().delay) pcall(function()
if game.Players.LocalPlayer.PlayerValues.Epithet.Value ~= ab3 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Newspaper")
game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Newspaper)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer() end end) end end)
local Dropdown1 = Section2:CreateDropdown("Select Tile")
Dropdown1:AddToolTip("Select Tile")
for i,v in next, ab3 do
Dropdown1:AddOption(v, function(String)
ab3 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Race", nil, function(State)
Heart = State
while Heart do wait(getgenv().delay) pcall(function()
if game.Players.LocalPlayer.PlayerValues.Race.Value ~= ab4 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Heart")
game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Heart)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer() end end) end end)
local Dropdown1 = Section2:CreateDropdown("Select Race")
Dropdown1:AddToolTip("Select Race")
for i,v in next, ab4 do
Dropdown1:AddOption(v, function(String)
ab4 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Trait", nil, function(State)
Heart1 = State
while Heart1 do wait(getgenv().delay) pcall(function()
if game.Players.LocalPlayer.PlayerValues.Trait.Value ~= ab6 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Eyeball")
game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Eyeball)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer() end end) end end)
local Dropdown1 = Section2:CreateDropdown("Select Trait")
Dropdown1:AddToolTip("Select Trait")
for i,v in next, ab6 do
Dropdown1:AddOption(v, function(String)
ab6 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Class", nil, function(State)
Heart2 = State
while Heart2 do wait(getgenv().delay) pcall(function()
if game.Players.LocalPlayer.PlayerValues.Class.Value ~= ab7 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Brain")
game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Brain)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer() end end) end end)
local Dropdown1 = Section2:CreateDropdown("Select Class")
Dropdown1:AddToolTip("Select Class")
for i,v in next, ab7 do
Dropdown1:AddOption(v, function(String)
ab7 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Sharingan", nil, function(State)
Heart9 = State
while Heart9 do wait(getgenv().delay)
if game.Players.LocalPlayer.PlayerValues.Specialization.Value ~= ab10 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Specialization")
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("Meshes/Sphere_009") then
v.Parent = game.Players.LocalPlayer.Character wait(1)
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer()
end
end
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("Scroll") or v:FindFirstChild("Fruit") then
v.Parent = game.Players.LocalPlayer,Character
v:remove()
end
end
end
end
end)
local Dropdown1 = Section2:CreateDropdown("Select Sharingan")
Dropdown1:AddToolTip("Select Sharingan")
for i,v in next, ab10 do
Dropdown1:AddOption(v, function(String)
ab10 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Specialization", nil, function(State)
Heart3 = State
while Heart3 do wait(getgenv().delay) pcall(function()
if game.Players.LocalPlayer.PlayerValues.Specialization.Value ~= ab2 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Specialization")
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("Scroll") or v:FindFirstChild("Fruit") then
v.Parent = game.Players.LocalPlayer.Character
end
end
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer() end end) end end)
local Dropdown1 = Section2:CreateDropdown("Select Specialization")
Dropdown1:AddToolTip("Select Specialization")
for i,v in next, ab2 do
Dropdown1:AddOption(v, function(String)
ab2 = String
end)
end
local Toggle1 = Section2:CreateToggle("Auto Mentor", nil, function(State)
Heart4 = State
while Heart4 do wait(getgenv().delay) pcall(function()
if game.Players.LocalPlayer.PlayerValues.Mentor.Value ~= ab5 then
game:GetService("ReplicatedStorage").RemoteEvents.BuyItemRemote:FireServer("Random Mentor")
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
if v.ClassName == "Tool" and v:FindFirstChild("MentorEgg") then
v.Parent = game.Players.LocalPlayer.Character
end
end
game:GetService("ReplicatedStorage").RemoteEvents.ItemRemote:FireServer() end end) end end)
local Dropdown1 = Section2:CreateDropdown("Select Mentor")
Dropdown1:AddToolTip("Select Mentor")
for i,v in next, ab5 do
Dropdown1:AddOption(v, function(String)
ab5 = String
end)
end
local Toggle1 = Section2:CreateToggle("Select Accessory1", nil, function(State)
Accessory1 = State
while Accessory1 do wait()
game:GetService("ReplicatedStorage").RemoteEvents.EquipAccessoryRemote:FireServer("Accessory1")
end end)
local Toggle1 = Section2:CreateToggle("Select Accessory2", nil, function(State)
Accessory2 = State
while Accessory2 do wait()