View difference between Paste ID: W8gA532K and uNmWZQfw
SHOW: | | - or go back to the newest paste.
1
local p = game.Players.LocalPlayer
2
local char = p.Character
3
local hed = char.Head
4
local LocalPlayer = p
5
6
local Player = game.Players.localPlayer
7
local Character = p.Character
8
9
local LeftArm2 = Character["Left Arm"]
10
local RightArm2 = Character["Right Arm"]
11
local LeftLeg2 = Character["Left Leg"]
12
local RightLeg2 = Character["Right Leg"]
13
local Head2 = Character.Head
14
local Torso2 = Character.Torso
15
16
local player = game.Players.LocalPlayer
17
local shirt = player.Character:WaitForChild("Shirt")
18
local pants = player.Character:WaitForChild("Pants")
19
20
wait()
21
shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=536831523"
22
pants.PantsTemplate = "http://www.roblox.com/asset/?id=547264976"
23
char.Head.face.Texture = "rbxassetid://605435926"
24
25
char.Humanoid.MaxHealth = math.huge
26
char.Humanoid.Health = math.huge
27
char.Humanoid.MaxHealth = math.huge
28
char.Humanoid.Health = math.huge
29
char.Humanoid.MaxHealth = math.huge
30
char.Humanoid.Health = math.huge
31
char.Humanoid.MaxHealth = math.huge
32
char.Humanoid.Health = math.huge
33
char.Humanoid.MaxHealth = math.huge
34
char.Humanoid.Health = math.huge
35
char.Humanoid.MaxHealth = math.huge
36
char.Humanoid.Health = math.huge
37
38
-- Objects
39
 
40
local ScreenGui = Instance.new("ScreenGui")
41
local TextButton = Instance.new("TextButton")
42
 
43
-- Properties
44
 
45
ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
46
 
47
TextButton.Parent = ScreenGui
48
TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
49
TextButton.Size = UDim2.new(0, 200, 0, 50)
50
TextButton.Font = Enum.Font.SourceSans
51
TextButton.FontSize = Enum.FontSize.Size14
52
TextButton.Text = "Dio laugh"
53
TextButton.TextSize = 14
54
 
55
--[[Function/s being made!]]
56
function PlayMusic(ID)
57
    for i, v in pairs (game.Workspace:GetChildren()) do
58
    if v:IsA("Sound") then
59
    end
60
    end
61
    local music = Instance.new("Sound")
62
    local asset = "rbxassetid://"
63
    music.SoundId = asset .. ID
64
    music.Parent = workspace
65
    music.Volume = 10
66
    music.Looped = false
67
    music:Play()
68
end
69
--[[Connecting functions!]]
70
TextButton.MouseButton1Down:connect(function()
71
PlayMusic(1238240145)
72
end)
73
74
	for i,v in pairs(char:GetChildren()) do
75
		if v.ClassName == "Accessory" or v.ClassName == "Hat" then
76
			v:destroy()
77
		end
78
	end
79
80
local Hair = Instance.new("Part")
81
Hair.Parent = char
82
Hair.Name = "Hair"
83
Hair.Size = Vector3.new(1, 1, 1)
84
Hair.CFrame = char.Head.CFrame
85
Hair:BreakJoints()
86
Hair.CanCollide = false
87
Hair.TopSurface = "Smooth"
88
Hair.BottomSurface = "Smooth"
89
Hair.BrickColor = BrickColor.new("Gold")
90
Weld = Instance.new("Weld") 
91
Weld.Name = "Weld"
92
Weld.Part0 = char.Head 
93
Weld.Part1 = Hair
94
Weld.Parent = char.Head 
95
Weld.C0 = CFrame.new(0.1,0,0.2)*CFrame.fromEulerAnglesXYZ(0,0,0) 
96
Mesh = Instance.new("SpecialMesh")
97
Mesh.Parent = Hair
98
Mesh.MeshId = "rbxassetid://886288384"
99
Mesh.TextureId = "rbxassetid://886289004"
100
Mesh.Scale = Vector3.new(0.11,0.1,0.08)
101
102
cut = Instance.new("Sound", Character)
103
cut.SoundId = "https://www.roblox.com/asset/?id=97095069"
104
cut.Volume = 1.5
105
thri = Instance.new("Sound", Character)
106
thri.SoundId = "https://www.roblox.com/asset/?id=186311262"
107
thri.Volume = 2.5
108
WRY = Instance.new("Sound", Character)
109
WRY.SoundId = "https://www.roblox.com/asset/?id=910713928"
110
WRY.Volume = 5
111
112
ff = Instance.new("ForceField", game.Players.LocalPlayer.Character)
113
ff.Visible = false
114
115
local Players=game:service'Players'
116
local Player=Players.LocalPlayer
117
local Mouse=Player:GetMouse''
118
local RenderStepped=game:service'RunService'.RenderStepped
119
120
local MeshId='http://www.roblox.com/asset?id=202083123'
121
local TextureId='http://www.roblox.com/asset/?id=189436355'
122
123
local KnifeSpeed= 120
124
125
Mouse.Button1Down:connect(function()
126
cut:Play()
127
if Mouse.Target then
128
local Knife=Instance.new('Part',Player.Character)
129
Knife.CanCollide=false
130
Knife.Size=Vector3.new(2,2,2)
131
Knife.CFrame=Player.Character.Torso.CFrame
132
local KnifeMesh=Instance.new('SpecialMesh',Knife)
133
KnifeMesh.MeshType='FileMesh'
134
KnifeMesh.MeshId=MeshId
135
KnifeMesh.TextureId=TextureId
136
KnifeMesh.Scale=Vector3.new(1,1,1)
137
local BodyVel=Instance.new('BodyVelocity',Knife)
138
BodyVel.maxForce=Vector3.new(math.huge,math.huge,math.huge)
139
local BodyGyro=Instance.new('BodyGyro',Knife)
140
BodyGyro.maxTorque=Vector3.new(math.huge,math.huge,math.huge)
141
BodyGyro.P=2e4
142
coroutine.wrap(function()
143
RenderStepped:connect(function()
144
BodyGyro.cframe=CFrame.new(Knife.Position,Mouse.Hit.p)
145
BodyVel.velocity=Knife.CFrame.lookVector*KnifeSpeed
146
end)
147
end)()
148
Knife.Touched:connect(function(p)
149
if p.Parent~=Player.Character and p.Parent:FindFirstChild'Humanoid' then
150
p.Parent:BreakJoints()
151
Knife:Destroy''
152
thri:Play()
153
end
154
end)
155
end
156
end)
157
158
mse = Player:GetMouse()
159
160
sound = Instance.new("Sound", Character)
161
sound.SoundId = "https://www.roblox.com/asset/?id=840567549"
162
sound.Volume = 2.5
163
sound2 = Instance.new("Sound", Character)
164
sound2.SoundId = "https://www.roblox.com/asset/?id=616594208"
165
sound2.Volume = 2.5
166
sound3 = Instance.new("Sound", Character)
167
sound3.SoundId = "https://www.roblox.com/asset/?id=616576400"
168
sound3.Volume = 1.8
169
sound4 = Instance.new("Sound", Character)
170
sound4.SoundId = "https://www.roblox.com/asset/?id=616576400"
171
sound4.Volume = 2
172
TSTheme = Instance.new("Sound", Character)
173
TSTheme.SoundId = "https://www.roblox.com/asset/?id=910713928"
174
TSTheme.Volume = 2
175
canworld = true
176
mse.KeyDown:connect(function(key)
177
	key = key:lower()
178
	if key == "t" then
179
		if canworld == false then return end
180
		if canworld then
181
		canworld = false
182
		sound3:Play()
183
		sound:Play()
184
		sound4:Play()
185
		TSTheme:Play()
186
187
		local function spawnpart()
188
		sphere = Instance.new("Part")
189
		--game.Debris:AddItem(sphere,3)
190
		local sm = Instance.new("SpecialMesh", sphere)
191
		sm.MeshType = "Sphere"
192
		sphere.Transparency = 0.5
193
		sphere.Anchored = true
194
		sphere.CanCollide = false
195
		sphere.Material = "Neon"
196
		sphere.BrickColor = BrickColor.new("Black")
197
		end
198
		
199
		local function weld(lol)
200
			local weld = Instance.new("Weld", Player.Character.Torso)
201
			weld.Part0 = Player.Character.Torso
202
			weld.Part1 = lol
203
			weld.C0 = Player.Character.Torso.CFrame:inverse()
204
			weld.C1 = lol.CFrame:inverse()
205
		end
206
		wait()
207
		spawnpart()
208
			for i, v in pairs(game.Players:GetChildren()) do
209
			t = v.Character:FindFirstChild("Torso")
210
			if t then
211
				t.Anchored = true
212
				Player.Character:FindFirstChild("Torso").Anchored = false
213
			end
214
			RA = v.Character:FindFirstChild("Right Arm")
215
			if RA then
216
				RA.Anchored = true
217
				Player.Character:FindFirstChild("Right Arm").Anchored = false
218
			end
219
			LA = v.Character:FindFirstChild("Left Arm")
220
			if LA then
221
				LA.Anchored = true
222
				Player.Character:FindFirstChild("Left Arm").Anchored = false
223
			end
224
			RL = v.Character:FindFirstChild("Right Leg")
225
			if RL then
226
				RL.Anchored = true
227
				Player.Character:FindFirstChild("Right Leg").Anchored = false
228
			end
229
			LL = v.Character:FindFirstChild("Left Leg")
230
			if LL then
231
				LL.Anchored = true
232
				Player.Character:FindFirstChild("Left Leg").Anchored = false
233
			end
234
		end
235
		weld(sphere)
236
		cce = Instance.new("ColorCorrectionEffect", game.Lighting)
237
		cce.Saturation = -5
238
		--game.Debris:AddItem(cce, 5)
239
		sphere.Parent = Character.Torso
240
		for i = 1,3 do
241
			sphere.Size = sphere.Size + Vector3.new(50,50,50)
242
			wait()
243
			end
244
wait()
245
                        sphere:Destroy()
246
KnifeSpeed = 0
247
		cce.Saturation = -0.1
248
		wait(0.3)
249
		cce.Saturation = -0.2
250
		wait(0.3)
251
		cce.Saturation = -0.3
252
		wait(0.2)
253
	        cce.Saturation = -1.5
254
                wait()
255
		end
256
	end
257
end
258
)
259
260
mse.KeyDown:connect(function(key)
261
	key = key:lower()
262
	if key == "y" then
263
canworld = true
264
		sound2:Play()
265
wait()
266
KnifeSpeed = 1
267
		cce.Saturation = -1.3
268
		wait(0.5)
269
KnifeSpeed = 1.2
270
		cce.Saturation = -0.5
271
		wait(0.5)
272
KnifeSpeed = 1.4
273
		cce.Saturation = -0.4
274
		wait(0.3)
275
KnifeSpeed = 1.5
276
		cce.Saturation = -0.2
277
		wait(0.2)
278
	        cce.Saturation = 0
279
280
		for i, v in pairs(game.Players:GetChildren()) do
281
		t = v.Character:FindFirstChild("Torso")
282
			if t then
283
				t.Anchored = false
284
			end
285
			RA = v.Character:FindFirstChild("Right Arm")
286
			if RA then
287
				RA.Anchored = false
288
			end
289
			LA = v.Character:FindFirstChild("Left Arm")
290
			if LA then
291
				LA.Anchored = false
292
			end
293
			RL = v.Character:FindFirstChild("Right Leg")
294
			if RL then
295
				RL.Anchored = false
296
			end
297
			LL = v.Character:FindFirstChild("Left Leg")
298
			if LL then
299
				LL.Anchored = false
300
			end
301
		end
302
KnifeSpeed = 120
303
TSTheme:Stop()
304
end
305
end)
306
307
308
309
310
311
--Edited by VV_rk
312
-- date:7/15/17
313
function TakeDamage(hum, dmg)
314
  hum:TakeDamage(dmg)
315
end
316
plr = game.Players.LocalPlayer
317
repeat
318
  wait(0.4)
