-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbunnydreemurr.lua
1086 lines (937 loc) · 30.7 KB
/
bunnydreemurr.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--\\=================================//
--||Credits||
--||Made By Toby Fox#3104||
--||UI Made By Lord.#0068||
--//=================================\\
--// Services
local rep = game:GetService("ReplicatedStorage")
local uis = game:GetService("UserInputService")
local plrs = game:GetService("Players")
local runS = game:GetService("RunService")
local tweenS = game:GetService("TweenService")
local remotes = rep:WaitForChild("Remotes")
local damage = remotes:WaitForChild("Damage")
local functions = remotes:WaitForChild("Functions")
local events = remotes:WaitForChild("Events")
local charaMoves = remotes:WaitForChild("CharaMoves")
local main
local plr = plrs.LocalPlayer
local plrGui = plr:WaitForChild("PlayerGui")
local char = plr.Character
--// The Character Selection
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
game.Players.LocalPlayer.PlayerGui.CharacterSelection.Character.Value = "Chara"
wait(1)
--// The Animations
for i = 1,1 do
game.Players.LocalPlayer.Character.Head:WaitForChild("HealthBar"):Destroy()
game.Players.LocalPlayer.Backpack:WaitForChild("Main").CharaMoves.Animations.Idle.AnimationId = "rbxassetid://6416819199"
game.Players.LocalPlayer.Backpack:WaitForChild("Main").CharaMoves.Animations.Walk.AnimationId = "rbxassetid://7005162082"
game.Players.LocalPlayer.Backpack:WaitForChild("Main").CharaMoves.Animations.Run.AnimationId = "rbxassetid://6492501335"
game.Players.LocalPlayer.Backpack:WaitForChild("Main").CharaMoves.Animations.Jump.AnimationId = "rbxassetid://6492505440"
game.Players.LocalPlayer.Backpack:WaitForChild("Main").CharaMoves.Animations.Fall.AnimationId = "rbxassetid://6492518805"
end
--// The Health
local v1 = {
[1] = getrenv()._G.Pass,
[2] = "Damage",
[3] = math.huge,
[4] = game.Players.LocalPlayer.Character
}
local event = game:GetService("ReplicatedStorage").Remotes.Events
event:FireServer(v1)
game.Players.LocalPlayer.Character.Humanoid:GetPropertyChangedSignal("Health"):Connect(function()
if game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
game.Players.LocalPlayer.Character.Humanoid.Health = 1
end
end)
--// Thing
game.Players.LocalPlayer.PlayerGui.UI.Ui.Info.Defense:Destroy()
--// The UI
local ui1 = plrGui:WaitForChild("UI")
local ui = ui1:WaitForChild("Ui")
spawn(function()
ui.UpdateLog:Destroy()
ui.UpdateLogInfo:Destroy()
ui.StaminaBar.BackgroundTransparency = 0.6
ui.ManaBar.BackgroundTransparency = 0.6
ui.StaminaBar.ImageLabel:Destroy()
ui.ManaBar.AnchorPoint = Vector2.new(0.5,0.5)
ui.StaminaBar.Bar.BackgroundColor3 = Color3.new(1,1,0)
ui.ManaBar.Bar.BackgroundColor3 = Color3.new(107, 50, 124)
ui.ManaBar.Position = UDim2.new(0.5, 0,0.98, 0)
ui.ManaBar.Size = UDim2.new(0.302, 0,0.01, 0)
ui.StaminaBar.Size = UDim2.new(0.4, 0,0.01, 0)
ui.StaminaBar.AnchorPoint = Vector2.new(0.5,0.5)
ui.StaminaBar.Position = UDim2.new(0.5,0,0.96,0)
local corner = Instance.new("UICorner")
corner.Parent = ui.StaminaBar
corner:Clone().Parent = ui.StaminaBar.Bar
corner:Clone().Parent = ui.ManaBar
corner:Clone().Parent = ui.ManaBar.Bar
local ci = plrGui:WaitForChild("CharaIndicator")
ci:WaitForChild("Indicator").AnchorPoint = Vector2.new(0.5,0.5)
ci.Indicator.Position = UDim2.new(0.5,0,0.93,0)
end)
--// The UI 2
wait(3)
game.Players.LocalPlayer.PlayerGui.UI.Ui.MoveDebounceShower.Moves1["1"].Position = UDim2.new(-1.2, 0, 0, 0)
game.Players.LocalPlayer.PlayerGui.UI.Ui.MoveDebounceShower.Moves1["2"].Position = UDim2.new(-0.95, 0, 0, 0)
game.Players.LocalPlayer.PlayerGui.UI.Ui.MoveDebounceShower.Moves1["3"].Position = UDim2.new(-0.7, 0, 0, 0)
spawn(function()
game.Players.LocalPlayer.PlayerGui.UI.Ui.MoveDebounceShower.Moves1["4"]:Destroy()
game.Players.LocalPlayer.PlayerGui.UI.Ui.MoveDebounceShower.Moves1["5"]:Destroy()
end)
spawn(function()
game.Players.LocalPlayer.PlayerGui.CharaIndicator.Enabled = true
game.Players.LocalPlayer.PlayerGui.CharaIndicator.Indicator.Text = "BunnyDreemurr Has Joined The Server"
game.Players.LocalPlayer.PlayerGui.CharaIndicator.Help:Destroy()
spawn(function()
game.Players.LocalPlayer.Character.Karma:Destroy()
game.Players.LocalPlayer.Character.HateMode:Destroy()
game.Players.LocalPlayer.Character.FullHateMode:Destroy()
game.Players.LocalPlayer.Character.HateArm:Destroy()
end)
--// The UI 3
-- credits to meko#2233
-- also cred to elsiah#0440 for making it easy to fucking understand you braindead skids
local HealthBar = Instance.new("BillboardGui")
local Frame = Instance.new("Frame")
-- local HealthLabel = Instance.new("TextLabel")
local PName = Instance.new("TextLabel")
local player = game.Players.LocalPlayer
local TweenService = game:GetService("TweenService")
HealthBar.Name = "HealthBar" -- the name of the shitty healthbar
HealthBar.Parent = player.Character.Head -- the parent of the shitty healthbar
HealthBar.ExtentsOffset = Vector3.new(0, 3, 0) -- offset do not touch
HealthBar.Size = UDim2.new(4, 0, 2, 0) -- the size
-- this is the container
Frame.Parent = HealthBar
Frame.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
Frame.BackgroundTransparency = 1.000
Frame.Size = UDim2.new(1, 0, 1, 0)
-- This is for under the player name
--[[
HealthLabel.Name = "HealthLabel"
HealthLabel.Parent = Frame
HealthLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
HealthLabel.BackgroundTransparency = 1.000
HealthLabel.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
HealthLabel.Size = UDim2.new(0.800000012, 0, 0.300000012, 0)
HealthLabel.Font = Enum.Font.Arcade
HealthLabel.Text = "cock"
HealthLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
HealthLabel.TextScaled = true
HealthLabel.TextSize = 14.000
HealthLabel.TextWrapped = true
HealthLabel.TextXAlignment = Enum.TextXAlignment.Left
HealthLabel.TextYAlignment = Enum.TextYAlignment.Center
--]]
PName.Name = "PName" -- DONT CHANGE THIS
PName.Parent = Frame
PName.BackgroundColor3 = Color3.fromRGB(255, 0,0)
PName.BackgroundTransparency = 1.000
PName.Position = UDim2.new(-0.899999976, 0, -0.800000012, 0)
PName.Size = UDim2.new(3, 0, 1, 0)
PName.Font = Enum.Font.GothamBlack -- FONT
PName.Text = "BunnyDreemurr" -- CUSTOM NAME
PName.TextColor3 = Color3.fromRGB(107, 50, 124)
PName.TextScaled = true
PName.TextSize = 5.000
PName.TextStrokeColor3 = Color3.fromRGB(0,0,0) -- change this for text outline
PName.TextStrokeTransparency = 0.000
PName.TextWrapped = true
PName.TextXAlignment = Enum.TextXAlignment.Center
PName.TextYAlignment = Enum.TextYAlignment.Top
PName.Rotation = 5 -- DO NOT FUCK WITH THIS
local part = PName -- dont change this either
local Info = TweenInfo.new(
2, --Length (seconds)
Enum.EasingStyle.Sine, --Easing Style
Enum.EasingDirection.InOut, --Easing Direction
-1, --Times Repeated
true, --reversed
0 --deşau
)
local Goals = {
Rotation = -5
} -- properties
local nametween = TweenService:Create(part, Info, Goals) -- shit
nametween:Play() -- dont forget this
--// The Music
local Sound = Instance.new("Sound")
Sound.Parent = game.Players.LocalPlayer.StarterPlaylist
Sound.Volume = 1.20
Sound.Playing = true
Sound.Looped = true
Sound.SoundId = "rbxassetid://6198731813"
Sound.Name = "Bunny"
game.Players.LocalPlayer.Character.Head.Voice.SoundId = "rbxassetid://7807212135"
--// The Hide Chat
_G.hidechat = true
local mt = getrawmetatable(game)
local backup = mt.__namecall
if setreadonly then setreadonly(mt, false) else make_writeable(mt, true) end
mt.__namecall = newcclosure(function(...)
local method = getnamecallmethod()
local args = {...}
if tostring(args[1]) == 'SayMessageRequest' and _G.hidechat then
return
end
return backup(...)
end)
--// The Teleport
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "r" then
function getlockchar()
local char = game.Players.LocalPlayer.Backpack.Main.LockOnScript.LockOn.Value
return char
end
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = getlockchar().HumanoidRootPart.CFrame * CFrame.new(0,0,-3)
end
end)
--// The Character Buff
local char = game.Players.LocalPlayer.Character
spawn(function()
repeat wait()
for _,v in pairs(char:GetChildren()) do
if v.Name == 'DrainStamina' or v.Name == 'DrainSprint' or v.Name == 'Hit' or v.Name == 'Hitt' or v.Name == 'Damaged' or v.Name == 'Grounded' or v.Name == 'StayGrounded' or v.Name == 'KnockBack' or v.Name == 'Walled' then
v:Destroy()
end
end
until false
end)
char = game.Players.LocalPlayer.Character
spawn(function()
repeat wait()
for _,v in pairs(char:GetChildren()) do
if v.Name == 'DrainStamina' or v.Name == 'DrainSprint' or v.Name == 'Hit' or v.Name == 'Hitt' or v.Name == 'Damaged' or v.Name == 'Grounded' or v.Name == 'StayGrounded' or v.Name == 'KnockBack' or v.Name == 'Walled' then
v:Destroy()
end
end
until false
end)
char = game.Players.LocalPlayer.Character
spawn(function()
repeat wait()
for _,v in pairs(char:GetChildren()) do
if v.Name == 'DrainStamina' or v.Name == 'DrainSprint' or v.Name == 'Hit' or v.Name == 'Hitt' or v.Name == 'Damaged' or v.Name == 'Grounded' or v.Name == 'StayGrounded' or v.Name == 'KnockBack' or v.Name == 'Walled' then
v:Destroy()
end
end
until false
end)
char = game.Players.LocalPlayer.Character
spawn(function()
repeat wait()
for _,v in pairs(char:GetChildren()) do
if v.Name == 'DrainStamina' or v.Name == 'DrainSprint' or v.Name == 'Hit' or v.Name == 'Hitt' or v.Name == 'Damaged' or v.Name == 'Grounded' or v.Name == 'StayGrounded' or v.Name == 'KnockBack' or v.Name == 'Walled' then
v:Destroy()
end
end
until false
end)
--// 1
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "2" then
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "Chatted",
[3] = [[[ * Admin Panel * ]
Pressed = Fling]],
[4] = Color3.fromRGB(255,0,0)
}
local Event = game:GetService("ReplicatedStorage").Remotes.Events
Event:FireServer(A_1)
local args = {
[1] = getrenv()._G.Pass,
[2] = game:service("Players").LocalPlayer.Backpack.Main.LockOnScript.LockOn.Value,
[3] = {
["Type"] = "Knockback",
["HitEffect"] = "YellowHitEffect",
["HurtAnimation"] = game:GetService("ReplicatedStorage").Animations.HurtAnimations.Stunned,
["HitTime"] = 1,
["Sound"] = game:GetService("ReplicatedStorage").Sounds.HeavyGunShot,
["Damage"] = 0
}
}
game:GetService("ReplicatedStorage").Remotes.Damage:InvokeServer(unpack(args))
local char = game.Players.LocalPlayer.Character
local clone = script:Clone()
clone.Parent = char
local A_1 = getrenv()._G.Pass
local A_2 = game:GetService("Players").LocalPlayer.Backpack.Main.LockOnScript.LockOn.Value
local A_3 =
{
["HitTime"] = 1,
["Type"] = "Normal",
["HitEffect"] = "KnifeHitEffect",
["HurtAnimation"] = game:GetService("ReplicatedStorage").Animations.HurtAnimations.Stunned,
["Sound"] = game:GetService("ReplicatedStorage").Sounds.KnifeHit,
["Velocity"] = Vector3.new(0,0.0,0),
["CombatInv"] = true,
["Damage"] = 10
}
local Event = game:GetService("ReplicatedStorage").Remotes.Damage
Event:InvokeServer(A_1, A_2, A_3)
end
end)
--// 3
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "3" then
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "Chatted",
[3] = [[[ * Admin Panel * ]
Pressed = Kill]],
[4] = Color3.fromRGB(255,0,0)
}
local Event = game:GetService("ReplicatedStorage").Remotes.Events
Event:FireServer(A_1)
local A_1 = getrenv()._G.Pass
local A_2 = game:GetService("Players").LocalPlayer.Backpack.Main.LockOnScript.LockOn.Value
local A_3 =
{
["HitTime"] = 1,
["Type"] = "Knockback",
["HitEffect"] = "KnifeHitEffect",
["HurtAnimation"] = game:GetService("ReplicatedStorage").Animations.HurtAnimations.Stunned,
["Sound"] = game:GetService("ReplicatedStorage").Sounds.KnifeHit,
["Velocity"] = Vector3.new(0,0.0,0),
["CombatInv"] = true,
["Damage"] = "nan"
}
local Event = game:GetService("ReplicatedStorage").Remotes.Damage
Event:InvokeServer(A_1, A_2, A_3)
end
end)
--// 1
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "1" then
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "Chatted",
[3] = [[[ * Admin Panel * ]
Pressed = Freeze]],
[4] = Color3.fromRGB(255,0,0)
}
local Event = game:GetService("ReplicatedStorage").Remotes.Events
Event:FireServer(A_1)
local args = {
[1] = getrenv()._G.Pass,
[2] = game:service("Players").LocalPlayer.Backpack.Main.LockOnScript.LockOn.Value,
[3] = {
["Type"] = "Knockback",
["HitEffect"] = "YellowHitEffect",
["HurtAnimation"] = game:GetService("ReplicatedStorage").Animations.HurtAnimations.Stunned,
["HitTime"] = 1,
["Sound"] = game:GetService("ReplicatedStorage").Sounds.HeavyGunShot,
["Damage"] = 0
}
}
game:GetService("ReplicatedStorage").Remotes.Damage:InvokeServer(unpack(args))
local char = game.Players.LocalPlayer.Character
local clone = script:Clone()
clone.Parent = char
end
end)
--// z
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "z" then
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "Chatted",
[3] = [[[ * Admin Panel * ]
StarGlitcherWings = SetVisible [Mayhem] ]],
[4] = Color3.fromRGB(255,0,0)
}
local Event = game:GetService("ReplicatedStorage").Remotes.Events
Event:FireServer(A_1)
player = game.Players.LocalPlayer
char = player.Character
local TweenService = game:GetService("TweenService")
_G.nowings = true
local LockOn = player.Backpack.Main.LockOnScript.LockOn.Value
--right
local part1 = Instance.new("Part")
part1.Name = "part1"
part1.Parent = char
part1.Anchored = false
part1.CanCollide = false
part1.Transparency = 0.6
part1.Massless = true
local part2 = Instance.new("Part")
part2.Name = "part2"
part2.Parent = char
part2.Anchored = false
part2.CanCollide = false
part2.Transparency = 0.6
part2.Massless = true
local part3 = Instance.new("Part")
part3.Name = "part3"
part3.Parent = char
part3.Anchored = false
part3.CanCollide = false
part3.Transparency = 0.6
part3.Massless = true
--weldright
local weld1 = Instance.new("Weld")
weld1.Parent = pla
weld1.Part0 = LockOn.HumanoidRootPart
weld1.Part1 = part1
weld1.C0 = CFrame.new(2,0,0.5)*CFrame.Angles(0, 0, math.rad(25))
weld1.Name = "weld1"
local weld2 = Instance.new("Weld")
weld2.Parent = char.HumanoidRootPart
weld2.Part0 = LockOn.HumanoidRootPart
weld2.Part1 = part2
weld2.C0 = CFrame.new(2,2,0.9)*CFrame.Angles(0, 0, math.rad(35))
weld2.Name = "weld2"
local weld3 = Instance.new("Weld")
weld3.Parent = char.HumanoidRootPart
weld3.Part0 = LockOn.HumanoidRootPart
weld3.Part1 = part3
weld3.C0 = CFrame.new(2,3,1.4)*CFrame.Angles(0, 0, math.rad(75))
weld3.Name = "weld3"
local c0s = {
CFrame.new(2.8,1.5,0.5)*CFrame.Angles(0, 0, math.rad(35)),
CFrame.new(2.6,3,0.5)*CFrame.Angles(0, 0, math.rad(80)),
CFrame.new(2.4,5,0.5)*CFrame.Angles(0, 0, math.rad(110)),
CFrame.new(-2.8,1.5,0.5)*CFrame.Angles(0, 0, math.rad(-35)),
CFrame.new(-2.6,3,0.5)*CFrame.Angles(0, 0, math.rad(-80)),
CFrame.new(-2.4,5,0.5)*CFrame.Angles(0, 0, math.rad(-110))
}
local welds = {weld1,weld2,weld3}
--tweenanimation
for i = 1,#welds do
local part = welds[i]
local Info = TweenInfo.new(
2, --Length (seconds)
Enum.EasingStyle.Sine, --Easing Style
Enum.EasingDirection.InOut, --Easing Direction
-1, --Times Repeated
true, --reversed
0 --deşau
)
local Goals = {
C0 = c0s[i]
}
local wingtween = TweenService:Create(part, Info, Goals)
wingtween:Play()
end
for i = 1,3,1 do
spawn(function()
local args = {
[1] = {
[1] = getrenv()._G.Pass,
[2] = "KnifeProjectile",
[3] = "Spawn",
[4] = Vector3.new(0, 3000, 0)
}
}
game:GetService("ReplicatedStorage").Remotes.CharaMoves:InvokeServer(unpack(args))
end)
end
local detect
local detect2
local val = Instance.new('NumberValue',char)
val.Name = 'Wingpartslashcount'
local num = 0
local tab = {}
local tab2 = {}
detect = char.Attacks.ChildAdded:Connect(function(child)
if child.Name == "KnifeSlashProjectile" then
table.insert(tab,child)
child:WaitForChild("ParticleEmitter"):Destroy()
child:WaitForChild("BodyVelocity"):Destroy()
local bp = Instance.new('BodyPosition',child)
bp.Name = 'Client'
bp.P = 30000
bp.D = 150
bp.Position = char.HumanoidRootPart.Position
table.insert(tab2,bp)
num = num + 1
val.Value = num
end
end)
_G.nowings = false
detect2 = val:GetPropertyChangedSignal("Value"):Connect(function(amo)
if val.Value == 3 then
for i = 1,#tab do
spawn(function()
local part = welds[i].Part1
local sl = tab[i]
local bs = tab2[i]
part.Transparency = 1
while true do game['Run Service'].Heartbeat:wait()
if _G.nowings then break end
local cfr = part.CFrame*CFrame.Angles(0,math.rad(90),math.rad(180))
bs.Position = cfr.p
sl.CFrame = cfr
end
part:Destroy()
sl:Destroy()
end)
end
detect:Disconnect()
detect2:Disconnect()
val:Destroy()
end
end)
end
end)
--// x
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "x" then
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "Chatted",
[3] = [[[ * Admin Panel * ]
StarGlitcherWings = SetVisible [Divinity] ]],
[4] = Color3.fromRGB(255,0,0)
}
local Event = game:GetService("ReplicatedStorage").Remotes.Events
Event:FireServer(A_1)
player = game.Players.LocalPlayer
char = player.Character
local TweenService = game:GetService("TweenService")
_G.nowings = true
local LockOn = player.Backpack.Main.LockOnScript.LockOn.Value
local slashes = {}
local p = game:GetService("Players").LocalPlayer
local character = p.Character or p.CharacterAdded:Wait()
local mouse = p:GetMouse()
local setOrb = false
character:WaitForChild("Attacks").ChildAdded:Connect(function(child)
if child.Name == "YellowBlast" and #slashes <= 0 then
child:WaitForChild("Hitted"):Destroy()
table.insert(slashes,child)
end
end)
local speed = 0.01
local lradius = 15
local radius = 10
local ts = 0
local rad,cos,sin = math.rad,math.cos,math.sin
local root = LockOn.HumanoidRootPart
game:GetService("RunService").RenderStepped:Connect(function()
for i,v in pairs(slashes) do
if not v or not v.Parent then
table.remove(slashes,i)
return
end
local y = root.Position.Y
local z = root.Position.Z
local x = root.Position.X + radius*cos(rad(ts))
v.Position = Vector3.new(x,y,root.Position.Z + radius*sin(rad(ts)))
ts = ts + 5
end
end)
player = game.Players.LocalPlayer
char = player.Character
for _,v in pairs(char:GetDescendants()) do
if v.Name == 'KnifeSlashProjectile' then
v:Destroy()
end
end
player = game.Players.LocalPlayer
char = player.Character
for _,v in pairs(char:GetDescendants()) do
if v.Name == 'KnifeSlashProjectilePurple' then
v:Destroy()
end
end
player = game.Players.LocalPlayer
char = player.Character
local TweenService = game:GetService("TweenService")
_G.nowings = true
wait(.1)
--right
local part1 = Instance.new("Part")
part1.Name = "part1"
part1.Parent = char
part1.Anchored = false
part1.CanCollide = false
part1.Transparency = 0.6
part1.Massless = true
local part2 = Instance.new("Part")
part2.Name = "part2"
part2.Parent = char
part2.Anchored = false
part2.CanCollide = false
part2.Transparency = 0.6
part2.Massless = true
local part3 = Instance.new("Part")
part3.Name = "part3"
part3.Parent = char
part3.Anchored = false
part3.CanCollide = false
part3.Transparency = 0.6
part3.Massless = true
--left
local part1L = Instance.new("Part")
part1L.Name = "part1L"
part1L.Parent = char
part1L.Anchored = false
part1L.CanCollide = false
part1L.Transparency = 0.6
part1L.Massless = true
local part2L = Instance.new("Part")
part2L.Name = "part2L"
part2L.Parent = char
part2L.Anchored = false
part2L.CanCollide = false
part2L.Transparency = 0.6
part2L.Massless = true
local part3L = Instance.new("Part")
part3L.Name = "part3L"
part3L.Parent = char
part3L.Anchored = false
part3L.CanCollide = false
part3L.Transparency = 0.6
part3L.Massless = true
--weldright
local weld1 = Instance.new("Weld")
weld1.Parent = char.HumanoidRootPart
weld1.Part0 = LockOn.Torso
weld1.Part1 = part1
weld1.C0 = CFrame.new(2,0,0.5)*CFrame.Angles(0, 0, math.rad(25))
weld1.Name = "weld1"
local weld2 = Instance.new("Weld")
weld2.Parent = char.HumanoidRootPart
weld2.Part0 = LockOn.Torso
weld2.Part1 = part2
weld2.C0 = CFrame.new(2,2,0.9)*CFrame.Angles(0, 0, math.rad(35))
weld2.Name = "weld2"
local weld3 = Instance.new("Weld")
weld3.Parent = char.HumanoidRootPart
weld3.Part0 = LockOn.Torso
weld3.Part1 = part3
weld3.C0 = CFrame.new(2,3,1.3)*CFrame.Angles(0, 0, math.rad(75))
weld3.Name = "weld3"
--weld left
local weld1L = Instance.new("Weld")
weld1L.Parent = char.HumanoidRootPart
weld1L.Part0 = LockOn.Torso
weld1L.Part1 = part1L
weld1L.C0 = CFrame.new(-2,0,0.5)*CFrame.Angles(0, 0, math.rad(-25))
weld1L.Name = "weld1L"
local weld2L = Instance.new("Weld")
weld2L.Parent = char.HumanoidRootPart
weld2L.Part0 = LockOn.Torso
weld2L.Part1 = part2L
weld2L.C0 = CFrame.new(-2,2,0.9)*CFrame.Angles(0, 0, math.rad(-35))
weld2L.Name = "weld2L"
local weld3L = Instance.new("Weld")
weld3L.Parent = char.HumanoidRootPart
weld3L.Part0 = LockOn.Torso
weld3L.Part1 = part3L
weld3L.C0 = CFrame.new(-2,3,1.3)*CFrame.Angles(0, 0, math.rad(-75))
weld3L.Name = "weld3L"
local c0s = {
CFrame.new(2.8,1.5,0.5)*CFrame.Angles(0, 0, math.rad(35)),
CFrame.new(2.6,3,0.5)*CFrame.Angles(0, 0, math.rad(80)),
CFrame.new(2.4,5,0.5)*CFrame.Angles(0, 0, math.rad(110)),
CFrame.new(-2.8,1.5,0.5)*CFrame.Angles(0, 0, math.rad(-35)),
CFrame.new(-2.6,3,0.5)*CFrame.Angles(0, 0, math.rad(-80)),
CFrame.new(-2.4,5,0.5)*CFrame.Angles(0, 0, math.rad(-110))
}
local welds = {weld1,weld2,weld3,weld1L,weld2L,weld3L}
--tweenanimation
for i = 1,#welds do
local part = welds[i]
local Info = TweenInfo.new(
2, --Length (seconds)
Enum.EasingStyle.Sine, --Easing Style
Enum.EasingDirection.InOut, --Easing Direction
-1, --Times Repeated
true, --reversed
0 --deşau
)
local Goals = {
C0 = c0s[i]
}
local wingtween = TweenService:Create(part, Info, Goals)
wingtween:Play()
end
for i = 1,6,1 do
spawn(function()
local args = {
[1] = {
[1] = getrenv()._G.Pass,
[2] = "KnifeProjectileOrange",
[3] = "Spawn",
[4] = Vector3.new(0, 3000, 0)
}
}
game:GetService("ReplicatedStorage").Remotes.CharaMoves:InvokeServer(unpack(args))
end)
end
local detect
local detect2
local val = Instance.new('NumberValue',char)
val.Name = 'Wingpartslashcount'
local num = 0
local tab = {}
local tab2 = {}
detect = char.Attacks.ChildAdded:Connect(function(child)
if child.Name == "KnifeSlashProjectileOrange" then
table.insert(tab,child)
child:WaitForChild("ParticleEmitter"):Destroy()
child:WaitForChild("BodyVelocity"):Destroy()
local bp = Instance.new('BodyPosition',child)
bp.Name = 'Client'
bp.P = 30000
bp.D = 150
bp.Position = char.HumanoidRootPart.Position
table.insert(tab2,bp)
num = num + 1
val.Value = num
end
end)
_G.nowings = false
detect2 = val:GetPropertyChangedSignal("Value"):Connect(function(amo)
if val.Value == 6 then
for i = 1,#tab do
spawn(function()
local part = welds[i].Part1
local sl = tab[i]
local bs = tab2[i]
part.Transparency = 1
while true do game['Run Service'].Heartbeat:wait()
if _G.nowings then break end
local cfr = part.CFrame*CFrame.Angles(0,math.rad(90),math.rad(180))
bs.Position = cfr.p
sl.CFrame = cfr
end
part:Destroy()
sl:Destroy()
end)
end
detect:Disconnect()
detect2:Disconnect()
val:Destroy()
end
end)
game:GetService("ReplicatedStorage").Remotes.CharaMoves:InvokeServer({getrenv()._G.Pass, "KnifeProjectileYellow", "Spawn", Vector3.new(0,0,0)})
end
end)
--// c
local mouse = game.Players.LocalPlayer:GetMouse()
mouse.KeyDown:Connect(function(k)
if k == "c" then
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "Chatted",
[3] = [[[ * Admin Panel * ]
StarGlitcherWings = SetVisible [Catostrophe] ]],
[4] = Color3.fromRGB(255,0,0)
}
local Event = game:GetService("ReplicatedStorage").Remotes.Events
Event:FireServer(A_1)
player = game.Players.LocalPlayer
char = player.Character
local TweenService = game:GetService("TweenService")
_G.nowings = true
local LockOn = player.Backpack.Main.LockOnScript.LockOn.Value
--right
local part1 = Instance.new("Part")
part1.Name = "part1"
part1.Parent = char
part1.Anchored = false
part1.CanCollide = false
part1.Transparency = 0.6
part1.Massless = true
local part2 = Instance.new("Part")
part2.Name = "part2"
part2.Parent = char
part2.Anchored = false
part2.CanCollide = false
part2.Transparency = 0.6
part2.Massless = true
local part3 = Instance.new("Part")
part3.Name = "part3"
part3.Parent = char
part3.Anchored = false
part3.CanCollide = false
part3.Transparency = 0.6
part3.Massless = true
--left
local part1L = Instance.new("Part")
part1L.Name = "part1L"
part1L.Parent = char
part1L.Anchored = false
part1L.CanCollide = false
part1L.Transparency = 0.6
part1L.Massless = true
local part2L = Instance.new("Part")
part2L.Name = "part2L"
part2L.Parent = char
part2L.Anchored = false
part2L.CanCollide = false
part2L.Transparency = 0.6
part2L.Massless = true
local part3L = Instance.new("Part")
part3L.Name = "part3L"
part3L.Parent = char
part3L.Anchored = false
part3L.CanCollide = false
part3L.Transparency = 0.6
part3L.Massless = true
--weldright
local weld1 = Instance.new("Weld")
weld1.Parent = char.HumanoidRootPart
weld1.Part0 = LockOn.Torso
weld1.Part1 = part1
weld1.C0 = CFrame.new(2,0,0.5)*CFrame.Angles(0, 0, math.rad(25))
weld1.Name = "weld1"
local weld2 = Instance.new("Weld")
weld2.Parent = char.HumanoidRootPart
weld2.Part0 = LockOn.Torso
weld2.Part1 = part2
weld2.C0 = CFrame.new(2,2,0.5)*CFrame.Angles(0, 0, math.rad(35))
weld2.Name = "weld2"
local weld3 = Instance.new("Weld")
weld3.Parent = char.HumanoidRootPart
weld3.Part0 = LockOn.Torso
weld3.Part1 = part3
weld3.C0 = CFrame.new(2,3,0.5)*CFrame.Angles(0, 0, math.rad(65))
weld3.Name = "weld3"
--weld left
local weld1L = Instance.new("Weld")
weld1L.Parent = char.HumanoidRootPart
weld1L.Part0 = LockOn.Torso
weld1L.Part1 = part1L
weld1L.C0 = CFrame.new(-2,0,0.5)*CFrame.Angles(0, 0, math.rad(-25))
weld1L.Name = "weld1L"
local weld2L = Instance.new("Weld")
weld2L.Parent = char.HumanoidRootPart
weld2L.Part0 = LockOn.Torso
weld2L.Part1 = part2L
weld2L.C0 = CFrame.new(-2,2,0.5)*CFrame.Angles(0, 0, math.rad(-35))
weld2L.Name = "weld2L"
local weld3L = Instance.new("Weld")
weld3L.Parent = char.HumanoidRootPart
weld3L.Part0 = LockOn.Torso
weld3L.Part1 = part3L
weld3L.C0 = CFrame.new(-2,3,0.5)*CFrame.Angles(0, 0, math.rad(-65))
weld3L.Name = "weld3L"
local c0s = {
CFrame.new(2.8,1.5,0.5)*CFrame.Angles(0, 0, math.rad(35)),
CFrame.new(3,3,0.5)*CFrame.Angles(0, 0, math.rad(60)),
CFrame.new(4,5,0.5)*CFrame.Angles(0, 0, math.rad(80)),
CFrame.new(-2.8,1.5,0.5)*CFrame.Angles(0, 0, math.rad(-35)),
CFrame.new(-3,3,0.5)*CFrame.Angles(0, 0, math.rad(-60)),
CFrame.new(-4,5,0.5)*CFrame.Angles(0, 0, math.rad(-80))
}
local welds = {weld1,weld2,weld3,weld1L,weld2L,weld3L}
--tweenanimation
for i = 1,#welds do
local part = welds[i]
local Info = TweenInfo.new(
2, --Length (seconds)
Enum.EasingStyle.Sine, --Easing Style
Enum.EasingDirection.InOut, --Easing Direction
-1, --Times Repeated
true, --reversed
0 --deşau
)
local Goals = {
C0 = c0s[i]
}
local wingtween = TweenService:Create(part, Info, Goals)
wingtween:Play()
end
for i = 1,2,1 do
spawn(function()
local A_1 = {
[1] = getrenv()._G.Pass,
[2] = "KnifeProjectilePurple",
[3] = "Spawn",