-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestingversion
1904 lines (1828 loc) · 65.3 KB
/
testingversion
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
ocal descendants = game.CoreGui:GetDescendants()
for _, descendant in pairs(descendants) do
if descendant.Name == "SimpleSpy2" then
descendant:Destroy()
game.Players.LocalPlayer:Kick("Unstable connection detected")
end
end
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCore("SendNotification", {
Title = "Credits";
Text = "Goose Better#9356 / parrotyay on v3rm"
})
-- variables
local themes = {
Background = Color3.fromRGB(128, 200, 128),
Glow = Color3.fromRGB(128, 200, 128),
Accent = Color3.fromRGB(70, 120, 70),
LightContrast = Color3.fromRGB(108, 180, 108),
DarkContrast = Color3.fromRGB(88, 140, 88),
TextColor = Color3.fromRGB(200, 255, 200)
}
RunService = game:GetService("RunService")
Lighting = game:GetService("Lighting")
COREGUI = game:GetService("CoreGui")
Players = game:GetService("Players")
local speaker = game.Players.LocalPlayer
Mouse = Players.LocalPlayer:GetMouse()
local playerChildren = game.Players:GetChildren()
if game.CoreGui:FindFirstChild("Fantastic Frontier Hub") then
game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)"):Destroy()
end
local noFog = false
-- init
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bardium/venyx/main/main"))()
local venyx = library.new("Fantastic Frontier Hub (Goose Better#9356)", 5013109572)
function goto(pos)
local active = true
if not game.Workspace.HOLE:FindFirstChild("HoleTPEntrance") then
repeat
local prevPos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1304,96,-525)
wait()
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = prevPos
wait(1)
until game.Workspace.HOLE:FindFirstChild("HoleTPEntrance")
end
if (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - pos).magnitude < 200 then
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pos)
wait(.3)
local active = false
else
local hole = game.Workspace.HOLE.HoleTPEntrance
local oPos = hole.Position
local oSize = hole.Size
hole.Size = Vector3.new(1,1,1)
hole.Transparency = 1
hole.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
repeat hole.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position wait() until (hole.Position - game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude < 10
hole.Position = oPos
hole.Size = oSize
repeat wait() until (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - Vector3.new(430,441,102)).magnitude < 10
for i=1, 4 do
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pos)
wait(.1)
end
wait(.1)
game.Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false
local active = false
end
end
-- first page
local PlayerPage = venyx:addPage("Player", 5012544693)
local TeleporstsPage = venyx:addPage("Teleports", 5012543481)
local MainPage = venyx:addPage("Features", 5012544092)
local ESPPage = venyx:addPage("ESP", 5012543246)
local ShopsPage = venyx:addPage("Shops", 5012537936)
local SettingsPage = venyx:addPage("Settings", 5012544372)
local Teleports = TeleporstsPage:addSection("Locations")
repeat wait() until workspace:FindFirstChild("Shops")
Teleports:addDropdown("Overworld Teleports", {"A Frontier Of Dragons", "Abandoned Orchard", "Ancient Forest", "Blackrock Mountain", "Blue Ogre Camp", "Celestial Field", "Celestial Peak", "Clamstack Cave", "Coral Bay", "Farm Fortress", "Frigid Waste (PvP)", "Gnome Magic School", "Great Pine Forest", "Greenhorn Grove", "Hoodlum Falls", "Matumada", "Otherworld Tower", "Pebble Bay", "Petrified Grassland", "Pit Depths", "Rabbit Hole", "Red Ant Cove", "Rubble Spring", "Starry Point", "Strangeman's Domain", "The Deep Forest", "The Forgotten Lands", "The Long Coast", "The Maze Wood", "The Pits", "The Quiet Field", "The Rolling Road", "The Spider's Nest", "The Town of Right and Wrong", "Topple Hill", "Topple Lake", "Topple Town", "Twinkling Meadow", "Upper Island"}, function(overworldteleport)
if overworldteleport == "A Frontier Of Dragons" then
goto(Vector3.new(1184, 91, -2823))
end
if overworldteleport == "Abandoned Orchard" then
goto(Vector3.new(271, 88, -1840))
end
if overworldteleport == "Ancient Forest" then
goto(Vector3.new(676, 236, -1246))
end
if overworldteleport == "Blackrock Mountain" then
goto(Vector3.new(-594, 140, -612))
end
if overworldteleport == "Blue Ogre Camp" then
goto(Vector3.new(-865, 57, -1546))
end
if overworldteleport == "Celestial Field" then
goto(Vector3.new(1534, 92, -2899))
end
if overworldteleport == "Celestial Peak" then
goto(Vector3.new(1473, 195, -2483))
end
if overworldteleport == "Clamstack Cave" then
goto(Vector3.new(565, 158, -952))
end
if overworldteleport == "Coral Bay" then
goto(Vector3.new(1867, 1, -2765))
end
if overworldteleport == "Farm Fortress" then
goto(Vector3.new(166, 53, 415))
end
if overworldteleport == "Frigid Waste (PvP)" then
goto(Vector3.new(-1737, 155, -785))
end
if overworldteleport == "Gnome Magic School" then
goto(Vector3.new(789, 240, -574))
end
if overworldteleport == "Great Pine Forest" then
goto(Vector3.new(-13, 73, -1274))
end
if overworldteleport == "Greenhorn Grove" then
goto(Vector3.new(296, 73, -217))
end
if overworldteleport == "Hoodlum Falls" then
goto(Vector3.new(1777, 61, -997))
end
if overworldteleport == "Matumada" then
goto(Vector3.new(-978, 1, -2486))
end
if overworldteleport == "Otherworld Tower" then
goto(Vector3.new(1178, 86, -3352))
end
if overworldteleport == "Pebble Bay" then
goto(Vector3.new(-44, 2, 719))
end
if overworldteleport == "Petrified Grassland" then
goto(Vector3.new(1655, 73, -1331))
end
if overworldteleport == "Pit Depths" then
goto(Vector3.new(1183, -59, -2080))
end
if overworldteleport == "Rabbit Hole" then
goto(Vector3.new(-3233, 245, -2623))
end
if overworldteleport == "Red Ant Cove" then
goto(Vector3.new(886, 63, 362))
end
if overworldteleport == "Rubble Spring" then
goto(Vector3.new(1062, 73, -534))
end
if overworldteleport == "Starry Point" then
goto(Vector3.new(2265, 5, 481))
end
if overworldteleport == "Strangeman's Domain" then
goto(Vector3.new(-4778, 267, 732))
end
if overworldteleport == "The Deep Forest" then
goto(Vector3.new(1585, 73, 112))
end
if overworldteleport == "The Forgotten Lands" then
goto(Vector3.new(-779, 92, -1200))
end
if overworldteleport == "The Long Coast" then
goto(Vector3.new(-1172, 3, -1303))
end
if overworldteleport == "The Maze Wood" then
goto(Vector3.new(692, 89, -2388))
end
if overworldteleport == "The Pits" then
goto(Vector3.new(1320, 89, -2430))
end
if overworldteleport == "The Quiet Field" then
goto(Vector3.new(2013, 111, -447))
end
if overworldteleport == "The Rolling Road" then
goto(Vector3.new(1731, 92, -2404))
end
if overworldteleport == "The Spider's Nest" then
goto(Vector3.new(1500, 209, -3701))
end
if overworldteleport == "The Town of Right and Wrong" then
goto(Vector3.new(1115, 92, -3134))
end
if overworldteleport == "Topple Hill" then
goto(Vector3.new(777, 199, -312))
end
if overworldteleport == "Topple Lake" then
goto(Vector3.new(615, 256, -757))
end
if overworldteleport == "Topple Town" then
goto(Vector3.new(685, 226, -461))
end
if overworldteleport == "Twinkling Meadow" then
goto(Vector3.new(92, 73, -752))
end
if overworldteleport == "Upper Island" then
goto(Vector3.new(-1361, 35, -2278))
end
end)
Teleports:addDropdown("Ratboy's Nightmare Teleports", {"Back of The Theatre", "Blue Button", "Blue Door", "Cyan (Teal) Button", "Cyan (Teal) Door", "End of the Road", "Fish Hall", "Green Button", "Green Door", "Inside", "Maze of the Root", "Meeting Place", "MYSTERY STORE", "Orange Button", "Orange Door", "Pink Button", "Pink Door", "Purple Button", "Purple Door", "Red Button", "Red Door", "The Back Area", "The Ballroom", "The Deli", "The Grand Hall", "The Hidden Library", "The Library of Riddles", "The Lost", "The Mansion", "The Old Cave", "The Old Mansion", "The Plant Room", "The Road", "The Supermarket", "The Theatre", "The Vault", "Waiting Room", "Yellow Button", "Yellow Door"}, function(ratboyteleport)
if ratboyteleport== "Back of The Theatre" then
goto(Vector3.new(7799, 172, -3629))
end
if ratboyteleport== "Blue Button" then
goto(Vector3.new(7285, 172, -2549))
end
if ratboyteleport== "Blue Door" then
goto(Vector3.new(7149, 169, -1621))
end
if ratboyteleport== "Cyan (Teal) Button" then
goto(Vector3.new(7203, 244, 2235))
end
if ratboyteleport== "Cyan (Teal) Door" then
goto(Vector3.new(7794, 204, 2212))
end
if ratboyteleport== "End of the Road" then
goto(Vector3.new(10779, 375, -12512))
end
if ratboyteleport== "Fish Hall" then
goto(Vector3.new(12905, 205, 5036))
end
if ratboyteleport== "Green Button" then
goto(Vector3.new(7926, 157, -3546))
end
if ratboyteleport== "Green Door" then
goto(Vector3.new(7298, 171, -2543))
end
if ratboyteleport== "Inside" then
goto(Vector3.new(7311, 171, -2558))
end
if ratboyteleport== "Maze of the Root" then
goto(Vector3.new(13132, 191, 7532))
end
if ratboyteleport== "Meeting Place" then
goto(Vector3.new(7514, 237, -4952))
end
if ratboyteleport== "MYSTERY STORE" then
goto(Vector3.new(6765, 200, -2545))
end
if ratboyteleport== "Orange Button" then
goto(Vector3.new(7129, 143, -1587))
end
if ratboyteleport== "Orange Door" then
goto(Vector3.new(6985, 141, -1635))
end
if ratboyteleport== "Pink Button" then
goto(Vector3.new(7208, 154, -1717))
end
if ratboyteleport== "Pink Door" then
goto(Vector3.new(7163, 168, -1742))
end
if ratboyteleport== "Purple Button" then
goto(Vector3.new(7297, 147, -1701))
end
if ratboyteleport== "Purple Door" then
goto(Vector3.new(7021, 141, -1689))
end
if ratboyteleport== "Red Button" then
goto(Vector3.new(7261, 200, -2147))
end
if ratboyteleport== "Red Door" then
goto(Vector3.new(7229, 168, -814))
end
if ratboyteleport== "The Back Area" then
goto(Vector3.new(7206, 244, 2122))
end
if ratboyteleport== "The Ballroom" then
goto(Vector3.new(11825, 318, 2432))
end
if ratboyteleport== "The Deli" then
goto(Vector3.new(7070, 140, -1621))
end
if ratboyteleport== "The Grand Hall" then
goto(Vector3.new(5928, 211, 4845))
end
if ratboyteleport== "The Hidden Library" then
goto(Vector3.new(8170, 187, -949))
end
if ratboyteleport== "The Library of Riddles" then
goto(Vector3.new(7332, 157, -1636))
end
if ratboyteleport== "The Lost" then
goto(Vector3.new(5858, 157, 4904))
end
if ratboyteleport== "The Mansion" then
goto(Vector3.new(7003, 140, -1639))
end
if ratboyteleport== "The Old Cave" then
goto(Vector3.new(13099, 174, 6944))
end
if ratboyteleport== "The Old Mansion" then
goto(Vector3.new(7242, 168, -2114))
end
if ratboyteleport== "The Plant Room" then
goto(Vector3.new(7066, 159, -855))
end
if ratboyteleport== "The Road" then
goto(Vector3.new(10759, 201, 8595))
end
if ratboyteleport== "The Supermarket" then
goto(Vector3.new(7252, 202, 2269))
end
if ratboyteleport== "The Theatre" then
goto(Vector3.new(7510, 147, -3613))
end
if ratboyteleport== "The Vault" then
goto(Vector3.new(5740, 224, -3178))
end
if ratboyteleport== "Waiting Room" then
goto(Vector3.new(12398, 284, -5296))
end
if ratboyteleport== "Yellow Button" then
goto(Vector3.new(8510, 214, -1242))
end
if ratboyteleport== "Yellow Door" then
goto(Vector3.new(7195, 168, -1638))
end
end)
Teleports:addDropdown("Housing Telports", {"Black Tower (Celestial Field)", "Boathouse (Long Coast)", "Castle (Topple Town)", "Ice Spire (Matumada)", "Starter House (Topple Town)", "Two Story House (Topple Town)", "White Tower (Quiet Field)"}, function(houseteleport)
if houseteleport== "Black Tower (Celestial Field)" then
goto(Vector3.new(1387, 137, -3217))
end
if houseteleport== "Boathouse (Long Coast)" then
goto(Vector3.new(-484, 4, -1692))
end
if houseteleport== "Castle (Topple Town)" then
goto(Vector3.new(589, 312, -678))
end
if houseteleport== "Ice Spire (Matumada)" then
goto(Vector3.new(-2169, 40, -1229))
end
if houseteleport== "Starter House (Topple Town)" then
goto(Vector3.new(641, 237, -462))
end
if houseteleport== "Two Story House (Topple Town)" then
goto(Vector3.new(626, 258, -552))
end
if houseteleport== "White Tower (Quiet Field)" then
goto(Vector3.new(2092, 121, -458))
end
end)
Teleports:addDropdown("Vendor Teleports", {"Amy Thistlewitch", "Arbewhy", "Archaeologist"}, function(vendorteleport)
if vendorteleport== "Amy Thistlewitch" then
goto(Vector3.new(-2937, 228, -665))
end
if vendorteleport== "Arbewhy" then
goto(Vector3.new(-2939, 230, -1156))
end
if vendorteleport== "Archaeologist" then
goto(Vector3.new(1553, 72, -1632))
end
end)
-- second page
local theme = SettingsPage
local colors = SettingsPage:addSection("Hub Colors")
for theme, color in pairs(themes) do -- all in one theme changer, i know, Denosaur's cool
colors:addColorPicker(theme, color, function(color3)
venyx:setTheme(theme, color3)
end)
end
-- section 2
local Abilities = MainPage:addSection("Abilities")
local Universal = PlayerPage:addSection("Player")
local walkspeed = 18
local jumppower = 82
local gravity = 196
local sangle = 56
local flyspeed = 1
local waitTime = 2
local duping = false
function isNumber(str)
if tonumber(str) ~= nil or str == 'inf' then
return true
end
end
Abilities:addButton("Remove All Trees", function()
for index, instance in pairs(workspace:GetDescendants()) do
if instance:IsA("BasePart") or instance:IsA("Model") or instance:IsA("Folder") then
if instance.Name == "PostTrees" then
instance:Destroy()
end
end
end
end)
local npcsFolder = game:GetService("Workspace"):FindFirstChild("NPCS")
Abilities:addButton("Get Grateful Frog", function()
if game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]:FindFirstChild("Spawner_GratefulFrogs") then
if game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"]:FindFirstChild("Collectible") then
venyx:Notify("Frog Finder","Frog found!","rbxassetid://912824766")
wait(.1)
if game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].Collectible:FindFirstChildWhichIsA("BasePart") then
venyx:Notify("Frog Finder","Teleported to frog.","rbxassetid://912824766")
goto(game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].Collectible:FindFirstChildWhichIsA("BasePart").Position)
wait(.01)
for p = 1, 50 do
task.wait()
game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].Collectible.InteractEvent:FireServer()
end
venyx:Notify("Frog Finder","Tried collecting frog.","rbxassetid://912824766")
else
venyx:Notify("Frog Finder","Can't teleport to frog, so character is moving around the map until it can teleport to frog. Hub disabled until frog found.","rbxassetid://912824766")
repeat
if game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)") then
if game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)"):FindFirstChild("Main") then
game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)"):FindFirstChild("Main").Visible = false
end
end
game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].SpawnLocations.SpawnBrick.Name = "lol"
goto(game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].SpawnLocations.SpawnBrick.Position + Vector3.new(0,10,0))
wait(.5)
until game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].Collectible:FindFirstChildWhichIsA("BasePart") or not game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].SpawnLocations:FindFirstChild("SpawnBrick")
if not game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].SpawnLocations:FindFirstChild("SpawnBrick") then
game.Players.LocalPlayer:Kick("Server is laggy or something glitched. It is recommended that you use this hub only in a private server.")
else
venyx:Notify("Frog Finder","Frog found!","rbxassetid://912824766")
wait(.1)
goto(game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].Collectible:FindFirstChildWhichIsA("BasePart").Position)
venyx:Notify("Frog Finder","Teleported to frog.","rbxassetid://912824766")
wait(.01)
for p = 1, 50 do
task.wait()
if game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"]:FindFirstChild("Collectible") then
if game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"]:FindFirstChild("Collectible"):FindFirstChild("InteractEvent") then
game:GetService("Workspace").Spawners["The Sprutle Frog Expansion_Updated"]["Spawner_GratefulFrogs"].Collectible.InteractEvent:FireServer()
end
end
end
venyx:Notify("Frog Finder","Tried collecting frog.","rbxassetid://912824766")
if game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)") then
if game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)"):FindFirstChild("Main") then
game.CoreGui:FindFirstChild("Fantastic Frontier Hub (Goose Better#9356)"):FindFirstChild("Main").Visible = true
end
end
end
end
else
venyx:Notify("Frog Finder","No frog found.","rbxassetid://912824766")
end
else
venyx:Notify("Frog Finder","No frog found.","rbxassetid://912824766")
end
end)
Abilities:addButton("Check For Cosmic Ghost", function()
if npcsFolder:FindFirstChild("CosmicFloatingMonsterHeadNPC") then
venyx:Notify("Status","Cosmic Ghost found.","rbxassetid://3069125725")
if npcsFolder:FindFirstChild("CosmicFloatingMonsterHeadNPC"):FindFirstChildWhichIsA("BasePart",true) then
goto(npcsFolder:FindFirstChild("CosmicFloatingMonsterHeadNPC"):FindFirstChildWhichIsA("BasePart",true).Position + Vector3.new(10,10,10))
wait(.25)
venyx:Notify("Status","Teleported to Cosmic Ghost.","rbxassetid://3069125725")
else
venyx:Notify("Status","Cosmic Ghost found but is not loaded. Try moving around matumada to load it.","rbxassetid://3069125725")
end
else
venyx:Notify("Status","Cosmic Ghost not found.","rbxassetid://3069125725")
end
end)
Abilities:addButton("Check For Path Gambler", function()
if npcsFolder:FindFirstChild("PathGamblerNPC") then
venyx:Notify("Status","Path Gambler found.","rbxassetid://2463293241")
if npcsFolder:FindFirstChild("PathGamblerNPC"):FindFirstChildWhichIsA("BasePart",true) then
goto(npcsFolder:FindFirstChild("PathGamblerNPC"):FindFirstChildWhichIsA("BasePart",true).Position + Vector3.new(0,4,0))
wait(.25)
venyx:Notify("Status","Teleported to Path Gambler.","rbxassetid://2463293241")
else
venyx:Notify("Status","Path Gambler found but is not loaded. Try teleporting around Ratboy's Nightmare to load it.","rbxassetid://2463293241")
end
else
venyx:Notify("Status","Path Gambler not found.","rbxassetid://2463293241")
end
end)
Abilities:addButton("Faster Kills (Aidez)", function()
loadstring(game:HttpGet(('https://pastebin.com/raw/3KzLy2Gh'),true))()
end)
Abilities:addButton("Auto Find Presents (Aidez)", function()
loadstring(game:HttpGet(('https://pastebin.com/raw/knCxEgQM'),true))()
end)
Abilities:addText("Fast Regen Stamina will kill your character so store valueables in a chest.")
Abilities:addButton("Fast Regen Stamina (Aidez)", function()
loadstring(game:HttpGet(('https://pastebin.com/raw/evnYjsyM'),true))()
end)
local spawnersFolder = game:GetService("Workspace").Spawners
for i,v in pairs (spawnersFolder:GetDescendants()) do
if v.Name == "PlantBoxHandleAdornment" or v.Name == "PlantBeam" then
v:Destroy()
end
end
Abilities:addButton("Remove Fog", function()
local player = game.Players.LocalPlayer
if player:FindFirstChild("PlayerScripts") then
if player:FindFirstChild("PlayerScripts"):FindFirstChild("Fog") then
player.PlayerScripts.Fog:Destroy()
end
end
if player.Character:FindFirstChild("Fogbox") then
if player.Character:FindFirstChild("Fogbox"):FindFirstChild("Ring1") then
player.Character.Fogbox.Ring1:Destroy()
end
if player.Character:FindFirstChild("Fogbox"):FindFirstChild("Ring2") then
player.Character.Fogbox.Ring2:Destroy()
end
if player.Character:FindFirstChild("Fogbox"):FindFirstChild("Ring3") then
player.Character.Fogbox.Ring3:Destroy()
end
end
end)
function randomString()
local length = math.random(10,20)
local array = {}
for i = 1, length do
array[i] = string.char(math.random(32, 126))
end
return table.concat(array)
end
local ESPs = ESPPage:addSection("ESPs")
local pESP = false
local plants = {}
local plantNames = {}
local loweredPlantNames = {}
ESPs:addToggle("Plant ESP", false, function(value)
if value == true then
pESP = true
venyx:Notify("Status","Plant ESP enabled.","rbxassetid://751305395")
else
pESP = false
for i,v in pairs (spawnersFolder:GetDescendants()) do
if v.Name == "PlantBoxHandleAdornment" or v.Name == "PlantBeam" then
v:Destroy()
end
end
venyx:Notify("Status","Plant ESP disabled.","rbxassetid://751305395")
end
end)
ESPs:addTextbox("Add Plant ESP Name", "Insert Plant Name Here", function(value,focusLost)
if focusLost and value ~= nil and value ~= "" then
for i,v in pairs (game:GetService("ReplicatedStorage").ItemInfo:GetDescendants()) do
if v.Name == "FullName" then
if not table.find(plants, tostring(v.Parent.Name)) and string.lower(v.Value) == string.lower(value) then
table.insert(plants, tonumber(v.Parent.Name))
table.insert(plantNames, tostring(v.Value))
table.insert(loweredPlantNames, string.lower(tostring(v.Value)))
local newstring = ""
for i, v in pairs(plantNames) do
if i > 1 then
newstring = newstring .. ", "
end
newstring = newstring .. tostring(v)
end
if (next(plants) ~= nil) then
venyx:Notify("Status","Added "..tostring(v.Value).." to plant ESP searching!".." Current Plants: "..newstring,"rbxassetid://751305395")
else
venyx:Notify("Status","Added "..tostring(v.Value).." to plant ESP searching!".." No plants selected.","rbxassetid://751305395")
end
end
end
end
end
end)
ESPs:addTextbox("Remove Plant ESP Name", "Insert Plant Name Here", function(value,focusLost)
if focusLost and value ~= nil and value ~= "" then
for i,v in pairs (game:GetService("ReplicatedStorage").ItemInfo:GetDescendants()) do
if v.Name == "FullName" then
if string.lower(v.Value) == string.lower(value) then
--print("yes plant found")
if table.find(loweredPlantNames, string.lower(value)) then
--print("plant found in table")
local pPlantId = tonumber(v.Parent.Name)
local plantId = table.find(plants, pPlantId)
if plantId then
table.remove(plants,plantId)
else
print(pPlantId)
end
local pFullName = tostring(v.Value)
local fullName = table.find(plantNames,pFullName)
if fullName then
table.remove(plantNames, fullName)
else
print(pFullName)
end
local plPlantName = string.lower(tostring(v.Value))
local lPlantName = table.find(plantNames,plPlantName)
if lPlantName then
table.remove(plantNames, lPlantName)
else
print(plPlantName)
end
local newstring = ""
for i, v in pairs(plantNames) do
if i > 1 then
newstring = newstring .. ", "
end
newstring = newstring .. tostring(v)
end
local newstring2 = ""
for i, v in pairs(plants) do
if i > 1 then
newstring2 = newstring2 .. ", "
end
newstring2 = newstring2 .. tostring(v)
end
--print(plants)
for i,v in pairs (spawnersFolder:GetDescendants()) do
if v.Name == "PlantBoxHandleAdornment" or v.Name == "PlantBeam" then
v:Destroy()
end
end
if (next(plants) ~= nil) then
venyx:Notify("Status","Removed "..tostring(v.Value).." from plant ESP searching! ".." Current Plants: "..newstring,"rbxassetid://751305395")
else
venyx:Notify("Status","Removed "..tostring(v.Value).." from plant ESP searching!".." No plants selected.","rbxassetid://751305395")
end
end
end
end
end
end
end)
Universal:addSlider("Walk Speed Changer", 18, 0, 100, function(value)
walkspeed = value
end)
Universal:addSlider("Jump Power Changer", 82, 0, 300, function(value)
jumppower = value
end)
Universal:addSlider("Gravity Changer", 196, 0, 900, function(value)
gravity = value
end)
Universal:addSlider("Slope Angle Changer", 56, 0, 90, function(value)
sangle = value
end)
local amountEmptyInventory = 20
local Noclipping = nil
Clip = false
Universal:addToggle("Noclip", false, function(value)
if value == true then
Clip = false
wait(0.1)
local function NoclipLoop()
if Clip == false and speaker.Character ~= nil then
for _, child in pairs(speaker.Character:GetDescendants()) do
if child:IsA("BasePart") and child.CanCollide == true then
child.CanCollide = false
end
end
end
end
Noclipping = RunService.Stepped:Connect(NoclipLoop)
elseif value == false then
if Noclipping then
Noclipping:Disconnect()
end
Clip = true
end
end)
function isNumber(str)
if tonumber(str) ~= nil or str == 'inf' then
return true
end
end
FLYING = false
QEfly = true
iyflyspeed = flyspeed
vehicleflyspeed = 1
function sFLY(vfly)
repeat wait() until Players.LocalPlayer and Players.LocalPlayer.Character and Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid")
repeat wait() until Mouse
if flyKeyDown or flyKeyUp then flyKeyDown:Disconnect() flyKeyUp:Disconnect() end
local T = Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
local CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
local lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
local SPEED = 0
local function FLY()
FLYING = true
local BG = Instance.new('BodyGyro')
local BV = Instance.new('BodyVelocity')
BG.P = 9e4
BG.Parent = T
BV.Parent = T
BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
BG.cframe = T.CFrame
BV.velocity = Vector3.new(0, 0, 0)
BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
task.spawn(function()
repeat wait()
if not vfly and Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid') then
Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid').PlatformStand = true
end
if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0 then
SPEED = 50
elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0) and SPEED ~= 0 then
SPEED = 0
end
if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 or (CONTROL.Q + CONTROL.E) ~= 0 then
BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).Position) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and (CONTROL.Q + CONTROL.E) == 0 and SPEED ~= 0 then
BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).Position) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
else
BV.velocity = Vector3.new(0, 0, 0)
end
BG.cframe = workspace.CurrentCamera.CoordinateFrame
until not FLYING
CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
SPEED = 0
BG:Destroy()
BV:Destroy()
if Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid') then
Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid').PlatformStand = false
end
end)
end
flyKeyDown = Mouse.KeyDown:Connect(function(KEY)
if KEY:lower() == 'w' then
CONTROL.F = (vfly and vehicleflyspeed or iyflyspeed)
elseif KEY:lower() == 's' then
CONTROL.B = - (vfly and vehicleflyspeed or iyflyspeed)
elseif KEY:lower() == 'a' then
CONTROL.L = - (vfly and vehicleflyspeed or iyflyspeed)
elseif KEY:lower() == 'd' then
CONTROL.R = (vfly and vehicleflyspeed or iyflyspeed)
end
pcall(function() workspace.CurrentCamera.CameraType = Enum.CameraType.Track end)
end)
flyKeyUp = Mouse.KeyUp:Connect(function(KEY)
if KEY:lower() == 'w' then
CONTROL.F = 0
elseif KEY:lower() == 's' then
CONTROL.B = 0
elseif KEY:lower() == 'a' then
CONTROL.L = 0
elseif KEY:lower() == 'd' then
CONTROL.R = 0
end
end)
FLY()
end
function NOFLY()
FLYING = false
if flyKeyDown or flyKeyUp then flyKeyDown:Disconnect() flyKeyUp:Disconnect() end
if Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid') then
Players.LocalPlayer.Character:FindFirstChildOfClass('Humanoid').PlatformStand = false
end
pcall(function() workspace.CurrentCamera.CameraType = Enum.CameraType.Custom end)
end
Universal:addSlider("Fly Speed Changer", 1, 0, 3, function(value)
if FLYING then
flyspeed = value
NOFLY()
wait()
sFLY()
iyflyspeed = flyspeed
else
flyspeed = value
NOFLY()
iyflyspeed = flyspeed
end
end)
args1 = flyspeed
Universal:addToggle("Fly", false, function(value)
if value == true then
NOFLY()
wait()
sFLY()
if args1 and isNumber(args1) then
iyflyspeed = args1
end
elseif value == false then
NOFLY()
end
end)
function getRoot(char)
local rootPart = char:FindFirstChild('HumanoidRootPart') or char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
return rootPart
end
IYMouse = Players.LocalPlayer:GetMouse()
local speakahChar = speaker.Character
local speakerHum = speakahChar:FindFirstChild("Humanoid")
repeat wait() until speakahChar:FindFirstChild("HumanoidRootPart")
local speakahHRP = speakahChar.HumanoidRootPart
local ffarm = false
local root = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
function checkTP()
if not game.Workspace.HOLE:FindFirstChild("HoleTPEntrance") then
repeat
local prevPos = root.CFrame
root.CFrame = CFrame.new(1304,96,-525)
wait()
root.CFrame = prevPos
wait(1)
until game.Workspace.HOLE:FindFirstChild("HoleTPEntrance")
end
end
checkTP()
function gotofirefly(firefly)
local hole = game.Workspace.HOLE
if hole:FindFirstChild("HoleTPEntrance") then
hole = game.Workspace.HOLE.HoleTPEntrance
if (root.Position - firefly.Position).magnitude < 200 then
else
hole.Size = Vector3.new(1,1,1)
hole.Transparency = 1
hole.CFrame = root.CFrame
repeat hole.Position = root.Position wait() until (hole.Position - root.Position).magnitude < 10
hole.Position = Vector3.new(1318,85,-527)
hole.Size = Vector3.new(14,5,17)
repeat wait() until (root.Position - Vector3.new(430,441,102)).magnitude < 10
local preframe = root.CFrame
for i=1, 5 do
root.Anchored = true
root.CFrame = firefly.CFrame + Vector3.new(0,3,0)
wait(.1)
end
end
wait()
if firefly.Parent then
repeat
if not ffarm then return end
root.Anchored = true
root.CFrame = firefly.CFrame + Vector3.new(0,3,0)
root.Anchored = false
wait()
if firefly:FindFirstChild("CollectEvent") then
firefly.CollectEvent:FireServer()
end
wait(.08)
until firefly.Parent == nil
end
root.Anchored = false
else
checkTP()
if (root.Position - firefly.Position).magnitude < 200 then
else
hole.Size = Vector3.new(1,1,1)
hole.Transparency = 1
hole.CFrame = root.CFrame
repeat hole.Position = root.Position wait() until (hole.Position - root.Position).magnitude < 10
hole.Position = Vector3.new(1318,85,-527)
hole.Size = Vector3.new(14,5,17)
repeat wait() until (root.Position - Vector3.new(430,441,102)).magnitude < 10
local preframe = root.CFrame
for i=1, 5 do
root.Anchored = true
root.CFrame = firefly.CFrame + Vector3.new(0,3,0)
wait(.1)
end
end
wait()
if firefly.Parent then
repeat
if not ffarm then return end
root.Anchored = true
root.CFrame = firefly.CFrame + Vector3.new(0,3,0)
root.Anchored = false
wait()
if firefly:FindFirstChild("CollectEvent") then
firefly.CollectEvent:FireServer()
end
wait(.08)
until firefly.Parent == nil
end
root.Anchored = false
end
end
local bfarm = false
local dfarm = false
local lfarm = false
local longwait = false
local shortwait = false
local randomboth = true
task.wait()
local Autofarmsection = MainPage:addSection("AutoFarms")
task.wait(.025)
Autofarmsection:addButton("Toggle Bird Nests AutoFarm", function()
if bfarm then
bfarm = false
venyx:Notify("Status","Bird nests autofarm disabled.","rbxassetid://3069123676")
else if not bfarm then
goto(Vector3.new(-1405, 325, -2271))
wait(1)
bfarm = true
venyx:Notify("Status","Bird nests autofarm enabled.","rbxassetid://3069123676")
checkTP()
end
end
end)
task.wait(.025)
Autofarmsection:addButton("Toggle Lost AutoFarm", function()
if lfarm then
amountEmptyInventory = 20
lfarm = false
venyx:Notify("Status","Lost autofarm disabled.")
else if not lfarm then
amountEmptyInventory = 20
venyx:Notify("Status","Hidden key is required.","rbxassetid://2452981255")
local invFrame = game:GetService("Players").LocalPlayer.PlayerGui.Container.Main["INV_SF"]
for i,v in pairs (invFrame:GetDescendants()) do
if v.Name == "ItemCode" then
if v.Value == 2025 then
venyx:Notify("Status","Hidden key found.","rbxassetid://2452981255")
goto(Vector3.new(5857, 157, 4907))
wait(1.5)
lfarm = true
venyx:Notify("Status","Lost autofarm enabled.")
amountEmptyInventory = 20
break
end
end
end
end
end
end)
task.wait(.025)
Autofarmsection:addButton("Toggle Firefly Stones AutoFarm (Denosaur)", function()
if ffarm then
ffarm = false
venyx:Notify("Status","Firefly stones autofarm disabled.","rbxassetid://1227584028")
else if not ffarm then
ffarm = true
venyx:Notify("Status","Firefly stones autofarm enabled.","rbxassetid://1227584028")
checkTP()
end
end
end)
task.wait(.025)
Autofarmsection:addDropdown("Deli AutoFarm Mode", {"Long Wait", "Short Wait", "Both"}, function(mode)
if mode == "Long Wait" then
longwait = true
randomboth = false
shortwait = false
venyx:Notify("Status","Long wait selected.","rbxassetid://2458363356")
end
if mode == "Short Wait" then
shortwait = true
longwait = false
randomboth = false
venyx:Notify("Status","Short wait selected.","rbxassetid://2458363356")
end
if mode == "Both" then
randomboth = true
shortwait = false
longwait = false
venyx:Notify("Status","Both waits selected. (Picks one randomly each time.)","rbxassetid://2458363356")
end
end)
task.wait(.025)
Autofarmsection:addButton("Toggle Deli AutoFarm", function()
if dfarm then
dfarm = false
venyx:Notify("Status","Deli autofarm disabled.","rbxassetid://2458363356")
else if not dfarm then
dfarm = true