319
until plr.Character
320
chr = plr.Character
321
human = chr:FindFirstChild("Humanoid")
322
human.Name = "hi"
323
human.MaxHealth, human.Health = math.huge, math.huge
324
mouse = plr:GetMouse()
325
cam = workspace.CurrentCamera
326
selected = false
327
equipd = false
328
tors = chr.Torso
329
rarm = chr["Right Arm"]
330
larm = chr["Left Arm"]
331
rleg = chr["Right Leg"]
332
lleg = chr["Left Leg"]
333
hrp = chr.HumanoidRootPart
334
hed = chr.Head
335
anim = human.Animator
336
activu = false
337
appeared = false
338
animpose = nil
339
POSU = false
340
local wherto = hrp
341
local addcfr = CFrame.new(0, 0, 0)
342
Heartbeat = Instance.new("BindableEvent")
343
Heartbeat.Name = "Heartbeat"
344
Heartbeat.Parent = script
345
frame = 0.03333333333333333
346
tf = 0
347
348
349
350
game:GetService("RunService").Heartbeat:connect(function(s, p)
351
  tf = tf + s
352
  if tf >= frame then
353
    for i = 1, math.floor(tf / frame) do
354
      Heartbeat:Fire()
355
    end
356
    tf = tf - frame * math.floor(tf / frame)
357
  end
358
end)
359
function swait(num)
360
  if num == 0 or num == nil then
361
    Heartbeat.Event:wait()
362
  else
363
    for i = 1, num do
364
      Heartbeat.Event:wait()
365
    end
366
  end
367
end
368
tool = Instance.new("Tool")
369
tool.CanBeDropped = false
370
tool.RequiresHandle = false
371
tool.Name = "Za Warudo"
372
tool.Parent = plr.Backpack
373
modz = Instance.new("Model")
374
modz.Name = "efx"
375
modz.Parent = chr
376
ZaWarudo = Instance.new("Model")
377
ZaWarudo.Name = "Za Warudo"
378
ZaWarudo.Parent = chr
379
RSC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
380
RSC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
381
LSC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
382
LSC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
383
RHC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
384
RHC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
385
LHC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
386
RJC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
387
LHC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
388
NC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
389
NC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
390
RJC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
391
RS = tors:FindFirstChild("Right Shoulder")
392
LS = tors:FindFirstChild("Left Shoulder")
393
RH = tors:FindFirstChild("Right Hip")
394
LH = tors:FindFirstChild("Left Hip")
395
RJ = hrp:FindFirstChild("RootJoint")
396
N = tors:FindFirstChild("Neck")
397
cf = CFrame.new
398
ang = CFrame.Angles
399
rd = math.rad
400
rd2 = math.random
401
function nooutline(p)
402
  p.TopSurface, p.BottomSurface, p.LeftSurface, p.RightSurface, p.FrontSurface, p.BottomSurface = 10, 10, 10, 10, 10, 10
403
end
404
function makepart(color, name, reflec, mater, parnt, cfram)
405
  local port = Instance.new("Part")
406
  port.BrickColor = BrickColor.new(color)
407
  port.Name = name
408
  port.Transparency = 1
409
  nooutline(port)
410
  port.Reflectance = reflec
411
  port.Material = mater
412
  port.Anchored = false
413
  port.CanCollide = false
414
  port.Locked = true
415
  port.Size = Vector3.new(0.2, 0.2, 0.2)
416
  port.Parent = parnt
417
  return port
418
end
419
function makemesh(meshtype, scale, meshid, parent)
420
  local mes = Instance.new("SpecialMesh")
421
  mes.MeshType = meshtype
422
  mes.Scale = scale
423
  if meshtype == "FileMesh" then
424
    mes.MeshId = meshid
425
  end
426
  mes.Parent = parent
427
  return mes
428
end
429
function makemotor(parent, p0, p1, c0, c1)
430
  swait()
431
  local wel = Instance.new("Motor6D")
432
  wel.Part0 = p0
433
  wel.Part1 = p1
434
  wel.C0 = c0
435
  if c1 ~= nil then
436
    wel.C1 = c1
437
  end
438
  wel.Parent = parent
439
  return wel
440
end
441
local konodioda = Instance.new("Sound")
442
konodioda.SoundId = "rbxassetid://276263776"
443
konodioda.Volume = 3.5
444
konodioda.Parent = hrp
445
local bast = Instance.new("Sound")
446
bast.SoundId = "rbxassetid://616576465"
447
bast.Volume = 0.5
448
bast.Parent = hrp
449
local zaworld = Instance.new("Sound")
450
zaworld.SoundId = "rbxassetid://616576400"
451
zaworld.Volume = 0.8
452
zaworld.Parent = hrp
453
local wry = Instance.new("Sound")
454
wry.SoundId = "rbxassetid://276152532"
455
wry.Volume = 5
456
wry.Parent = hrp
457
function animo(yep)
458
  if yep == true then
459
    anim.Parent = human
460
    chr.Animate.Disabled = false
461
  elseif yep == false then
462
    chr.Animate.Disabled = true
463
    anim.Parent = nil
464
  end
465
end
466
animo(false)
467
function lerpz(joint, prop, cfrmz, alp)
468
  joint[prop] = joint[prop]:lerp(cfrmz, alp)
469
end
470
lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
471
lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
472
lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
473
lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
474
lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
475
lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
476
lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
477
lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
478
lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
479
lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
480
function resetlerp(whoever)
481
  if whoever == nil then
482
    RJ.C0 = RJC0
483
    RJ.C1 = RJC1
484
    N.C0 = NC0
485
    N.C1 = NC1
486
    RS.C0 = RSC0
487
    RS.C1 = RSC1
488
    LS.C0 = LSC0
489
    LS.C1 = LSC1
490
    RH.C0 = RHC0
491
    RH.C1 = RHC1
492
    LH.C0 = LHC0
493
    LH.C1 = LHC1
494
  elseif whoever ~= nil then
495
    nRJ.C0 = RJC0
496
    nRJ.C1 = RJC1
497
    nN.C0 = NC0
498
    nN.C1 = NC1
499
    nRS.C0 = RSC0
500
    nRS.C1 = RSC1
501
    nLS.C0 = LSC0
502
    nLS.C1 = LSC1
503
    nRH.C0 = RHC0
504
    nRH.C1 = RHC1
505
    nLH.C0 = LHC0
506
    nLH.C1 = LHC1
507
  end
508
end
509
510
511
512
------ end of dio 
513
function STANDO(cfr)
514
  local rooto = Instance.new("Part")
515
  nooutline(rooto)
516
  rooto.Name = "HumanoidRootPart"
517
  rooto.Anchored = true
518
  rooto.CFrame = cfr
519
  rooto.Size = Vector3.new(2, 2, 1)
520
  rooto.CanCollide = false
521
  rooto.Locked = true
522
  rooto.Transparency = 1
523
  rooto.Parent = ZaWarudo
524
  local head = Instance.new("Part")
525
  nooutline(head)
526
  head.Anchored = false
527
  head.CFrame = rooto.CFrame * CFrame.new(0, 1.5, 0)
528
  head.Size = Vector3.new(2, 1, 1)
529
  head.BrickColor = BrickColor.new("Sand blue")
530
  head.CanCollide = false
531
  head.Name = "Head"
532
  head.Locked = true
533
  head.Transparency = 1
534
  head.Parent = ZaWarudo
535
  local headmesh = makemesh("Head", Vector3.new(1.25, 1.25, 1.25), nil, head)
536
  local headdecal = Instance.new("Decal")
537
  headdecal.Name = "face"
538
  headdecal.Texture = "rbxassetid://64064193"
539
  headdecal.Face = "Front"
540
  headdecal.Transparency = 1
541
  headdecal.Parent = head
542
-------- Mask-ZaWarudo
543
local mp = Instance.new("Part",ZaWarudo)
544
mp.Name = "Mask"
545
mp.BrickColor = BrickColor.new("Gold")
546
mp.Transparency = 1
547
mp.CanCollide = false
548
local mask = Instance.new("SpecialMesh",mp)
549
mask.MeshId = "rbxassetid://882264338"
550
mask.MeshType = "FileMesh"
551
mask.Scale = Vector3.new(0.03, 0.04, 0.03)
552
local mw = Instance.new("Weld")
553
mw.Parent = mask
554
mw.Part0 = head
555
mw.Part1 = mp
556
mw.C1 = CFrame.new(0,-.6,0)
557
mw.C0 = CFrame.Angles(0,0,0)
558
-----------Chin
559
local hp2 = Instance.new("Part",ZaWarudo)
560
hp2.Name = "Heart Piece2"
561
hp2.Size = Vector3.new(0.41, 0.8, 0.2)
562
hp2.Transparency = 1
563
hp2.CanCollide = false
564
hp2.BrickColor = BrickColor.new("Forest green")
565
566
567
local hpm2 = Instance.new("SpecialMesh",hp2)
568
hpm2.MeshId = "http://www.roblox.com/asset/?id=105992239"
569
hpm2.MeshType = "FileMesh"
570
hpm2.Scale = Vector3.new(1.1, 1.1, 1.1)
571
572
local hpw2 = Instance.new("Weld")
573
hpw2.Parent = hp2
574
hpw2.Part0 = head
575
hpw2.Part1 = hp2
576
hpw2.C1 = CFrame.new(0,.41,.6)
577
578
579
  local torso = Instance.new("Part")
580
  nooutline(torso)
581
  torso.Name = "Torso"
582
  torso.Anchored = false
583
  torso.CFrame = rooto.CFrame * CFrame.new(0, 0, 0)
584
  torso.Size = Vector3.new(2, 1, 1)
585
  torso.BrickColor = BrickColor.new("Sand blue")
586
  torso.CanCollide = false
587
  torso.Transparency = 1
588
  torso.Locked = true
589
  torso.Parent = ZaWarudo
590
  local torsomesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/torso.mesh", torso)
591
592
  local leftarm = Instance.new("Part")
593
  nooutline(leftarm)
594
  leftarm.Anchored = false
595
  leftarm.Name = "Left Arm"
596
  leftarm.CFrame = rooto.CFrame * CFrame.new(1.5, 0, 0)
597
  leftarm.Size = Vector3.new(1, 2, 1)
598
  leftarm.BrickColor = BrickColor.new("Sand blue")
599
  leftarm.CanCollide = false
600
  leftarm.Transparency = 1
601
  leftarm.Locked = true
602
  leftarm.Parent = ZaWarudo
603
  local leftarmmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/leftarm.mesh", leftarm)
604
605
  local rightarm = Instance.new("Part")
606
  nooutline(rightarm)
607
  rightarm.Anchored = false
608
  rightarm.CFrame = rooto.CFrame * CFrame.new(-1.5, 0, 0)
609
  rightarm.Name = "Right Arm"
610
  rightarm.Size = Vector3.new(1, 2, 1)
611
  rightarm.BrickColor = BrickColor.new("Sand blue")
612
  rightarm.CanCollide = false
613
  rightarm.Locked = true
614
  rightarm.Transparency = 1
615
  rightarm.Parent = ZaWarudo
616
  local rightarmmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/rightarm.mesh", rightarm)
617
618
  local leftleg = Instance.new("Part")
619
  nooutline(leftleg)
620
  leftleg.Anchored = false
621
  leftleg.CFrame = rooto.CFrame * CFrame.new(1.5, -1.5, 0)
622
  leftleg.Name = "Left Leg"
623
  leftleg.Size = Vector3.new(1, 2, 1)
624
  leftleg.BrickColor = BrickColor.new("Sand blue")
625
  leftleg.CanCollide = false
626
  leftleg.Transparency = 1
627
  leftleg.Locked = true
628
  leftleg.Parent = ZaWarudo
629
  local leftlegmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/leftleg.mesh", leftleg)
630
631
  local rightleg = Instance.new("Part")
632
  nooutline(rightleg)
633
  rightleg.Anchored = false
634
  rightleg.CFrame = rooto.CFrame * CFrame.new(-1.5, -1.5, 0)
635
  rightleg.Name = "Right Leg"
636
  rightleg.Size = Vector3.new(1, 2, 1)
637
  rightleg.BrickColor = BrickColor.new("Sand blue")
638
  rightleg.CanCollide = false
639
  rightleg.Locked = true
640
  rightleg.Transparency = 1
641
  rightleg.Parent = ZaWarudo
642
  local rightlegmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/rightleg.mesh", rightleg)
