-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugins.json
More file actions
2654 lines (2654 loc) · 96 KB
/
Copy pathplugins.json
File metadata and controls
2654 lines (2654 loc) · 96 KB
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
[
{
"author": "Felix",
"name": "mousetools.iy",
"description": "Adds various commands for modifying the in game mouse or restoring it to Roblox defaults",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/mousetools.iy",
"message_id": "1529354950055038976"
},
{
"author": "Agent666_0",
"name": "MICUP-AITool.iy",
"description": "Generate tools",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/MICUP-AITool.iy",
"message_id": "1529221541735170170"
},
{
"author": "Felix",
"name": "showownership.iy",
"description": "Shows your network ownership status of parts",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/showownership.iy",
"message_id": "1528481980818395247"
},
{
"author": "Tony",
"name": "Bhop.iy",
"description": "Makes you jump until you get exhausted",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Bhop.iy",
"message_id": "1528398080657985649"
},
{
"author": "Felix",
"name": "emotemanager.iy",
"description": "Made by Rocky, tested and improved by Felix",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/emotemanager.iy",
"message_id": "1526012168556777493"
},
{
"author": "SteamUser#9483",
"name": "flingme.iy",
"description": "Self fling because it feels off being able to find everything but yourself",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/flingme.iy",
"message_id": "1525033828169810062"
},
{
"author": "dwxgoatgroup",
"name": "jobid.iy",
"description": "A plugin to copy and join JobId's",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/jobid.iy",
"message_id": "1523558282382545027"
},
{
"author": "h",
"name": "yesMommy.iy",
"description": "together for you with a warm and comforting voice from... mommy?",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/yesMommy.iy",
"message_id": "1522340767845056776"
},
{
"author": "dwxgoatgroup",
"name": "emote.iy",
"description": "Plays emotes like dance2, laugh etc which aren't on the marketplace ",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/emote.iy",
"message_id": "1520218128754147339"
},
{
"author": "dwxgoatgroup",
"name": "cname.iy",
"description": "Just changes the name of infinite yeild",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/cname.iy",
"message_id": "1520218020889366631"
},
{
"author": "weaponofchoice",
"name": "wfcp.iy",
"description": "Levels your camera. Cuz why not?",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/wfcp.iy",
"message_id": "1519709774567178270"
},
{
"author": "Tony",
"name": "chatsound.iy",
"description": "Make everyone sound like Eminem 😎",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/chatsound.iy",
"message_id": "1519582764066672702"
},
{
"author": "Tony",
"name": "scrollfix.iy",
"description": "For mobile, cuz it didn't change anything for PC",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/scrollfix.iy",
"message_id": "1518913887590940752"
},
{
"author": "Tony",
"name": "bbesp.iy",
"description": "partesp, BUT using BillBoardGui for tags objects",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/bbesp.iy",
"message_id": "1518788109863616724"
},
{
"author": "Tony",
"name": "mfreecam.iy",
"description": "You can also zoom through PC, using wheel",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/mfreecam.iy",
"message_id": "1518729293893599302"
},
{
"author": "dwxdeskgroup",
"name": "bounce.iy",
"description": "Basically makes you bounce in an invisible cage",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/bounce.iy",
"message_id": "1516515378312777768"
},
{
"author": "sdjmali2211",
"name": "dexre.iy",
"description": "Opens a new dex with more features",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/dexre.iy",
"message_id": "1515631943247597608"
},
{
"author": "openbridge",
"name": "prideYield.iy",
"description": "its pride month, everyone!",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/prideYield.iy",
"message_id": "1514286850649489581"
},
{
"author": "! FurryBoy",
"name": "toggle_chat.iy",
"description": "Enable/Disable Roblox chat window",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/toggle_chat.iy",
"message_id": "1514194222582992927"
},
{
"author": "! FurryBoy",
"name": "VoiceChatBypass.iy",
"description": "bypass voice chat suspensions unless you rejoin but won't save you from Roblox listening",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/VoiceChatBypass.iy",
"message_id": "1514193210832846949"
},
{
"author": "! FurryBoy",
"name": "KeepIYImproved.iy",
"description": "Basically keepiy but better",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/KeepIYImproved.iy",
"message_id": "1514193210832846949"
},
{
"author": "! FurryBoy",
"name": "savelogs.iy",
"description": "It's entire purpose is to save console logs as a file in your exploit workspace",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/savelogs.iy",
"message_id": "1514193210832846949"
},
{
"author": "𝓜𝓪𝔁…👑",
"name": "Fling_Deluxe.iy",
"description": "Fling Deluxe, a tool for trolling people in public",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Fling_Deluxe.iy",
"message_id": "1513707869974036662"
},
{
"author": "SteamUser#9483",
"name": "ExecutorGUI.iy",
"description": "For those of you who somehow end up in a situation with only IY and no proper executor.",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ExecutorGUI.iy",
"message_id": "1512441020053196835"
},
{
"author": "Agent666_0",
"name": "WelderRemake.iy",
"description": "Upgraded remake of the Original Welder.iy plugin for Infinite Yield",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/WelderRemake.iy",
"message_id": "1511676858205474866"
},
{
"author": "Dazy",
"name": "FeatherFalling.iy",
"description": "Makes you fall more slowly",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/FeatherFalling.iy",
"message_id": "1511663093611237507"
},
{
"author": "openbridge",
"name": "cmdBarSuggestion.iy",
"description": "Attempts to predict your next command and autofill for you",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/cmdBarSuggestion.iy",
"message_id": "1511436269719126090"
},
{
"author": "openbridge",
"name": "uwuify.iy",
"description": "spices up your chat messages for no reason",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/uwuify.iy",
"message_id": "1510928526507773952"
},
{
"author": "SteamUser#9483",
"name": "HealthESP.iy",
"description": "Allows you to better visualize the health of players if you're looking to do some kill stealing",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/HealthESP.iy",
"message_id": "1510893434045464668"
},
{
"author": "openbridge",
"name": "sigmasedit.iy",
"description": "This is how you play roblox as a sigma rizz god with infinite aura",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/sigmasedit.iy",
"message_id": "1510579733052788867"
},
{
"author": "steamuser9483",
"name": "StopSound.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/StopSound.iy",
"description": "Stops all sounds currently playing without muting or blocking future sounds."
},
{
"author": "steamuser9483",
"name": "ProductExploiter.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ProductExploiter.iy",
"description": "Developer Product & GamePass fake purchase signal tool + scanner."
},
{
"author": "urluri",
"name": "sayfact.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/sayfact.iy",
"description": "Send a random fact to the game"
},
{
"author": "urluri",
"name": "IYAI.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/IYAI.iy",
"description": "Integrates an AI assistant into Infinite Yield via GitHub"
},
{
"author": "steamuser9483",
"name": "ColorESP.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ColorESP.iy",
"description": "ESP players or all humanoids based on dominant body color."
},
{
"author": "agent6660",
"name": "npc_control_v1.1.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/npc_control_v1.1.iy",
"description": "Advanced NPC Control"
},
{
"author": "agent6660",
"name": "Weld3D.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Weld3D.iy",
"description": "Professional PhysicsRepRootPart welder with 3D preview and hidden velocity support."
},
{
"author": "agent6660",
"name": "godmode.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/godmode.iy",
"description": "Godmode using SetStateEnabled and NaN Health"
},
{
"author": "agent6660",
"name": "Headspin.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Headspin.iy",
"description": "R15 Head Look-at with Raycast/Peek/Invert support"
},
{
"author": "weapponofchoice",
"name": "Speedometer2.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Speedometer2.iy",
"description": "oh my god! i'm so fast"
},
{
"author": "maxproglitcher",
"name": "flipscreen.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/flipscreen.iy",
"description": "Good Plugin For flipscreen"
},
{
"author": "nolifepops",
"name": "UselessFactNotification.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/UselessFactNotification.iy",
"description": "Let's learn some random useless facts"
},
{
"author": "agent6660",
"name": "Fling.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Fling.iy",
"description": "Advanced fling bundle for IY"
},
{
"author": "agent6660",
"name": "vc-crasher-signal.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/vc-crasher-signal.iy",
"description": "crash people with vc"
},
{
"author": "weapponofchoice",
"name": "aimbot.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/aimbot.iy",
"description": "gives you an aimlock gui"
},
{
"author": "fiiiaa.",
"name": "SpiderFacts.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/SpiderFacts.iy",
"description": "Idk i was asked to do this okay ?"
},
{
"author": "agent6660",
"name": "FarhatUtility.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/FarhatUtility.iy",
"description": "Advanced physics manipulation, vehicle control, replicatesignal utilities by Farhat"
},
{
"author": ".lemonnn",
"name": "ReplicateAura.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ReplicateAura.iy",
"description": "+99999aura aura replication with emoji effects"
},
{
"author": "fiiiaa.",
"name": "Smoke.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Smoke.iy",
"description": "Creates smoke effects on your character"
},
{
"author": "weapponofchoice",
"name": "Speedometer.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Speedometer.iy",
"description": "RightAlt: Toggle | RightCtrl: Close | RightClick: Reset"
},
{
"author": "dazy0349",
"name": "instant-prompts.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/instant-prompts.iy",
"description": "Alternative version of instantproximityprompts"
},
{
"author": "games179",
"name": "TeleportJump.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/TeleportJump.iy",
"description": "Good Plugin For Teleport Jump"
},
{
"author": "forkcate",
"name": "sprint.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/sprint.iy",
"description": "A plugin that tpwalks you when you hold shift"
},
{
"author": "forkcate",
"name": "hoverinventory.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/hoverinventory.iy",
"description": "hover hoverpoop inventooprytory Hover"
},
{
"author": "forkcate",
"name": "interactable.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/interactable.iy",
"description": "cd = red, pp = green, ti = yellow, seat = light blue, unanchored = purple, no collision = brown, npc = gray"
},
{
"author": "forkcate",
"name": "selffling.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/selffling.iy",
"description": "normal skids fling others, i fling myself"
},
{
"author": "forkcate",
"name": "antitouch.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/antitouch.iy",
"description": "prevents your char from firing touch interests"
},
{
"author": "forkcate",
"name": "antichartp.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/antichartp.iy",
"description": "prevents the game from teleporting your character"
},
{
"author": "forkcate",
"name": "clicktouch.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/clicktouch.iy",
"description": "fires touch interests whom parts you click (shakespear jealous of me)"
},
{
"author": "forkcate",
"name": "pivotgoto.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/pivotgoto.iy",
"description": "there's like no good way for me to explain this here, go read the discord message"
},
{
"author": "forkcate",
"name": "adminguidelete.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/adminguidelete.iy",
"description": "if an admin gui tries to intercept you pressing ; then this destroys it"
},
{
"author": "forkcate",
"name": "rewind.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/rewind.iy",
"description": "it's that one really old rewind script"
},
{
"author": "forkcate",
"name": "hidedex.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/hidedex.iy",
"description": "Hides dex explorer (needs to run dex first)"
},
{
"author": ".rtf",
"name": "mousetptween.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/mousetptween.iy",
"description": "Mouse tween plugin for Infinite Yield"
},
{
"author": "windows1267",
"name": "BetterHop.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/BetterHop.iy",
"description": "a better server hop"
},
{
"author": "r0lling_girl.",
"name": "Welder.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Welder.iy",
"description": "Weld yourself to anyone."
},
{
"author": "darkshinobiiiii",
"name": "Simple_Player_TP_GUI.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Simple_Player_TP_GUI.iy",
"description": "Opens a GUI to TP to players"
},
{
"author": "sdjmali2211",
"name": "nanfling.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/nanfling.iy",
"description": "Fling players using nan fling"
},
{
"author": "anbubu",
"name": "fakeinvis.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/fakeinvis.iy",
"description": "fake invisibility v1 plugin for Infinite Yield"
},
{
"author": "anbubu",
"name": "adonisbypass.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/adonisbypass.iy",
"description": "adonis cries v67 plugin for Infinite Yield"
},
{
"author": "bleedingiv",
"name": "AnimSpeed.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/AnimSpeed.iy",
"description": "speeds up all animations, including walking n stuff"
},
{
"author": "bleedingiv",
"name": "BangTool.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/BangTool.iy",
"description": "A clickable bang, for all your banging needs."
},
{
"author": "hitboyxx23",
"name": "flashstep.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/flashstep.iy",
"description": "Press J to dash. Includes ghost trails and configurable range."
},
{
"author": "zerdgeofficial_",
"name": "Stopwatch.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Stopwatch.iy",
"description": "Simple stopwatch: sw start | stop | reset | time"
},
{
"author": "dazy0349",
"name": "Find-Places.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Find-Places.iy",
"description": "Finds secret places inside the game."
},
{
"author": "maxproglitcher",
"name": "ServerFinder.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ServerFinder.iy",
"description": "To have a better experience using IY to join public servers"
},
{
"author": "hxerohero",
"name": "translator.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/translator.iy",
"description": "This is a translator plugin"
},
{
"author": "hxerohero",
"name": "playercollision.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/playercollision.iy",
"description": "Player Collision 1000 plugin for Infinite Yield"
},
{
"author": "hitboyxx23",
"name": "shadowchatrblx.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/shadowchatrblx.iy",
"description": "Shadow-themed global chat with GUI"
},
{
"author": "hxerohero",
"name": "chattranslator.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/chattranslator.iy",
"description": "Translate chat"
},
{
"author": "hitboyxx23",
"name": "playertpgui.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/playertpgui.iy",
"description": "Teleport to any player using a GUI with avatars, search, sort, and quick history."
},
{
"author": "hitboyxx23",
"name": "healthbars.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/healthbars.iy",
"description": "show health bars."
},
{
"author": "hxerohero",
"name": "GetBoombox.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/GetBoombox.iy",
"description": "eigeighuegheuhg @hxerohero"
},
{
"author": "scriptleveling",
"name": "DarkMarker.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/DarkMarker.iy",
"description": "Made by @scriptleveling (<@293025935291187210>) on discord"
},
{
"author": "akgazii",
"name": "NpcHitbox.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/NpcHitbox.iy",
"description": "Increases all NPCs hitbox size"
},
{
"author": "labubugames1701",
"name": "jewconquest1.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/jewconquest1.iy",
"description": "made by bob company"
},
{
"author": "labubugames1701",
"name": "ChineseEspionageSocialCreditSystem.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ChineseEspionageSocialCreditSystem.iy",
"description": "wassup beijing"
},
{
"author": "labubugames1701",
"name": "tuff.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/tuff.iy",
"description": "67"
},
{
"author": "finesse8665",
"name": "fakelag.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/fakelag.iy",
"description": "Make's your character feel laggy (real)"
},
{
"author": "aceabo",
"name": "gotopartnext.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/gotopartnext.iy",
"description": "Teleport sequentially to parts, models, or folders with optional prefix and delay, with break support"
},
{
"author": "anbubu",
"name": "stretchres.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/stretchres.iy",
"description": "Stretched Resolution. plugin for Infinite Yield"
},
{
"author": "j5vz",
"name": "GK.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/GK.iy",
"description": "Grab Knife V4 imported to IY! [imported by nexus]"
},
{
"author": "lycinwipes",
"name": "Auraic.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Auraic.iy",
"description": "Auraic plugin for Infinite Yield"
},
{
"author": "iblamearqui",
"name": "FPS_menu.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/FPS_menu.iy",
"description": "Opens the FPS settings menu"
},
{
"author": ".chill.z.",
"name": "dexplusplus.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/dexplusplus.iy",
"description": "Adds Dex++ and Dex Stripped to Infinite Yield commands."
},
{
"author": "xyz044083",
"name": "remoteUtilities.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/remoteUtilities.iy",
"description": "made by xyz"
},
{
"author": "manipulatoraf",
"name": "Server_Hopper.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Server_Hopper.iy",
"description": "Server Hopper plugin for Infinite Yield"
},
{
"author": "0xoffset_",
"name": "Ghosting.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Ghosting.iy",
"description": "OoOOoOOOoooOOoOo spooky scary ghost!!1!"
},
{
"author": "0xoffset_",
"name": "AdonisDisabler.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/AdonisDisabler.iy",
"description": "Contains disableadonis command"
},
{
"author": "_f4x_",
"name": "nightvision.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/nightvision.iy",
"description": "Player highlighting with distance tracking"
},
{
"author": "whatom_",
"name": "MOMENTUM.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/MOMENTUM.iy",
"description": "Elite Movement System By atomic444 On Discord"
},
{
"author": "voidnumberzero",
"name": "fent.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/fent.iy",
"description": "IY:FE stands for Infinite Yield: Fentanyl Enabled"
},
{
"author": "whatom_",
"name": "hellenkeller.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/hellenkeller.iy",
"description": "hellenkeller by atomic444 on discord. its in the name"
},
{
"author": "z4nec0des",
"name": "relight.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/relight.iy",
"description": "The power to save and load graphics."
},
{
"author": "drakedrake0001",
"name": "meow.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/meow.iy",
"description": "discoclub plugin for Infinite Yield"
},
{
"author": "mochimreow",
"name": "ToSpawn.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ToSpawn.iy",
"description": "Teleports you to spawn (a random one if multiple exist)"
},
{
"author": "simmon8800",
"name": "MusicTimeML.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/MusicTimeML.iy",
"description": "Music player plugin with multi-language support"
},
{
"author": "toonarch",
"name": "ghost.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ghost.iy",
"description": "Ghost Holder plugin for Infinite Yield"
},
{
"author": "unknown",
"name": "TweenFlight.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/TweenFlight.iy",
"description": "Let's you fly smoother, bypassing some anti-cheats"
},
{
"author": "im_real.",
"name": "bbinds.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/bbinds.iy",
"description": "Adds button binds to the infinity yield"
},
{
"author": "libertar",
"name": "Inject.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Inject.iy",
"description": "A customizable script injector. Replace example URLs with your own!"
},
{
"author": "im_real.",
"name": "quickbar.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/quickbar.iy",
"description": "Lets you quickly type commands using a simple command bar"
},
{
"author": "infamousforarson",
"name": "simpleaimbot.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/simpleaimbot.iy",
"description": "Aimbot plugin for Infinite Yield"
},
{
"author": "infamousforarson",
"name": "simpleesp.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/simpleesp.iy",
"description": "Simple ESP Plugin plugin for Infinite Yield"
},
{
"author": "unknown",
"name": "Jerk.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Jerk.iy",
"description": "Jerk Off! plugin for Infinite Yield"
},
{
"author": "omarthebestman",
"name": "Screenshake.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Screenshake.iy",
"description": "Shakes the screen"
},
{
"author": "admindolphinofficial",
"name": "Kommander.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Kommander.iy",
"description": "Gives you the command line from the Developer Console, which executes with loadstring. It behaves like the server-side Command Line.\\nRun ;inject true to enable it. Use an event bind to enable by default."
},
{
"author": "drakedrake0001",
"name": "wallpaper.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/wallpaper.iy",
"description": "Wallpaper plugin for Infinite Yield"
},
{
"author": "z4nec0des",
"name": "mfly.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/mfly.iy",
"description": "A simple minecraft fly made by z4neC0des / Z4ne"
},
{
"author": "z4nec0des",
"name": "aim.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/aim.iy",
"description": "Aimbot with various options such as team check, wall check, and movement prediction."
},
{
"author": "unknown",
"name": "tag.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/tag.iy",
"description": "Adds a custom tag behind your username"
},
{
"author": "unknown",
"name": "VaporizeD.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/VaporizeD.iy",
"description": "F***ng vaporizes your character with an explosion!"
},
{
"author": "lordofmountain",
"name": "bams.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/bams.iy",
"description": "Plugin to annyon,blind players"
},
{
"author": "lordofmountain",
"name": "facefuck.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/facefuck.iy",
"description": "Face fuck plugin"
},
{
"author": "drakedrake0001",
"name": "earrape.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/earrape.iy",
"description": "Scripted by NoobSploit#0001"
},
{
"author": "unknown",
"name": "AntiAntiEarrape.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/AntiAntiEarrape.iy",
"description": "a graxe20 willy show"
},
{
"author": "lilithqt",
"name": "PVP_Handler.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/PVP_Handler.iy",
"description": "Boost your Infinite Yield with PVP useful commands"
},
{
"author": "drakedrake0001",
"name": "flingv2.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/flingv2.iy",
"description": "Flings a player without ever needing to walk past through them."
},
{
"author": "ffj2.0",
"name": "walkfling.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/walkfling.iy",
"description": "Flings anyone who touches you"
},
{
"author": "unknown",
"name": "aprilfools.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/aprilfools.iy",
"description": "april fools decal randomizer."
},
{
"author": "unknown",
"name": "toolview.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/toolview.iy",
"description": "view another player's tools"
},
{
"author": "linemaster",
"name": "fact.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/fact.iy",
"description": "fact plugin for Infinite Yield"
},
{
"author": "grizlik_bluescreen",
"name": "customIY.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/customIY.iy",
"description": "customize the ui"
},
{
"author": "ucatte",
"name": "AnimationSpeed.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/AnimationSpeed.iy",
"description": "Made by Cateh"
},
{
"author": "com.nzlinix",
"name": "bladeball.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/bladeball.iy",
"description": "Executes BladeBall Script (AutoParry, etc) | By Linix"
},
{
"author": "unknown",
"name": "catfact.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/catfact.iy",
"description": "Generates random cat facts"
},
{
"author": "cielle_",
"name": "SaveGuiPosition.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/SaveGuiPosition.iy",
"description": "Save the GUI position after leaving"
},
{
"author": "cielle_",
"name": "LastServer.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/LastServer.iy",
"description": "Join the previous server you were in"
},
{
"author": "unknown",
"name": "tview.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/tview.iy",
"description": "prints the tools players have"
},
{
"author": "toonarch",
"name": "af2023.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/af2023.iy",
"description": "April Fools 2023 plugin for Infinite Yield"
},
{
"author": "iamknux",
"name": "olddex.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/olddex.iy",
"description": "olddex plugin for Infinite Yield"
},
{
"author": "unknown",
"name": "heatseeker.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/heatseeker.iy",
"description": "HeatSeeker Speed"
},
{
"author": "unknown",
"name": "joinjobid.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/joinjobid.iy",
"description": "Teleports you to the specified JobId in the current game"
},
{
"author": "unknown",
"name": "LoadLink.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/LoadLink.iy",
"description": "Use Loadstring:)"
},
{
"author": "iamknux",
"name": "IY.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/IY.iy",
"description": "Adds commands that should be in IY itself"
},
{
"author": "ffj2.0",
"name": "pov.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/pov.iy",
"description": "Let's you view as a pov from inside any character model. Made by FFJ 2.0#6693"
},
{
"author": "iamknux",
"name": "ibtools.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/ibtools.iy",
"description": "loads ibtools and enables backpack"
},
{
"author": "unknown",
"name": "cameratools.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/cameratools.iy",
"description": "Place cameras at your mouse\\"
},
{
"author": "displayname_2",
"name": "vrmobile.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/vrmobile.iy",
"description": "Moves your hands (mobile) R6"
},
{
"author": "displayname_2",
"name": "bodydeletor.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/bodydeletor.iy",
"description": "Useful for Fake VR. Deletes all presents of body"
},
{
"author": "adviidka",
"name": "meme.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/meme.iy",
"description": "TUMMM AAAAH MY HEEED!!!! last updated: 02/04/2023"
},
{
"author": "joshycuteball",
"name": "yttd.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/yttd.iy",
"description": "Download Youtube Thumbnails."
},
{
"author": "unknown",
"name": "apparate.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/apparate.iy",
"description": "Teleport <studs> number of studs forward/backward"
},
{
"author": "unknown",
"name": "imitate.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/imitate.iy",
"description": "Copies players\\"
},
{
"author": "s.wm",
"name": "balleresp.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/balleresp.iy",
"description": "trashy baller esp"
},
{
"author": "unknown",
"name": "dogfact.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/dogfact.iy",
"description": "Generates random dog facts"
},
{
"author": "s.wm",
"name": "donut.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/donut.iy",
"description": "speen donut"
},
{
"author": "unknown",
"name": "Netless.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Netless.iy",
"description": "Netless plugin for Infinite Yield"
},
{
"author": "joshycuteball",
"name": "coinflip.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/coinflip.iy",
"description": "Flip a coin!"
},
{
"author": "s.wm",
"name": "crosshair.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/crosshair.iy",
"description": "crosshair that go brrr and lgbt"
},
{
"author": ".rtf",
"name": "Up.iy",
"url": "https://raw.githubusercontent.com/corecommit/plugin-store/main/plugins/Up.iy",
"description": "Upwards plugin for Infinite Yield"
},
{
"author": "unknown",
"name": "Down.iy",