-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOld Raccoon Hub.lua
916 lines (833 loc) · 33.6 KB
/
Old Raccoon Hub.lua
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
local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
local Window = Rayfield:CreateWindow({
Name = "Raccoon Hub v1.2.2 ",
LoadingTitle = "Raccoon Hub v1.2.2 is loading..",
LoadingSubtitle = "By Ry and you! ",
ConfigurationSaving = {
Enabled = false,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "Raccoon Hub"
},
Discord = {
Enabled = true,
Invite = "tzAsunjkXy",
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
},
KeySystem = true, -- Set this to true to use our key system
KeySettings = {
Title = "Raccoon Hub v1.2.2 ",
Subtitle = "Key System",
Note = "Join the discord (dsc.gg/rans) for the key.",
FileName = "atlaskey",
SaveKey = true,
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
Key = "SPartner"
}
})
Rayfield:Notify({
Title = "Welcome to Raccoon Hub v1.2.2!",
Content = "Much Love ❤. - Ry. Aloha Konichiwa",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user Replied, Okay!")
end
},
},
})
Rayfield:Notify({
Title = "Notification",
Content = "Hey! Thanks for choosing Raccoon Hub, i put lots of efforts in this. Enjoy!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user Replied, Okay!")
end
},
},
})
Rayfield:Notify({
Title = "Warning!",
Content = "Some of these script may crash your game or won't work. Thank you for using the hub",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user Replied, Okay!")
end
},
},
})
warn("Please Support me i put alot of efforts in this.")
warn("<3")
local ScriptsTab = Window:CreateTab("Main Scripts 📜", 4483362458) -- Title, Image
local HubsTab = Window:CreateTab("Main Hubs 🌐", 4483362458)
local MiscTab = Window:CreateTab("Misc 🔗", 4483362458)
local PlayerTab = Window:CreateTab("Utility", 4483362458)
local RandomTab = Window:CreateTab("2nd Scripts Tab", 4483362458)
local ExpTab = Window:CreateTab("🧪 Experimental")
local ChangeTab = Window:CreateTab("Changelogs", 4483362458)
local SupportTab = Window:CreateTab("Support Us!", 4483362458)
local CreditTab = Window:CreateTab("Credits", 4483362458)
local ControlTab = Window:CreateTab("Controls 🎮", 4483362458)
local HelpTab = Window:CreateTab("Help❓", 4483362458)
local Paragraph = ExpTab:CreateParagraph({Title = "Warning!", Content = "These are Experimental feature. it may crashes your game."})
local Paragraph = ExpTab:CreateParagraph({Title = "Dev Note:", Content = "' = might break | '' = will break"})
local Button = ExpTab:CreateButton({
Name = " Backdoors K4 | V8 | '",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/iK4oS/backdoor.exe/master/source.lua"))()
end,
})
local Paragraph = CreditTab:CreateParagraph({Title = "Rayfield", Content = "By Shlexware"})
local Paragraph = CreditTab:CreateParagraph({Title = "Original Atlas Hub", Content = "Based on Goobie / The Pepsi Hub"})
local Paragraph = CreditTab:CreateParagraph({Title = "Resync Fling, Aimbot, ESP", Content = "By Sploinky a developer of Pepsi Hub"})
local Paragraph = CreditTab:CreateParagraph({Title = "Raccoon Hub", Content = "By Ry"})
local Paragraph = CreditTab:CreateParagraph({Title = "[OLD | OG] Atlas Hub and Rayfield Atlas Hub", Content = "By Ry"})
local Paragraph = CreditTab:CreateParagraph({Title = "Atlas X", Content = "By Wello"})
local Paragraph = SupportTab:CreateParagraph({Title = "Please paste one of these links in you browser", Content = "Follow us on Github or join our server will helps alot!"})
local Button = SupportTab:CreateButton({
Name = "♥ Join our server!",
Callback = function()
Rayfield:Notify({
Title = "Notify",
Content = "The link has been copied to you clipboard!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
setclipboard("https://dsc.gg/rans")
end,
})
local Button = SupportTab:CreateButton({
Name = "💖 Our GitHub",
Callback = function()
Rayfield:Notify({
Title = "Notify",
Content = "The link has been copied to you clipboard!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("wello x Terio")
end
},
},
})
setclipboard("https://github.com/RyAtlasX")
end,
})
local Button = SupportTab:CreateButton({
Name = "🖤 Atlas Dev Github",
Callback = function()
Rayfield:Notify({
Title = "Notify",
Content = "The link has been copied to you clipboard!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
setclipboard("https://github.com/atlas-developers")
end,
})
local Button = SupportTab:CreateButton({
Name = "🌐 Atlas v5 website",
Callback = function()
Rayfield:Notify({
Title = "Notify",
Content = "The link has been copied to you clipboard!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("Ry x Kee")
end
},
},
})
setclipboard("https://atlasv5.vercel.app/")
end,
})
local Button = SupportTab:CreateButton({
Name = "✔ Atlas Discord Server",
Callback = function()
Rayfield:Notify({
Title = "Notify",
Content = "The link has been copied to you clipboard!",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("Ry x Kee")
end
},
},
})
setclipboard("https://discord.gg/RKEVNpBbHz")
end,
})
local Paragraph = CreditTab:CreateParagraph({Title = "ㅤㅤㅤㅤㅤㅤㅤㅤ", Content = "ㅤ"})
local Paragraph = CreditTab:CreateParagraph({Title = "Special Thanks to:", Content = "ㅤ"})
local Paragraph = CreditTab:CreateParagraph({Title = "Wello", Content = "Testing script!"})
local Paragraph = CreditTab:CreateParagraph({Title = "Gooble", Content = "For inspiring!"})
local Paragraph = CreditTab:CreateParagraph({Title = "Suno", Content = "Supporting!"})
local Paragraph = CreditTab:CreateParagraph({Title = "And others", Content = "kking, Louismoonj, ScripterCat for Cheering me!"})
local Paragraph = RandomTab:CreateParagraph({Title = "Warning!", Content = "Some of these scripts may get you banned! especially Arsenal."})
local Button = RandomTab:CreateButton({
Name = " Rainbow Bubble Chat | Doesn't work with new chat system",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Resurganced%20Frights.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Resurganced Frights | Doors",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Resurganced%20Frights.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Ry's Evade Gui",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Evade%20Gui.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Ry's PSX Gui",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/PSX%20SCRIPT.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Legends of Speed | Auto Orbs",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/2008.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " TNG Hub Blox Fruits",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/TNG%20Hub"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Break In Story | OP",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Break%20In%20Story.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Ability Wars",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Ab%20wars2"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Muscle Legends | V.G",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Atlas_hub/main/Muscle-Legends.txt"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " VAPE v4 | Bedwars",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/VAPE%20V4%20%5Bbedwar%5D"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Infamy | GUI",
Callback = function()
Rayfield:Notify({
Title = "Key",
Content = "Direct key link of Infamy GUI has been copied to you clipboard.",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
setclipboard("1.kelprepl.repl.co/getkey/Infamy_GUI")
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Infamy.GUI.lua"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Piano Auto Player | richie0866 | One Time Use",
Callback = function()
Rayfield:Notify({
Title = "How to use script:",
Content = "workspace > create folder name 'midi' > add a midi file or find it on the internet then put it that a folder.",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Auto_player.piano"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Arsenal Scripts | 2 Hubs included",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/test/main/Arsenal%20scripts1"))()
end,
})
local Button = RandomTab:CreateButton({
Name = " Vynixu Scripts | Doors",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/test/main/Doors2"))()
end,
})
local Paragraph = MiscTab:CreateParagraph({Title = "FE Misc Scripts", Content = "Everything here is FE and don't worry about bugs or glitches."})
local Button = MiscTab:CreateButton({
Name = " 2007 Animation",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/2007%20animation.txt"))()
end,
})
local Button = MiscTab:CreateButton({
Name = " 2007 cursor",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/2007%20cursor.txt"))()
end,
})
local Button = MiscTab:CreateButton({
Name = " Dabbing Animation",
Callback = function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FE-Dab-8883"))()
end,
})
local Button = MiscTab:CreateButton({
Name = " Ball Rolling Animation",
Callback = function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FE-Ball-Roll-8881"))()
end,
})
local Button = MiscTab:CreateButton({
Name = " Fast animations",
Callback = function()
loadstring(game:HttpGet('https://pastebin.com/raw/8DKHE7sd'))() -- The function that takes place when the button is pressed
end,
})
local Button = MiscTab:CreateButton({
Name = " Walk on Walls",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/walks%20on%20walls'))() -- The function that takes place when the button is pressed
end,
})
local Button = MiscTab:CreateButton({
Name = " FE Front Flip",
Callback = function()
loadstring(game:HttpGet('https://pastebin.com/raw/8vFCxMWT'))() -- The function that takes place when the button is pressed
end,
})
local Button = MiscTab:CreateButton({
Name = " FE invis tool",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/invis2tool.lua'))() -- The function that takes place when the button is pressed
end,
})
local Button = MiscTab:CreateButton({
Name = " Ry's Enhancer v0.1",
Callback = function()
Rayfield:Notify({
Title = "Crashing!",
Content = "If you are on Windows 7 or lower RAM, this could crash your game.",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
warn("DIE!!!!!")
end
},
},
})
Rayfield:Notify({
Title = "Experience",
Content = "Use RoShade for a better experience. Click this button and the link will be copied into your clipboard",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Install RoShade",
Callback = function()
setclipboard("https://roshade.com/")
end
},
},
})
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/FUCKING%20SHADERS"))()
end,
})
local Button = MiscTab:CreateButton({
Name = " RTX | Shader",
Callback = function()
Rayfield:Notify({
Title = "Crashing!",
Content = "If you are on Windows 7 or lower RAM, this could crash your game.",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
Rayfield:Notify({
Title = "Experience",
Content = "Use RoShade for a better experience. Click this button and the link will be copied into your clipboard",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Install RoShade",
Callback = function()
setclipboard("https://roshade.com/")
end
},
},
})
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/RTX.lua"))()
end,
})
local Button = MiscTab:CreateButton({
Name = " Self Moderator",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Fake%20Self%20Ban.lua'))() -- The function that takes place when the button is pressed
end,
})
local Button = MiscTab:CreateButton({
Name = " Fake Lag",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Fake%20Lag'))() -- The function that takes place when the button is pressed
end,
})
local Paragraph = PlayerTab:CreateParagraph({Title = "Partners Utility", Content = "These utilites created by our wonderful partners."})
local Button = PlayerTab:CreateButton({
Name = " Solar [Beta]",
Callback = function()
loadstring(game:HttpGetAsync('https://raw.githubusercontent.com/SunoUi/Solar/main/Main.lua', true))('Solar Utilities')
end,
})
local Paragraph = PlayerTab:CreateParagraph({Title = "Universal", Content = "Utilites"})
local Button = PlayerTab:CreateButton({
Name = " Dex v1.1.0 Alpha",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Dark%20Dex%20v4")() -- The function that takes place when the button is pressed
end,
})
local Button = PlayerTab:CreateButton({
Name = " SimpleSpy v2.2",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/RyAtlasX/test/main/Rspy")() -- The function that takes place when the button is pressed
end,
})
local Button = PlayerTab:CreateButton({
Name = " OpenGui v1.11",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/OpenGui")() -- The function that takes place when the button is pressed
end,
})
local Button = PlayerTab:CreateButton({
Name = " Unnamed ESP",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Unnamed%20ESP")() -- The function that takes place when the button is pressed
end,
})
local Paragraph = HubsTab:CreateParagraph({Title = "Partner Hubs", Content = "These Hub are created by my partners."})
local Button = HubsTab:CreateButton({
Name = "Pepsi Hub v2.3",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/test/main/Pepsi%20Hub%20%5Bremade%5D"))()
end,
})
local Paragraph = HubsTab:CreateParagraph({Title = "Hubs", Content = "Universal script hubs."})
local Button = HubsTab:CreateButton({
Name = " FE Nullware Reanimation",
Callback = function()
Rayfield:Notify({
Title = "Crashing!",
Content = "This script could crash your game very easily, please be careful.",
Duration = 6.5,
Image = 4483362458,
Actions = { -- Notification Buttons
Ignore = {
Name = "Okay!",
Callback = function()
print("The user tapped Okay!")
end
},
},
})
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/nullware'),true))()
end,
})
local Button = HubsTab:CreateButton({
Name = " FE Energize GUI",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Energize'),true))()
end,
})
local Button = HubsTab:CreateButton({
Name = "FE Sussy Hub",
Callback = function()
loadstring(game:HttpGet(('https://gist.githubusercontent.com/Nilrogram/8b0c8bd710be142f383c71f79279752c/raw/e4fb01a7de7cd498bb53270d2ad191dfab268a88/FE%2520SussyHub'),true))(); -- The function that takes place when the button is pressed
end,
})
local Paragraph = ScriptsTab:CreateParagraph({Title = "Welcome to", Content = "Universal FE Scripts."})
local Paragraph = ScriptsTab:CreateParagraph({Title = "Recommendation", Content = "We recorecommended you to use NullWare for reanimating."})
local Button = ScriptsTab:CreateButton({
Name = " FE Grandmasters | Patched",
Callback = function()
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-script-Grandmaster-7382"),true)("Raccoon, The best script hub")
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Neko Maid | Patched",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/neko%20maid%20v1.lua'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Nameless Animations | Patched",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Nameless%20animation%20scripts1'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Mr.Chill | Patched",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/test/main/Mr%20Chill'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Chat Bypass Script | Downed",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/vqmpjay/scripts/main/vadriftsbyp_krnl_fluxus_support'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Physics Gun",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/FE%20Physics%20Gun.lua'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Better Bypasser",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/FE%20Better%20Bypasser.lua'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " VR | No headset required | Patched",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/test/main/VR'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Among Us",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Among%20Us1'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " Grab Knife V3",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Grab%20Knife%20V3'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Chips | R6 | Patched",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/FE%20chip.lua'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Chips | R15 | Patched",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/FE%20chipR15.lua'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Yeet GUI | Trollface Edition",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/FE%20Yeet%20gui%20(trollface%20edittion).lua'),true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " The Glitcher",
Callback = function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/The%20Glitcher'),true))()
end,
})
local Button = MiscTab:CreateButton({
Name = " Grabhook | Spider-man | R6",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/SPIDERMANN'))() -- The function that takes place when the button is pressed
end,
})
local Button = PlayerTab:CreateButton({
Name = " BetterRoblox | Might Crash",
Callback = function()
loadstring(game:HttpGet("https://eternityhub.xyz/BetterRoblox/Loader"))()
end,
})
local Button = PlayerTab:CreateButton({
Name = " Proton Free / Proton Admin",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Proton%20Free.lua'))()
end,
})
local Button = PlayerTab:CreateButton({
Name = " Infinite Yield v5.9.3",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
end,
})
local Button = PlayerTab:CreateButton({
Name = " CMD X v1.9.9F",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/CMD-X/CMD-X/master/CMD-X'))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " Anti Kick",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Anti-Kick/main/Anti%20Kick.lua"))()
end,
})
local Button = PlayerTab:CreateButton({
Name = " CPU / GPU Saver",
Callback = function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-CPU-Saver-WINDOWSFOCUS-8910"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Chat Spy",
Callback = function()
loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FE-Chat-Troller-8885"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE R15 Animation Library",
Callback = function()
loadstring(game:HttpGet("https://pastebin.com/raw/hVvmgMHb"))()
end,
})
local Button = PlayerTab:CreateButton({
Name = " Remove Textures and Effects",
Callback = function()
loadstring(game:HttpGet('https://rawscripts.net/raw/Universal-Script-Remove-Surface-Textures-and-Effects-8821'))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Selexity Reanimation GUI",
Callback = function()
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-selexity-or-something-2808", true))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " FE Chill GUI | Float | Patched",
Callback = function()
loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-FE-Chill-Script-R6-and-R15-5925", true))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Pendulum Reanimation Hub | Patched?",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/Tescalus/Pendulum-Hubs-Source/main/Pendulum%20Hub%20V5.lua"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " Collision Enabler",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/rouxhaver/scripts/main/Local%20Full%20Player%20Collision.Lua"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " Anti Fling",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/AntiFling"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = "Touch Fling Script | Patched",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/TouchFling.txt"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " Universal Snake Script | No Hats | Patched",
Callback = function()
loadstring(game:HttpGet(('https://pastefy.ga/tWBTcE4R/raw'),true))()
end,
})
local Button = HubsTab:CreateButton({
Name = " BlackTrap Hub",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Blacktrap")() -- The function that takes place when the button is pressed
end,
})
local Button = HubsTab:CreateButton({
Name = " Universal FE Hub",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/WinterDinder/oldfehub/main/boronide%20level%20obfuscation%20lol")() -- The function that takes place when the button is pressed
end,
})
local Button = HubsTab:CreateButton({
Name = " Ice Hub",
Callback = function()
loadstring(game:HttpGet"https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven")() -- The function that takes place when the button is pressed
end,
})
local Button = HubsTab:CreateButton({
Name = " ScriptBlox | SearchBar",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/madonchik123/USL/main/main.lua"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Simplity V2",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/HeyGyt/simplityv2/main/main"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = " Lyrics Bot | Patched?",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/CF-Trail/lyricsBot/main/singer.lua"))()
end,
})
local Button = PlayerTab:CreateButton({
Name = " Netless FE",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/netless.txt"))()
end,
})
local Button = HubsTab:CreateButton({
Name = "Skidded V2",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/skiddedv2.txt"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = "Resync Fling | Sploinky | Patched?",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/sploinkyflingscript.resync.txt"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = "Aimbot (Hold E to use) | Sploinky | Patched?",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/sploinkyaimbot.headlock.txt"))()
end,
})
local Button = ScriptsTab:CreateButton({
Name = "ESP | Sploinky",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/KattWasTaken/pepsi_hub/main/sploinkyesp.odd.txt"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Owl Hub",
Callback = function()
loadstring(game:HttpGet("https://github.com/RyAtlasX/Atlas_hub/blob/main/Owl%20hub"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Ez Hub",
Callback = function()
loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Ez%20Hub.txt"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Penlulum Hub",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/Pendulum%20Hub.lua"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Hydroxide",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Hydroxide"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Orca v1.1.1",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Script-Storages/main/Orca"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Domain X v1.96",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/fortnitemodder/DomainX/main/Source"))()
end,
})
local Button = HubsTab:CreateButton({
Name = " Eclipse Hub v0.88",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/RyAtlasX/Roblox_Scripts/main/Eclipse%20hub.lua"))()
end,
})
local Paragraph = ControlTab:CreateParagraph({Title = "Touch Fling Controls", Content = "To use touch fling, Press the (X) Key, It will stop/start animations, and you can fling anybody who doesnt have anti fling enabled, which result in them to be eliminated. - Credit to Pepsi Hub"})
local Paragraph = ControlTab:CreateParagraph({Title = "FE Flip Controls", Content = "Use the (Z) Key to backflip, the (X) Key to front flip, and the (C) Key to infinite jump, Does not work with touch fling, Resetting does not disable this script, to disable it, rejoin your game."})
local Paragraph = ControlTab:CreateParagraph({Title = "Neko Maid Controls", Content = "Attack: Z X | Taunt: R T | Movement: F"})
local Paragraph = ControlTab:CreateParagraph({Title = "FE Grandmaster Controls", Content = "Attack: Z X C V | Taunt: T | Movement: Q E"})
local Paragraph = ChangeTab:CreateParagraph({Title = "Release 1.0", Content = "The Rayfield version of Atlas Hub is here!"})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.1", Content = "Added selections, more script hubs, more FE scripts."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.1.5", Content = "Added more tips in Controls page, Nullware Reanimation is fixed, And more..."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.1.6", Content = "Added Infamy script, Legend of speed back to the Atlas hub, moved Solar to Utilites selection."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.1.7", Content = "Added auto player piano."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.1.8", Content = "Added Energize Animation Gui."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.1.9", Content = "Added Owlhub, Ez hub, Muscle Legends script."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.2.0", Content = "Added Support Tab, Credits Tab."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Demo 1.2.0a", Content = "Changed somethings in 'Support Us!' tab"})
local Paragraph = ChangeTab:CreateParagraph({Title = "Demo 1.2.0b", Content = "Changed somethings in 'Credits' and Main tab"})
local Paragraph = ChangeTab:CreateParagraph({Title = "Demo 1.2.0c", Content = "Changed somethings in 'Credits' and Main tab"})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.2.1", Content = "Added Experiment Tab."})
local Paragraph = ChangeTab:CreateParagraph({Title = "Update 1.2.2", Content = "Huge Update! Renamed 'Random Scripts' to '2nd Scripts Tab'. added much new scripts! and more decorations! Made the buttons more specific! And More!!!."})
local Paragraph = HelpTab:CreateParagraph({Title = "What is netless?", Content = "When you use FE scripts, It relies on taking your limbs and rearranging them, Sometimes it will fail, and the script wont work, Netless prevents this."})
local Paragraph = HelpTab:CreateParagraph({Title = "What does the icon mean?", Content = "This icon stand for the verified users and developers. However, Raccoon Hub uses this to identify what scripts and tabs are verified and certified good scripts."})
local Paragraph = HelpTab:CreateParagraph({Title = "What does 'Patched?' and 'Patched' mean?", Content = "So. You know how some script don't work? Well these scripts are 'patched'. We use 'Patched?' to identify if the script is may or may not be patched (50%), and 'Patched' to identify if the script is patched (100%)"})