643
644
645
------------Armor
646
local arp = Instance.new("Part",ZaWarudo)
647
arp.Name = "lap"
648
arp.Transparency = 1
649
arp.CanCollide = false
650
arp.BrickColor = BrickColor.new("Gold")
651
arp.Size = Vector3.new(0,0,0)
652
653
local smp = Instance.new("SpecialMesh",arp)
654
smp.MeshId = "rbxasset://fonts/leftarm.mesh"
655
smp.MeshType = "FileMesh"
656
smp.Scale = Vector3.new(1.1, 0.4, 1.1)
657
658
local weld = Instance.new("Weld")
659
weld.Parent = arp
660
weld.Part0 = leftarm
661
weld.Part1 = arp
662
weld.C1 = CFrame.new(0,-.62,0)
663
--------------------
664
local arp1 = Instance.new("Part",ZaWarudo)
665
arp1.Name = "lap1"
666
arp1.Transparency = 1
667
arp1.CanCollide = false
668
arp1.BrickColor = BrickColor.new("Gold")
669
arp1.Size = Vector3.new(0,0,0)
670
671
local smp1 = Instance.new("SpecialMesh",arp1)
672
smp1.MeshId = "rbxasset://fonts/leftarm.mesh"
673
smp1.MeshType = "FileMesh"
674
smp1.Scale = Vector3.new(0.6, 0.4, 0.5)
675
676
local weld1 = Instance.new("Weld")
677
weld1.Parent = arp1
678
weld1.Part0 = leftarm
679
weld1.Part1 = arp1
680
weld1.C1 = CFrame.new(.25,0,0)
681
--------------------
682
local arp2 = Instance.new("Part",ZaWarudo)
683
arp2.Name = "lap2"
684
arp2.Transparency = 1
685
arp2.CanCollide = false
686
arp2.BrickColor = BrickColor.new("Gold")
687
arp2.Size = Vector3.new(0,0,0)
688
689
local smp2 = Instance.new("SpecialMesh",arp2)
690
smp2.MeshId = "rbxasset://fonts/leftarm.mesh"
691
smp2.MeshType = "FileMesh"
692
smp2.Scale = Vector3.new(0.6, 0.4, 0.5)
693
694
local weld2 = Instance.new("Weld")
695
weld2.Parent = arp2
696
weld2.Part0 = leftarm
697
weld2.Part1 = arp2
698
weld2.C1 = CFrame.new(-.25,0,0)
699
700
--------------------
701
local arp3 = Instance.new("Part",ZaWarudo)
702
arp3.Name = "lap3"
703
arp3.Transparency = 1
704
arp3.CanCollide = false
705
arp3.BrickColor = BrickColor.new("Gold")
706
arp3.Size = Vector3.new(0,0,0)
707
708
local smp = Instance.new("SpecialMesh",arp3)
709
smp.MeshId = "rbxasset://fonts/leftarm.mesh"
710
smp.MeshType = "FileMesh"
711
smp.Scale = Vector3.new(1.1, 0.4, 1.1)
712
713
local weld = Instance.new("Weld")
714
weld.Parent = arp3
715
weld.Part0 = rightarm
716
weld.Part1 = arp3
717
weld.C1 = CFrame.new(0,-.62,0)
718
--------------------
719
local arp4 = Instance.new("Part",ZaWarudo)
720
arp4.Name = "lap4"
721
arp4.Transparency = 1
722
arp4.CanCollide = false
723
arp4.BrickColor = BrickColor.new("Gold")
724
arp4.Size = Vector3.new(0,0,0)
725
726
local smp = Instance.new("SpecialMesh",arp4)
727
smp.MeshId = "rbxasset://fonts/leftarm.mesh"
728
smp.MeshType = "FileMesh"
729
smp.Scale = Vector3.new(0.6, 0.4, 0.5)
730
731
local weld = Instance.new("Weld")
732
weld.Parent = arp4
733
weld.Part0 = rightarm
734
weld.Part1 = arp4
735
weld.C1 = CFrame.new(-.25,0,0)
736
--------------------
737
local arp5 = Instance.new("Part",ZaWarudo)
738
arp5.Name = "lap5"
739
arp5.Transparency = 1
740
arp5.CanCollide = false
741
arp5.BrickColor = BrickColor.new("Gold")
742
arp5.Size = Vector3.new(0,0,0)
743
744
local smp = Instance.new("SpecialMesh",arp5)
745
smp.MeshId = "rbxasset://fonts/leftarm.mesh"
746
smp.MeshType = "FileMesh"
747
smp.Scale = Vector3.new(0.6, 0.4, 0.5)
748
749
local weld = Instance.new("Weld")
750
weld.Parent = arp5
751
weld.Part0 = rightarm
752
weld.Part1 = arp5
753
weld.C1 = CFrame.new(.25,0,0)
754
--------------------
755
756
  local rootweld = makemotor(rooto, rooto, torso, RJC0, RJC1)
757
  rootweld.Name = "RootJoint"
758
  local neckweld = makemotor(torso, torso, head, NC0, NC1)
759
  neckweld.Name = "Neck"
760
  local rshoulderweld = makemotor(torso, torso, rightarm, RSC0, RSC1)
761
  rshoulderweld.Name = "Right Shoulder"
762
  local lshoulderweld = makemotor(torso, torso, leftarm, LSC0, LSC1)
763
  lshoulderweld.Name = "Left Shoulder"
764
  local rhipweld = makemotor(torso, torso, rightleg, RHC0, RHC1)
765
  rhipweld.Name = "Right Hip"
766
  local lhipweld = makemotor(torso, torso, leftleg, LHC0, LHC1)
767
  lhipweld.Name = "Left Hip"
768
  local pa1 = Instance.new("Part")
769
  nooutline(pa1)
770
  pa1.Anchored = false
771
  pa1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
772
  pa1.Name = "pa1"
773
  pa1.Size = Vector3.new(0.2, 0.2, 0.2)
774
  pa1.BrickColor = BrickColor.new("Gold")
775
  pa1.CanCollide = false
776
  pa1.Locked = true
777
  pa1.Transparency = 1
778
  pa1.Parent = ZaWarudo
779
  local pa1m = makemesh("FileMesh", Vector3.new(0.55, 0.55, 0.35), "rbxasset://fonts/torso.mesh", pa1)
780
  local pa1w = makemotor(pa1, pa1, torso, ang(rd(0), rd(90), rd(15)) * cf(-0.75, -0.75, 0.3), ang(rd(20), 0, 0))
781
  local pa2 = Instance.new("Part")
782
  nooutline(pa2)
783
  pa2.Anchored = false
784
  pa2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
785
  pa2.Name = "pa2"
786
  pa2.Size = Vector3.new(0.2, 0.2, 0.2)
787
  pa2.BrickColor = BrickColor.new("Gold")
788
  pa2.CanCollide = false
789
  pa2.Locked = true
790
  pa2.Transparency = 1
791
  pa2.Parent = ZaWarudo
792
  local pa2m = makemesh("FileMesh", Vector3.new(0.55, 0.55, 0.35), "rbxasset://fonts/torso.mesh", pa2)
793
  local pa2w = makemotor(pa2, pa2, torso, ang(rd(0), rd(90), rd(-15)) * cf(0.75, -0.75, 0.3), ang(rd(20), 0, 0))
794
  local pa3 = Instance.new("Part")
795
  nooutline(pa3)
796
  pa3.Anchored = false
797
  pa3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
798
  pa3.Name = "pa3"
799
  pa3.Size = Vector3.new(0.2, 0.2, 0.2)
800
  pa3.BrickColor = BrickColor.new("Gold")
801
  pa3.CanCollide = false
802
  pa3.Locked = true
803
  pa3.Transparency = 1
804
  pa3.Parent = ZaWarudo
805
  local pa3m = makemesh("FileMesh", Vector3.new(0.45, 0.45, 0.35), "rbxasset://fonts/torso.mesh", pa3)
806
  local pa3w = makemotor(pa3, pa3, torso, ang(rd(0), rd(90), rd(5)) * cf(-0.575, -0.1, 0.275), ang(rd(0), 0, 0))
807
  local pa4 = Instance.new("Part")
808
  nooutline(pa4)
809
  pa4.Anchored = false
810
  pa4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
811
  pa4.Name = "pa4"
812
  pa4.Size = Vector3.new(0.2, 0.2, 0.2)
813
  pa4.BrickColor = BrickColor.new("Gold")
814
  pa4.CanCollide = false
815
  pa4.Locked = true
816
  pa4.Transparency = 1
817
  pa4.Parent = ZaWarudo
818
  local pa4m = makemesh("FileMesh", Vector3.new(0.45, 0.45, 0.35), "rbxasset://fonts/torso.mesh", pa4)
819
  local pa4w = makemotor(pa4, pa4, torso, ang(rd(0), rd(90), rd(-5)) * cf(0.575, -0.1, 0.275), ang(rd(0), 0, 0))
820
  local pa5 = Instance.new("Part")
821
  nooutline(pa5)
822
  pa5.Anchored = false
823
  pa5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
824
  pa5.Name = "pa5"
825
  pa5.Size = Vector3.new(0.2, 0.2, 0.2)
826
  pa5.BrickColor = BrickColor.new("Gold")
827
  pa5.CanCollide = false
828
  pa5.Locked = true
829
  pa5.Transparency = 1
830
  pa5.Parent = ZaWarudo
831
  local pa5m = makemesh("FileMesh", Vector3.new(0.35, 0.35, 0.35), "rbxasset://fonts/torso.mesh", pa5)
832
  local pa5w = makemotor(pa5, pa5, torso, ang(rd(0), rd(90), rd(-15)) * cf(-0.625, 0.375, 0.45), ang(rd(-20), 0, 0))
833
  local pa6 = Instance.new("Part")
834
  nooutline(pa6)
835
  pa6.Anchored = false
836
  pa6.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
837
  pa6.Name = "pa6"
838
  pa6.Size = Vector3.new(0.2, 0.2, 0.2)
839
  pa6.BrickColor = BrickColor.new("Gold")
840
  pa6.CanCollide = false
841
  pa6.Locked = true
842
  pa6.Transparency = 1
843
  pa6.Parent = ZaWarudo
844
  local pa6m = makemesh("FileMesh", Vector3.new(0.35, 0.35, 0.35), "rbxasset://fonts/torso.mesh", pa6)
845
  local pa6w = makemotor(pa6, pa6, torso, ang(rd(0), rd(90), rd(15)) * cf(0.625, 0.375, 0.45), ang(rd(-20), 0, 0))
846
  local pa7 = Instance.new("Part")
847
  nooutline(pa7)
848
  pa7.Anchored = false
849
  pa7.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
850
  pa7.Name = "pa7"
851
  pa7.Size = Vector3.new(0.2, 0.2, 0.2)
852
  pa7.BrickColor = BrickColor.new("Gold")
853
  pa7.CanCollide = false
854
  pa7.Locked = true
855
  pa7.Transparency = 1
856
  pa7.Parent = ZaWarudo
857
  local pa7m = makemesh("FileMesh", Vector3.new(1.05, 0.201, 1.1), "rbxasset://fonts/torso.mesh", pa7)
858
  local pa7w = makemotor(pa7, pa7, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0), ang(0, 0, 0))
859
  
860
  local pa9 = Instance.new("Part")
861
  nooutline(pa9)
862
  pa9.Anchored = false
863
  pa9.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
864
  pa9.Name = "pa9"
865
  pa9.Size = Vector3.new(0.2, 0.2, 0.2)
866
  pa9.BrickColor = BrickColor.new("Forest green")
867
  pa9.CanCollide = false
868
  pa9.Locked = true
869
  pa9.Transparency = 1
870
  pa9.Parent = ZaWarudo
871
  local pa9m = makemesh("FileMesh", Vector3.new(1.65, 1.65, 1), "rbxassetid://105992239", pa9)
872
  local pa9w = makemotor(pa9, pa9, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0.675), ang(0, 0, 0))
873
 
874
 local pa10 = Instance.new("Part")
875
  nooutline(pa10)
876
  pa10.Anchored = false
877
  pa10.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
878
  pa10.Name = "pa10"
879
  pa10.Size = Vector3.new(2,1,1)
880
  pa10.BrickColor = BrickColor.new("Gold")
881
  pa10.CanCollide = false
882
  pa10.Locked = true
883
  pa10.Transparency = 1
884
  pa10.Parent = ZaWarudo
885
  pa10.Shape = "Cylinder"
886
pa10.Material = "SmoothPlastic"
887
  local pa10w = makemotor(pa10, pa10, torso, ang(rd(0), rd(0), rd(90)) * cf(0.425, 0, -0.8), ang(0, 0, 0))
