-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2025-Fest 2025-BoothCredits.json
More file actions
3904 lines (3904 loc) · 183 KB
/
2025-Fest 2025-BoothCredits.json
File metadata and controls
3904 lines (3904 loc) · 183 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
{
"credits": [
{
"community": {
"id": 1,
"name": "Local Police Department",
"group_id": "grp_d594f074-ea42-4f47-bc68-b96f4ad2eda0",
"description": "Welcome the LPD, one of VRChats oldest and largest roleplaying groups bringing entertainment to public lobbies since 2018. The LPD hosts daily VRChat events where officers are assigned to a squad to create roleplay scenarios in public lobbies, themed around interactions with the public and emergency services. Due to the nature of improv, anything can happen during these events. From drug busts and shootouts, to checking mirror dwelling licenses. \n\nTo join the LPD check out the recruitment channel on our Discord at <color=#7289daff>discord.gg/lpd</color>. There you will find the application form as well as our handbook which is packed with all kinds of important information. Once accepted you will go through cadet training, before jumping into patrolling VRChat as an official LPD officer. When you have some experience under your belt you can take additional training to move up the ranks or specialize into other kinds of roleplay that we offer.\n\nPatrol officers will arrest people and bring them to the LPD station to take their mugshot that then gets posted on our discord server for everyone to see. If they choose to not come quietly we have our swat team, known as SLRT, to help persuade them. Once the suspect has been processed they will be handed over to our Corrections Officers and given a nice new home in the LPD Prison with all the other prisoners. And if anyone gets hurt in the process they can be treated by the LMT at our Hospital. To find out how you can help keep the streets of VRChat safe, join our Discord or follow us on Twitter @LPD_vr.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2026-03-03T15:49:46.000Z",
"deletedAt": null,
"logo_id": 134
},
"members": [
{
"username": "Karet"
},
{
"username": "pesky12"
}
]
},
{
"community": {
"id": 48,
"name": "The Bakery",
"group_id": "grp_e637632e-e9cb-4a2c-96e7-d5eb2bb634c8",
"description": "The Bakery is a group of artists that primarily focus on digital art, 3d animation, and virtual reality environments, primarily based in VRChat. We enjoy creating stories with our art, and giving people something to enjoy!",
"createdAt": "2024-05-22T20:15:36.000Z",
"updatedAt": "2025-03-28T06:08:58.000Z",
"deletedAt": null,
"logo_id": 169
},
"members": [
{
"username": "Wobblins"
}
]
},
{
"community": {
"id": 50,
"name": "Noved Squad",
"group_id": "grp_555e1cda-988e-45a3-8fd6-00335c214683",
"description": "Welcome to the Noved Squadǃ \n\nHome of the Noved Notes Podcastǃ\nA VRChat Podcast that goes into the amazing creators of VRChatǃ\n\nIn the Noved Squad Community‚ we do a bunch of hangouts‚ game nights‚ DJ Noved Party Nights‚ and collaborate to make amazing creations on VRChatǃ Overall we just like to have funǃ\n\nIf you are a creator ⁄ community rep that is interested in being on the podcast‚ join the discord and submit an applicationǃ",
"createdAt": "2024-05-22T20:37:01.000Z",
"updatedAt": "2025-03-28T05:57:15.000Z",
"deletedAt": null,
"logo_id": 171
},
"members": []
},
{
"community": {
"id": 127,
"name": "The Game Show Community of VRChat",
"group_id": "grp_62e1b8ed-15bc-410f-adb2-eee3f94d0abd",
"description": "GSGenesis and his friends/fellow game show fans operate and organize VR-based recreations of popular TV game shows from past and present! Attracting players since 2017, the Game Show Community of VRChat and its affiliates continue to provide a near-impossible life experience to thousands!",
"createdAt": "2024-06-13T14:28:46.000Z",
"updatedAt": "2024-06-21T23:27:26.000Z",
"deletedAt": null,
"logo_id": 241
},
"members": [
{
"username": "GSGenesis"
}
]
},
{
"community": {
"id": 10,
"name": "Legions Of Chaos",
"group_id": "grp_b8f6e788-d6e0-4b2c-91e2-326be5827365",
"description": "The Legions of Chaos is a VRChat PCVR Avatar PVP Group, which uses the Avatar PVP system created by GoFluffYaSelf!",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2024-06-21T00:28:38.000Z",
"deletedAt": null,
"logo_id": 157
},
"members": []
},
{
"community": {
"id": 91,
"name": "Shopow's Corner",
"group_id": "grp_e2716537-d2e0-49a4-8072-61772d2deff5",
"description": "\"Haiǃ Welcome to Shopow's Corner‚ for all friends to join and have funǃ I will also post updates‚ world releases‚ and memes in hereǃ I'll occasionally promote worlds‚ events‚ and content made by friends who need helpǃ Let's spread wholesome and positive vibes throughout VRChatǃ \n\nBe sure to join our Discord Server to hang and meet more wonderful and wholesome peopleǃ\n\nCreated on˸ January 5th‚ 2021\"",
"createdAt": "2024-06-05T19:30:22.000Z",
"updatedAt": "2025-06-05T23:07:19.000Z",
"deletedAt": null,
"logo_id": 202
},
"members": []
},
{
"community": {
"id": 174,
"name": "BUDDYWORKS",
"group_id": "grp_6f4530c0-5ba5-4545-8007-705aaa2773af",
"description": "BUDDYWORKS is a community by creators for creators, helping and educating in all things unity and blender with VRC context.\n\nEveryone is happily invited to join in, every skill level, even just slight curiosity.\n\nMaybe you find the spark. ❤️",
"createdAt": "2025-02-07T20:26:17.000Z",
"updatedAt": "2025-02-08T17:00:24.000Z",
"deletedAt": null,
"logo_id": 453
},
"members": [
{
"username": "Karet"
},
{
"username": "Buddy_DE"
}
]
},
{
"community": {
"id": 100,
"name": "xCirrex Media",
"group_id": "grp_402966f5-cfb6-4e86-906c-474960e72b70",
"description": "Monthly tournaments in xCirrex's PVP worlds, community hangouts and concerts!",
"createdAt": "2024-06-12T17:49:04.000Z",
"updatedAt": "2024-06-20T16:01:20.000Z",
"deletedAt": null,
"logo_id": 131
},
"members": [
{
"username": "xCirrex"
}
]
},
{
"community": {
"id": 175,
"name": "Community Oasis",
"group_id": "grp_e5606ba8-309e-466c-aeb7-237b1867756d",
"description": "I make furniture and 3D models for Worlds",
"createdAt": "2025-02-26T14:35:46.000Z",
"updatedAt": "2025-05-24T00:44:45.000Z",
"deletedAt": null,
"logo_id": 496
},
"members": [
{
"username": "emilhauge"
}
]
},
{
"community": {
"id": 248,
"name": "VRYodellers",
"group_id": "grp_e254d646-ef3a-4a3a-9f19-cd1ae533ef71",
"description": "A group for fans of VR Creations made by VRY!",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-04-29T14:48:58.000Z",
"deletedAt": null,
"logo_id": 617
},
"members": [
{
"username": "pesky12"
}
]
},
{
"community": {
"id": 271,
"name": "JP-GH Animations",
"group_id": null,
"description": "I'm a Digital Artist that specializes in Animation and making cool, slick illustrations. I'm also currently working on a full length, VRChat Feature Film.",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T15:24:22.000Z",
"deletedAt": null,
"logo_id": 499
},
"members": []
},
{
"community": {
"id": 215,
"name": "White Tower Hall",
"group_id": "grp_8bf50789-a184-439f-b283-e6c510bdeba3",
"description": "\"Welcome to White Tower Hall!\"\nThis group is a hang out group were we chill‚ have good times‚ and have fun with everyone․ \n\nThis is a 2015 to 2018 group ǃ\n\nHangout group for the White Tower Hall who have been on VRChat and part of its community since 2018 and earlier! Group is for those 18 years of age and older․\n\nWhite Tower Hall is the name of the original huge building in the early 2018 world hub.",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T15:06:25.000Z",
"deletedAt": null,
"logo_id": 495
},
"members": []
},
{
"community": {
"id": 221,
"name": "Black Wolves Rebellion",
"group_id": "grp_7dbee207-029e-414f-b852-10b1c866c19f",
"description": "a story driven vrchat roleplay about taking down a oppressively government one planet at a time",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T06:00:21.000Z",
"deletedAt": null,
"logo_id": 489
},
"members": [
{
"username": "Ashen Phoenix Games"
}
]
},
{
"community": {
"id": 154,
"name": "Yukio's World Works",
"group_id": "grp_243d021b-28cf-4dec-9994-e5cf865e3c6e",
"description": "It is my world work because i make maps for VRChat",
"createdAt": "2024-10-16T20:20:06.000Z",
"updatedAt": "2025-04-23T18:46:34.000Z",
"deletedAt": null,
"logo_id": 592
},
"members": [
{
"username": "yukio okumura"
}
]
},
{
"community": {
"id": 196,
"name": "Ten Two and Fur Con",
"group_id": "grp_5f86e099-81e8-47e2-a0ae-d8ab894e5f86",
"description": "Ten Two and Fur Con is a VRChat rave group that promotes equality and inclusivity for anyone who would like to performǃ",
"createdAt": "2025-03-05T16:01:18.000Z",
"updatedAt": "2025-03-28T05:38:38.000Z",
"deletedAt": null,
"logo_id": 479
},
"members": []
},
{
"community": {
"id": 293,
"name": "Koutarou_Araki's neko Cabin",
"group_id": "grp_53a0d10e-6887-40a4-9341-464153b1ee26",
"description": "Just a normal streaming community, sometimes will do events with rewards, also very chill.",
"createdAt": "2025-04-06T01:54:18.000Z",
"updatedAt": "2025-04-07T01:03:27.000Z",
"deletedAt": null,
"logo_id": 543
},
"members": []
},
{
"community": {
"id": 32,
"name": "LAB Unit",
"group_id": "grp_415e8d11-bb5a-49bb-af7e-eacd1b729429",
"description": "L.A.B. UNIT is an active PMC Roleplay group for those who don't want too many boundaries on personal characters and strive for a good standing with other groups. We host private roleplay events, joint operations, contracts with other mil-sim/roleplay communities, and handle everything from basic security to existential threats.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2024-06-25T18:48:34.000Z",
"deletedAt": null,
"logo_id": 319
},
"members": []
},
{
"community": {
"id": 69,
"name": "Megabuilding 325",
"group_id": "grp_ad7ea7ee-10d4-4f8a-bccb-b3fc7364e555",
"description": "Do you make anything? Music, painting, textures, 3D, 2D, animations, sculptures, etc ? Do you open for commissions? Do you also roleplay? Do you wish you had a virtual store? Do I have your attention yet? Then you should consider joining MEGABUILDING 325!\n\nM325 is a cyberpunk inspired roleplay group. If you enjoy stuff like Ghost in the Shell, Blade Runner, Apex, Titanfall, Akira, The Finals, Cyberpunk and more, then you'll fit right in! We offer creators of all kinds a place to hold a store (no Unity knowledge needed) and do some roleplay with a map that evolves with the players! \n\nNot a creator? Not a problem! Just come RP, join the guild, run missions and more! Found something cool in a mission? We'll add it to the map! That's right, what you do truly impacts the map here at M325. Lobbies are every Tuesdays at 7:30 pm eastern. We are also Quest tolerant (Questies be warned, we do not impose players to have Quest avatars. Use your imagination, buddy.)",
"createdAt": "2024-05-24T12:07:25.000Z",
"updatedAt": "2025-03-28T06:01:10.000Z",
"deletedAt": null,
"logo_id": 187
},
"members": [
{
"username": "Z!FF"
}
]
},
{
"community": {
"id": 27,
"name": "The Necron Empire",
"group_id": "grp_5c3434fc-ecd4-449e-aacd-5a262209f830",
"description": "The Necron Empire is a VRChat based Avatar PvP group‚ we use these Avatars to fight Duells all the way to 40 people Battles with the Theme being from Warhammer 40k․ (Dark Sci-Fi)\r\n\r\nWe enjoy a loose culture in our group and encourage a good‚ fun but semi serious attitude․\r\n\r\nDue to how our system works we are a PC only community",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2024-06-20T15:58:03.000Z",
"deletedAt": null,
"logo_id": 129
},
"members": []
},
{
"community": {
"id": 9,
"name": "1st Weimar Republic",
"group_id": "grp_c4b5ba45-b82e-4ee6-8b2e-c481f88ced93",
"description": "Welcome to the 1st Weimar Republic!\n\nWe’re an alternate history VRChat roleplay group based around 1920's Interwar Germany.\n\nWe host weekly immersive RP events in the Weimar Republic;\nDaily Life of Soldiers\nCombat RP\nMilitary Training\nCeremonies\n\nFrom fighting in the street and countryside against uprisings to simply living out the daily life of a soldier, our events tell an ongoing narrative influenced by all of our members. Want to know more? If Immersive RP, Alt-History or History, and an interesting story appeal to you, then the 1st Weimar Republic is the place for you!\n\nhttps://discord.gg/ZMP49H3zSY\n\nJoin now, become part of our growing community, and leave your mark upon the Republic!",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-02-07T20:32:57.000Z",
"deletedAt": null,
"logo_id": 156
},
"members": [
{
"username": "Gustav#7720"
}
]
},
{
"community": {
"id": 254,
"name": "Ezyne Planetarium",
"group_id": "grp_88c2375f-b06e-48f5-8234-1f8aafd062c9",
"description": "Welcome to the Ezyne Planetarium, the home of all things Ezyne and more! From Gaming to Music to General Small Talk, the Planetarium has a place for you. With the addition of Monthly Hosted Events which vary from Challenging Games, Fan Meetups or even simple Music Jamming Raves, there's sure to be something to your comfort. As a community founded upon a Jack-of-all-Trades Music Producer, Graphic Designer, Videographer, etc; we welcome your passions with open arms and invite you to share your dreams. So relax, make yourself at home, and welcome to the orbit~",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T05:44:26.000Z",
"deletedAt": null,
"logo_id": 482
},
"members": []
},
{
"community": {
"id": 21,
"name": "VRC Kmart",
"group_id": "grp_8c7c423b-cfab-40f5-a53a-a8431655826b",
"description": "Community dedicated to preserving America's most popular store in virtual reality.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-06-06T12:47:05.000Z",
"deletedAt": null,
"logo_id": 457
},
"members": []
},
{
"community": {
"id": 187,
"name": "The Strange Pear Gallery of Fine Arts",
"group_id": "grp_36750235-eb7f-418b-981a-643309a68bf7",
"description": "A VRChat-based community fine-art gallery that changes the art monthly!",
"createdAt": "2025-03-05T16:01:18.000Z",
"updatedAt": "2025-06-01T05:19:17.000Z",
"deletedAt": null,
"logo_id": 500
},
"members": []
},
{
"community": {
"id": 57,
"name": "7th Legion",
"group_id": "grp_ef9fe277-ac99-42da-96fc-72015325998d",
"description": "The 7th Legion of VRChat is an Avatar PvP community that participates in a variety of events (social, combat, rp, so on) within the group, community, and beyond!",
"createdAt": "2024-05-23T11:33:07.000Z",
"updatedAt": "2024-06-20T15:56:20.000Z",
"deletedAt": null,
"logo_id": 127
},
"members": [
{
"username": "Bruva Det"
},
{
"username": "Bruva Det"
}
]
},
{
"community": {
"id": 260,
"name": "Failed to Render",
"group_id": "grp_60776bcc-6315-451c-98c8-fc08d38cfe88",
"description": "Failed to Render Comedy Club is the longest-standing professional comedy club in virtual reality, running every week night, on Meta Horizon Worlds and VRChat.",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-01T21:55:31.000Z",
"deletedAt": null,
"logo_id": 858
},
"members": [
{
"username": "PablosCorner"
}
]
},
{
"community": {
"id": 146,
"name": "The Helldivers of VRC",
"group_id": "grp_b30a10ad-a72a-4894-9c10-bf49882843fa",
"description": "We are a live action roleplay community based on the popular I.P Helldivers 2. We try to recreate the chaos and battles seen in Helldivers 2 and put them into VRChat with our own special twists that normally isn't seen within the helldivers lore.",
"createdAt": "2024-10-16T20:20:06.000Z",
"updatedAt": "2025-03-28T14:54:22.000Z",
"deletedAt": null,
"logo_id": 472
},
"members": [
{
"username": "SlendyPlayz"
}
]
},
{
"community": {
"id": 73,
"name": "The Grey Knights 40k PVP",
"group_id": "grp_a83db546-c29b-4024-89fd-8a24cf844104",
"description": "\"The Grey Knights are a secret, mysterious Loyalist Chapter of Space Marines specifically tasked with combating the dangerous daemonic entities of the Warp and all those who wield the corrupt power of the Chaos Gods\n\nOur Group is based on the Grey Knights. Join us to participate with multiple weekly PVP events, Game Nights, Movie Nights, and VRchat Filming.\"",
"createdAt": "2024-05-28T19:53:16.000Z",
"updatedAt": "2025-06-05T23:06:09.000Z",
"deletedAt": null,
"logo_id": 321
},
"members": [
{
"username": "Philosophy101"
}
]
},
{
"community": {
"id": 176,
"name": "Sonic VRChat Roleplay",
"group_id": "grp_65042a73-0eb7-4114-97a7-449b2cfcb545",
"description": "We are a Sonic role-play group that focuses mainly on VRChat RPs‚ YouTube content and of course spending time with friendsǃ",
"createdAt": "2025-03-05T15:47:25.000Z",
"updatedAt": "2025-03-28T05:41:24.000Z",
"deletedAt": null,
"logo_id": 481
},
"members": [
{
"username": "SciFai"
}
]
},
{
"community": {
"id": 167,
"name": "Raujinn's Avatar Workshop",
"group_id": "grp_492db67f-ecf5-4850-ae31-7469fa3958c0",
"description": "I make from-scratch original avatars and avatar assets, both for public and for sale.",
"createdAt": "2024-10-16T20:20:06.000Z",
"updatedAt": "2025-04-07T01:26:07.000Z",
"deletedAt": null,
"logo_id": 549
},
"members": [
{
"username": "raujinn"
}
]
},
{
"community": {
"id": 143,
"name": "Phoenix Academy",
"group_id": "grp_64082d28-c099-4677-aa76-20a5edbee421 ",
"description": "Phoenix Academy is a VR language learning group, At Phoenix Academy, we are committed to providing you with an immersive English language learning experience through role-playing situations. Our goal is for you, the students, to speak English in a safe and encouraging environment for all ages.\n\nOur students have the opportunity to interact with native English speakers who are here to help and motivate them to practice and improve their language skills.\n\nClasses take place every other Wednesday, but we are working to increase the frequency and offer even more learning opportunities.\n\nJoin us at Phoenix Academy and discover how learning English can be exciting, challenging, and fun. We look forward to seeing your progress and success on this linguistic journey!\n",
"createdAt": "2024-10-02T16:44:00.000Z",
"updatedAt": "2025-06-01T06:02:16.000Z",
"deletedAt": null,
"logo_id": 358
},
"members": [
{
"username": "Uranic"
}
]
},
{
"community": {
"id": 63,
"name": "Metropolitan Police Service",
"group_id": "grp_676275ff-7524-497d-94a7-efd4389d5e0f",
"description": "We're a friendly police RP community, who patrol worlds of VRChat. As you can see, we have been heavily influenced by the real UK Met Police, which is of course our inspiration, and what we have based our department on.",
"createdAt": "2024-05-23T17:08:49.000Z",
"updatedAt": "2024-06-21T01:25:33.000Z",
"deletedAt": null,
"logo_id": 181
},
"members": [
{
"username": "Supervigy"
}
]
},
{
"community": {
"id": 79,
"name": "Danger Noodle Animations",
"group_id": "grp_f8e0ec9c-6a4a-48de-bf35-7175fe8d7b04",
"description": "A cyberpunk shop for cell shaded assets. We're a small group of friends working on fan animation and props to sell.",
"createdAt": "2024-05-31T09:06:14.000Z",
"updatedAt": "2025-04-07T01:22:33.000Z",
"deletedAt": null,
"logo_id": 192
},
"members": [
{
"username": "Steve The Mitochondria"
}
]
},
{
"community": {
"id": 224,
"name": "The US Marine Corps of the 1970's",
"group_id": "grp_faeda629-8f3c-4ef5-8872-0908e65a1fa4",
"description": "\"We are the United States Marine Corps of the 1970s\n\nWe are a Vietnam war era sever (1972)\n\nWe strive to keep the Ture knowledge and teachings of the marines\n\nJoin for Events‚ PVP‚ Drill ‚ RP‚ Tanks‚ Helicopters And more\n\n13+ do to T․O․S\n\nOwner- ~Juns~\n\nThe Marine Corps is a tough and dedicated branch of the U․S․ military․ They're always ready to protect and defend their country․ They have a proud history of serving in conflicts worldwide․ Semper Fiǃ\"",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-04-07T01:08:27.000Z",
"deletedAt": null,
"logo_id": 544
},
"members": [
{
"username": "The US Marine Corps of the 1970's"
}
]
},
{
"community": {
"id": 25,
"name": "United Republic",
"group_id": "grp_02cc7a38-1979-4196-85be-bfb5a6b5b607",
"description": "The United Republic is a multi-purpose PVP community and social hub, One of the oldest and still running PvP Star wars Communities on VR Chat. Events are hosted regularly by the week, participating in world hops, PVP matches with other Avatar PvP communities, Different types of Light RP, Large Scale Re-Created battles and more. Our leadership team is friendly and active with a large player base and many regulars. We welcome any and all to participate and enjoy the community we've grown!",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2024-06-25T13:36:26.000Z",
"deletedAt": null,
"logo_id": 318
},
"members": [
{
"username": "KoreFuze"
}
]
},
{
"community": {
"id": 178,
"name": "Comrades and Ops",
"group_id": "grp_31cb7da1-17be-4f84-97f0-182e5a0852c6",
"description": "Comrades And Ops is a gaming and social group which brings people together in the name of fun, good times, and friendship. Our signature event is Thursday Games, a 2-hour gaming session in VRChat held every Thursday at 6pm USA EST. We host and play various games outside of VRChat and encourage participation in major events throughout VRChat and other gaming communities. All members are invited to host their own gaming or social event. Time to rock and roll!",
"createdAt": "2025-03-05T15:49:58.000Z",
"updatedAt": "2025-04-12T16:32:32.000Z",
"deletedAt": null,
"logo_id": 558
},
"members": []
},
{
"community": {
"id": 217,
"name": "Creative Impressions",
"group_id": "grp_b69ca680-015c-43c5-895f-5450fc248a3d",
"description": "Creative Impressions is an artistic community aims to bring all of the incredibly talented artists within the VR community together! We aim to create a fun and safe space for artists of all kinds to gather and share their work within our channels and exhibition events, and we hope to inspire anyone and everyone that comes across us.\n\nWe offer an array of different artistic channels in our discord server for people to chat and share their works, but we also host a handful of different common events such as R&R and Art studio!\n We plan to host 1 big gallery event a year that will feature many different types of artwork of all different types of media!",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-07T21:11:57.000Z",
"deletedAt": null,
"logo_id": 501
},
"members": [
{
"username": "Stellr"
}
]
},
{
"community": {
"id": 188,
"name": "World End Apocalypse",
"group_id": "grp_845f6e70-3972-4b90-9af0-47aa3134a157",
"description": "We are a heavy apocalypse role play community with real consequences for character actions.",
"createdAt": "2025-03-05T16:01:18.000Z",
"updatedAt": "2025-06-07T22:31:44.000Z",
"deletedAt": null,
"logo_id": 1051
},
"members": [
{
"username": "topdestruction"
}
]
},
{
"community": {
"id": 183,
"name": "Ukon XL",
"group_id": "grp_48c32541-f2d5-4c59-b613-72e6491b733e",
"description": "A VRC group based around the Ukon avatar base",
"createdAt": "2025-03-05T15:51:36.000Z",
"updatedAt": "2025-03-28T15:02:35.000Z",
"deletedAt": null,
"logo_id": 494
},
"members": [
{
"username": "SnivyFC"
}
]
},
{
"community": {
"id": 326,
"name": "Doodle Dreamers",
"group_id": "grp_4167f539-8360-49c4-b212-e25b7f2f4b2a",
"description": "Welcoming but chaotic community entirely about inspiring creation and art!",
"createdAt": "2025-04-24T00:01:11.000Z",
"updatedAt": "2025-04-24T13:28:01.000Z",
"deletedAt": null,
"logo_id": 600
},
"members": []
},
{
"community": {
"id": 305,
"name": "Zelen Factories Of Mechanical Equipment",
"group_id": "grp_650cb995-c5cf-4bf0-a2e0-80e0dd1b007e",
"description": "Zelen Factories is a server mainly used as a hub to all of my current and upcoming creations on VRChat, Most creations being both armed and unarmed vehicles, But sometimes it goes a little off course",
"createdAt": "2025-04-06T01:54:18.000Z",
"updatedAt": "2025-04-07T01:30:01.000Z",
"deletedAt": null,
"logo_id": 551
},
"members": []
},
{
"community": {
"id": 54,
"name": "AWMC Industries",
"group_id": "grp_eefd8d03-f7a1-4572-933d-0b674edca67c",
"description": "Step into the boundless universe of the Allied Waifu Military Core Industries also known as AI‚ your premier universewide military arms dealerǃ\r\nSet in the spacefaring era of the year 2200+‚ AWMC Industries stands as a beacon of innovation in the vast expanse of space․\r\n\r\nWhen Earth fell victim to an unknown extraterrestrial force during the chaos of the Third World War‚ advanced weaponry‚ including machine soldiers powered by artificial intelligence‚ clashed in a desperate bid for survival․ Amidst the devastation‚ these androids emerged‚ alerting humanity to the imminent threat approaching earth․\r\nDespite the warnings‚ blinded by greed‚ many humans ignored the approaching catastrophe․ Until it was too late․\r\nA select few androids and humans escaped Earth's demise‚ vowing to safeguard humanity's legacy and principles․ Thus‚ they founded a military dedicated to preserving these ideals‚ recognizing that a formidable arsenal is the way of survival․\r\nEmerging as a prominent arms manufacturer and formidable military force‚ AI stands as a beacon of strength and integrity‚ its vast fleet traversing the galaxies to uphold its values․\r\n\r\nWhether you're a seasoned spacefarer or a green recruit‚ AI welcomes all to forge the destiny of galaxies․ Enlist today and be the bastion of humanitys legacy․\r\n\r\nCaution˸ Enlisting requires disposal of your biological embodiment․",
"createdAt": "2024-05-22T20:46:55.000Z",
"updatedAt": "2024-06-21T01:15:09.000Z",
"deletedAt": null,
"logo_id": 173
},
"members": []
},
{
"community": {
"id": 64,
"name": "Ookami Collective",
"group_id": "grp_c4d17c71-ed90-4aee-9d9a-e1fb6386bb8f",
"description": "We are a Hub for people that loves Mikos and Ukon Avatars in General. our fanatism of these models/Characters, is what makes us happy.",
"createdAt": "2024-05-23T17:26:59.000Z",
"updatedAt": "2024-06-21T01:26:42.000Z",
"deletedAt": null,
"logo_id": 182
},
"members": [
{
"username": "Makoto Aki"
}
]
},
{
"community": {
"id": 306,
"name": "The Goblin Cave",
"group_id": "grp_0add63cb-780d-4c14-9383-cb2b7619512e",
"description": "The Goblin Cave is a welcoming 'café' community ran by me!! MadzLvsBblz. Overrun by the most vibrant of lofi based goblins that was nearly destroyed by a multi-verse attack, The Goblin Café welcomes all kinds of people as we serve chaos, goblin vibes and full on positivity.",
"createdAt": "2025-04-06T01:54:18.000Z",
"updatedAt": "2025-04-07T01:33:15.000Z",
"deletedAt": null,
"logo_id": 552
},
"members": []
},
{
"community": {
"id": 6,
"name": "Kochō no Yakuza",
"group_id": "grp_ad7a3665-e4d3-4a3a-9356-ab498b128adf",
"description": "We are a roleplay VRChat community themed after the Yakuza game series and Japanese culture in general. We wish to provide, bring together and entertain. \n\nProviding a friendlier place for VRChat public to roleplay in is one of the aims we wish to achieve, alongside with helping other communities with bigger projects.\n\nBringing together both new and veteran players who have nowhere else to go, educate people about VRChat as a whole and keeping them up to date on what is going on in this vast but confusing place.\n\nEntertaining both the public and our own people with external and internal roleplay which are still in development. Giving people a place to feel welcomed and a place anybody can feel they belong to. \n",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-03-28T15:43:50.000Z",
"deletedAt": null,
"logo_id": 155
},
"members": [
{
"username": "Euky"
}
]
},
{
"community": {
"id": 47,
"name": "VRDancing",
"group_id": "grp_d960be54-cfc2-44cb-863d-6d624d8975c1",
"description": "\"VRDancing is a beginner-friendly community of dancers that host weekly dance, fitness and hangout events in EU and NA timezones. We welcome any dancer! \n\nNo Full Body Tracking required, some even join without VR! \n\nWhether you just started and lack confidence, or are a veteran dancer with years of IRL experience, we hope you'll find your place here! \n\nOur main dancing events are accessible to any skill level and are an excellent place to start dancing in VRChat! \"",
"createdAt": "2024-05-22T20:15:27.000Z",
"updatedAt": "2024-06-21T01:06:04.000Z",
"deletedAt": null,
"logo_id": 168
},
"members": [
{
"username": "luxifinity"
}
]
},
{
"community": {
"id": 34,
"name": "Death Korps of VR",
"group_id": "grp_55b15c9c-af3c-4b06-a902-045eb8522253",
"description": "Established in 2019, the Death Korps of VR is a Avatar PVP / Role play group dedicated to the Death Korps of Krieg Regiment of the Astra Militarum in the Warhammer 40,000 Universe. The Kriegsmen of the Death Korps are steadfast soldiers of the Imperium of Man. They grind down their enemies with attrition, artillery, and zeal. Got what it takes to join the Korp? Jump in the trench line and charge forward for the emperor, shovel ,bayonet, and lasgun in hand.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2025-04-07T01:35:29.000Z",
"deletedAt": null,
"logo_id": 161
},
"members": []
},
{
"community": {
"id": 177,
"name": "Ancients of VRChat",
"group_id": "grp_7492bce5-8f3a-4183-b79d-caacf1e173da",
"description": "Ancients of VRChat is a server with over 17‚000 members for finding other adults to be friends with․ We host dozens of events of all varieties every week including 3 that are oriented toward getting new members involved․ Hangouts‚ Games‚ A Club‚ Workouts‚ Book Club‚ Watch Parties and more․",
"createdAt": "2025-03-05T15:47:25.000Z",
"updatedAt": "2025-03-28T05:58:56.000Z",
"deletedAt": null,
"logo_id": 488
},
"members": [
{
"username": "Jere"
}
]
},
{
"community": {
"id": 222,
"name": "Beast Fitness",
"group_id": "grp_b3b4dccd-c416-4130-8e5b-3b82fbf18712",
"description": "Beast Fitness VRC is a fitness community based in VRChat that hosts public workout sessions on Tuesdays and Sundays! Come join us and work out with a NASM certified Elite Personal Trainerǃ",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T16:12:02.000Z",
"deletedAt": null,
"logo_id": 510
},
"members": [
{
"username": "luxifinity"
}
]
},
{
"community": {
"id": 31,
"name": "DalekHQ",
"group_id": "grp_c13988b8-cdd8-4455-a2ca-471313342aab",
"description": "Welcome to the Dalek HQ, the Go-to Doctor Who Fan Community of VRChat. There is something for everyone in this community, wether you like to RP as a Dalek or Doctor Who Character in-game, Show of your tactical prowess in PvP, exercise your artistic side in our discord Competitions, or show your devotion to the empire and work your way up the ranks.",
"createdAt": "2024-05-22T19:38:25.000Z",
"updatedAt": "2024-06-21T01:03:43.000Z",
"deletedAt": null,
"logo_id": 160
},
"members": []
},
{
"community": {
"id": 80,
"name": "Study-Japanese【 JapaNichijou ジャパ日常 】",
"group_id": "grp_b53f4ff9-a0da-4c41-a464-6ae95a27c4dd",
"description": "Our community is made up of people who have come together with the goal of enjoying learning Japanese. \nWe host events twice every weekend, where we explore various ways to practice Japanese, including Japanese lessons, games using Japanese Language, and role-playing events that simulate real-life communication. \nIf you're interested in Japanese Language or Japanese culture, feel free to stop by and join us! ありがとう!",
"createdAt": "2024-06-01T20:22:44.000Z",
"updatedAt": "2025-04-07T01:28:52.000Z",
"deletedAt": null,
"logo_id": 193
},
"members": [
{
"username": "HayaTikaze"
}
]
},
{
"community": {
"id": 75,
"name": "VR Japan Tours",
"group_id": "grp_2af1b75e-ae07-40f9-8282-71f30cd364bc",
"description": "VR Japan Tours is an immersive virtual tour where you can experience the culture and art of Japan in the sophisticated Japanese virtual world with friendly guides and amazing performers.",
"createdAt": "2024-05-28T19:54:53.000Z",
"updatedAt": "2024-06-21T01:34:23.000Z",
"deletedAt": null,
"logo_id": 189
},
"members": [
{
"username": "HayaTikaze"
}
]
},
{
"community": {
"id": 280,
"name": "Stuck at Home Con (SAHCon - The Official Homestuck Con)",
"group_id": "grp_9000479f-f36a-4fa1-9991-38169f223177",
"description": "A yearly event, meant to highlight on Homestuck proper, fan-projects and other happenings. Officially licensed to use the Homestuck IP.",
"createdAt": "2025-04-06T01:54:18.000Z",
"updatedAt": "2025-06-05T23:16:55.000Z",
"deletedAt": null,
"logo_id": 960
},
"members": [
{
"username": "HuuvurFeltur"
}
]
},
{
"community": {
"id": 241,
"name": "Paranormal Scene Investigators",
"group_id": "grp_41a0bb30-90fe-4b53-ac2f-5c134da54f07",
"description": "Paranormal Scene Investigators is a roleplay group focused on the paranormal and unknown. We have weekly events where we delve into the eldritch, the paranormal and the unknown of the VR world\n\nFrom vampires and cryptids\nTo Ghosts and Spirits.\nTo Technological nightmares and cults....\nTo much much more.\n\nWe are our own original universe based on paranormal legends and folktales throughout the world\n\nSome of our events will use D20 to act out some of our roleplay. We are light hearted but most importantly fun!\nWe are PC and Quest compatible. We lean a bit more towards PC with special effects but try our best to accommodate Quest users.\nCome check us out!",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-01T05:22:21.000Z",
"deletedAt": null,
"logo_id": 507
},
"members": [
{
"username": "Paranormal Scene Investigators"
}
]
},
{
"community": {
"id": 62,
"name": "Metaverse Degen",
"group_id": "grp_c47b3db4-7ea8-49c7-a68f-f9ab0dcb7d28",
"description": "A podcast⁄talk show in vrchat where are interview the various personalities and communities from the platform Vrchat including club owners‚ djs‚ tiktokers‚ vtubers world and avatar creators and more․ Featuring˸ dirtyraptor & LionTurtle",
"createdAt": "2024-05-23T11:53:07.000Z",
"updatedAt": "2024-06-21T01:24:33.000Z",
"deletedAt": null,
"logo_id": 180
},
"members": [
{
"username": "Metaverse Degen"
}
]
},
{
"community": {
"id": 250,
"name": "Safety Realm",
"group_id": "grp_2138d510-fbdb-4483-be62-0d1c5430a146",
"description": "a community built around giving others a safe place to share ambitions and stream together. Building each other up.",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T05:40:22.000Z",
"deletedAt": null,
"logo_id": 480
},
"members": []
},
{
"community": {
"id": 72,
"name": "Ultramarines",
"group_id": "grp_1b397e3c-d37e-43a4-98a9-cde2e6759862",
"description": "We are pvp multi purpose community and a social hub for all the people who love 40k, pvp or just want to lay back and a good time.",
"createdAt": "2024-05-26T12:47:00.000Z",
"updatedAt": "2024-06-20T15:52:24.000Z",
"deletedAt": null,
"logo_id": 123
},
"members": []
},
{
"community": {
"id": 265,
"name": "Honey's Cozy Cottage",
"group_id": "grp_2a8273fe-2c42-4f1a-8687-6c514b88eb88",
"description": "Welcome to the Cozy Cottageǃǃǃ HoneyHoTkiss is a Honey⁄Teddy Bear VTuber that goes on adventures with her bee buddy‚ Drizzleǃǃǃ She has been a content creator for 3+ years of experience. Started out small on Twitch, followed by YouTube 1-2 years later. She is also representing Wave 2 of Okimi Cafe since October 2022. You may also know her as a Werehog Simp in certain streams from time to time. If you wanted to see some comfy, cozy vibes, along with some chaos into the mix, you're in for a treat!!! I hope you'll enjoy your stayǃǃǃ Stay tuned and stay cozy~ǃǃǃǃ",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T05:45:33.000Z",
"deletedAt": null,
"logo_id": 483
},
"members": [
{
"username": "HoneyHoTkiss"
}
]
},
{
"community": {
"id": 264,
"name": "MyroP's group",
"group_id": "grp_3b8f67a7-6c29-4a68-8ca0-bf8c348e6c0b",
"description": "I make worlds, prefabs and sometimes shaders",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T15:52:00.000Z",
"deletedAt": null,
"logo_id": 505
},
"members": [
{
"username": "MyroP"
}
]
},
{
"community": {
"id": 125,
"name": "Fractured Thrones",
"group_id": "grp_0cb15b45-5ea7-43ed-b684-281801f320e5",
"description": "Fractured Thrones is a low-fantasy medieval roleplay inspired by LOTR‚ and Warhammer Fantasy‚ and created by Mr․ Brunswick․ It is comprised of many different role-players‚ custom assets‚ and tons of hard work and dedication․ We welcome new facesǃ",
"createdAt": "2024-06-13T00:05:03.000Z",
"updatedAt": "2024-06-21T02:29:25.000Z",
"deletedAt": null,
"logo_id": 228
},
"members": [
{
"username": "death_map"
}
]
},
{
"community": {
"id": 85,
"name": "Resurrected Mercenaries PMC",
"group_id": "grp_adc03055-6a1d-46c8-998f-062658aad8d6",
"description": "\"We are a light mercenary RP group that focuses on roleplay scenarios with other groups &\norganizations. Our main goal is to have **FUN** not just with ourselves but with all who we\ninteract with.\"",
"createdAt": "2024-06-03T18:53:11.000Z",
"updatedAt": "2024-06-21T01:53:15.000Z",
"deletedAt": null,
"logo_id": 198
},
"members": [
{
"username": "RedZ3r0"
}
]
},
{
"community": {
"id": 268,
"name": "Pika1up",
"group_id": "grp_2886874f-14f6-4ec0-beb9-594f53d6ae2b",
"description": "Welcome to my 2D group‚ i make multiple 2d avatars for the public and as well take commissions of your own 2d avatar․ If your interested in commissioning me ‚ please contact me directly‚ i will keep you updated in this group with updates on my 2d avi",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-06-26T14:02:23.000Z",
"deletedAt": null,
"logo_id": null
},
"members": [
{
"username": "pika1up"
}
]
},
{
"community": {
"id": 256,
"name": "Chyado Sensei's Classroom",
"group_id": "grp_3f308196-8ceb-43ac-a55a-8a0b955f974c",
"description": "ChyadoSensei's Class is the community of those who watch ChyadoSensei‚ are looking to learn about Japan and Japanese‚ explore worlds and play games togetherǃ",
"createdAt": "2025-03-27T18:56:30.000Z",
"updatedAt": "2025-03-28T14:50:49.000Z",
"deletedAt": null,
"logo_id": 493
},
"members": [
{
"username": "ChyadoSensei"
}
]
},
{
"community": {
"id": 181,
"name": "Kitsune Sisters",
"group_id": "grp_bb8fa58d-c468-41b3-bd8d-de06320786b9",
"description": "An Action Adventure roleplay where people can fight against evil along with the Nine Kitsune Sisters as Time passes on.",
"createdAt": "2025-03-05T15:50:48.000Z",
"updatedAt": "2025-03-28T05:49:05.000Z",
"deletedAt": null,
"logo_id": 485
},
"members": [
{
"username": "iBRSMikuru"
}
]
},
{
"community": {