-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathgameslocal
1286 lines (1238 loc) · 37.6 KB
/
gameslocal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local function processfunction(functionname)
if functionname == "Test" then
print("worked")
return(true)
end
if functionname == "BloxFruits" then
loadstring(game:HttpGet("https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/BLOXFRUITS", true))()
return(true)
end
if functionname == "jetpack" then
while wait() do
local A_1 = game:GetService("Workspace").World.Lobby.Launcher.Collision
local Event = game:GetService("ReplicatedStorage")["ProjectBlue_ClientNewLaunchEvent"]
Event:FireServer(A_1)
wait()
local Event = game:GetService("ReplicatedStorage")["ProjectBlue_ClientStopLaunchEvent"]
Event:FireServer()
end
return(true)
end
if functionname == "norotr" then
loadstring(game:GetObjects("rbxassetid://4763830754")[1].Source)()
return(true)
end
if functionname == "parrts" then
game.Workspace["Parts"]:Destroy()
return(true)
end
if functionname == "breakingpoint" then
game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-32, 6, -213)
return(true)
end
if functionname == "gwap" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-356.79083251953125, 701.0478515625, -2131.89111328125)
return(true)
end
if functionname == "gb" then
while wait() do
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1106.57, 65.16, 115.97)
end
return(true)
end
if functionname == "tyco" then
local args = {
[1] = 5000000000000000000000 -- amount of money
}
game:GetService("ReplicatedStorage").RemoteObjects.DanceGameCash:FireServer(unpack(args))
return(true)
end
if functionname == "bp" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-29.588090896606445, 4.691598415374756, -211.45433044433594)
return(true)
end
if functionname == "whgite" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-12.50235652923584, 25.857158660888672, 22.99946403503418)
return(true)
end
if functionname == "crash" then
if functionname == "gwap" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-356.79083251953125, 701.0478515625, -2131.89111328125)
return(true)
end
return(true)
end
if functionname == "cartriderdite" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(309.7381591796875, 852.6570434570312, 321.1290588378906)
return(true)
end
if functionname == "XP" then
game.ReplicatedStorage.addXP:FireServer(9999999)
return(true)
end
if functionname == "poppu" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(63.41770935058594, 1696.5533447265625, -854.55126953125)
return(true)
end
if functionname == "23132" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-853.8753051757812, 53.23225784301758, 74.94017791748047)
return(true)
end
if functionname == "hope" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(29.01219367980957, 49207.2578125, 26.656606674194336)
return(true)
end
if functionname == "crushed" then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(280.8593444824219, -73.13568115234375, 328.81219482421875)
return(true)
end
if functionname == "cw" then
_G.killAuraEnabled = true
_G.infiniteStamina = true
_G.killAuraRange = 12
loadstring(game:HttpGet("https://raw.githubusercontent.com/samuelLovesPie/verm_releases/main/combat_warriors.lua", true))()
return(true)
end
if functionname == "BACKPACKINGS" then
_G.auto = true
while _G.auto == true do
loadstring(game:HttpGet(('https://raw.githubusercontent.com/DeathAsgel/a/main/z'),true))()
wait (1)
end
end
if game.PlaceId == 3851622790 then
local A_1 = "SwatGun"
local A_2 = true
local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
Event:FireServer(A_1, A_2)
return(true)
end
return(false)
end
local products = {
["Blox Fruits"] = {
["Name"] = "Blox Fruits",
["IDs"] = {
2753915549,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/BLOXFRUITS",
["Function"] = "BloxFruits"
},
["Tower Of Hell"] = {
["Name"] = "Tower Of Hell",
["IDs"] = {
1962086868,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/tohobf.lua",
["Function"] = nil
},
["Prison Life"] = {
["Name"] = "Prison Life",
["IDs"] = {
155615604,
73885730,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/Sc3Pdarc",
["Function"] = nil
},
["Emergency Response: Liberty County"] = {
["Name"] = "Emergency Response: Liberty County",
["IDs"] = {
2534724415,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected.lua",
["Function"] = nil
},
["AniPhobia"] = {
["Name"] = "AniPhobia",
["IDs"] = {
6788434697,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/aniphobia",
["Function"] = nil
},
["Chicago Remastered"] = {
["Name"] = "Chicago Remastered",
["IDs"] = {
7167319176,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Chicago%20Remastered.lua",
["Function"] = nil
},
["The Eastern War"] = {
["Name"] = "The Eastern War",
["IDs"] = {
8225971185,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/The%20Eastern%20War",
["Function"] = nil
},
["Goal Kick Simulator"] = {
["Name"] = "Goal Kick Simulator",
["IDs"] = {
9281034297,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/GoalKickSimulator.lua",
["Function"] = nil
},
["Raise a Floppa"] = {
["Name"] = "Raise a Floppa",
["IDs"] = {
9203864304,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Raiseafloppa.lua",
["Function"] = nil
},
["Cheese Escape"] = {
["Name"] = "Cheese Escape",
["IDs"] = {
5777099015,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/cheese",
["Function"] = nil
},
["Mic Up"] = {
["Name"] = "Mic Up",
["IDs"] = {
6884319169,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/micup.lua",
["Function"] = nil
},
["Clicker Madness"] = {
["Name"] = "Clicker Madness",
["IDs"] = {
5490351219,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Clicker%20Madness.lua",
["Function"] = nil
},
["S.W.A.T Simulator"] = {
["Name"] = "S.W.A.T Simulator",
["IDs"] = {
2906554815,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "XP"
},
["Army Simulator"] = {
["Name"] = "Army Simulator",
["IDs"] = {
2445600238,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "XP"
},
["Arsenal"] = {
["Name"] = "Arsenal",
["IDs"] = {
286090429,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/aresnal",
["Function"] = nil
},
["Jetpack Jumpers"] = {
["Name"] = "Jetpack Jumpers",
["IDs"] = {
7444263453,
},
["Version"] = "1.0.0",
["URL"] = nil,
["Function"] = "jetpack"
},
["Superhero Simulator"] = {
["Name"] = "Superhero Simulator",
["IDs"] = {
2577423786,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/ki1dmHd8",
["Function"] = nil
},
["Backpacking"] = {
["Name"] = "Backpacking",
["IDs"] = {
1997193809,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "BACKPACKINGS"
},
["Cart Ride Into Rdite"] = {
["Name"] = "Cart Ride Into Rdite",
["IDs"] = {
4913581664,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "cartriderdite"
},
["Base Battles"] = {
["Name"] = "Base Battles",
["IDs"] = {
5326405001,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/RacPwwzq",
["Function"] = nil
},
["BIGFOOT"] = {
["Name"] = "BIGFOOT",
["IDs"] = {
4661110989,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Blue-v3rm/blue-s-stuff/master/bigfoot.lua",
["Function"] = nil
},
["Notoriety"] = {
["Name"] = "Notoriety",
["IDs"] = {
21532277,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "norotr"
},
["Cart Ride Into Poppy"] = {
["Name"] = "Cart Ride Into Poppy",
["IDs"] = {
8270679637,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "poppu"
},
["Ninja Legends"] = {
["Name"] = "Ninja Legends",
["IDs"] = {
3956818381,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Tapping Legends X"] = {
["Name"] = "Tapping Legends X",
["IDs"] = {
8750997647,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Tornado Simulator"] = {
["Name"] = "Tornado Simulator",
["IDs"] = {
9300344892,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},["Mad City"] = {
["Name"] = "Mad City",
["IDs"] = {
1224212277,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Big PaintBall"] = {
["Name"] = "Big PaintBall",
["IDs"] = {
3527629287,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Millionaire Empire Tycoon"] = {
["Name"] = "Millionaire Empire Tycoon",
["IDs"] = {
6677985923,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Saber Simulator"] = {
["Name"] = "Saber Simulator",
["IDs"] = {
3823781113,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Anime Clicker Simulator"] = {
["Name"] = "Anime Clicker Simulator",
["IDs"] = {
3102144307,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Brookhaven"] = {
["Name"] = "Brookhaven",
["IDs"] = {
4924922222,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(7).lua",
["Function"] = nil
},
["Build A Boat For Treasure"] = {
["Name"] = "Build A Boat For Treasure",
["IDs"] = {
537413528,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/babft",
["Function"] = nil
},
["Bad Business"] = {
["Name"] = "Bad Business",
["IDs"] = {
3233893879,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/SpaceHub.lua",
["Function"] = nil
},
["Cart Ride Around guywithapoo"] = {
["Name"] = "Cart Ride Around guywithapoo",
["IDs"] = {
5499911356,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "gwap"
},
["Parris Island, South Carolina"] = {
["Name"] = "Parris Island, South Carolina",
["IDs"] = {
5959668085,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/killallcarbonengine",
["Function"] = nil
},
["Town"] = {
["Name"] = "Town",
["IDs"] = {
4991214437,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Town",
["Function"] = nil
},
["Murder Mystery 2"] = {
["Name"] = "Murder Mystery 2",
["IDs"] = {
142823291,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/mm2.lua",
["Function"] = nil
},
["Super Treehouse Tycoon"] = {
["Name"] = "Super Treehouse Tycoon",
["IDs"] = {
4874301395,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["Heist Tycoon"] = {
["Name"] = "Heist Tycoon",
["IDs"] = {
11103424163,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/heisttycoon",
["Function"] = nil
},
["Roblox Tycoon"] = {
["Name"] = "Roblox Tycoon",
["IDs"] = {
459545256,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["Fruit Juice Tycoon: Refreshed"] = {
["Name"] = "Fruit Juice Tycoon: Refreshed",
["IDs"] = {
6755746130,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["Pro Border"] = {
["Name"] = "Pro Border",
["IDs"] = {
7014716500,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["PISTOL 1V1"] = {
["Name"] = "PISTOL 1V1",
["IDs"] = {
6722284015,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["TOH"] = {
["Name"] = "TOH",
["IDs"] = {
1962086868,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["Hood Duels"] = {
["Name"] = "Hood Duels",
["IDs"] = {
6751371363,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Protected%20(6).lua",
["Function"] = nil
},
["Crash Town Game Thing"] = {
["Name"] = "Crash Town Game Thing",
["IDs"] = {
7371829073,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "crash"
},
["Driving Empire"] = {
["Name"] = "Driving Empire",
["IDs"] = {
3351674303,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/n2uWECtw",
["Function"] = nil
},
["Roblox but every second you get +1 Walk Speed"] = {
["Name"] = "Roblox but every second you get +1 Walk Speed",
["IDs"] = {
9122041989,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/PpkZGEPz",
["Function"] = nil
},
["White Room"] = {
["Name"] = "White Room",
["IDs"] = {
4765805939,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "whgite"
},
["Late Night Drive"] = {
["Name"] = "Late Night Drive",
["IDs"] = {
5622162130,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "23132"
},
["Broken Bones 4"] = {
["Name"] = "Broken Bones 4",
["IDs"] = {
2551991523,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/RXyPsufj",
["Function"] = nil
},
["99% Fail Impossible Obby"] = {
["Name"] = "99% Fail Impossible Obby",
["IDs"] = {
7584496019,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/JgQH5wZP",
["Function"] = nil
},
["Flee the Facility"] = {
["Name"] = "Flee the Facility",
["IDs"] = {
893973440,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/2SzcQZcu",
["Function"] = nil
},
["Sword Fight and Flex Your Time"] = {
["Name"] = "Sword Fight and Flex Your Time",
["IDs"] = {
5379581123,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/wizXH90p",
["Function"] = nil
},
["Home Run Simulator"] = {
["Name"] = "Home Run Simulator",
["IDs"] = {
9598746251,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/homerunsimulatorscript",
["Function"] = nil
},
["Combat Warriors"] = {
["Name"] = "Combat Warriors",
["IDs"] = {
4282985734,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "cw"
},
["Hoop Central 6"] = {
["Name"] = "Hoop Central 6",
["IDs"] = {
7075737729,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/hoopcentral6",
["Function"] = nil
},
["Mall Tycoon"] = {
["Name"] = "Mall Tycoon",
["IDs"] = {
5736409216,
},
["Version"] = "1.0.0",
["URL"] = "https://github.com/Lucasfin000/SpaceHub/blob/main/malltycoon.lua",
["Function"] = nil
},
["Slime Tower Tycoon"] = {
["Name"] = "Slime Tower Tycoon",
["IDs"] = {
10675066724,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/slimetowertycoon",
["Function"] = nil
},
["Rainbow Friends"] = {
["Name"] = "Rainbow Friends",
["IDs"] = {
7991339063,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/c5YEeMr1",
["Function"] = nil
},
["Scuba Diving at Quill Lake"] = {
["Name"] = "Scuba Diving at Quill Lake",
["IDs"] = {
35397735,
},
["Version"] = "1.0.0",
["URL"] = "https://pastebin.com/raw/uw7HxdEe",
["Function"] = nil
},
["Be Crushed by a Speeding Wall"] = {
["Name"] = "Be Crushed by a Speeding Wall",
["IDs"] = {
482742811,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "crushed"
},
["The Longest Hole In Roblox"] = {
["Name"] = "The Longest Hole In Roblox",
["IDs"] = {
6281183,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "hope"
},
["Breaking Point"] = {
["Name"] = "Breaking Point",
["IDs"] = {
648362523,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "breakingpoint"
},
["Da Hood"] = {
["Name"] = "Da Hood",
["IDs"] = {
2788229376,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/dahood",
["Function"] = nil
},
["Festival Tycoon"] = {
["Name"] = "Festival Tycoon",
["IDs"] = {
9648883891,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "tyco"
},
["Twisted"] = {
["Name"] = "Twisted",
["IDs"] = {
14170731342,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/twisted",
["Function"] = nil
},
["Impossible Glass Bridge Obby"] = {
["Name"] = "Impossible Glass Bridge Obby",
["IDs"] = {
7952502098,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "gb"
},
["Tapping Simulator"] = {
["Name"] = "Tapping Simulator",
["IDs"] = {
9498006165,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/1dc4a655abfde4a7219238652db238fcfb737ae8/tapping%20sim",
["Function"] = nil
},
["Pet Simulator X"] = {
["Name"] = "Pet Simulator X",
["IDs"] = {
6284583030,
},
["Version"] = "1.0.0",
["URL"] = "https://rawscripts.net/raw/CATS-or-Pet-Simulator-X!-Pasta-v2-6841",
["Function"] = nil
},
["Game Store Tycoon"] = {
["Name"] = "Game Store Tycoon",
["IDs"] = {
10963175,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/Game%20Store%20Tycoon",
["Function"] = nil
},
["Sandhurst Military Academy"] = {
["Name"] = "Sandhurst Military Academy",
["IDs"] = {
270499015,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/sandhurts",
["Function"] = nil
},
["Lag Test 2021"] = {
["Name"] = "Lag Test 2021",
["IDs"] = {
6356806222,
},
["Version"] = "1.0.0",
["URL"] = "",
["Function"] = "parrts"
},
["Rebirth Champions X"] = {
["Name"] = "Rebirth Champions X",
["IDs"] = {
8540346411,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/rcx.lua",
["Function"] = nil
},
["Type Race"] = {
["Name"] = "Type Race",
["IDs"] = {
7232779505,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/typerace",
["Function"] = nil
},
["Type Race"] = {
["Name"] = "Type Race",
["IDs"] = {
7958781217,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/typerace",
["Function"] = nil
},
["Pet Simulator X"] = {
["Name"] = "Pet Simulator X",
["IDs"] = {
6284583030,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/petsimulatorx.lua",
["Function"] = nil
},
["Strongman Simulator"] = {
["Name"] = "Strongman Simulator",
["IDs"] = {
6766156863,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/strongman.lua",
["Function"] = nil
},
["Mt Everest Climbing Roleplay"] = {
["Name"] = "Mt Everest Climbing Roleplay",
["IDs"] = {
3145447020,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/everest",
["Function"] = nil
},
["Robloxs Fastest Vehicle"] = {
["Name"] = "Robloxs Fastest Vehicle",
["IDs"] = {
4894308400,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/rblxfastestveh",
["Function"] = nil
},
["Arm Wrestle Simulator"] = {
["Name"] = "Arm Wrestle Simulator",
["IDs"] = {
13127800756,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/armwersle-obfuscated.lua",
["Function"] = nil
},
["Fishing Simulator"] = {
["Name"] = "Fishing Simulator",
["IDs"] = {
2866967438,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/fishingsim.lua",
["Function"] = nil
},
["Scuba Diving At Quill Lake"] = {
["Name"] = "Scuba Diving At Quill Lake",
["IDs"] = {
1450425732,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/quilllake.lua",
["Function"] = nil
},
["Money Tycoon"] = {
["Name"] = "Money Tycoon",
["IDs"] = {
9898710720,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/moneytycoon.lua",
["Function"] = nil
},
["Gorilla Tag Experience"] = {
["Name"] = "Gorilla Tag Experience",
["IDs"] = {
8877152338,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/grilliatag.lua",
["Function"] = nil
},
["Merge Droppers"] = {
["Name"] = "Merge Droppers",
["IDs"] = {
10977918334,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/mergedroppers.lua",
["Function"] = nil
},
["NERF Strike"] = {
["Name"] = "NERF Strike",
["IDs"] = {
6245984328,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/nerfstrike.lua",
["Function"] = nil
},
["Full Self Driving/Autopilot Simulator"] = {
["Name"] = "Full Self Driving/Autopilot Simulator",
["IDs"] = {
11832484500,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/selfdriving.lua",
["Function"] = nil
},
["The Mad Murderer X"] = {
["Name"] = "The Mad Murderer X",
["IDs"] = {
8317834514,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/madmurder.lua",
["Function"] = nil
},
["Pilfering Pirates"] = {
["Name"] = "Pilfering Pirates",
["IDs"] = {
6104994594,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/PilferingPirates.lua",
["Function"] = nil
},
["Barrys Prison Run"] = {
["Name"] = "Barrys Prison Run",
["IDs"] = {
8712817601,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/berrysprisonrun.lua",
["Function"] = nil
},
["Escape The World Obby"] = {
["Name"] = "Escape The World Obby",
["IDs"] = {
6496746583,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/escapetheworldobby.lua",
["Function"] = nil
},
["Every Second You Get +1 WalkSpeed"] = {
["Name"] = "Every Second You Get +1 WalkSpeed",
["IDs"] = {
12742233841,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/everysec.lua",
["Function"] = nil
},
["Yeet a Plane Simulator"] = {
["Name"] = "Yeet a Plane Simulator",
["IDs"] = {
13780662126,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/yeetaplane.lua",
["Function"] = nil
},
["Anime Energy Clash Simulator"] = {
["Name"] = "Anime Energy Clash Simulator",
["IDs"] = {
13370783664,
},
["Version"] = "1.0.0",
["URL"] = "https://raw.githubusercontent.com/Lucasfin000/SpaceHub/main/animeclash.lua",
["Function"] = nil
},
["The Dank Murderer 2"] = {
["Name"] = "The Dank Murderer 2",
["IDs"] = {
9421227126,