888
889
 local pa10d = Instance.new("Part")
890
  nooutline(pa10d)
891
  pa10d.Anchored = false
892
  pa10d.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
893
  pa10d.Name = "pa10d"
894
  pa10d.Size = Vector3.new(2.2,.8,.8)
895
  pa10d.BrickColor = BrickColor.new("Gold")
896
  pa10d.CanCollide = false
897
  pa10d.Locked = true
898
  pa10d.Transparency = 1
899
  pa10d.Parent = ZaWarudo
900
  pa10d.Shape = "Cylinder"
901
pa10d.Material = "SmoothPlastic"
902
  local pa10wd = makemotor(pa10d, pa10d, torso, ang(rd(0), rd(0), rd(90)) * cf(0.425, 0, -0.8), ang(0, 0, 0))
903
 
904
 local pa11 = Instance.new("Part")
905
  nooutline(pa11)
906
  pa11.Anchored = false
907
  pa11.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
908
  pa11.Name = "pa11"
909
  pa11.Size = Vector3.new(2,1,1)
910
  pa11.BrickColor = BrickColor.new("Gold")
911
  pa11.CanCollide = false
912
  pa11.Locked = true
913
  pa11.Transparency = 1
914
  pa11.Parent = ZaWarudo
915
  pa11.Shape = "Cylinder"
916
pa11.Material = "SmoothPlastic"
917
  local pa11w = makemotor(pa11, pa11, torso, ang(rd(0), rd(0), rd(90)) * cf(-0.425, 0, -0.8), ang(0, 0, 0))
918
919
local pa11d = Instance.new("Part")
920
  nooutline(pa11d)
921
  pa11d.Anchored = false
922
  pa11d.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
923
  pa11d.Name = "pa11d"
924
  pa11d.Size = Vector3.new(2.2,.8,.8)
925
  pa11d.BrickColor = BrickColor.new("Gold")
926
  pa11d.CanCollide = false
927
  pa11d.Locked = true
928
  pa11d.Transparency = 1
929
  pa11d.Parent = ZaWarudo
930
  pa11d.Shape = "Cylinder"
931
pa11d.Material = "SmoothPlastic"
932
  local pa11wd = makemotor(pa11d, pa11d, torso, ang(rd(0), rd(0), rd(90)) * cf(-0.425, 0, -0.8), ang(0, 0, 0))
933
 
934
 local raemblem = Instance.new("Part")
935
  nooutline(raemblem)
936
  raemblem.Anchored = false
937
  raemblem.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
938
  raemblem.Name = "raemblem"
939
  raemblem.Size = Vector3.new(0.2, 0.2, 0.2)
940
  raemblem.BrickColor = BrickColor.new("Gold")
941
  raemblem.CanCollide = false
942
  raemblem.Locked = true
943
  raemblem.Material = "SmoothPlastic"
944
  raemblem.Transparency = 1
945
  raemblem.Parent = ZaWarudo
946
  local raemblemm = makemesh("Brick", Vector3.new(0, 3, 3), nil, raemblem)
947
  local raemblemw = makemotor(raemblem, raemblem, rightarm, ang(rd(0.5), rd(0), rd(0)) * cf(-0.5, -0.5, 0), ang(rd(0), 0, 0))
948
  local emmes = Instance.new("Decal")
949
  emmes.Texture = "rbxassetid://0"
950
  emmes.Transparency = 1
951
  emmes.Face = "Right"
952
  emmes.Name = "embe"
953
  emmes.Parent = raemblem
954
  local ra1 = Instance.new("Part")
955
  nooutline(ra1)
956
  ra1.Anchored = false
957
  ra1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
958
  ra1.Name = "ra1"
959
  ra1.Size = Vector3.new(0.2, 0.2, 0.2)
960
  ra1.BrickColor = BrickColor.new("Gold")
961
  ra1.CanCollide = false
962
  ra1.Locked = true
963
  ra1.Transparency = 1
964
  ra1.Parent = ZaWarudo
965
  local ra1m = makemesh("FileMesh", Vector3.new(1.1, 0.25, 1.1), "rbxasset://fonts/rightarm.mesh", ra1)
966
  local ra1w = makemotor(ra1, ra1, rightarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
967
  local ra2 = Instance.new("Part")
968
  nooutline(ra2)
969
  ra2.Anchored = false
970
  ra2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
971
  ra2.Name = "ra2"
972
  ra2.Size = Vector3.new(0.2, 0.2, 0.2)
973
  ra2.BrickColor = BrickColor.new("Gold")
974
  ra2.CanCollide = false
975
  ra2.Locked = true
976
  ra2.Transparency = 1
977
  ra2.Parent = ZaWarudo
978
  local ra2m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.1), "rbxasset://fonts/rightarm.mesh", ra2)
979
  local ra2w = makemotor(ra2, ra2, rightarm, ang(rd(0), rd(0), rd(0)) * cf(-0.175, 0.9, 0), ang(rd(0), 0, 0))
980
 
981
  local ra5 = Instance.new("Part")
982
  nooutline(ra5)
983
  ra5.Anchored = false
984
  ra5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
985
  ra5.Name = "ra5"
986
  ra5.Size = Vector3.new(0.2, 0.2, 0.2)
987
  ra5.BrickColor = BrickColor.new("Forest green")
988
  ra5.CanCollide = false
989
  ra5.Locked = true
990
  ra5.Transparency = 1
991
  ra5.Parent = ZaWarudo
992
  local ra5m = makemesh("FileMesh", Vector3.new(1.35, 1.35, 1.35), "rbxassetid://105992239", ra5)
993
  local ra5w = makemotor(ra5, ra5, rightarm, ang(rd(0), rd(90), rd(0)) * cf(-0.65, 0.7, 0), ang(rd(0), 0, 0))
994
  local la1 = Instance.new("Part")
995
  nooutline(la1)
996
  la1.Anchored = false
997
  la1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
998
  la1.Name = "la1"
999
  la1.Size = Vector3.new(0.2, 0.2, 0.2)
1000
  la1.BrickColor = BrickColor.new("Gold")
1001
  la1.CanCollide = false
1002
  la1.Locked = true
1003
  la1.Transparency = 1
1004
  la1.Parent = ZaWarudo
1005
  local la1m = makemesh("FileMesh", Vector3.new(1.1, 0.25, 1.1), "rbxasset://fonts/rightarm.mesh", la1)
1006
  local la1w = makemotor(la1, la1, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
1007
  local la2 = Instance.new("Part")
1008
  nooutline(la2)
1009
  la2.Anchored = false
1010
  la2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
1011
  la2.Name = "la2"
1012
  la2.Size = Vector3.new(0.2, 0.2, 0.2)
1013
  la2.BrickColor = BrickColor.new("Gold")
1014
  la2.CanCollide = false
1015
  la2.Locked = true
1016
  la2.Transparency = 1
1017
  la2.Parent = ZaWarudo
1018
  local la2m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.1), "rbxasset://fonts/rightarm.mesh", la2)
1019
  local la2w = makemotor(la2, la2, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0.175, 0.9, 0), ang(rd(0), 0, 0))
1020
 
1021
  local la5 = Instance.new("Part")
1022
  nooutline(la5)
1023
  la5.Anchored = false
1024
  la5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
1025
  la5.Name = "la5"
1026
  la5.Size = Vector3.new(0.2, 0.2, 0.2)
1027
  la5.BrickColor = BrickColor.new("Forest green")
1028
  la5.CanCollide = false
1029
  la5.Locked = true
1030
  la5.Transparency = 1
1031
  la5.Parent = ZaWarudo
1032
  local la5m = makemesh("FileMesh", Vector3.new(1.35, 1.35, 1.35), "rbxassetid://105992239", la5)
1033
  local la5w = makemotor(la5, la5, leftarm, ang(rd(0), rd(90), rd(0)) * cf(0.4, 0.7, 0), ang(rd(0), 0, 0))
1034
  
1035
  local ll3 = Instance.new("Part")
1036
  nooutline(ll3)
1037
  ll3.Anchored = false
1038
  ll3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
1039
  ll3.Name = "ll3"
1040
  ll3.Size = Vector3.new(0.2, 0.2, 0.2)
1041
  ll3.BrickColor = BrickColor.new("Forest green")
1042
  ll3.CanCollide = false
1043
  ll3.Locked = true
1044
  ll3.Transparency = 1
1045
  ll3.Parent = ZaWarudo
1046
  local ll3m = makemesh("FileMesh", Vector3.new(1.4, 1.4, 1.3), "rbxassetid://105992239", ll3)
1047
  local ll3w = makemotor(ll3, ll3, leftleg, ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.6), ang(0, 0, 0))
1048
 
1049
  local rr3 = Instance.new("Part")
1050
  nooutline(rr3)
1051
  rr3.Anchored = false
1052
  rr3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
1053
  rr3.Name = "rr3"
1054
  rr3.Size = Vector3.new(0.2, 0.2, 0.2)
1055
  rr3.BrickColor = BrickColor.new("Forest green")
1056
  rr3.CanCollide = false
1057
  rr3.Locked = true
1058
  rr3.Transparency = 1
1059
  rr3.Parent = ZaWarudo
1060
  local rr3m = makemesh("FileMesh", Vector3.new(1.4, 1.4, 1.3), "rbxassetid://105992239", rr3)
1061
  local rr3w = makemotor(rr3, rr3, rightleg, ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.6), ang(0, 0, 0))
1062
  return ZaWarudo
1063
end
1064
local thenoob = STANDO(hrp.CFrame * CFrame.new(0, 0, 0))
1065
coroutine.resume(coroutine.create(function()
1066
  local rot = thenoob.HumanoidRootPart
1067
  repeat
1068
    swait()
1069
    rot.CFrame = rot.CFrame:lerp(wherto.CFrame * addcfr, 0.5)
1070
  until rot == nil
1071
end))
1072
local rot = thenoob.HumanoidRootPart
1073
local ntorso = thenoob:FindFirstChild("Torso")
1074
local rightarm = thenoob:FindFirstChild("Right Arm")
1075
local leftarm = thenoob:FindFirstChild("Left Arm")
1076
local leftleg = thenoob:FindFirstChild("Left Leg")
1077
local rightleg = thenoob:FindFirstChild("Right Leg")
1078
local head = thenoob:FindFirstChild("Head")
1079
local face = head:FindFirstChild("face")
1080
local emblem = thenoob:FindFirstChild("raemblem"):FindFirstChild("embe")
1081
local embpart = thenoob:FindFirstChild("raemblem")
1082
local nRJ = rot:FindFirstChild("RootJoint")
1083
local nN = ntorso:FindFirstChild("Neck")
1084
local nRS = ntorso:FindFirstChild("Right Shoulder")
1085
local nLS = ntorso:FindFirstChild("Left Shoulder")
1086
local nRH = ntorso:FindFirstChild("Right Hip")
1087
local nLH = ntorso:FindFirstChild("Left Hip")
1088
function standappear(nbz)
1089
  if selected == false or activu == true then
1090
    return
1091
  end
1092
  if appeared == false then
1093
    appeared = true
1094
    wherto = hrp
1095
    addcfr = cf(-2, 1, 2)
1096
    local apear = Instance.new("Sound")
1097
    apear.SoundId = "rbxassetid://463010917"
1098
    apear.Parent = rot
1099
    apear.Volume = 1.25
1100
    game.Debris:AddItem(apear, 1.5)
1101
    apear:Play()
1102
    for _, n in pairs(nbz:GetChildren()) do
1103
      coroutine.resume(coroutine.create(function()
1104
        for _ = 1, 5 do
1105
          if n ~= rot and n ~= embpart and n.ClassName ~= "Sound" then
1106
            swait()
1107
            n.Transparency = n.Transparency - 0.2
1108
            face.Transparency = face.Transparency - 0.2
1109
            emblem.Transparency = emblem.Transparency - 0.2
1110
          end
1111
        end
1112
        if n ~= rot and n ~= embpart then
1113
          n.Transparency = 0
1114
        end
1115
        face.Transparency = 0
1116
        emblem.Transparency = 0
1117
      end))
1118
    end
1119
  elseif appeared == true then
1120
    appeared = false
1121
    wherto = hrp
1122
    addcfr = cf(0, 0, 0)
1123
    for _, n in pairs(nbz:GetChildren()) do
