-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetQueTPScript
5196 lines (4736 loc) · 169 KB
/
getQueTPScript
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 GuiService = game:GetService("GuiService")
local NotificationHolder = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Module.Lua"))()
local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Client.Lua"))()
local ProcessStartName = tostring("8.54773254E-2")
local ScriptProcess = ProcessStartName
wait()
print("")
print("")
print("")
wait()
local NotificationHolder = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Module.Lua"))()
local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Client.Lua"))()
local TeleportService = cloneref(game:GetService("TeleportService")) or game:GetService("TeleportService")
local AllClipboards = setclipboard or toclipboard or set_clipboard or (Clipboard and Clipboard.set)
local httprequest = (syn and syn.request) or (http and http.request) or http_request or (fluxus and fluxus.request) or request
function getRoot(char)
local rootPart = char:FindFirstChild('HumanoidRootPart') or char:FindFirstChild('Torso') or char:FindFirstChild('UpperTorso')
return rootPart
end
local player = game.Players.LocalPlayer
--[[local savedSpawnPos = nil
local spDelay = 0.1
local player = game.Players.LocalPlayer
local function onCharacterAdded(character)
repeat wait() until getRoot(character)
if savedSpawnPos then
wait(spDelay)
getRoot(character).CFrame = savedSpawnPos
savedSpawnPos = nil
end
local humanoid = character:FindFirstChildOfClass('Humanoid')
if humanoid then
humanoid.Died:Connect(function()
savedSpawnPos = nil
wait()
print("Humanoid.Died Function Called | true")
end)
end
end
player.CharacterAdded:Connect(onCharacterAdded)
function saveSpawnPosition()
local character = player.Character
if character then
local rootPart = getRoot(character)
if rootPart then
savedSpawnPos = rootPart.CFrame
end
end
end
saveSpawnPosition()--]]
function getSupportedFunctions(funcSupported)
if funcSupported then
return funcSupported
else
warn(tostring(funcSupported).. ", is either not a supported function, or does not exist!")
end
end
if getSupportedFunctions(cloneref) then
local result = tostring(getSupportedFunctions(cloneref))
if result then
print(result..", Is Supported!")
else
warn("Not Supported! | "..result)
end
else
warn("Unsupported Function!")
end
wait()
if getSupportedFunctions(writefile) then
local result = tostring(getSupportedFunctions(writefile))
if result then
print(result..", Is Supported!")
else
warn("Not Supported! | "..result)
end
else
warn("Unsupported Function!")
end
wait()
if getSupportedFunctions(readfile) then
local result = tostring(getSupportedFunctions(readfile))
if result then
print(result..", Is Supported!")
else
warn("Not Supported! | "..result)
end
else
warn("Unsupported Function!")
end
wait()
if getSupportedFunctions(AllClipboards) then
local result = tostring(getSupportedFunctions(AllClipboards))
if result then
print(result..", Is Supported!")
else
warn("Not Supported!")
end
else
warn("Unsupported Function!")
end
wait()
if getSupportedFunctions(httprequest) then
local result = tostring(getSupportedFunctions(httprequest))
if result then
print(result..", Is Supported!")
else
warn("Not Supported!")
end
else
warn("Unsupported Function!")
end
if game.PlaceId == 6884319169 or game.PlaceId == 15546218972 then
warn("OK !!!")
else
local MICUPPlaceID = 6884319169
local TeleportService = cloneref(game:GetService("TeleportService")) or game:GetService("TeleportService")
TeleportService:Teleport(MICUPPlaceID)
end
if SCRIPT_EXECUTED and not _G.SCRIPT_EXECUTED == true then
return Notification:Notify(
{Title = "Error: ", Description = "Already running! Reload Script instead!"},
{OutlineColor = Color3.fromRGB(80, 80, 80), Time = 10, Type = "default"},
{Image = "http://www.roblox.com/asset/?id=0", ImageColor = Color3.fromRGB(255, 84, 84), Callback = function()
local Players = cloneref(game:GetService("Players")) or game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
local Humanoid = Character:FindFirstChildWhichIsA("Humanoid") or Character:WaitForChild("Humanoid") or Character:FindFirstChild("Humanoid") or Character:FindFirstChildOfClass("Humanoid")
getgenv().Invis_Loaded = false
wait()
getgenv().SCRIPT_EXECUTED = false
wait()
game:GetService("CoreGui"):FindFirstChild("Orion"):Destroy()
wait(1)
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EnterpriseExperience/MicUpSource/main/doMICUP')))()
wait(0.5)
Humanoid.Health = 0
end}
)
end
pcall(function() getgenv().SCRIPT_EXECUTED = true end)
local Workspace = cloneref(game:GetService("Workspace")) or game:GetService("Workspace")
local GameFolder = Workspace:FindFirstChild("Game")
local GetTeleportPart = GameFolder and GameFolder:FindFirstChild("Teleport")
if GetTeleportPart then
GetTeleportPart.Parent = game:GetService("AssetService")
wait()
print(GetTeleportPart.Name .. " is now in Parent: " .. tostring(GetTeleportPart.Parent))
else
warn("Part: Teleport = nil | false | null")
end
local Players = cloneref(game:GetService("Players")) or game:GetService("Players")
local player = Players.LocalPlayer
local Character = player.Character or player.CharacterAdded:Wait()
local playerGui = player:FindFirstChild("PlayerGui") or player:WaitForChild("PlayerGui") or player:WaitForChild("PlayerGui", 1)
local HttpService = cloneref(game:GetService("HttpService")) or game:GetService("HttpService")
repeat wait() until player and Character and Character:FindFirstChild("HumanoidRootPart", true) and Character:FindFirstChildWhichIsA("Humanoid", true)
if getSupportedFunctions(AllClipboards) then
local screenGui = Instance.new("ScreenGui")
screenGui.Name = "InviteGui"
screenGui.Parent = playerGui
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0.3, 0, 0.3, 0)
frame.Position = UDim2.new(0.35, 0, 0.35, 0)
frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
frame.Parent = screenGui
local yesButton = Instance.new("TextButton")
yesButton.Size = UDim2.new(0.8, 0, 0.3, 0)
yesButton.Position = UDim2.new(0.1, 0, 0.1, 0)
yesButton.Text = "Copy Invite Link"
yesButton.BackgroundColor3 = Color3.fromRGB(0, 200, 0)
yesButton.TextScaled = true
yesButton.Parent = frame
local noButton = Instance.new("TextButton")
noButton.Size = UDim2.new(0.8, 0, 0.3, 0)
noButton.Position = UDim2.new(0.1, 0, 0.6, 0)
noButton.Text = "No Thanks"
noButton.BackgroundColor3 = Color3.fromRGB(200, 0, 0)
noButton.TextScaled = true
noButton.Parent = frame
yesButton.MouseButton1Click:Connect(function()
local AllClipboards = setclipboard or toclipboard or set_clipboard or (Clipboard and Clipboard.set)
AllClipboards("https://discord.gg/VJh3kkYzBn")
wait(0.5)
screenGui:Destroy()
end)
noButton.MouseButton1Click:Connect(function()
screenGui:Destroy()
end)
else
print("Function "..tostring(getSupportedFunctions(httprequest)).." is not supported!")
wait()
print("...")
end
function loadGUI()
repeat wait() until game:IsLoaded() and game.Players and game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart")
local currentTime = os.time()
local formattedTime = os.date("%I:%M %p", currentTime)
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/EnterpriseExperience/MicUpSource/main/OrionCrazyLib')))()
getgenv().gethui = function()
return game:GetService("CoreGui")
end
local Window = OrionLib:MakeWindow({Name = "Zacks Easy Hub | "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name.." | Executed At: "..formattedTime, IntroText = "Hello, "..game.Players.LocalPlayer.Name, HidePremium = false, SaveConfig = true, ConfigFolder = "MICUP"})
-- IF YOU ARE READING THIS, THIS HUB WILL UNDERGO MASSIVE CHANGES SOON!, UI ALSO SHOULD CHANGE TO! SO YOU HAVE FOUND THIS HINT EARLY!
local Tab1 = Window:MakeTab({
Name = "Home",
Icon = "rbxassetid://7733960981",
PremiumOnly = false
})
local Section1 = Tab1:AddSection({
Name = "Home Section"
})
local Tab11 = Window:MakeTab({
Name = "Booths",
Icon = "rbxassetid://7733914390",
PremiumOnly = false
})
local Section11 = Tab11:AddSection({
Name = "Booth Tools/Stand/Stall Tools"
})
local Tab2 = Window:MakeTab({
Name = "Character",
Icon = "rbxassetid://7743871002",
PremiumOnly = false
})
local Section2 = Tab2:AddSection({
Name = "Character Tools"
})
local Tab10 = Window:MakeTab({
Name = "Teleports",
Icon = "rbxassetid://7733764327",
PremiumOnly = false
})
local Section10 = Tab10:AddSection({
Name = "Teleport Tools"
})
local Tab4 = Window:MakeTab({
Name = "Chat Mods",
Icon = "rbxassetid://7734021300",
PremiumOnly = false
})
local Section4 = Tab4:AddSection({
Name = "Tools For Modifying/Manipulating Chat"
})
local Tab5 = Window:MakeTab({
Name = "Extra Tools",
Icon = "rbxassetid://7733954760",
PremiumOnly = false
})
local Section5 = Tab5:AddSection({
Name = "Extra Tools"
})
local Tab9 = Window:MakeTab({
Name = "Lighting",
Icon = "rbxassetid://7734068495",
PremiumOnly = false
})
local Section9 = Tab9:AddSection({
Name = "Lighting And Sky Stuff?"
})
local Tab7 = Window:MakeTab({
Name = "Whitelist",
Icon = "rbxassetid://7733771472",
PremiumOnly = false
})
local Section8 = Tab7:AddSection({
Name = "Bypasses And Shit"
})
local Tab12 = Window:MakeTab({
Name = "Emoting Tools",
Icon = "rbxassetid://7743871002",
PremiumOnly = false
})
local Section12 = Tab12:AddSection({
Name = "Emote Speed/Freezing/etc"
})
local Tab6 = Window:MakeTab({
Name = "README",
Icon = "rbxassetid://7734022107",
PremiumOnly = false
})
local Section6 = Tab6:AddSection({
Name = "Current Information."
})
wait(0.5)
getgenv().GetStartIntro = false
if getgenv().GetStartIntro == false then
getgenv().GetStartIntro = true
wait(0.1)
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EnterpriseExperience/MicUpSource/refs/heads/main/startIntroFadeScreen')))()
wait(1)
repeat wait() until getgenv().GetStartIntro == true
if getgenv().GetStartIntro == true then
print("Set Intro Data | Success | true")
else
warn("Unable to retrieve Intro Data | failed | false")
end
end
wait(0.5)
if writefile and readfile then
print("writefile function (unpacked data): "..tostring(writefile).." | readfile function (unpacked data): "..tostring(readfile))
wait(0.1)
print("Your executor DOES support writefile and readfile! AWESOME!")
else
warn("Your executor does not support writefile | readfile | false | SORRY! | There CAN/WILL be errors")
end
wait(0.5)
local function promptForConfig()
function runConfigChoice()
if writefile and readfile then
writefile("IY_FE.iy", [[
{
"currentShade2":[0.18039216101169587,0.18039216101169587,0.18431372940540315],
"StayOpen":false,
"logsEnabled":false,
"aliases":[],
"PluginsTable":[],
"prefix":";",
"binds":[
{"ISKEYUP":false,"KEY":"Enum.KeyCode.One","COMMAND":"emote 13071993910"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Two","COMMAND":"emote 14901371589"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Five","COMMAND":"emote 5104377791"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Six","COMMAND":"emote 13694139364"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Seven","COMMAND":"emote 7466047578"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Eight","COMMAND":"emote 13823339506"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.E","COMMAND":"animspeed 4"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Q","COMMAND":"animspeed 0.1"},
{"ISKEYUP":false,"KEY":"Enum.KeyCode.Nine","COMMAND":"emote 3576823880"},
{"KEY":"Enum.KeyCode.Four","ISKEYUP":false,"COMMAND":"emote 5230615437"},
{"KEY":"Enum.KeyCode.V","ISKEYUP":false,"COMMAND":"freezeanims"},
{"KEY":"Enum.KeyCode.R","ISKEYUP":false,"COMMAND":"emote 16371235025"},
{"KEY":"Enum.KeyCode.T","ISKEYUP":false,"COMMAND":"emote 10214418283"},
{"KEY":"Enum.KeyCode.Z","ISKEYUP":false,"COMMAND":"emote 3994130516"},
{"KEY":"Enum.KeyCode.X","ISKEYUP":false,"COMMAND":"animspeed 1"},
{"KEY":"Enum.KeyCode.Y","ISKEYUP":false,"COMMAND":"emote 11394056822"},
{"KEY":"Enum.KeyCode.N","ISKEYUP":false,"COMMAND":"emote 3823158750"},
{"KEY":"Enum.KeyCode.U","ISKEYUP":false,"COMMAND":"emote 14900153406"},
{"KEY":"Enum.KeyCode.Zero","ISKEYUP":false,"COMMAND":"emote 15506503658"},
{"KEY":"Enum.KeyCode.P","ISKEYUP":false,"COMMAND":"emote 10275057230"},
{"KEY":"Enum.KeyCode.Three","ISKEYUP":false,"COMMAND":"emote 3716633898"},
{"KEY":"Enum.KeyCode.F","ISKEYUP":false,"TOGGLE":"animspeed -1","COMMAND":"animspeed 1"}
],
"currentShade3":[0.30588236451148989,0.30588236451148989,0.30980393290519717],
"WayPoints":[],
"jLogsEnabled":false,
"currentScroll":[0.30588236451148989,0.30588236451148989,0.30980393290519717],
"keepIY":true,
"eventBinds":"{\"OnSpawn\":[],\"OnDied\":[],\"OnExecute\":[],\"OnKilled\":[],\"OnJoin\":[],\"OnLeave\":[],\"OnDamage\":[],\"OnChatted\":[]}",
"espTransparency":0.3,
"currentShade1":[0.1411764770746231,0.1411764770746231,0.14509804546833039],
"currentText2":[0,0,0],
"currentText1":[1,1,1]
}
]], true)
else
warn("Your exploit does not support 'writefile' [You will not be able to use custom config for Infinite Yield, sorry!]")
end
end
local optionPicked = nil
local UserInputService = cloneref(game:GetService("UserInputService")) or game:GetService("UserInputService")
local function isPC()
if UserInputService.TouchEnabled == true and writefile and readfile then
print("User is on mobile, but has access to writefile and readfile!")
else
if UserInputService.TouchEnabled == true and not writefile and not readfile then
warn("User is on mobile, but support for writefile and readfile does not exist.")
end
end
end
local function selectOption1()
local TeleportService = cloneref(game:GetService("TeleportService")) or game:GetService("TeleportService")
optionPicked = 1
wait()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EnterpriseExperience/crazyDawg/main/InfYieldOther.lua", true))()
wait(0.4)
runConfigChoice()
wait(1)
TeleportService:TeleportToPlaceInstance(game.PlaceId, game.JobId, game.Players.LocalPlayer)
end
local function selectOption2()
optionPicked = 2
wait()
warn("false | CONFIG_WRITE_DENIED | 3")
end
local function selectOption3()
local UserInputService = cloneref(game:GetService("UserInputService")) or game:GetService("UserInputService")
if isPC() then
optionPicked = 1
wait(0.1)
loadstring(game:HttpGet("https://raw.githubusercontent.com/EnterpriseExperience/crazyDawg/main/InfYieldOther.lua", true))()
wait(0.4)
runConfigChoice()
else
selectOption2()
wait()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EnterpriseExperience/crazyDawg/main/InfYieldOther.lua", true))()
end
end
local ScreenGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
local Frame = Instance.new("Frame", ScreenGui)
Frame.Size = UDim2.new(0, 350, 0, 150)
Frame.Position = UDim2.new(0.5, -175, 0, 20)
Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
Frame.BorderSizePixel = 0
Frame.BackgroundTransparency = 0.3
local QuestionLabel = Instance.new("TextLabel", Frame)
QuestionLabel.Text = "Do you want an Infinite Yield rizz config?"
QuestionLabel.Size = UDim2.new(0, 350, 0, 50)
QuestionLabel.Position = UDim2.new(0, 0, 0, 0)
QuestionLabel.BackgroundTransparency = 1
QuestionLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
QuestionLabel.Font = Enum.Font.GothamBold
QuestionLabel.TextScaled = true
local Option1Button = Instance.new("TextButton", Frame)
Option1Button.Text = "Write File"
Option1Button.Size = UDim2.new(0, 160, 0, 40)
Option1Button.Position = UDim2.new(0, 10, 0, 100)
Option1Button.BackgroundColor3 = Color3.fromRGB(80, 200, 120)
Option1Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Option1Button.Font = Enum.Font.GothamBold
Option1Button.TextScaled = true
Option1Button.MouseButton1Click:Connect(selectOption1)
optionPicked = 2
local Option2Button = Instance.new("TextButton", Frame)
Option2Button.Text = "Cancel"
Option2Button.Size = UDim2.new(0, 160, 0, 40)
Option2Button.Position = UDim2.new(0, 180, 0, 100)
Option2Button.BackgroundColor3 = Color3.fromRGB(200, 80, 80)
Option2Button.TextColor3 = Color3.fromRGB(255, 255, 255)
Option2Button.Font = Enum.Font.GothamBold
Option2Button.TextScaled = true
Option2Button.MouseButton1Click:Connect(selectOption2)
while not optionPicked do
wait()
end
optionPicked = 2
wait()
ScreenGui:Destroy()
if optionPicked == 2 then
selectOption2()
end
end
wait(0.5)
promptForConfig()
wait(0.3)
local Players = cloneref(game:GetService("Players")) or game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
local StartedScriptCFrame = Character:WaitForChild("HumanoidRootPart", 0.5).CFrame
wait(0.1)
Players.RespawnTime = 0
wait()
local GC = getconnections or get_signal_cons
if GC then
for i,v in pairs(GC(game:GetService("Players").LocalPlayer.Idled)) do
OrionLib:MakeNotification({
Name = "Idled!",
Content = "Stopping connection...",
Image = "rbxassetid://4483345998",
Time = 10
})
wait()
if v["Disable"] then
v["Disable"](v)
wait()
OrionLib:MakeNotification({
Name = "Success!",
Content = "Disabled Connection: "..tostring(v),
Image = "rbxassetid://4483345998",
Time = 10
})
elseif v["Disconnect"] then
v["Disconnect"](v)
wait()
OrionLib:MakeNotification({
Name = "Success!",
Content = "Disconnected Connection: "..tostring(v),
Image = "rbxassetid://4483345998",
Time = 10
})
end
end
wait(0.3)
getgenv().AntiAfkScript = true
repeat wait() until getgenv().AntiAfkScript == true
wait()
if getgenv().AntiAfkScript == true then
OrionLib:MakeNotification({
Name = "Success!",
Content = "We have enabled anti-afk",
Image = "rbxassetid://4483345998",
Time = 10
})
else
getgenv().AntiAfkScript = false
wait(0.2)
OrionLib:MakeNotification({
Name = "Failed!",
Content = "This method will not work for you.",
Image = "rbxassetid://4483345998",
Time = 10
})
end
wait()
OrionLib:MakeNotification({
Name = "Starting...",
Content = "AntiAFK (2) is loading...",
Image = "rbxassetid://4483345998",
Time = 10
})
wait()
local VirtualUser = cloneref(game:GetService("VirtualUser")) or game:GetService("VirtualUser") or game.VirtualUser
game:GetService("Players").LocalPlayer.Idled:Connect(function()
OrionLib:MakeNotification({
Name = "Idled!",
Content = "Clicking button...",
Image = "rbxassetid://4483345998",
Time = 10
})
VirtualUser:CaptureController()
VirtualUser:ClickButton2(Vector2.new())
wait(0.1)
OrionLib:MakeNotification({
Name = "Success!",
Content = "Clicked Button (Anti-Idle)",
Image = "rbxassetid://4483345998",
Time = 10
})
end)
wait()
wait(0.3)
getgenv().OtherAntiAfk = true
repeat wait() until getgenv().OtherAntiAfk == true
wait()
if getgenv().OtherAntiAfk == true then
OrionLib:MakeNotification({
Name = "Sucess!",
Content = "AntiAFK (2) has loaded!",
Image = "rbxassetid://4483345998",
Time = 10
})
else
OrionLib:MakeNotification({
Name = "Failed!",
Content = "AntiAFK (2) could not load.",
Image = "rbxassetid://4483345998",
Time = 10
})
end
end
wait()
function getGUIEnabled()
getgenv().getCheckedGUIs = false
wait()
if game:GetService("StarterGui"):FindFirstChild("Action") and game:GetService("StarterGui"):FindFirstChild("VEffect") and game:GetService("StarterGui"):FindFirstChild("Menu") then
local ActionGUI = game:GetService("StarterGui"):FindFirstChild("Action")
local VEffectGUI = game:GetService("StarterGui"):FindFirstChild("VEffect")
local MenuGUI = game:GetService("StarterGui"):FindFirstChild("Menu")
local getClone = ActionGUI:Clone()
getClone.Parent = game.Players.LocalPlayer.PlayerGui
local getSecondClone = VEffectGUI:Clone()
getSecondClone.Parent = game.Players.LocalPlayer.PlayerGui
local getThirdClone = MenuGUI:Clone()
getThirdClone.Parent = game.Players.LocalPlayer.PlayerGui
wait()
getgenv().getCheckedGUIs = true
else
warn("Could not locate GUIs")
end
if getgenv().getCheckedGUIs == true then
return print("Checked OK !")
end
end
wait()
function resetLightingSettings()
local Lighting = cloneref(game:GetService("Lighting")) or game:GetService("Lighting")
local SunRays = Lighting:FindFirstChildOfClass("SunRaysEffect")
Lighting.ClockTime = 14.5
wait()
Lighting.Brightness = 3
wait()
Lighting.Atmosphere.Density = 0.3
wait()
Lighting.Atmosphere.Offset = 0.25
wait()
Lighting.Atmosphere.Color = Color3.new(199, 199, 199)
wait()
Lighting.Atmosphere.Decay = Color3.new(106, 112, 125)
wait()
Lighting.Atmosphere.Glare = 0
wait()
Lighting.Atmosphere.Haze = 0
wait()
Lighting.Sky.MoonAngularSize = 11
wait()
Lighting.Sky.StarCount = 3000
wait()
Lighting.Sky.SunAngularSize = 11
wait()
Lighting.Bloom.Intensity = 1
wait()
Lighting.Bloom.Enabled = true
wait()
Lighting.Bloom.Size = 24
wait()
Lighting.Bloom.Threshold = 2
wait()
Lighting.DepthOfField.Enabled = false
wait()
Lighting.DepthOfField.FarIntensity = 0.1
wait()
Lighting.DepthOfField.FocusDistance = 0.05
wait()
Lighting.DepthOfField.InFocusRadius = 30
wait()
Lighting.DepthOfField.NearIntensity = 0.75
wait()
Lighting.SunRays.Enabled = true
wait()
Lighting.SunRays.Intensity = 0.01
wait()
Lighting.SunRays.Spread = 0.1
end
wait()
local Players = cloneref(game:GetService("Players")) or game:GetService("Players")
local ReplicatedStorage = cloneref(game:GetService("ReplicatedStorage")) or game:GetService("ReplicatedStorage")
OrionLib:MakeNotification({
Name = "Modifying Scripts...",
Content = "We are modifying game scripts, hold on...",
Image = "rbxassetid://4483345998",
Time = 10
})
wait(0.5)
for _, descendant in pairs(workspace:GetDescendants()) do
if descendant:IsA("Script") and descendant.Name == "Kill" then
local parent = descendant.Parent
local touchInterest = parent:FindFirstChild("TouchInterest")
if touchInterest then
touchInterest:Destroy()
end
descendant:Destroy()
end
end
wait(0.5)
OrionLib:MakeNotification({
Name = "Hold On.",
Content = "We are modifying Lighting...",
Image = "rbxassetid://4483345998",
Time = 10
})
wait()
local lighting = game:GetService("Lighting")
lighting.ClockTime = 0
wait(0.2)
lighting.ClockTime = 3
wait(0.2)
lighting.ClockTime = 9
wait(0.2)
lighting.Brightness = 3
wait(0.2)
lighting.Brightness = 0
wait(0.2)
lighting.ClockTime = 8
repeat wait() until lighting.ClockTime == 8
if lighting.ClockTime == 8 then
OrionLib:MakeNotification({
Name = "Success!",
Content = "We have configured Lighting (for the script)",
Image = "rbxassetid://4483345998",
Time = 5
})
else
OrionLib:MakeNotification({
Name = "Failed!",
Content = "An error has occurred, we're sorry.",
Image = "rbxassetid://4483345998",
Time = 5
})
end
wait()
local Players = game:GetService("Players")
local whitelist = { }
local ownerWhitelist = { "miahatihraccverloren", "M1RD3RCAUGHT" }
local player = Players.LocalPlayer
local function addToWhitelist(username)
local foundPlayer = Players:FindFirstChild(username)
if not foundPlayer then
for _, plr in pairs(Players:GetPlayers()) do
if plr.Name == username or plr.DisplayName == username then
foundPlayer = plr
break
end
end
end
if foundPlayer and foundPlayer ~= "miahatihraccverloren" and foundPlayer ~= "M1RD3RCAUGHT" then
whitelist[foundPlayer.Name] = true
return OrionLib:MakeNotification({
Name = "Success!: Whitelisted",
Content = tostring(foundPlayer.Name).." was successfully whitelisted into table!",
Image = "rbxassetid://4483345998",
Time = 10
})
else
return print("Player not found: " .. username)
end
end
local function removeFromWhitelist(username)
local foundPlayer = Players:FindFirstChild(username)
if not foundPlayer then
for _, plr in pairs(Players:GetPlayers()) do
if plr.Name == username or plr.DisplayName == username then
foundPlayer = plr
break
end
end
end
if foundPlayer then
if whitelist[foundPlayer.Name] and not ownerWhitelist[foundPlayer.Name] and foundPlayer ~= "miahatihraccverloren" and foundPlayer ~= "M1RD3RCAUGHT" then
whitelist[foundPlayer.Name] = nil
return OrionLib:MakeNotification({
Name = "Success!: Removed",
Content = tostring(foundPlayer.Name).." was successfully removed from whitelist!",
Image = "rbxassetid://4483345998",
Time = 10
})
else
return print("Player is not in the whitelist: " .. username)
end
else
return print("Player not found: " .. username)
end
end
wait()
function ClaimStall1()
local Folder = workspace:WaitForChild("Stalls")
---
local Stall1 = Folder:FindFirstChild("Stall1")
local Stall2 = Folder:FindFirstChild("Stall2")
local Stall3 = Folder:FindFirstChild("Stall3")
local Stall4 = Folder:FindFirstChild("Stall4")
local Stall5 = Folder:FindFirstChild("Stall5")
if Stall1:FindFirstChild("ProxPart") and fireproximityprompt and Stall1.Player.Value ~= whitelist[game.Players[Stall3:FindFirstChild("Player").Value].UserId] then
local Proximity1 = Stall1:FindFirstChild("ProxPart").ProximityPrompt
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(Stall1:FindFirstChild("ProxPart").Position)
wait(0.3)
fireproximityprompt(Proximity1, 10)
wait(0.5)
Stall1:WaitForChild("CloseStall"):FireServer()
end
end
function ClaimStall2()
local Folder = workspace:WaitForChild("Stalls")
---
local Stall1 = Folder:FindFirstChild("Stall1")
local Stall2 = Folder:FindFirstChild("Stall2")
local Stall3 = Folder:FindFirstChild("Stall3")
local Stall4 = Folder:FindFirstChild("Stall4")
local Stall5 = Folder:FindFirstChild("Stall5")
if Stall2:FindFirstChild("ProxPart") and fireproximityprompt and Stall2.Player.Value ~= whitelist[game.Players[Stall2:FindFirstChild("Player").Value].UserId] then
local Proximity2 = Stall2:FindFirstChild("ProxPart").ProximityPrompt
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(Stall2:FindFirstChild("ProxPart").Position)
wait(0.3)
fireproximityprompt(Proximity2, 10)
wait(0.5)
Stall2:WaitForChild("CloseStall"):FireServer()
end
end
function ClaimStall3()
local Folder = workspace:WaitForChild("Stalls")
---
local Stall1 = Folder:FindFirstChild("Stall1")
local Stall2 = Folder:FindFirstChild("Stall2")
local Stall3 = Folder:FindFirstChild("Stall3")
local Stall4 = Folder:FindFirstChild("Stall4")
local Stall5 = Folder:FindFirstChild("Stall5")
if Stall3:FindFirstChild("ProxPart") and fireproximityprompt and Stall3.Player.Value ~= whitelist[game.Players[Stall3:FindFirstChild("Player").Value].UserId] then
local Proximity3 = Stall3:FindFirstChild("ProxPart").ProximityPrompt
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(Stall3:FindFirstChild("ProxPart").Position)
wait(0.3)
fireproximityprompt(Proximity3, 10)
wait(0.5)
Stall3:WaitForChild("CloseStall"):FireServer()
end
end
function ClaimStall4()
local Folder = workspace:WaitForChild("Stalls")
---
local Stall1 = Folder:FindFirstChild("Stall1")
local Stall2 = Folder:FindFirstChild("Stall2")
local Stall3 = Folder:FindFirstChild("Stall3")
local Stall4 = Folder:FindFirstChild("Stall4")
local Stall5 = Folder:FindFirstChild("Stall5")
if Stall4:FindFirstChild("ProxPart") and fireproximityprompt and Stall4.Player.Value ~= whitelist[game.Players[Stall4:FindFirstChild("Player").Value].UserId] then
local Proximity4 = Stall4:FindFirstChild("ProxPart").ProximityPrompt
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(Stall4:FindFirstChild("ProxPart").Position)
wait(0.3)
fireproximityprompt(Proximity4, 10)
wait(0.5)
Stall4:WaitForChild("CloseStall"):FireServer()
end
end
function ClaimStall5()
local Folder = workspace:WaitForChild("Stalls")
---
local Stall1 = Folder:FindFirstChild("Stall1")
local Stall2 = Folder:FindFirstChild("Stall2")
local Stall3 = Folder:FindFirstChild("Stall3")
local Stall4 = Folder:FindFirstChild("Stall4")
local Stall5 = Folder:FindFirstChild("Stall5")
if Stall5:FindFirstChild("ProxPart") and fireproximityprompt and Stall5.Player.Value ~= whitelist[game.Players[Stall5:FindFirstChild("Player").Value].UserId] then
local Proximity5 = Stall5:FindFirstChild("ProxPart").ProximityPrompt
game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").CFrame = CFrame.new(Stall5:FindFirstChild("ProxPart").Position)
wait(0.3)
fireproximityprompt(Proximity5, 10)
wait(0.5)
Stall5:WaitForChild("CloseStall"):FireServer()
end
end
wait()
local Players = cloneref(game:GetService("Players"))
-- Functions --
local cmdp = Players
local cmdlp = cmdp.LocalPlayer
function findplr(args, tbl)
if tbl == nil then
local tbl = cmdp:GetPlayers()
if args == "me" then
return cmdlp
elseif args == "random" then
return tbl[math.random(1,#tbl)]
elseif args == "new" then
local vAges = {}
for _,v in pairs(tbl) do
if v.AccountAge < 30 and v ~= cmdlp then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "old" then
local vAges = {}
for _,v in pairs(tbl) do
if v.AccountAge > 30 and v ~= cmdlp then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "bacon" then
local vAges = {}
for _,v in pairs(tbl) do
if v.Character:FindFirstChild("Pal Hair") or v.Character:FindFirstChild("Kate Hair") and v ~= cmdlp then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "friend" then
local vAges = {}
for _,v in pairs(tbl) do
if v:IsFriendsWith(cmdlp.UserId) and v ~= cmdlp then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "notfriend" then
local vAges = {}
for _,v in pairs(tbl) do
if not v:IsFriendsWith(cmdlp.UserId) and v ~= cmdlp then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "ally" then
local vAges = {}
for _,v in pairs(tbl) do
if v.Team == cmdlp.Team and v ~= cmdlp then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "enemy" then
local vAges = {}
for _,v in pairs(tbl) do
if v.Team ~= cmdlp.Team then
vAges[#vAges+1] = v
end
end
return vAges[math.random(1,#vAges)]
elseif args == "near" then
local vAges = {}
for _,v in pairs(tbl) do
if v ~= cmdlp then
local math = (v.Character:FindFirstChild("HumanoidRootPart").Position - cmdlp.Character.HumanoidRootPart.Position).magnitude
if math < 30 then
vAges[#vAges+1] = v
end
end
end
return vAges[math.random(1,#vAges)]
elseif args == "far" then
local vAges = {}
for _,v in pairs(tbl) do
if v ~= cmdlp then
local math = (v.Character:FindFirstChild("HumanoidRootPart").Position - cmdlp.Character.HumanoidRootPart.Position).magnitude
if math > 30 then
vAges[#vAges+1] = v
end
end
end
return vAges[math.random(1,#vAges)]
else
for _,v in pairs(tbl) do
if v.Name:lower():find(args:lower()) or v.DisplayName:lower():find(args:lower()) then
return v
end
end
end
else
for _, plr in pairs(tbl) do
if plr.UserName:lower():find(args:lower()) or plr.DisplayName:lower():find(args:lower()) then
return plr
end
end
end
end
wait()
function isNumber(str)
if tonumber(str) ~= nil then
return true
end
end
wait()
Tab11:AddButton({
Name = "Claim Any Booth (Go To A Booth)",
Callback = function()
local Folder = workspace:WaitForChild("Stalls")
local function setupProximityPrompt(stall)
if stall:FindFirstChild("ProxPart") then
local ProximityPrompt = stall:FindFirstChild("ProxPart").ProximityPrompt
ProximityPrompt.Enabled = true
wait()
ProximityPrompt.HoldDuration = 0
ProximityPrompt:GetPropertyChangedSignal("Enabled"):Connect(function()
if not ProximityPrompt.Enabled then
ProximityPrompt.Enabled = true
end
end)
end