1124
      coroutine.resume(coroutine.create(function()
1125
        for _ = 1, 5 do
1126
          if n ~= rot and n ~= embpart then
1127
            swait()
1128
            n.Transparency = n.Transparency + 0.2
1129
            face.Transparency = face.Transparency + 0.2
1130
            emblem.Transparency = emblem.Transparency + 0.2
1131
1132
          end
1133
        end
1134
        if n ~= rot and n ~= embpart then
1135
          n.Transparency = 1
1136
        end
1137
        face.Transparency = 1
1138
        emblem.Transparency = 1
1139
1140
      end))
1141
    end
1142
  end
1143
end
1144
function THREATENING()
1145
  if selected == false or activu == true then
1146
    return
1147
  end
1148
  if POSU == false then
1149
    POSU = true
1150
    human.WalkSpeed = 0
1151
    local d = Instance.new("ParticleEmitter")
1152
    d.Name = "MENACINGU"
1153
    d.Lifetime = NumberRange.new(1)
1154
    d.Rate = 2
1155
    d.Texture = "rbxassetid://298768656"
1156
    d.VelocitySpread = 60
1157
    d.Parent = tors
1158
    human:SetStateEnabled(3, false)
1159
    local randomoth = math.random(1, 2)
1160
    if randomoth == 1 then
1161
      repeat
1162
        swait()
1163
        lerpz(RJ, "C0", RJC0 * cf(0, 0, -0.05) * ang(rd(-5), rd(0), rd(-30)), 0.3)
1164
        lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(30)), 0.3)
1165
        lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(-20), rd(-5)), 0.3)
1166
        lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1167
        lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(140), rd(-70), rd(-50)), 0.3)
1168
        lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1169
        lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(-30), rd(10)), 0.3)
1170
        lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1171
        lerpz(LH, "C0", LHC0 * cf(0.3, 0.1, -0.15) * ang(rd(-20), rd(50), rd(10)), 0.3)
1172
        lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-10)), 0.3)
1173
      until POSU == false
1174
    elseif randomoth == 2 then
1175
      repeat
1176
        swait()
1177
        lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(-2), rd(25)), 0.3)
1178
        lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(6), rd(0), rd(-50)), 0.3)
1179
        lerpz(RS, "C0", RSC0 * cf(-0.25, 0.3, -0.5) * ang(rd(-30), rd(-15), rd(200)), 0.3)
1180
        lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1181
        lerpz(LS, "C0", LSC0 * cf(0.25, 0.3, -0.5) * ang(rd(-32), rd(13), rd(-195)), 0.3)
1182
        lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1183
        lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-15), rd(-10)), 0.3)
1184
        lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1185
        lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-5), rd(10), rd(-10)), 0.3)
1186
        lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1187
      until POSU == false
1188
    end
1189
  elseif POSU == true then
1190
    POSU = false
1191
    human.WalkSpeed = 16
1192
    human:SetStateEnabled(3, true)
1193
    tors.MENACINGU:Destroy()
1194
    activu = true
1195
    activu = false
1196
  end
1197
end
1198
local EHMMM = 0
1199
function block()
1200
  if EHMMM == 50 or selected == false or activu == true then
1201
    return
1202
  end
1203
  if appeared == false then
1204
    standappear(thenoob)
1205
  end
1206
  wherto = hrp
1207
  addcfr = cf(0, 0, -3)
1208
  local bep = true
1209
  local humanshealth = human.Health
1210
  activu = true
1211
  human:SetStateEnabled(15, false)
1212
  local de = mouse.KeyUp:connect(function(key)
1213
    if key == "e" then
1214
      bep = false
1215
    end
1216
  end)
1217
  local poopes = 0
1218
  repeat
1219
    swait()
1220
    poopes = poopes + 1
1221
    human.Health = humanshealth
1222
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(2), rd(0), rd(0)), 0.5)
1223
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(7), rd(0), rd(0)), 0.5)
1224
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(110), rd(160)), 0.5)
1225
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.5)
1226
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(-110), rd(-160)), 0.5)
1227
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.5)
1228
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1229
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1230
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1231
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1232
  until bep == false or poopes > 240
1233
  de:Disconnect()
1234
  human:SetStateEnabled(15, true)
1235
  activu = false
1236
  EHMMM = 50
1237
  coroutine.resume(coroutine.create(function()
1238
    wait(7)
1239
    EHMMM = 0
1240
  end))
1241
  wherto = hrp
1242
  addcfr = cf(-2, 1, 2)
1243
end
1244
function MUDA()
1245
  if selected == false or activu == true then
1246
    return
1247
  end
1248
  if appeared == false then
1249
    standappear(thenoob)
1250
    wherto = hrp
1251
    addcfr = cf(0, 0, -3.5)
1252
  end
1253
  wry:Stop()
1254
  local bep = true
1255
  activu = true
1256
  wherto = hrp
1257
  addcfr = cf(0, 0, -3.5)
1258
  local function blur(limb)
1259
    coroutine.resume(coroutine.create(function()
1260
      local memedon = {}
1261
      for i = 1, 6 do
1262
        local b1 = Instance.new("Part")
1263
        nooutline(b1)
1264
        b1.Size = Vector3.new(1, 2, 1)
1265
        b1.CFrame = limb.CFrame * CFrame.new(rd2(-5, 5) / 10, rd2(-5, 5) / 10, rd2(-5, 5) / 10)
1266
        b1.CanCollide = false
1267
        b1.BrickColor = limb.BrickColor
1268
        b1.Anchored = true
1269
        b1.Transparency = 0.7
1270
        b1.Locked = true
1271
        b1.Parent = modz
1272
        table.insert(memedon, b1)
1273
      end
1274
      local num = 0
1275
      repeat
1276
        swait()
1277
        num = num % 6 + 1
1278
        memedon[num].CFrame = limb.CFrame * CFrame.new(rd2(-5, 5) / 10, rd2(-5, 5) / 10, rd2(-5, 5) / 10)
1279
      until bep == false
1280
      for i = 1, #memedon do
1281
        swait()
1282
        memedon[i]:Destroy()
1283
      end
1284
    end))
1285
  end
1286
  local de = mouse.KeyUp:connect(function(key)
1287
    if key == "r" then
1288
      bep = false
1289
    end
1290
  end)
1291
  blur(rightarm)
1292
  blur(leftarm)
1293
local mudodo = Instance.new("Sound")
1294
  mudodo.Volume = 7.5
1295
  mudodo.SoundId = "rbxassetid://616593932"
1296
mudodo.Looped = true
1297
  mudodo.Parent = hrp
1298
  mudodo:Play()
1299
  repeat
1300
    for _ = 1, 2 do
1301
      swait()
1302
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(4), rd(4), rd(30)), 0.85)
1303
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(-28)), 0.85)
1304
      lerpz(nRS, "C0", RSC0 * cf(0.5, 0.25, -0.1) * ang(rd(20), rd(20), rd(105)), 0.85)
1305
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1306
      lerpz(nLS, "C0", LSC0 * cf(0.25, 0.1, 0) * ang(rd(30), rd(10), rd(-70)), 0.85)
1307
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1308
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
1309
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1310
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
1311
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1312
    end
1313
    hito(rightarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
1314
    for _ = 1, 2 do
1315
      swait()
1316
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(5), rd(2), rd(-30)), 0.85)
1317
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(2), rd(0), rd(31)), 0.85)
1318
      lerpz(nRS, "C0", RSC0 * cf(-0.1, 0.05, -0.1) * ang(rd(-10), rd(-30), rd(75)), 0.85)
1319
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1320
      lerpz(nLS, "C0", LSC0 * cf(-0.5, 0.1, -0.2) * ang(rd(-30), rd(10), rd(-70)), 0.85)
1321
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1322
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
1323
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1324
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
1325
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1326
    end
1327
    hito(leftarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
1328
    for _ = 1, 2 do
1329
      swait()
1330
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(3), rd(3), rd(32)), 0.85)
1331
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(-29)), 0.85)
1332
      lerpz(nRS, "C0", RSC0 * cf(0.35, 0.25, 0.1) * ang(rd(-10), rd(-20), rd(95)), 0.85)
1333
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1334
      lerpz(nLS, "C0", LSC0 * cf(0.25, 0.1, 0) * ang(rd(-10), rd(10), rd(-80)), 0.85)
1335
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1336
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
1337
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1338
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
1339
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1340
    end
1341
    hito(rightarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
1342
    for _ = 1, 2 do
1343
      swait()
1344
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(3), rd(-40)), 0.85)
1345
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(-2), rd(35)), 0.85)
1346
      lerpz(nRS, "C0", RSC0 * cf(-0.1, 0.05, -0.1) * ang(rd(20), rd(-30), rd(65)), 0.85)
1347
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1348
      lerpz(nLS, "C0", LSC0 * cf(-0.5, 0.1, -0.2) * ang(rd(-30), rd(30), rd(-75)), 0.85)
1349
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1350
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
1351
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1352
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
1353
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
1354
    end
1355
    hito(leftarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
1356
  until bep == false or 0 >= human.Health
1357
  de:Disconnect()
1358
mudodo:Stop()
1359
  wry:Play()
1360
  for _ = 1, 6 do
1361
    swait()
1362
    lerpz(nRJ, "C0", RJC0 * cf(0, 1.25, 0) * ang(rd(0), rd(4), rd(-85)), 0.75)
1363
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(75)), 0.75)
1364
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(100)), 0.75)
1365
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1366
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.75)
1367
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1368
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.75)
1369
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1370
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.75)
1371
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1372
  end
1373
  for _ = 1, 7 do
1374
    swait()
1375
    hito(rightarm, 3, 20, 0.35, rot.CFrame.lookVector * 50)
1376
    lerpz(nRJ, "C0", RJC0 * cf(0, -1, 0) * ang(rd(0), rd(10), rd(75)), 0.75)
1377
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-65)), 0.75)
1378
    lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-60), rd(100)), 0.75)
1379
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.75)
1380
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.75)
1381
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1382
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.75)
1383
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1384
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.75)
1385
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
1386
  end
1387
  swait(5)
1388
  wherto = hrp
1389
mudodo:Destroy()
1390
  addcfr = cf(-2, 1, 2)
1391
  activu = false
1392
end
1393
function cability()
1394
  if selected == false or activu == true then
1395
    return
1396
  end
1397
  if appeared == false then
1398
    standappear(thenoob)
1399
    wherto = hrp
1400
    addcfr = cf(0, 0, -3.75)
1401
  end
1402
  activu = true
1403
  wherto = hrp
1404
  addcfr = cf(0, 0, -3.5)
1405
  local ZAWRUA = Instance.new("Sound")
1406
  ZAWRUA.SoundId = "rbxassetid://257346558"
1407
  ZAWRUA.Volume = 3
1408
  ZAWRUA.Parent = hrp
1409
  ZAWRUA:Play()
1410
  game.Debris:AddItem(ZAWRUA, 2.5)
1411
  local wate = Instance.new("Part")
1412
  nooutline(wate)
1413
  wate.Size = Vector3.new(0.2, 0.2, 0.2)
1414
  wate.Material = "Neon"
1415
  wate.Transparency = 1
1416
  wate.BrickColor = BrickColor.new("Forest green")
1417
  wate.CFrame = rightarm.CFrame * cf(0, -1.5, 0)
1418
  wate.Anchored = true
1419
  wate.CanCollide = false
1420
  wate.Parent = modz
1421
  local wmesh = makemesh("Sphere", Vector3.new(5, 5, 5), nil, wate)
1422
  coroutine.resume(coroutine.create(function()
1423
    repeat
1424
      swait()
1425
      wate.CFrame = rightarm.CFrame * cf(0, -1, 0)
1426
      wmesh.Scale = wmesh.Scale:lerp(Vector3.new(10, 10, 10), 0.5)
1427
    until not wate
1428
  end))
1429
  coroutine.resume(coroutine.create(function()
1430
    local pt = {}
1431
    for _ = 1, 10 do
1432
      local wp = Instance.new("Part")
1433
      nooutline(wp)
1434
      wp.Size = Vector3.new(0.2, 0.2, 0.2)
1435
      wp.Material = "Neon"
1436
      wp.Transparency = 1
1437
      wp.BrickColor = BrickColor.new("Forest green")
1438
      wp.CFrame = wate.CFrame * ang(rd2(-100, 100) / 1000, rd2(-100, 100) / 1000, rd2(-100, 100) / 1000) * cf(0, -0.25, 0)
1439
      wp.Anchored = true
1440
      wp.CanCollide = false
1441
      wp.Parent = modz
1442
      local wmz = makemesh("Sphere", Vector3.new(0.5, 2, 0.5), nil, wp)
1443
      table.insert(pt, wp)
1444
      table.insert(pt, wmz)
1445
    end
1446
    for m = 1, 45 do
1447
      swait()
1448
      for _, hey in pairs(pt) do
1449
        if hey.ClassName == "SpecialMesh" then
1450
          hey.Scale = hey.Scale + Vector3.new(0.005, 0.04, 0.005)
1451
        elseif hey.ClassName == "Part" then
1452
          hey.CFrame = wate.CFrame * ang(rd(rd2(-360, 360)), rd(rd2(-360, 360)), rd(rd2(-360, 360))) * cf(0, -m / 25, 0)
1453
          hey.Transparency = hey.Transparency - 0.015
1454
        end
1455
      end
1456
    end
1457
    for m = 45, 50 do
1458
      swait()
1459
      for _, hey in pairs(pt) do
1460
        if hey.ClassName == "SpecialMesh" then
1461
          hey.Scale = hey.Scale + Vector3.new(0.025, 0.08, 0.025)
1462
        elseif hey.ClassName == "Part" then
1463
          hey.CFrame = wate.CFrame * ang(rd(rd2(-360, 360)), rd(rd2(-360, 360)), rd(rd2(-360, 360))) * cf(0, -m / 25, 0)
1464
          hey.Transparency = hey.Transparency + 0.2
1465
        end
1466
      end
1467
    end
1468
    for _, AAA in pairs(pt) do
1469
      if AAA.ClassName == "Part" then
1470
        AAA:Destroy()
1471
      end
1472
    end
1473
  end))
1474
  for _ = 1, 50 do
1475
    swait()
1476
    wmesh.Scale = Vector3.new(9, 9, 9)
1477
    wate.Transparency = wate.Transparency - 0.008
1478
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(-125)), 0.2)
1479
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(115)), 0.2)
1480
    lerpz(nRS, "C0", RSC0 * cf(rd2(-1, 1) / 10, rd2(-1, 1) / 10, rd2(-1, 1) / 10) * ang(rd(rd2(-15, -5)), rd(rd2(-25, -15)), rd(rd2(95, 105))), 0.2)
1481
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1482
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.2)
1483
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1484
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.2)
1485
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1486
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.2)
1487
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1488
  end
1489
  local pooo = Instance.new("Sound")
1490
  pooo.SoundId = "rbxassetid://686423225"
1491
  pooo.Volume = 3
1492
  pooo.Parent = hrp
1493
  pooo:Play()
1494
  game.Debris:AddItem(pooo, 2.5)
1495
  for _ = 1, 1 do
1496
    swait()
1497
    wate.Transparency = wate.Transparency + 0.15
1498
    lerpz(nRJ, "C0", RJC0 * cf(0, -2, 0) * ang(rd(0), rd(10), rd(35)), 0.5)
1499
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-30)), 0.5)
1500
    lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-80), rd(100)), 0.5)
1501
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
1502
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
1503
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1504
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
1505
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1506
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
1507
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1508
  end
1509
  local swoo = Instance.new("Part")
1510
  nooutline(swoo)
1511
  swoo.Size = Vector3.new(0.2, 0.2, 0.2)
1512
  swoo.Material = "Neon"
1513
  swoo.Transparency = 0.2
1514
  swoo.BrickColor = BrickColor.new("Forest green")
1515
  swoo.CFrame = rightarm.CFrame * ang(rd(0), rd(-15), rd(240)) * cf(1.5, -2.5, 0)
1516
  swoo.Anchored = true
1517
  swoo.CanCollide = false
1518
  swoo.Parent = modz
1519
  local wmesh = makemesh("FileMesh", Vector3.new(0.013333333333333334, 0.015384615384615385, 0.025), "rbxassetid://576041905", swoo)
1520
  local pli = Instance.new("PointLight")
1521
  pli.Brightness = 2
1522
  pli.Color = Color3.new(0.45098039215686275, 1, 0)
1523
  pli.Range = 10
1524
  pli.Shadows = true
1525
  pli.Parent = swoo
1526
  hito(swoo, 5, 40, 0.15, rot.CFrame.lookVector * 80)
1527
  tagability(swoo, 4)
1528
  for _ = 1, 10 do
1529
    swait()
1530
    wate.Transparency = wate.Transparency + 0.05
1531
    swoo.Transparency = swoo.Transparency + 0.075
1532
    pli.Range = pli.Range - 1
1533
    lerpz(nRJ, "C0", RJC0 * cf(0, -3, 0) * ang(rd(0), rd(10), rd(105)), 0.5)
1534
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-65)), 0.5)
1535
    lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-30), rd(100)), 0.5)
1536
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
1537
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
1538
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1539
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
1540
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1541
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
1542
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1543
  end
1544
  wate:Destroy()
1545
  swoo:Destroy()
1546
  pli:Destroy()
1547
  swait(15)
1548
  wherto = hrp
1549
  addcfr = cf(-2, 1, 2)
1550
  activu = false
1551
end
1552
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=188959462")
1553
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=616594208")
1554
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=616576400")
1555
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=291088606")
1556
function THEBEST()
1557
  if selected == false or activu == true or appeared == true or POSU == true then
1558
    return
1559
  end
1560
  local dipperhat = chr:FindFirstChild("DXD_DipperHat")
1561
  local dipperrot
1562
  if dipperhat then
1563
    dipperrot = dipperhat.Handle.HatAttachment.Rotation
1564
  end
1565
  activu = true
1566
  POSU = true
1567
  cam.CameraType = "Scriptable"
1568
  chr.PrimaryPart = hrp
1569
  human.WalkSpeed = 0
1570
  human:SetStateEnabled(3, false)
1571
  local actmus1 = Instance.new("Sound")
1572
  actmus1.SoundId = "rbxassetid://188959462"
1573
  actmus1.Volume = 1.5
1574
  actmus1.RollOffMode = 1
1575
  actmus1.TimePosition = 0
1576
  actmus1.Parent = cam
1577
  local actmus2 = Instance.new("Sound")
1578
  actmus2.SoundId = "rbxassetid://188959462"
1579
  actmus2.Volume = 1.5
1580
  actmus2.RollOffMode = 1
1581
  actmus2.TimePosition = 0
1582
  actmus2.Parent = hrp
1583
  actmus1:Play()
1584
  actmus2:Play()
1585
  local mus1 = Instance.new("Sound")
1586
  mus1.SoundId = "rbxassetid://616594208"
1587
  mus1.Volume = 1.25
1588
  mus1.TimePosition = 0.45
1589
  mus1.Parent = cam
1590
  local mus2 = Instance.new("Sound")
1591
  mus2.SoundId = "rbxassetid://616594208"
1592
  mus2.Volume = 1.25
1593
  mus2.TimePosition = 0.45
1594
  mus2.Parent = hrp
1595
  local zawarudoda = Instance.new("Sound")
1596
  zawarudoda.SoundId = "rbxassetid://616576400"
1597
  zawarudoda.Volume = 2
1598
  zawarudoda.TimePosition = 0.3
1599
  zawarudoda.Parent = hrp
1600
  mus1:Play()
1601
  mus2:Play()
1602
  cam.CoordinateFrame = hrp.CFrame * ang(rd(20), rd(100), rd(0)) * cf(0, 0, 7)
1603
  local regface = hed.face.Texture
1604
  local whogothit, bodyvel
1605
  local function checkhit(partoz, magn)
1606
    for _, guy in pairs(workspace:GetChildren()) do
1607
      if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and not whogothit then
1608
        whogothit = guy
1609
        guy:FindFirstChild("Humanoid").PlatformStand = true
1610
        do
1611
          local derp = Instance.new("BodyPosition")
1612
          derp.MaxForce = Vector3.new(999999999999, 999999999999, 999999999999)
1613
          derp.P = 8000
1614
          derp.D = 500
1615
          derp.Position = hrp.Position + hrp.CFrame.lookVector * 20
1616
          derp.Parent = guy:FindFirstChild("HumanoidRootPart")
1617
          bodyvel = derp
1618
          local derp2 = Instance.new("BodyAngularVelocity")
1619
          derp2.MaxTorque = Vector3.new(999999999999, 999999999999, 999999999999)
1620
          derp2.P = 8000
1621
          derp2.AngularVelocity = Vector3.new(rd2(2, 4), rd2(50, 100), 0)
1622
          derp2.Parent = guy:FindFirstChild("HumanoidRootPart")
1623
          delay(0.1, function()
1624
            derp2:Destroy()
1625
          guy.Torso:Remove()
1626
          guy.Head:Remove()
1627
end)
1628
          bodyvel = derp
1629
        end
1630
      end
1631
    end
1632
  end
1633
  coroutine.resume(coroutine.create(function()
1634
    for _ = 1, 25 do
1635
      swait()
1636
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(-5), rd(-20)), 0.3)
1637
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(10), rd(20)), 0.3)
1638
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(30), rd(-30)), 0.3)
1639
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1640
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.3)
1641
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1642
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-20)), 0.3)
1643
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1644
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
1645
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1646
    end
1647
    for _ = 1, 20 do
1648
      swait()
1649
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(-5), rd(-20)), 0.3)
1650
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(10), rd(20)), 0.3)
1651
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(30), rd(-30)), 0.3)
1652
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1653
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0.4) * ang(rd(70), rd(-60), rd(-100)), 0.3)
1654
      if dipperhat then
1655
        dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, -40, 0), 0.3)
1656
      end
1657
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1658
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-20)), 0.3)
1659
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1660
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
1661
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1662
    end
1663
  end))
1664
  repeat
1665
    swait()
1666
    cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(1), rd(0)) * cf(0.15, 0, 0)
1667
  until mus1.TimePosition > 2.9
1668
  mus1:Pause()
1669
  mus2:Pause()
1670
  zawarudoda:Play()
1671
  coroutine.resume(coroutine.create(function()
1672
    for _ = 1, 7 do
1673
      swait()
1674
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(-5)), 0.4)
1675
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(2), rd(0)), 0.3)
1676
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(80), rd(80)), 0.3)
1677
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1678
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(-80), rd(-70)), 0.3)
1679
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1680
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.3)
1681
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1682
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
1683
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1684
    end
1685
    for _ = 1, 16 do
1686
      swait()
1687
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-15), rd(0), rd(-5)), 0.4)
1688
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(15), rd(8), rd(0)), 0.3)
1689
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(-80), rd(80)), 0.3)
1690
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1691
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(80), rd(-70)), 0.3)
1692
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1693
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-15)), 0.3)
1694
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1695
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(15)), 0.3)
1696
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1697
    end
1698
  end))
1699
  repeat
1700
    swait()
1701
  until zawarudoda.TimePosition > 1.4
1702
  zawarudoda:Pause()
1703
  activu = false
1704
  standappear(thenoob)
1705
  wherto = hrp
1706
  addcfr = cf(3, 0.25, -1.5)
1707
  activu = true
1708
  cam.CoordinateFrame = hrp.CFrame * ang(rd(-25), rd(0), rd(0)) * cf(0, 2, 3)
1709
  for _ = 1, 10 do
1710
    swait()
1711
    cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 1.5)
1712
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(-75)), 0.5)
1713
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(45)), 0.5)
1714
    lerpz(nRS, "C0", RSC0 * cf(rd2(-1, 1) / 10, rd2(-1, 1) / 10, rd2(-1, 1) / 10) * ang(rd(rd2(-15, -5)), rd(rd2(-25, -15)), rd(rd2(95, 105))), 0.5)
1715
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1716
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
1717
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1718
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
1719
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1720
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
1721
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1722
  end
1723
  wherto = hrp
1724
  addcfr = cf(-3, 0.25, -1.5)
1725
  for _ = 1, 25 do
1726
    swait()
1727
    checkhit(rightarm, 3)
1728
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(105)), 0.4)
1729
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(-45)), 0.4)
1730
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(100)), 0.4)
1731
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1732
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.4)
1733
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1734
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.4)
1735
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1736
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.4)
1737
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1738
  end
1739
  if whogothit then
1740
    print("derp")
1741
    cam.CoordinateFrame = hrp.CFrame * ang(rd(15), rd(140), rd(0)) * cf(0, 1, 4)
1742
    local laugo = Instance.new("Sound")
1743
    laugo.SoundId = "rbxassetid://291088606"
1744
    laugo.Volume = 1.5
1745
    laugo.Parent = hrp
1746
    game.Debris:AddItem(laugo, 2.5)
1747
    laugo:Play()
1748
    local sda = 0
1749
    local chn = 2
1750
    local cs = math.cos
1751
    for D = 1, 60 do
1752
      swait()
1753
      cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.15)
1754
      sda = sda + chn
1755
      lerpz(RJ, "C0", RJC0 * cf(0, 0.75, 1 * cs(sda / 2)) * ang(rd(-40), rd(0), rd(-5)), 0.8 / D)
1756
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-60 + 40 * cs(sda / 2)), rd(8), rd(0)), 0.8 / D)
1757
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(-110 + 80 * cs(sda / 2)), rd(80)), 0.8 / D)
1758
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1759
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(110 + 80 * cs(sda / 2)), rd(-70)), 0.8 / D)
1760
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1761
      lerpz(RH, "C0", RHC0 * cf(0, -1 * cs(sda / 2), 0) * ang(rd(-10), rd(-10), rd(-40)), 0.8 / D)
1762
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1763
      lerpz(LH, "C0", LHC0 * cf(0, -1 * cs(sda / 2), 0) * ang(rd(-10), rd(10), rd(40)), 0.8 / D)
1764
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1765
    end
1766
    hed.face.Texture = "rbxassetid://176777497"
1767
    mus1.TimePosition = 2.75
1768
    mus1:Play()
1769
    for C = 1, 30 do
1770
      swait()
1771
      cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, -(0.02 + C / 60))
1772
      sda = sda + chn
1773
      lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(20), rd(0), rd(-5)), 0.05 + C / 31)
1774
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(30), rd(0), rd(0)), 0.05 + C / 31)
1775
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-20)), 0.05 + C / 31)
1776
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1777
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.05 + C / 31)
1778
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1779
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(20)), 0.05 + C / 31)
1780
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1781
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(20)), 0.05 + C / 31)
1782
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1783
    end
1784
    for _ = 1, 5 do
1785
      swait()
1786
      cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.02)
1787
      sda = sda + chn
1788
      lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(20), rd(0), rd(-5)), 0.5)
1789
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.5)
1790
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-20)), 0.5)
1791
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1792
      lerpz(LS, "C0", LSC0 * cf(0, 0.25, 0) * ang(rd(60), rd(-60), rd(-100)), 0.5)
1793
      if dipperhat then
1794
        dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, 0, 0), 0.5)
1795
      end
1796
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1797
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(20)), 0.5)
1798
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1799
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(20)), 0.5)
1800
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1801
    end
1802
    wait(2)
1803
  elseif whogothit == nil then
1804
    print("noderp")
1805
  end
1806
  human:SetStateEnabled(3, true)
1807
  activu = false
1808
  standappear(thenoob)
1809
  activu = true
1810
  if dipperhat then
1811
    dipperhat.Handle.HatAttachment.Rotation = dipperrot
1812
  end
1813
  actmus1:Destroy()
1814
  actmus2:Destroy()
1815
  bast:Play()
1816
  if bodyvel then
1817
    bodyvel:Destroy()
1818
  end
1819
  cam.CameraType = "Custom"
1820
  hed.face.Texture = regface
1821
  chr.PrimaryPart = head
1822
  human.WalkSpeed = 16
1823
  activu = false
1824
  POSU = false
1825
end
1826
function hito(partoz, magn, dmg, debtim, bodyfdire)
1827
  for _, guy in pairs(workspace:GetChildren()) do
1828
    if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and guy:FindFirstChild("HumanoidRootPart"):FindFirstChild("alabo") == nil then
1829
      do
1830
        local humz = guy:FindFirstChild("Humanoid")
1831
        local horp = guy:FindFirstChild("HumanoidRootPart")
1832
        TakeDamage(humz, dmg)
1833
        local db = Instance.new("StringValue")
1834
        db.Name = "alabo"
1835
        db.Parent = horp
1836
        delay(debtim, function()
1837
          db:Destroy()
1838
        end)
1839
        local b = Instance.new("Part")
1840
        nooutline(b)
1841
        b.Size = Vector3.new(0.2, 0.2, 0.2)
1842
        b.Transparency = 0.25
1843
        b.Anchored = true
1844
        b.CanCollide = false
1845
        b.BrickColor = BrickColor.new("Institutional white")
1846
        b.Locked = true
1847
        b.CFrame = horp.CFrame * CFrame.new(rd2(-1, 1), rd2(-2, 2), rd2(-1, 1))
1848
        b.Parent = modz
1849
        local c = Instance.new("SpecialMesh")
1850
        c.MeshType = "Sphere"
1851
        c.Scale = Vector3.new(3.5, 3.5, 3.5)
1852
        c.Parent = b
1853
        game.Debris:AddItem(b, 1)
1854
        if bodyfdire then
1855
          local boopyve = Instance.new("BodyVelocity")
1856
          boopyve.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
1857
          boopyve.P = math.huge
1858
          boopyve.Velocity = bodyfdire
1859
          boopyve.Parent = horp
1860
          game.Debris:AddItem(boopyve, debtim)
1861
        end
1862
        local bet = Instance.new("Sound")
1863
        bet.Pitch = rd2(9, 11) / 10
1864
        bet.Volume = rd2(12, 14) / 10
1865
        bet.SoundId = "rbxassetid://165604684"
1866
        bet.Parent = b
1867
        bet:Play()
1868
        coroutine.resume(coroutine.create(function()
1869
          for _ = 1, 5 do
1870
            swait()
1871
            b.Transparency = b.Transparency + 0.15
1872
            c.Scale = c.Scale + Vector3.new(0.8 * dmg, 0.8 * dmg, 0.8 * dmg)
1873
          end
1874
        end))
1875
      end
1876
    end
1877
  end
1878
end
1879
function tagability(partoz, magn)
1880
  for _, guy in pairs(workspace:GetChildren()) do
1881
    if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and guy:FindFirstChild("HumanoidRootPart"):FindFirstChild("derbaba") == nil and guy:FindFirstChildOfClass("ForceField") == nil then
1882
      do
1883
        local humz = guy:FindFirstChild("Humanoid")
1884
        humz.PlatformStand = true
1885
        delay(1, function()
1886
          humz.PlatformStand = false
1887
        end)
1888
        local horp = guy:FindFirstChild("HumanoidRootPart")
1889
        local db = Instance.new("StringValue")
1890
        db.Name = "dedrbaba"
1891
        db.Parent = horp
1892
        local bodyrot = Instance.new("BodyAngularVelocity")
1893
        bodyrot.MaxTorque = Vector3.new(99999, 99999, 99999)
1894
        bodyrot.P = math.huge
1895
        bodyrot.AngularVelocity = Vector3.new(0, 5, 50)
1896
        bodyrot.Parent = horp
1897
        local hL, tL, aL, bL, cL, dL
1898
        game.Debris:AddItem(bodyrot, 0.2)
1899
        if guy:FindFirstChild("Head") then
1900
          hL = guy:FindFirstChild("Head")
1901
          hL.BrickColor = BrickColor.new("Gold")
1902
        end
1903
        if guy:FindFirstChild("Torso") then
1904
          tL = guy:FindFirstChild("Torso")
1905
          tL.BrickColor = BrickColor.new("Bright blue")
1906
        end
1907
        if guy:FindFirstChild("Left Arm") then
1908
          aL = guy:FindFirstChild("Left Arm")
1909
          aL.BrickColor = BrickColor.new("Gold")
1910
        end
1911
        if guy:FindFirstChild("Right Arm") then
1912
          bL = guy:FindFirstChild("Right Arm")
1913
          bL.BrickColor = BrickColor.new("Gold")
1914
        end
1915
        if guy:FindFirstChild("Left Leg") then
1916
          cL = guy:FindFirstChild("Left Leg")
1917
          cL.BrickColor = BrickColor.new("Forest green")
1918
        end
1919
        if guy:FindFirstChild("Right Leg") then
1920
          dL = guy:FindFirstChild("Right Leg")
1921
          dL.BrickColor = BrickColor.new("Forest green")
1922
        end
1923
        coroutine.resume(coroutine.create(function()
1924
          if aL then
1925
            aL.Name = "Right Arm"
1926
            wait()
1927
          end
1928
          if bL then
1929
            bL.Name = "Left Leg"
1930
            wait()
1931
          end
1932
          if cL then
1933
            cL.Name = "Left Arm"
1934
            wait()
1935
          end
1936
          if dL then
1937
            dL.Name = "Right Leg"
1938
          end
1939
        end))
1940
      end
1941
    end
1942
  end
1943
end
1944
mouse.KeyDown:connect(function(key)
1945
  if human.Health <= 0 then
1946
    return
1947
  end
1948
  if key == "f" then
1949
    standappear(thenoob)
1950
  end
1951
  if key == "r" then
1952
    MUDA()
1953
  end
1954
  if key == "e" then
1955
    block()
1956
  end
1957
  if key == "v" then
1958
    cability()
1959
  end
1960
  if key == "m" and plr.UserId then
1961
    THEBEST()
1962
  end
1963
  if key == "j" then
1964
    THREATENING()
1965
  end
1966
  if key == "k" then
1967
    konodioda:Play()
1968
  end
1969
  if key == "l" then
1970
    bast:Play()
1971
  end
1972
  if key == "p" then
1973
    zaworld:Play()
1974
  end
1975
end)
1976
tool.Equipped:connect(function()
1977
  selected = true
1978
end)
1979
tool.Unequipped:connect(function()
1980
  selected = false
1981
end)
1982
sine = 0
1983
charge = 1
1984
cos = math.cos
1985
game:GetService("RunService").RenderStepped:connect(function()
1986
  if POSU == false then
1987
    local checkfloor = Ray.new(hrp.Position, hrp.CFrame.upVector * -4)
1988
    local checkpart = workspace:FindPartOnRayWithIgnoreList(checkfloor, {chr}, false, false)
1989
    local checkstate = human:GetState()
1990
    if checkstate.Value == 13 then
1991
      animpose = "Sitting"
1992
    elseif hrp.Velocity.y > 1 and checkpart == nil then
1993
      animpose = "Jumping"
1994
    elseif hrp.Velocity.y < -1 and checkpart == nil then
1995
      animpose = "Falling"
1996
    elseif 1 > (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude then
1997
      animpose = "Idle"
1998
    elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude < 35 then
1999
      animpose = "Walking"
2000
    elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude > 35 then
2001
      animpose = "TooFast"
2002
    end
2003
    if animpose == "Idle" then
2004
      sine = sine + charge
2005
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.03 * cos(sine / 60)) * ang(rd(0), rd(0), rd(0)), 0.3)
2006
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(3 - 3 * cos(sine / 60)), rd(0), rd(0)), 0.3)
2007
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 60)), rd(2 - 2 * cos(sine / 60)), rd(2 * cos(sine / 60))), 0.3)
2008
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2009
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 60)), rd(-2 - 2 * cos(sine / 60)), rd(2 * cos(sine / 60))), 0.3)
2010
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2011
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-3 - 1 * cos(sine / 60)), rd(-5 - 1 * cos(sine / 60)), rd(1 * cos(sine / 60))), 0.3)
2012
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2013
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-3 - 1 * cos(sine / 60)), rd(5 - 1 * cos(sine / 60)), rd(1 * cos(sine / 60))), 0.3)
2014
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2015
    end
2016
    if animpose == "Walking" then
2017
      sine = sine + charge
2018
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.03 * cos(sine / 60)) * ang(rd(0), rd(0), rd(0)), 0.3)
2019
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(3 - 3 * cos(sine / 60)), rd(0), rd(0)), 0.3)
2020
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 60)), rd(2 - 2 * cos(sine / 60)), rd(30 * cos(sine / 10))), 0.3)
2021
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2022
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 60)), rd(-2 - 2 * cos(sine / 60)), rd(30 * cos(sine / 10))), 0.3)
2023
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2024
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(-1 - 1 * cos(sine / 60)), rd(-30 * cos(sine / 10))), 0.6)
2025
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2026
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-1 - 1 * cos(sine / 60)), rd(1 - 1 * cos(sine / 60)), rd(-30 * cos(sine / 10))), 0.6)
2027
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2028
    end
2029
    if animpose == "Jumping" then
2030
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(0)), 0.3)
2031
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.3)
2032
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(7), rd(-5), rd(2)), 0.3)
2033
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2034
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(7), rd(5), rd(-3)), 0.3)
2035
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2036
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-10)), 0.3)
2037
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2038
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(20)), 0.3)
2039
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2040
    end
2041
    if animpose == "Falling" then
2042
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-6), rd(0), rd(0)), 0.3)
2043
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.3)
2044
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(7), rd(-5), rd(2)), 0.3)
2045
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2046
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(7), rd(5), rd(-3)), 0.3)
2047
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2048
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(10)), 0.3)
2049
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2050
      lerpz(LH, "C0", LHC0 * cf(-0.65, 0.75, 0) * ang(rd(0), rd(0), rd(20)), 0.3)
2051
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2052
    end
2053
    if animpose == "TooFast" then
2054
      lerpz(RJ, "C0", RJC0 * cf(0, 0, -1.5) * ang(rd(20), rd(0), rd(0)), 0.3)
2055
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.3)
2056
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-10)), 0.3)
2057
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2058
      lerpz(LS, "C0", LSC0 * cf(0, -0.75, 0) * ang(rd(10), rd(-80), rd(-10)), 0.3)
2059
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(30), rd(0), rd(0)), 0.3)
2060
      lerpz(RH, "C0", RHC0 * cf(0.75, 1.5, 0) * ang(rd(0), rd(0), rd(30)), 0.3)
2061
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2062
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(50)), 0.3)
2063
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2064
    end
2065
    if animpose == "Sitting" then
2066
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2067
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2068
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
2069
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2070
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
2071
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2072
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
2073
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2074
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
2075
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2076
    end
2077
  end
2078
  if appeared == false and activu == false then
2079
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2080
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2081
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2082
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2083
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2084
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2085
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2086
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2087
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2088
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2089
  elseif appeared == true and activu == false then
2090
    sine = sine + charge
2091
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0.05 * cos(sine / 90)) * ang(rd(1 - 1 * cos(sine / 90)), rd(0), rd(-5)), 0.3)
2092
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 90)), rd(0), rd(4)), 0.3)
2093
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(2 * cos(sine / 110)), rd(-3 - 3 * cos(sine / 100)), rd(0)), 0.3)
2094
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2095
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(2 * cos(sine / 110)), rd(3 - 3 * cos(sine / 100)), rd(0)), 0.3)
2096
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2097
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 100)), rd(-3 - 3 * cos(sine / 100)), rd(-2 - 2 * cos(sine / 100))), 0.3)
2098
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2099
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-2 - 2 * cos(sine / 100)), rd(3 - 3 * cos(sine / 100)), rd(2 - 2 * cos(sine / 100))), 0.3)
2100
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
2101
  end
2102
end)
2103
function dispose()
2104
  for i, v in pairs(getfenv(0)) do
2105
    v = nil
2106
  end
2107
  error = nil
2108
  print = nil
2109
  warn = nil
2110
end
2111
human.Died:connect(dispose)
2112
chr.Changed:connect(function()
2113
  if chr.Parent == nil then
2114
    dispose()
2115
  end
2116
end)
2117
local p = game.Players.LocalPlayer
2118
local char = p.Character
2119
local hed = char.Head
2120
local LocalPlayer = p
2121
2122
local Player = game.Players.localPlayer
2123
local Character = p.Character
2124
local LeftArm2 = Character["Left Arm"]
2125
local RightArm2 = Character["Right Arm"]
2126
local LeftLeg2 = Character["Left Leg"]
2127
local RightLeg2 = Character["Right Leg"]
2128
local Head2 = Character.Head
2129
local Torso2 = Character.Torso
2130
2131
--created by SoldierJoao
2132
--Credits to metabee for the knives edit
2133
cut = Instance.new("Sound", Character)
2134
cut.SoundId = "https://www.roblox.com/asset/?id=0"
2135
cut.Volume = 1.5
2136
thri = Instance.new("Sound", Character)
2137
thri.SoundId = "https://www.roblox.com/asset/?id=186311262"
2138
thri.Volume = 2.5
2139
WRY = Instance.new("Sound", Character)
2140
WRY.SoundId = "https://www.roblox.com/asset/?id=276152532"
2141
WRY.Volume = 5
2142
2143
local Players=game:service'Players'
2144
local Player=Players.LocalPlayer
2145
local Mouse=Player:GetMouse''
2146
local RenderStepped=game:service'RunService'.RenderStepped
2147
2148
local MeshId='http://www.roblox.com/asset?id=202083123'
2149
local TextureId='http://www.roblox.com/asset/?id=189436355'
2150
2151
local BeeSpeed= 100
2152
2153
local QHold=false
2154
local EHold=false
2155
2156
Mouse.Button1Down:connect(function()
2157
2158
cut:Play()
2159
if Mouse.Target and canworld == false then
2160
	
2161
local Bee=Instance.new('Part',Player.Character)
2162
Bee.CanCollide=false
2163
Bee.Size=Vector3.new(2,2,2)
2164
Bee.CFrame=Player.Character.Torso.CFrame
2165
local BeeMesh=Instance.new('SpecialMesh',Bee)
2166
BeeMesh.MeshType='FileMesh'
2167
BeeMesh.MeshId=MeshId
2168
BeeMesh.TextureId=TextureId
2169
BeeMesh.Scale=Vector3.new(1,1,1)
2170
local BodyVel=Instance.new('BodyVelocity',Bee)
2171
BodyVel.maxForce=Vector3.new(math.huge,math.huge,math.huge)
2172
local BodyGyro=Instance.new('BodyGyro',Bee)
2173
BodyGyro.maxTorque=Vector3.new(math.huge,math.huge,math.huge)
2174
BodyGyro.P=2e4
2175
coroutine.wrap(function()
2176
RenderStepped:connect(function()
2177
BodyGyro.cframe=CFrame.new(Bee.Position,Mouse.Hit.p)
2178
BodyVel.velocity=Bee.CFrame.lookVector*BeeSpeed
2179
end)
2180
end)()
2181
Bee.Touched:connect(function(p)
2182
if p.Parent~=Player.Character and p.Parent:FindFirstChild'Humanoid'then
2183
p.Parent:BreakJoints()
2184
Bee:Destroy''
2185
thri:Play()
2186
end
2187
end)
2188
end
2189
end)
2190
2191
2192
Mouse.KeyDown:connect(function(k)
2193
local Key=k:lower''
2194
if Key=='q'then
2195
QHold=true
2196
elseif Key=='e'then
2197
EHold=true
2198
end
2199
end)
2200
2201
Mouse.KeyUp:connect(function(k)
2202
local Key=k:lower''
2203
if Key=='q'then
2204
QHold=false
2205
elseif Key=='e'then
2206
EHold=false
2207
end
2208
end)
2209
2210
coroutine.wrap(function()
2211
RenderStepped:connect(function()
2212
if QHold then
2213
if BeeSpeed>0 then
2214
BeeSpeed=BeeSpeed-1
2215
end
2216
elseif EHold then
2217
BeeSpeed=BeeSpeed+1
2218
end
2219
end)
2220
end)()
2221
2222
2223
2224
2225
mse = Player:GetMouse()
2226
2227
sound2 = Instance.new("Sound", Character)
2228
sound2.SoundId = "https://www.roblox.com/asset/?id=864569342"
2229
sound2.Volume = 2.5
2230
sound4 = Instance.new("Sound", Character)
2231
sound4.SoundId = "https://www.roblox.com/asset/?id=616576400"
2232
sound4.Volume = 2
2233
TSTheme = Instance.new("Sound", Character)
2234
TSTheme.SoundId = "https://www.roblox.com/asset/?id=172374380"
2235
TSTheme.Volume = 2
2236
canworld = true
2237
mse.KeyDown:connect(function(key)
2238
	key = key:lower()
2239
	if key == "t" then
2240
                sound4:Play()
2241
		if canworld == false then return end
2242
		if canworld then
2243
		canworld = false
2244
		TSTheme:Play()
2245
2246
		local function spawnpart()
2247
		sphere = Instance.new("Part")
2248
		--game.Debris:AddItem(sphere,3)
2249
		local sm = Instance.new("SpecialMesh", sphere)
2250
		sm.MeshType = "Sphere"
2251
		sphere.Transparency = 0.5
2252
		sphere.Anchored = true
2253
		sphere.CanCollide = false
2254
		sphere.Material = "Neon"
2255
		sphere.BrickColor = BrickColor.new("Black")
2256
		end
2257
		
2258
		local function weld(lol)
2259
			local weld = Instance.new("Weld", Player.Character.Torso)
2260
			weld.Part0 = Player.Character.Torso
2261
			weld.Part1 = lol
2262
			weld.C0 = Player.Character.Torso.CFrame:inverse()
2263
			weld.C1 = lol.CFrame:inverse()
2264
		end
2265
		wait()
2266
		spawnpart()
2267
			for i, v in pairs(game.Players:GetChildren()) do
2268
			t = v.Character:FindFirstChild("Torso")
2269
			if t then
2270
				t.Anchored = true
2271
				Player.Character:FindFirstChild("Torso").Anchored = false
2272
			end
2273
			RA = v.Character:FindFirstChild("Right Arm")
2274
			if RA then
2275
				RA.Anchored = true
2276
				Player.Character:FindFirstChild("Right Arm").Anchored = false
2277
			end
2278
			LA = v.Character:FindFirstChild("Left Arm")
2279
			if LA then
2280
				LA.Anchored = true
2281
				Player.Character:FindFirstChild("Left Arm").Anchored = false
2282
			end
2283
			RL = v.Character:FindFirstChild("Right Leg")
2284
			if RL then
2285
				RL.Anchored = true
2286
				Player.Character:FindFirstChild("Right Leg").Anchored = false
2287
			end
2288
			LL = v.Character:FindFirstChild("Left Leg")
2289
			if LL then
2290
				LL.Anchored = true
2291
				Player.Character:FindFirstChild("Left Leg").Anchored = false
2292
			end
2293
		end
2294
		weld(sphere)
2295
		cce = Instance.new("ColorCorrectionEffect", game.Lighting)
2296
		cce.Saturation = -5
2297
		--game.Debris:AddItem(cce, 5)
2298
		sphere.Parent = Character.Torso
2299
		for i = 1,3 do
2300
			sphere.Size = sphere.Size + Vector3.new(50,50,50)
2301
			wait()
2302
			end
2303
wait()
2304
                        sphere:Destroy()
2305
BeeSpeed = 0
2306
		cce.Saturation = -0.1
2307
		wait(0.3)
2308
		cce.Saturation = -0.2
2309
		wait(0.3)
2310
		cce.Saturation = -0.3
2311
		wait(0.2)
2312
	        cce.Saturation = -1.5
2313
                wait()
2314
		end
2315
	end
2316
end
2317
)
2318
if canworld == false then
2319
	wait(9)
2320
	canworld = true
2321
end
2322
2323
mse.KeyDown:connect(function(key)
2324
	key = key:lower()
2325
	if key == "y" then
2326
canworld = true
2327
		sound2:Play()
2328
wait()
2329
BeeSpeed = 1
2330
		cce.Saturation = -1.3
2331
		wait(0.5)
2332
BeeSpeed = 1.2
2333
		cce.Saturation = -0.5
2334
		wait(0.5)
2335
BeeSpeed = 1.4
2336
		cce.Saturation = -0.4
2337
		wait(0.3)
2338
BeeSpeed = 1.5
2339
		cce.Saturation = -0.2
2340
		wait(0.2)
2341
	        cce.Saturation = 0
2342
2343
		for i, v in pairs(game.Players:GetChildren()) do
2344
		t = v.Character:FindFirstChild("Torso")
2345
			if t then
2346
				t.Anchored = false
2347
			end
2348
			RA = v.Character:FindFirstChild("Right Arm")
2349
			if RA then
2350
				RA.Anchored = false
2351
			end
2352
			LA = v.Character:FindFirstChild("Left Arm")
2353
			if LA then
2354
				LA.Anchored = false
2355
			end
2356
			RL = v.Character:FindFirstChild("Right Leg")
2357
			if RL then
2358
				RL.Anchored = false
2359
			end
2360
			LL = v.Character:FindFirstChild("Left Leg")
2361
			if LL then
2362
				LL.Anchored = false
2363
			end
2364
		end
2365
BeeSpeed = 100
2366
TSTheme:Stop()
2367
end
2368
end)