View difference between Paste ID: Y9XuzuRP and U5KeJTsP
SHOW: | | - or go back to the newest paste.
1
ffects         = {} --sound effects, for advanced players.
2
local Player    = game.Players.localPlayer
3
local Character = Player.Character
4
local Humanoid  = Character.Humanoid
5
z               = Instance.new("Sound", Character)
6-
z.SoundId       = "rbxassetid://0"--
6+
z.SoundId       = "rbxassetid://316385645"--
7
z.Looped        = true --False for a one-time song.
8
z.Pitch         = 1.0
9
z.Volume        = 2.5 wait(.1)
10
z:Play()
11
function TakeDamage(hum, dmg)
12
  hum:TakeDamage(dmg)
13
end
14
plr = game.Players.LocalPlayer
15
repeat
16
  wait(0.4)
17
until plr.Character
18
chr = plr.Character
19
human = chr:FindFirstChild("Humanoid")
20
human.MaxHealth, human.Health = math.huge, math.huge
21
mouse = plr:GetMouse()
22
cam = workspace.CurrentCamera
23
selected = false
24
equipd = false
25
tors = chr.Torso
26
rarm = chr["Right Arm"]
27
larm = chr["Left Arm"]
28
rleg = chr["Right Leg"]
29
lleg = chr["Left Leg"]
30
hrp = chr.HumanoidRootPart
31
hed = chr.Head
32
anim = human.Animator
33
activu = false
34
appeared = false
35
animpose = nil
36
POSU = false
37
local wherto = hrp
38
local addcfr = CFrame.new(0, 0, 0)
39
Heartbeat = Instance.new("BindableEvent")
40
Heartbeat.Name = "Heartbeat"
41
Heartbeat.Parent = script
42
frame = 0.03333333333333333
43
tf = 0
44
game:GetService("RunService").Heartbeat:connect(function(s, p)
45
  tf = tf + s
46
  if tf >= frame then
47
    for i = 1, math.floor(tf / frame) do
48
      Heartbeat:Fire()
49
    end
50
    tf = tf - frame * math.floor(tf / frame)
51
  end
52
end)
53
function swait(num)
54
  if num == 0 or num == nil then
55
    Heartbeat.Event:wait()
56
  else
57
    for i = 1, num do
58
      Heartbeat.Event:wait()
59
    end
60
  end
61
end
62
tool = Instance.new("Tool")
63
tool.CanBeDropped = false
64
tool.RequiresHandle = false
65
tool.TextureId = "rbxassetid://689854028"
66
tool.ToolTip = "NANI"
67
tool.Name = "AAAAAAAAAAAAAA"
68
tool.Parent = plr.Backpack
69
modz = Instance.new("Model")
70
modz.Name = "efx"
71
modz.Parent = chr
72
ZANOOB = Instance.new("Model")
73
ZANOOB.Name = "THE NOOB"
74
ZANOOB.Parent = chr
75
RSC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
76
RSC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
77
LSC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
78
LSC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
79
RHC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
80
RHC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
81
LHC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
82
RJC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
83
LHC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
84
NC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
85
NC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
86
RJC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
87
RS = tors:FindFirstChild("Right Shoulder")
88
LS = tors:FindFirstChild("Left Shoulder")
89
RH = tors:FindFirstChild("Right Hip")
90
LH = tors:FindFirstChild("Left Hip")
91
RJ = hrp:FindFirstChild("RootJoint")
92
N = tors:FindFirstChild("Neck")
93
cf = CFrame.new
94
ang = CFrame.Angles
95
rd = math.rad
96
rd2 = math.random
97
function nooutline(p)
98
  p.TopSurface, p.BottomSurface, p.LeftSurface, p.RightSurface, p.FrontSurface, p.BottomSurface = 10, 10, 10, 10, 10, 10
99
end
100
function makepart(color, name, reflec, mater, parnt, cfram)
101
  local port = Instance.new("Part")
102
  port.BrickColor = BrickColor.new(color)
103
  port.Name = name
104
  port.Transparency = 1
105
  nooutline(port)
106
  port.Reflectance = reflec
107
  port.Material = mater
108
  port.Anchored = false
109
  port.CanCollide = false
110
  port.Locked = true
111
  port.Size = Vector3.new(0.2, 0.2, 0.2)
112
  port.Parent = parnt
113
  return port
114
end
115
function makemesh(meshtype, scale, meshid, parent)
116
  local mes = Instance.new("SpecialMesh")
117
  mes.MeshType = meshtype
118
  mes.Scale = scale
119
  if meshtype == "FileMesh" then
120
    mes.MeshId = meshid
121
  end
122
  mes.Parent = parent
123
  return mes
124
end
125
function makemotor(parent, p0, p1, c0, c1)
126
  swait()
127
  local wel = Instance.new("Motor6D")
128
  wel.Part0 = p0
129
  wel.Part1 = p1
130
  wel.C0 = c0
131
  if c1 ~= nil then
132
    wel.C1 = c1
133
  end
134
  wel.Parent = parent
135
  return wel
136
end
137
local konodioda = Instance.new("Sound")
138
konodioda.SoundId = "rbxassetid://622342161"
139
konodioda.Volume = 3.5
140
konodioda.Parent = hrp
141
local bast = Instance.new("Sound")
142
bast.SoundId = "rbxassetid://170040190"
143
bast.Volume = 0.5
144
bast.Parent = hrp
145
local zaworld = Instance.new("Sound")
146
zaworld.SoundId = "rbxassetid://170040190"
147
zaworld.Volume = 0.8
148
zaworld.Parent = hrp
149
local wry = Instance.new("Sound")
150
wry.SoundId = "rbxassetid://170040190"
151
wry.Volume = 2.75
152
wry.Parent = hrp
153
function animo(yep)
154
  if yep == true then
155
    anim.Parent = human
156
    chr.Animate.Disabled = false
157
  elseif yep == false then
158
    chr.Animate.Disabled = true
159
    anim.Parent = nil
160
  end
161
end
162
animo(false)
163
function lerpz(joint, prop, cfrmz, alp)
164
  joint[prop] = joint[prop]:lerp(cfrmz, alp)
165
end
166
lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
167
lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
168
lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
169
lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
170
lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
171
lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
172
lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
173
lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
174
lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
175
lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
176
function resetlerp(whoever)
177
  if whoever == nil then
178
    RJ.C0 = RJC0
179
    RJ.C1 = RJC1
180
    N.C0 = NC0
181
    N.C1 = NC1
182
    RS.C0 = RSC0
183
    RS.C1 = RSC1
184
    LS.C0 = LSC0
185
    LS.C1 = LSC1
186
    RH.C0 = RHC0
187
    RH.C1 = RHC1
188
    LH.C0 = LHC0
189
    LH.C1 = LHC1
190
  elseif whoever ~= nil then
191
    nRJ.C0 = RJC0
192
    nRJ.C1 = RJC1
193
    nN.C0 = NC0
194
    nN.C1 = NC1
195
    nRS.C0 = RSC0
196
    nRS.C1 = RSC1
197
    nLS.C0 = LSC0
198
    nLS.C1 = LSC1
199
    nRH.C0 = RHC0
200
    nRH.C1 = RHC1
201
    nLH.C0 = LHC0
202
    nLH.C1 = LHC1
203
  end
204
end
205
function STANDO(cfr)
206
  local rooto = Instance.new("Part")
207
  nooutline(rooto)
208
  rooto.Name = "HumanoidRootPart"
209
  rooto.Anchored = true
210
  rooto.CFrame = cfr
211
  rooto.Size = Vector3.new(2, 2, 1)
212
  rooto.CanCollide = false
213
  rooto.Locked = true
214
  rooto.Transparency = 1
215
  rooto.Parent = ZANOOB
216
  local head = Instance.new("Part")
217
  nooutline(head)
218
  head.Anchored = false
219
  head.CFrame = rooto.CFrame * CFrame.new(0, 1.5, 0)
220
  head.Size = Vector3.new(2, 1, 1)
221
  head.BrickColor = BrickColor.new("Bright yellow")
222
  head.CanCollide = false
223
  head.Name = "Head"
224
  head.Locked = true
225
  head.Transparency = 1
226
  head.Parent = ZANOOB
227
  local headmesh = makemesh("Head", Vector3.new(1.25, 1.25, 1.25), nil, head)
228
  local headdecal = Instance.new("Decal")
229
  headdecal.Name = "face"
230
  headdecal.Texture = "rbxasset://textures/face.png"
231
  headdecal.Face = "Front"
232
  headdecal.Transparency = 1
233
  headdecal.Parent = head
234
  local torso = Instance.new("Part")
235
  nooutline(torso)
236
  torso.Name = "Torso"
237
  torso.Anchored = false
238
  torso.CFrame = rooto.CFrame * CFrame.new(0, 0, 0)
239
  torso.Size = Vector3.new(2, 1, 1)
240
  torso.BrickColor = BrickColor.new("Bright blue")
241
  torso.CanCollide = false
242
  torso.Transparency = 1
243
  torso.Locked = true
244
  torso.Parent = ZANOOB
245
  local torsomesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/torso.mesh", torso)
246
  local leftarm = Instance.new("Part")
247
  nooutline(leftarm)
248
  leftarm.Anchored = false
249
  leftarm.Name = "Left Arm"
250
  leftarm.CFrame = rooto.CFrame * CFrame.new(1.5, 0, 0)
251
  leftarm.Size = Vector3.new(1, 2, 1)
252
  leftarm.BrickColor = BrickColor.new("Bright yellow")
253
  leftarm.CanCollide = false
254
  leftarm.Transparency = 1
255
  leftarm.Locked = true
256
  leftarm.Parent = ZANOOB
257
  local leftarmmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/leftarm.mesh", leftarm)
258
  local rightarm = Instance.new("Part")
259
  nooutline(rightarm)
260
  rightarm.Anchored = false
261
  rightarm.CFrame = rooto.CFrame * CFrame.new(-1.5, 0, 0)
262
  rightarm.Name = "Right Arm"
263
  rightarm.Size = Vector3.new(1, 2, 1)
264
  rightarm.BrickColor = BrickColor.new("Bright yellow")
265
  rightarm.CanCollide = false
266
  rightarm.Locked = true
267
  rightarm.Transparency = 1
268
  rightarm.Parent = ZANOOB
269
  local rightarmmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/rightarm.mesh", rightarm)
270
  local leftleg = Instance.new("Part")
271
  nooutline(leftleg)
272
  leftleg.Anchored = false
273
  leftleg.CFrame = rooto.CFrame * CFrame.new(1.5, -1.5, 0)
274
  leftleg.Name = "Left Leg"
275
  leftleg.Size = Vector3.new(1, 2, 1)
276
  leftleg.BrickColor = BrickColor.new("Br. yellowish green")
277
  leftleg.CanCollide = false
278
  leftleg.Transparency = 1
279
  leftleg.Locked = true
280
  leftleg.Parent = ZANOOB
281
  local leftlegmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/leftleg.mesh", leftleg)
282
  local rightleg = Instance.new("Part")
283
  nooutline(rightleg)
284
  rightleg.Anchored = false
285
  rightleg.CFrame = rooto.CFrame * CFrame.new(-1.5, -1.5, 0)
286
  rightleg.Name = "Right Leg"
287
  rightleg.Size = Vector3.new(1, 2, 1)
288
  rightleg.BrickColor = BrickColor.new("Br. yellowish green")
289
  rightleg.CanCollide = false
290
  rightleg.Locked = true
291
  rightleg.Transparency = 1
292
  rightleg.Parent = ZANOOB
293
  local rightlegmesh = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxasset://fonts/rightleg.mesh", rightleg)
294
  local rootweld = makemotor(rooto, rooto, torso, RJC0, RJC1)
295
  rootweld.Name = "RootJoint"
296
  local neckweld = makemotor(torso, torso, head, NC0, NC1)
297
  neckweld.Name = "Neck"
298
  local rshoulderweld = makemotor(torso, torso, rightarm, RSC0, RSC1)
299
  rshoulderweld.Name = "Right Shoulder"
300
  local lshoulderweld = makemotor(torso, torso, leftarm, LSC0, LSC1)
301
  lshoulderweld.Name = "Left Shoulder"
302
  local rhipweld = makemotor(torso, torso, rightleg, RHC0, RHC1)
303
  rhipweld.Name = "Right Hip"
304
  local lhipweld = makemotor(torso, torso, leftleg, LHC0, LHC1)
305
  lhipweld.Name = "Left Hip"
306
  local pa1 = Instance.new("Part")
307
  nooutline(pa1)
308
  pa1.Anchored = false
309
  pa1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
310
  pa1.Name = "pa1"
311
  pa1.Size = Vector3.new(0.2, 0.2, 0.2)
312
  pa1.BrickColor = BrickColor.new("Bright yellow")
313
  pa1.CanCollide = false
314
  pa1.Locked = true
315
  pa1.Transparency = 1
316
  pa1.Parent = ZANOOB
317
  local pa1m = makemesh("FileMesh", Vector3.new(0.55, 0.55, 0.35), "rbxasset://fonts/torso.mesh", pa1)
318
  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))
319
  local pa2 = Instance.new("Part")
320
  nooutline(pa2)
321
  pa2.Anchored = false
322
  pa2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
323
  pa2.Name = "pa2"
324
  pa2.Size = Vector3.new(0.2, 0.2, 0.2)
325
  pa2.BrickColor = BrickColor.new("Bright yellow")
326
  pa2.CanCollide = false
327
  pa2.Locked = true
328
  pa2.Transparency = 1
329
  pa2.Parent = ZANOOB
330
  local pa2m = makemesh("FileMesh", Vector3.new(0.55, 0.55, 0.35), "rbxasset://fonts/torso.mesh", pa2)
331
  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))
332
  local pa3 = Instance.new("Part")
333
  nooutline(pa3)
334
  pa3.Anchored = false
335
  pa3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
336
  pa3.Name = "pa3"
337
  pa3.Size = Vector3.new(0.2, 0.2, 0.2)
338
  pa3.BrickColor = BrickColor.new("Bright yellow")
339
  pa3.CanCollide = false
340
  pa3.Locked = true
341
  pa3.Transparency = 1
342
  pa3.Parent = ZANOOB
343
  local pa3m = makemesh("FileMesh", Vector3.new(0.45, 0.45, 0.35), "rbxasset://fonts/torso.mesh", pa3)
344
  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))
345
  local pa4 = Instance.new("Part")
346
  nooutline(pa4)
347
  pa4.Anchored = false
348
  pa4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
349
  pa4.Name = "pa4"
350
  pa4.Size = Vector3.new(0.2, 0.2, 0.2)
351
  pa4.BrickColor = BrickColor.new("Bright yellow")
352
  pa4.CanCollide = false
353
  pa4.Locked = true
354
  pa4.Transparency = 1
355
  pa4.Parent = ZANOOB
356
  local pa4m = makemesh("FileMesh", Vector3.new(0.45, 0.45, 0.35), "rbxasset://fonts/torso.mesh", pa4)
357
  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))
358
  local pa5 = Instance.new("Part")
359
  nooutline(pa5)
360
  pa5.Anchored = false
361
  pa5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
362
  pa5.Name = "pa5"
363
  pa5.Size = Vector3.new(0.2, 0.2, 0.2)
364
  pa5.BrickColor = BrickColor.new("Bright yellow")
365
  pa5.CanCollide = false
366
  pa5.Locked = true
367
  pa5.Transparency = 1
368
  pa5.Parent = ZANOOB
369
  local pa5m = makemesh("FileMesh", Vector3.new(0.35, 0.35, 0.35), "rbxasset://fonts/torso.mesh", pa5)
370
  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))
371
  local pa6 = Instance.new("Part")
372
  nooutline(pa6)
373
  pa6.Anchored = false
374
  pa6.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
375
  pa6.Name = "pa6"
376
  pa6.Size = Vector3.new(0.2, 0.2, 0.2)
377
  pa6.BrickColor = BrickColor.new("Bright yellow")
378
  pa6.CanCollide = false
379
  pa6.Locked = true
380
  pa6.Transparency = 1
381
  pa6.Parent = ZANOOB
382
  local pa6m = makemesh("FileMesh", Vector3.new(0.35, 0.35, 0.35), "rbxasset://fonts/torso.mesh", pa6)
383
  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))
384
  local pa7 = Instance.new("Part")
385
  nooutline(pa7)
386
  pa7.Anchored = false
387
  pa7.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
388
  pa7.Name = "pa7"
389
  pa7.Size = Vector3.new(0.2, 0.2, 0.2)
390
  pa7.BrickColor = BrickColor.new("Bright yellow")
391
  pa7.CanCollide = false
392
  pa7.Locked = true
393
  pa7.Transparency = 1
394
  pa7.Parent = ZANOOB
395
  local pa7m = makemesh("FileMesh", Vector3.new(1.05, 0.201, 1.1), "rbxasset://fonts/torso.mesh", pa7)
396
  local pa7w = makemotor(pa7, pa7, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0), ang(0, 0, 0))
397
  local pa8 = Instance.new("Part")
398
  nooutline(pa8)
399
  pa8.Anchored = false
400
  pa8.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
401
  pa8.Name = "pa8"
402
  pa8.Size = Vector3.new(0.2, 0.2, 0.2)
403
  pa8.BrickColor = BrickColor.new("Bright yellow")
404
  pa8.CanCollide = false
405
  pa8.Locked = true
406
  pa8.Transparency = 1
407
  pa8.Parent = ZANOOB
408
  local pa8m = makemesh("FileMesh", Vector3.new(1.45, 1.45, 1), "rbxassetid://105992239", pa8)
409
  local pa8w = makemotor(pa8, pa8, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0.7), ang(0, 0, 0))
410
  local pa9 = Instance.new("Part")
411
  nooutline(pa9)
412
  pa9.Anchored = false
413
  pa9.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
414
  pa9.Name = "pa9"
415
  pa9.Size = Vector3.new(0.2, 0.2, 0.2)
416
  pa9.BrickColor = BrickColor.new("Br. yellowish green")
417
  pa9.CanCollide = false
418
  pa9.Locked = true
419
  pa9.Transparency = 1
420
  pa9.Parent = ZANOOB
421
  local pa9m = makemesh("FileMesh", Vector3.new(1.65, 1.65, 1), "rbxassetid://105992239", pa9)
422
  local pa9w = makemotor(pa9, pa9, torso, ang(rd(0), rd(0), rd(0)) * cf(0, 0.8, 0.675), ang(0, 0, 0))
423
  local pa10 = Instance.new("Part")
424
  nooutline(pa10)
425
  pa10.Anchored = false
426
  pa10.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
427
  pa10.Name = "pa10"
428
  pa10.Size = Vector3.new(0.2, 0.2, 0.2)
429
  pa10.BrickColor = BrickColor.new("Bright yellow")
430
  pa10.CanCollide = false
431
  pa10.Locked = true
432
  pa10.Transparency = 1
433
  pa10.Parent = ZANOOB
434
  local pa10m = makemesh("Head", Vector3.new(4.5, 11.5, 4.5), nil, pa10)
435
  local pa10w = makemotor(pa10, pa10, torso, ang(rd(0), rd(0), rd(0)) * cf(0.425, 0, -0.8), ang(0, 0, 0))
436
  local pa11 = Instance.new("Part")
437
  nooutline(pa11)
438
  pa11.Anchored = false
439
  pa11.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
440
  pa11.Name = "pa11"
441
  pa11.Size = Vector3.new(0.2, 0.2, 0.2)
442
  pa11.BrickColor = BrickColor.new("Bright yellow")
443
  pa11.CanCollide = false
444
  pa11.Locked = true
445
  pa11.Transparency = 1
446
  pa11.Parent = ZANOOB
447
  local pa11m = makemesh("Head", Vector3.new(4.5, 11.5, 4.5), nil, pa11)
448
  local pa11w = makemotor(pa11, pa11, torso, ang(rd(0), rd(0), rd(0)) * cf(-0.425, 0, -0.8), ang(0, 0, 0))
449
  local raemblem = Instance.new("Part")
450
  nooutline(raemblem)
451
  raemblem.Anchored = false
452
  raemblem.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
453
  raemblem.Name = "raemblem"
454
  raemblem.Size = Vector3.new(0.2, 0.2, 0.2)
455
  raemblem.BrickColor = BrickColor.new("Bright yellow")
456
  raemblem.CanCollide = false
457
  raemblem.Locked = true
458
  raemblem.Material = "SmoothPlastic"
459
  raemblem.Transparency = 1
460
  raemblem.Parent = ZANOOB
461
  local raemblemm = makemesh("Brick", Vector3.new(0, 3, 3), nil, raemblem)
462
  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))
463
  local emmes = Instance.new("Decal")
464
  emmes.Texture = "rbxassetid://291302154"
465
  emmes.Transparency = 1
466
  emmes.Face = "Right"
467
  emmes.Name = "embe"
468
  emmes.Parent = raemblem
469
  local ra1 = Instance.new("Part")
470
  nooutline(ra1)
471
  ra1.Anchored = false
472
  ra1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
473
  ra1.Name = "ra1"
474
  ra1.Size = Vector3.new(0.2, 0.2, 0.2)
475
  ra1.BrickColor = BrickColor.new("Bright yellow")
476
  ra1.CanCollide = false
477
  ra1.Locked = true
478
  ra1.Transparency = 1
479
  ra1.Parent = ZANOOB
480
  local ra1m = makemesh("FileMesh", Vector3.new(1.1, 0.25, 1.1), "rbxasset://fonts/rightarm.mesh", ra1)
481
  local ra1w = makemotor(ra1, ra1, rightarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
482
  local ra2 = Instance.new("Part")
483
  nooutline(ra2)
484
  ra2.Anchored = false
485
  ra2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
486
  ra2.Name = "ra2"
487
  ra2.Size = Vector3.new(0.2, 0.2, 0.2)
488
  ra2.BrickColor = BrickColor.new("Bright yellow")
489
  ra2.CanCollide = false
490
  ra2.Locked = true
491
  ra2.Transparency = 1
492
  ra2.Parent = ZANOOB
493
  local ra2m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.1), "rbxasset://fonts/rightarm.mesh", ra2)
494
  local ra2w = makemotor(ra2, ra2, rightarm, ang(rd(0), rd(0), rd(0)) * cf(-0.175, 0.9, 0), ang(rd(0), 0, 0))
495
  local ra3 = Instance.new("Part")
496
  nooutline(ra3)
497
  ra3.Anchored = false
498
  ra3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
499
  ra3.Name = "ra3"
500
  ra3.Size = Vector3.new(0.2, 0.2, 0.2)
501
  ra3.BrickColor = BrickColor.new("Br. yellowish green")
502
  ra3.CanCollide = false
503
  ra3.Locked = true
504
  ra3.Transparency = 1
505
  ra3.Parent = ZANOOB
506
  local ra3m = makemesh("FileMesh", Vector3.new(1.15, 0.2, 1.15), "rbxasset://fonts/rightarm.mesh", ra3)
507
  local ra3w = makemotor(ra3, ra3, rightarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
508
  local ra4 = Instance.new("Part")
509
  nooutline(ra4)
510
  ra4.Anchored = false
511
  ra4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
512
  ra4.Name = "ra4"
513
  ra4.Size = Vector3.new(0.2, 0.2, 0.2)
514
  ra4.BrickColor = BrickColor.new("Br. yellowish green")
515
  ra4.CanCollide = false
516
  ra4.Locked = true
517
  ra4.Transparency = 1
518
  ra4.Parent = ZANOOB
519
  local ra4m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.15), "rbxasset://fonts/rightarm.mesh", ra4)
520
  local ra4w = makemotor(ra4, ra4, rightarm, ang(rd(0), rd(0), rd(0)) * cf(-0.2, 0.85, 0), ang(rd(0), 0, 0))
521
  local ra5 = Instance.new("Part")
522
  nooutline(ra5)
523
  ra5.Anchored = false
524
  ra5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
525
  ra5.Name = "ra5"
526
  ra5.Size = Vector3.new(0.2, 0.2, 0.2)
527
  ra5.BrickColor = BrickColor.new("Bright yellow")
528
  ra5.CanCollide = false
529
  ra5.Locked = true
530
  ra5.Transparency = 1
531
  ra5.Parent = ZANOOB
532
  local ra5m = makemesh("FileMesh", Vector3.new(1.35, 1.35, 1.35), "rbxassetid://105992239", ra5)
533
  local ra5w = makemotor(ra5, ra5, rightarm, ang(rd(0), rd(90), rd(0)) * cf(-0.65, 0.7, 0), ang(rd(0), 0, 0))
534
  local la1 = Instance.new("Part")
535
  nooutline(la1)
536
  la1.Anchored = false
537
  la1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
538
  la1.Name = "la1"
539
  la1.Size = Vector3.new(0.2, 0.2, 0.2)
540
  la1.BrickColor = BrickColor.new("Bright yellow")
541
  la1.CanCollide = false
542
  la1.Locked = true
543
  la1.Transparency = 1
544
  la1.Parent = ZANOOB
545
  local la1m = makemesh("FileMesh", Vector3.new(1.1, 0.25, 1.1), "rbxasset://fonts/rightarm.mesh", la1)
546
  local la1w = makemotor(la1, la1, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
547
  local la2 = Instance.new("Part")
548
  nooutline(la2)
549
  la2.Anchored = false
550
  la2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
551
  la2.Name = "la2"
552
  la2.Size = Vector3.new(0.2, 0.2, 0.2)
553
  la2.BrickColor = BrickColor.new("Bright yellow")
554
  la2.CanCollide = false
555
  la2.Locked = true
556
  la2.Transparency = 1
557
  la2.Parent = ZANOOB
558
  local la2m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.1), "rbxasset://fonts/rightarm.mesh", la2)
559
  local la2w = makemotor(la2, la2, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0.175, 0.9, 0), ang(rd(0), 0, 0))
560
  local la3 = Instance.new("Part")
561
  nooutline(la3)
562
  la3.Anchored = false
563
  la3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
564
  la3.Name = "la3"
565
  la3.Size = Vector3.new(0.2, 0.2, 0.2)
566
  la3.BrickColor = BrickColor.new("Br. yellowish green")
567
  la3.CanCollide = false
568
  la3.Locked = true
569
  la3.Transparency = 1
570
  la3.Parent = ZANOOB
571
  local la3m = makemesh("FileMesh", Vector3.new(1.15, 0.2, 1.15), "rbxasset://fonts/rightarm.mesh", la3)
572
  local la3w = makemotor(la3, la3, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0, 0.55, 0), ang(rd(0), 0, 0))
573
  local la4 = Instance.new("Part")
574
  nooutline(la4)
575
  la4.Anchored = false
576
  la4.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
577
  la4.Name = "la4"
578
  la4.Size = Vector3.new(0.2, 0.2, 0.2)
579
  la4.BrickColor = BrickColor.new("Br. yellowish green")
580
  la4.CanCollide = false
581
  la4.Locked = true
582
  la4.Transparency = 1
583
  la4.Parent = ZANOOB
584
  local la4m = makemesh("FileMesh", Vector3.new(0.75, 0.15, 1.15), "rbxasset://fonts/rightarm.mesh", la4)
585
  local la4w = makemotor(la4, la4, leftarm, ang(rd(0), rd(0), rd(0)) * cf(0.2, 0.85, 0), ang(rd(0), 0, 0))
586
  local la5 = Instance.new("Part")
587
  nooutline(la5)
588
  la5.Anchored = false
589
  la5.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
590
  la5.Name = "la5"
591
  la5.Size = Vector3.new(0.2, 0.2, 0.2)
592
  la5.BrickColor = BrickColor.new("Bright yellow")
593
  la5.CanCollide = false
594
  la5.Locked = true
595
  la5.Transparency = 1
596
  la5.Parent = ZANOOB
597
  local la5m = makemesh("FileMesh", Vector3.new(1.35, 1.35, 1.35), "rbxassetid://105992239", la5)
598
  local la5w = makemotor(la5, la5, leftarm, ang(rd(0), rd(90), rd(0)) * cf(0.4, 0.7, 0), ang(rd(0), 0, 0))
599
  local ll1 = Instance.new("Part")
600
  nooutline(ll1)
601
  ll1.Anchored = false
602
  ll1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
603
  ll1.Name = "ll1"
604
  ll1.Size = Vector3.new(0.2, 0.2, 0.2)
605
  ll1.BrickColor = BrickColor.new("Br. yellowish green")
606
  ll1.CanCollide = false
607
  ll1.Locked = true
608
  ll1.Transparency = 1
609
  ll1.Parent = ZANOOB
610
  local ll1m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", ll1)
611
  local ll1w = makemotor(ll1, ll1, leftleg, ang(rd(7), rd(30), rd(20)) * cf(-0.25, -0.3, 0.525), ang(0, 0, 0))
612
  local ll2 = Instance.new("Part")
613
  nooutline(ll2)
614
  ll2.Anchored = false
615
  ll2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
616
  ll2.Name = "ll2"
617
  ll2.Size = Vector3.new(0.2, 0.2, 0.2)
618
  ll2.BrickColor = BrickColor.new("Br. yellowish green")
619
  ll2.CanCollide = false
620
  ll2.Locked = true
621
  ll2.Transparency = 1
622
  ll2.Parent = ZANOOB
623
  local ll2m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", ll2)
624
  local ll2w = makemotor(ll2, ll2, leftleg, ang(rd(7), rd(-30), rd(-20)) * cf(0.25, -0.3, 0.525), ang(0, 0, 0))
625
  local ll3 = Instance.new("Part")
626
  nooutline(ll3)
627
  ll3.Anchored = false
628
  ll3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
629
  ll3.Name = "ll3"
630
  ll3.Size = Vector3.new(0.2, 0.2, 0.2)
631
  ll3.BrickColor = BrickColor.new("Bright yellow")
632
  ll3.CanCollide = false
633
  ll3.Locked = true
634
  ll3.Transparency = 1
635
  ll3.Parent = ZANOOB
636
  local ll3m = makemesh("FileMesh", Vector3.new(1.4, 1.4, 1.3), "rbxassetid://105992239", ll3)
637
  local ll3w = makemotor(ll3, ll3, leftleg, ang(rd(15), rd(0), rd(0)) * cf(0, 0, 0.7), ang(0, 0, 0))
638
  local rr1 = Instance.new("Part")
639
  nooutline(rr1)
640
  rr1.Anchored = false
641
  rr1.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
642
  rr1.Name = "rr1"
643
  rr1.Size = Vector3.new(0.2, 0.2, 0.2)
644
  rr1.BrickColor = BrickColor.new("Br. yellowish green")
645
  rr1.CanCollide = false
646
  rr1.Locked = true
647
  rr1.Transparency = 1
648
  rr1.Parent = ZANOOB
649
  local rr1m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", rr1)
650
  local rr1w = makemotor(rr1, rr1, rightleg, ang(rd(7), rd(30), rd(20)) * cf(-0.25, -0.3, 0.525), ang(0, 0, 0))
651
  local rr2 = Instance.new("Part")
652
  nooutline(rr2)
653
  rr2.Anchored = false
654
  rr2.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
655
  rr2.Name = "rr2"
656
  rr2.Size = Vector3.new(0.2, 0.2, 0.2)
657
  rr2.BrickColor = BrickColor.new("Br. yellowish green")
658
  rr2.CanCollide = false
659
  rr2.Locked = true
660
  rr2.Transparency = 1
661
  rr2.Parent = ZANOOB
662
  local rr2m = makemesh("FileMesh", Vector3.new(0.5, 0.35, 0.2), "rbxasset://fonts/leftleg.mesh", rr2)
663
  local rr2w = makemotor(rr2, rr2, rightleg, ang(rd(7), rd(-30), rd(-20)) * cf(0.25, -0.3, 0.525), ang(0, 0, 0))
664
  local rr3 = Instance.new("Part")
665
  nooutline(rr3)
666
  rr3.Anchored = false
667
  rr3.CFrame = rooto.CFrame * CFrame.new(0, 2, 1)
668
  rr3.Name = "rr3"
669
  rr3.Size = Vector3.new(0.2, 0.2, 0.2)
670
  rr3.BrickColor = BrickColor.new("Bright yellow")
671
  rr3.CanCollide = false
672
  rr3.Locked = true
673
  rr3.Transparency = 1
674
  rr3.Parent = ZANOOB
675
  local rr3m = makemesh("FileMesh", Vector3.new(1.4, 1.4, 1.3), "rbxassetid://105992239", rr3)
676
  local rr3w = makemotor(rr3, rr3, rightleg, ang(rd(15), rd(0), rd(0)) * cf(0, 0, 0.7), ang(0, 0, 0))
677
  return ZANOOB
678
end
679
local thenoob = STANDO(hrp.CFrame * CFrame.new(0, 0, 0))
680
coroutine.resume(coroutine.create(function()
681
  local rot = thenoob.HumanoidRootPart
682
  repeat
683
    swait()
684
    rot.CFrame = rot.CFrame:lerp(wherto.CFrame * addcfr, 0.5)
685
  until rot == nil
686
end))
687
local rot = thenoob.HumanoidRootPart
688
local ntorso = thenoob:FindFirstChild("Torso")
689
local rightarm = thenoob:FindFirstChild("Right Arm")
690
local leftarm = thenoob:FindFirstChild("Left Arm")
691
local leftleg = thenoob:FindFirstChild("Left Leg")
692
local rightleg = thenoob:FindFirstChild("Right Leg")
693
local head = thenoob:FindFirstChild("Head")
694
local face = head:FindFirstChild("face")
695
local emblem = thenoob:FindFirstChild("raemblem"):FindFirstChild("embe")
696
local embpart = thenoob:FindFirstChild("raemblem")
697
local nRJ = rot:FindFirstChild("RootJoint")
698
local nN = ntorso:FindFirstChild("Neck")
699
local nRS = ntorso:FindFirstChild("Right Shoulder")
700
local nLS = ntorso:FindFirstChild("Left Shoulder")
701
local nRH = ntorso:FindFirstChild("Right Hip")
702
local nLH = ntorso:FindFirstChild("Left Hip")
703
function standappear(nbz)
704
  if selected == false or activu == true then
705
    return
706
  end
707
  if appeared == false then
708
    appeared = true
709
    wherto = hrp
710
    addcfr = cf(-2, 1, 2)
711
    local apear = Instance.new("Sound")
712
    apear.SoundId = "rbxassetid://367081354"
713
    apear.Parent = rot
714
    apear.Volume = 1.25
715
    game.Debris:AddItem(apear, 1.5)
716
    apear:Play()
717
    for _, n in pairs(nbz:GetChildren()) do
718
      coroutine.resume(coroutine.create(function()
719
        for _ = 1, 5 do
720
          if n ~= rot and n ~= embpart and n.ClassName ~= "Sound" then
721
            swait()
722
            n.Transparency = n.Transparency - 0.2
723
            face.Transparency = face.Transparency - 0.2
724
            emblem.Transparency = emblem.Transparency - 0.2
725
          end
726
        end
727
        if n ~= rot and n ~= embpart then
728
          n.Transparency = 0
729
        end
730
        face.Transparency = 0
731
        emblem.Transparency = 0
732
      end))
733
    end
734
  elseif appeared == true then
735
    appeared = false
736
    wherto = hrp
737
    addcfr = cf(0, 0, 0)
738
    for _, n in pairs(nbz:GetChildren()) do
739
      coroutine.resume(coroutine.create(function()
740
        for _ = 1, 5 do
741
          if n ~= rot and n ~= embpart then
742
            swait()
743
            n.Transparency = n.Transparency + 0.2
744
            face.Transparency = face.Transparency + 0.2
745
            emblem.Transparency = emblem.Transparency + 0.2
746
          end
747
        end
748
        if n ~= rot and n ~= embpart then
749
          n.Transparency = 1
750
        end
751
        face.Transparency = 1
752
        emblem.Transparency = 1
753
      end))
754
    end
755
  end
756
end
757
function THREATENING()
758
  if selected == false or activu == true then
759
    return
760
  end
761
  if POSU == false then
762
    POSU = true
763
    human.WalkSpeed = 0
764
    local d = Instance.new("ParticleEmitter")
765
    d.Name = "MENACINGU"
766
    d.Lifetime = NumberRange.new(1)
767
    d.Rate = 2
768
    d.Texture = "rbxassetid://424662471"
769
    d.VelocitySpread = 60
770
    d.Parent = tors
771
    human:SetStateEnabled(3, false)
772
    local randomoth = math.random(1, 2)
773
    if randomoth == 1 then
774
      repeat
775
        swait()
776
        lerpz(RJ, "C0", RJC0 * cf(0, 0, -0.05) * ang(rd(-5), rd(0), rd(-30)), 0.3)
777
        lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(30)), 0.3)
778
        lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(-20), rd(-5)), 0.3)
779
        lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
780
        lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(140), rd(-70), rd(-50)), 0.3)
781
        lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
782
        lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(-30), rd(10)), 0.3)
783
        lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
784
        lerpz(LH, "C0", LHC0 * cf(0.3, 0.1, -0.15) * ang(rd(-20), rd(50), rd(10)), 0.3)
785
        lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-10)), 0.3)
786
      until POSU == false
787
    elseif randomoth == 2 then
788
      repeat
789
        swait()
790
        lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(-2), rd(25)), 0.3)
791
        lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(6), rd(0), rd(-50)), 0.3)
792
        lerpz(RS, "C0", RSC0 * cf(-0.25, 0.3, -0.5) * ang(rd(-30), rd(-15), rd(200)), 0.3)
793
        lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
794
        lerpz(LS, "C0", LSC0 * cf(0.25, 0.3, -0.5) * ang(rd(-32), rd(13), rd(-195)), 0.3)
795
        lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
796
        lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-15), rd(-10)), 0.3)
797
        lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
798
        lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-5), rd(10), rd(-10)), 0.3)
799
        lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
800
      until POSU == false
801
    end
802
  elseif POSU == true then
803
    POSU = false
804
    human.WalkSpeed = 32
805
    human:SetStateEnabled(3, true)
806
    tors.MENACINGU:Destroy()
807
    activu = true
808
    activu = false
809
  end
810
end
811
local EHMMM = 0
812
function block()
813
  if EHMMM == 50 or selected == false or activu == true then
814
    return
815
  end
816
  if appeared == false then
817
    standappear(thenoob)
818
  end
819
  wherto = hrp
820
  addcfr = cf(0, 0, -3)
821
  local bep = true
822
  local humanshealth = human.Health
823
  activu = true
824
  human:SetStateEnabled(15, false)
825
  local de = mouse.KeyUp:connect(function(key)
826
    if key == "e" then
827
      bep = false
828
    end
829
  end)
830
  local poopes = 0
831
  repeat
832
    swait()
833
    poopes = poopes + 1
834
    human.Health = humanshealth
835
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(2), rd(0), rd(0)), 0.5)
836
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(7), rd(0), rd(0)), 0.5)
837
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(110), rd(160)), 0.5)
838
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.5)
839
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(-110), rd(-160)), 0.5)
840
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.5)
841
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
842
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
843
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
844
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
845
  until bep == false or poopes > 240
846
  de:Disconnect()
847
  human:SetStateEnabled(15, true)
848
  activu = false
849
  EHMMM = 50
850
  coroutine.resume(coroutine.create(function()
851
    wait(7)
852
    EHMMM = 0
853
  end))
854
  wherto = hrp
855
  addcfr = cf(-2, 1, 2)
856
end
857
function MUDA()
858
  if selected == false or activu == true then
859
    return
860
  end
861
  if appeared == false then
862
    standappear(thenoob)
863
    wherto = hrp
864
    addcfr = cf(0, 0, -3.5)
865
  end
866
  wry:Stop()
867
  local bep = true
868
  activu = true
869
  wherto = hrp
870
  addcfr = cf(0, 0, -3.5)
871
  local function blur(limb)
872
    coroutine.resume(coroutine.create(function()
873
      local memedon = {}
874
      for i = 1, 6 do
875
        local b1 = Instance.new("Part")
876
        nooutline(b1)
877
        b1.Size = Vector3.new(1, 2, 1)
878
        b1.CFrame = limb.CFrame * CFrame.new(rd2(-5, 5) / 10, rd2(-5, 5) / 10, rd2(-5, 5) / 10)
879
        b1.CanCollide = false
880
        b1.BrickColor = limb.BrickColor
881
        b1.Anchored = true
882
        b1.Transparency = 0.7
883
        b1.Locked = true
884
        b1.Parent = modz
885
        table.insert(memedon, b1)
886
      end
887
      local num = 0
888
      repeat
889
        swait()
890
        num = num % 6 + 1
891
        memedon[num].CFrame = limb.CFrame * CFrame.new(rd2(-5, 5) / 10, rd2(-5, 5) / 10, rd2(-5, 5) / 10)
892
      until bep == false
893
      for i = 1, #memedon do
894
        swait()
895
        memedon[i]:Destroy()
896
      end
897
    end))
898
  end
899
  local de = mouse.KeyUp:connect(function(key)
900
    if key == "r" then
901
      bep = false
902
    end
903
  end)
904
  blur(rightarm)
905
  blur(leftarm)
906
local mudodo = Instance.new("Sound")
907
  mudodo.Volume = 7.5
908
  mudodo.SoundId = "rbxassetid://612888361"
909
mudodo.Looped = true
910
  mudodo.Parent = hrp
911
  mudodo:Play()
912
  repeat
913
    for _ = 1, 2 do
914
      swait()
915
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(4), rd(4), rd(30)), 0.85)
916
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(-28)), 0.85)
917
      lerpz(nRS, "C0", RSC0 * cf(0.5, 0.25, -0.1) * ang(rd(20), rd(20), rd(105)), 0.85)
918
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
919
      lerpz(nLS, "C0", LSC0 * cf(0.25, 0.1, 0) * ang(rd(30), rd(10), rd(-70)), 0.85)
920
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
921
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
922
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
923
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
924
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
925
    end
926
    hito(rightarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
927
    for _ = 1, 2 do
928
      swait()
929
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(5), rd(2), rd(-30)), 0.85)
930
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(2), rd(0), rd(31)), 0.85)
931
      lerpz(nRS, "C0", RSC0 * cf(-0.1, 0.05, -0.1) * ang(rd(-10), rd(-30), rd(75)), 0.85)
932
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
933
      lerpz(nLS, "C0", LSC0 * cf(-0.5, 0.1, -0.2) * ang(rd(-30), rd(10), rd(-70)), 0.85)
934
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
935
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
936
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
937
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
938
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
939
    end
940
    hito(leftarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
941
    for _ = 1, 2 do
942
      swait()
943
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(3), rd(3), rd(32)), 0.85)
944
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(-2), rd(0), rd(-29)), 0.85)
945
      lerpz(nRS, "C0", RSC0 * cf(0.35, 0.25, 0.1) * ang(rd(-10), rd(-20), rd(95)), 0.85)
946
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
947
      lerpz(nLS, "C0", LSC0 * cf(0.25, 0.1, 0) * ang(rd(-10), rd(10), rd(-80)), 0.85)
948
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
949
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
950
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
951
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.85)
952
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
953
    end
954
    hito(rightarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
955
    for _ = 1, 2 do
956
      swait()
957
      lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(3), rd(-40)), 0.85)
958
      lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(-2), rd(35)), 0.85)
959
      lerpz(nRS, "C0", RSC0 * cf(-0.1, 0.05, -0.1) * ang(rd(20), rd(-30), rd(65)), 0.85)
960
      lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
961
      lerpz(nLS, "C0", LSC0 * cf(-0.5, 0.1, -0.2) * ang(rd(-30), rd(30), rd(-75)), 0.85)
962
      lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
963
      lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
964
      lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
965
      lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.85)
966
      lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.85)
967
    end
968
    hito(leftarm, 3.3, 5, 0.01, rot.CFrame.lookVector * 5)
969
  until bep == false or 0 >= human.Health
970
  de:Disconnect()
971
mudodo:Stop()
972
  wry:Play()
973
  for _ = 1, 6 do
974
    swait()
975
    lerpz(nRJ, "C0", RJC0 * cf(0, 1.25, 0) * ang(rd(0), rd(4), rd(-85)), 0.75)
976
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(75)), 0.75)
977
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(100)), 0.75)
978
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
979
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.75)
980
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
981
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.75)
982
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
983
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.75)
984
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
985
  end
986
  for _ = 1, 7 do
987
    swait()
988
    hito(rightarm, 3, 20, 0.35, rot.CFrame.lookVector * 50)
989
    lerpz(nRJ, "C0", RJC0 * cf(0, -1, 0) * ang(rd(0), rd(10), rd(75)), 0.75)
990
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-65)), 0.75)
991
    lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-60), rd(100)), 0.75)
992
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.75)
993
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.75)
994
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
995
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.75)
996
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
997
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.75)
998
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.75)
999
  end
1000
  swait(5)
1001
  wherto = hrp
1002
mudodo:Destroy()
1003
  addcfr = cf(-2, 1, 2)
1004
  activu = false
1005
end
1006
function cability()
1007
  if selected == false or activu == true then
1008
    return
1009
  end
1010
  if appeared == false then
1011
    standappear(thenoob)
1012
    wherto = hrp
1013
    addcfr = cf(0, 0, -3.75)
1014
  end
1015
  activu = true
1016
  wherto = hrp
1017
  addcfr = cf(0, 0, -3.5)
1018
  local ZAWRUA = Instance.new("Sound")
1019
  ZAWRUA.SoundId = "rbxassetid://540228852"
1020
  ZAWRUA.Volume = 3
1021
  ZAWRUA.Parent = hrp
1022
  ZAWRUA:Play()
1023
  game.Debris:AddItem(ZAWRUA, 2.5)
1024
  local wate = Instance.new("Part")
1025
  nooutline(wate)
1026
  wate.Size = Vector3.new(0.2, 0.2, 0.2)
1027
  wate.Material = "Neon"
1028
  wate.Transparency = 1
1029
  wate.BrickColor = BrickColor.new("Br. yellowish green")
1030
  wate.CFrame = rightarm.CFrame * cf(0, -1.5, 0)
1031
  wate.Anchored = true
1032
  wate.CanCollide = false
1033
  wate.Parent = modz
1034
  local wmesh = makemesh("Sphere", Vector3.new(5, 5, 5), nil, wate)
1035
  coroutine.resume(coroutine.create(function()
1036
    repeat
1037
      swait()
1038
      wate.CFrame = rightarm.CFrame * cf(0, -1, 0)
1039
      wmesh.Scale = wmesh.Scale:lerp(Vector3.new(10, 10, 10), 0.5)
1040
    until not wate
1041
  end))
1042
  coroutine.resume(coroutine.create(function()
1043
    local pt = {}
1044
    for _ = 1, 10 do
1045
      local wp = Instance.new("Part")
1046
      nooutline(wp)
1047
      wp.Size = Vector3.new(0.2, 0.2, 0.2)
1048
      wp.Material = "Neon"
1049
      wp.Transparency = 1
1050
      wp.BrickColor = BrickColor.new("Br. yellowish green")
1051
      wp.CFrame = wate.CFrame * ang(rd2(-100, 100) / 1000, rd2(-100, 100) / 1000, rd2(-100, 100) / 1000) * cf(0, -0.25, 0)
1052
      wp.Anchored = true
1053
      wp.CanCollide = false
1054
      wp.Parent = modz
1055
      local wmz = makemesh("Sphere", Vector3.new(0.5, 2, 0.5), nil, wp)
1056
      table.insert(pt, wp)
1057
      table.insert(pt, wmz)
1058
    end
1059
    for m = 1, 45 do
1060
      swait()
1061
      for _, hey in pairs(pt) do
1062
        if hey.ClassName == "SpecialMesh" then
1063
          hey.Scale = hey.Scale + Vector3.new(0.005, 0.04, 0.005)
1064
        elseif hey.ClassName == "Part" then
1065
          hey.CFrame = wate.CFrame * ang(rd(rd2(-360, 360)), rd(rd2(-360, 360)), rd(rd2(-360, 360))) * cf(0, -m / 25, 0)
1066
          hey.Transparency = hey.Transparency - 0.015
1067
        end
1068
      end
1069
    end
1070
    for m = 45, 50 do
1071
      swait()
1072
      for _, hey in pairs(pt) do
1073
        if hey.ClassName == "SpecialMesh" then
1074
          hey.Scale = hey.Scale + Vector3.new(0.025, 0.08, 0.025)
1075
        elseif hey.ClassName == "Part" then
1076
          hey.CFrame = wate.CFrame * ang(rd(rd2(-360, 360)), rd(rd2(-360, 360)), rd(rd2(-360, 360))) * cf(0, -m / 25, 0)
1077
          hey.Transparency = hey.Transparency + 0.2
1078
        end
1079
      end
1080
    end
1081
    for _, AAA in pairs(pt) do
1082
      if AAA.ClassName == "Part" then
1083
        AAA:Destroy()
1084
      end
1085
    end
1086
  end))
1087
  for _ = 1, 50 do
1088
    swait()
1089
    wmesh.Scale = Vector3.new(9, 9, 9)
1090
    wate.Transparency = wate.Transparency - 0.008
1091
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(-125)), 0.2)
1092
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(115)), 0.2)
1093
    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)
1094
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1095
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.2)
1096
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1097
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.2)
1098
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1099
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.2)
1100
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.2)
1101
  end
1102
  local pooo = Instance.new("Sound")
1103
  pooo.SoundId = "rbxassetid://663514083"
1104
  pooo.Volume = 3
1105
  pooo.Parent = hrp
1106
  pooo:Play()
1107
  game.Debris:AddItem(pooo, 2.5)
1108
  for _ = 1, 1 do
1109
    swait()
1110
    wate.Transparency = wate.Transparency + 0.15
1111
    lerpz(nRJ, "C0", RJC0 * cf(0, -2, 0) * ang(rd(0), rd(10), rd(35)), 0.5)
1112
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-30)), 0.5)
1113
    lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-80), rd(100)), 0.5)
1114
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
1115
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
1116
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1117
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
1118
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1119
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
1120
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1121
  end
1122
  local swoo = Instance.new("Part")
1123
  nooutline(swoo)
1124
  swoo.Size = Vector3.new(0.2, 0.2, 0.2)
1125
  swoo.Material = "Neon"
1126
  swoo.Transparency = 0.2
1127
  swoo.BrickColor = BrickColor.new("Br. yellowish green")
1128
  swoo.CFrame = rightarm.CFrame * ang(rd(0), rd(-15), rd(240)) * cf(1.5, -2.5, 0)
1129
  swoo.Anchored = true
1130
  swoo.CanCollide = false
1131
  swoo.Parent = modz
1132
  local wmesh = makemesh("FileMesh", Vector3.new(0.013333333333333334, 0.015384615384615385, 0.025), "rbxassetid://576041905", swoo)
1133
  local pli = Instance.new("PointLight")
1134
  pli.Brightness = 2
1135
  pli.Color = Color3.new(0.45098039215686275, 1, 0)
1136
  pli.Range = 10
1137
  pli.Shadows = true
1138
  pli.Parent = swoo
1139
  hito(swoo, 5, 40, 0.15, rot.CFrame.lookVector * 80)
1140
  tagability(swoo, 4)
1141
  for _ = 1, 10 do
1142
    swait()
1143
    wate.Transparency = wate.Transparency + 0.05
1144
    swoo.Transparency = swoo.Transparency + 0.075
1145
    pli.Range = pli.Range - 1
1146
    lerpz(nRJ, "C0", RJC0 * cf(0, -3, 0) * ang(rd(0), rd(10), rd(105)), 0.5)
1147
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(-7), rd(-65)), 0.5)
1148
    lerpz(nRS, "C0", RSC0 * cf(0.75, 0, 0.25) * ang(rd(10), rd(-30), rd(100)), 0.5)
1149
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(-20), rd(0)), 0.5)
1150
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
1151
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1152
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
1153
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1154
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
1155
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1156
  end
1157
  wate:Destroy()
1158
  swoo:Destroy()
1159
  pli:Destroy()
1160
  swait(15)
1161
  wherto = hrp
1162
  addcfr = cf(-2, 1, 2)
1163
  activu = false
1164
end
1165
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=188959462")
1166
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=616594208")
1167
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=616576400")
1168
game:GetService("ContentProvider"):Preload("http://www.roblox.com/asset/?id=291088606")
1169
function THEBEST()
1170
  if selected == false or activu == true or appeared == true or POSU == true then
1171
    return
1172
  end
1173
  local dipperhat = chr:FindFirstChild("DXD_DipperHat")
1174
  local dipperrot
1175
  if dipperhat then
1176
    dipperrot = dipperhat.Handle.HatAttachment.Rotation
1177
  end
1178
  activu = true
1179
  POSU = true
1180
  cam.CameraType = "Scriptable"
1181
  chr.PrimaryPart = hrp
1182
  human.WalkSpeed = 0
1183
  human:SetStateEnabled(3, false)
1184
  local actmus1 = Instance.new("Sound")
1185
  actmus1.SoundId = "rbxassetid://540268582"
1186
  actmus1.Volume = 1.5
1187
  actmus1.RollOffMode = 1
1188
  actmus1.TimePosition = 0
1189
  actmus1.Parent = cam
1190
  local actmus2 = Instance.new("Sound")
1191
  actmus2.SoundId = "rbxassetid://540268582"
1192
  actmus2.Volume = 1.5
1193
  actmus2.RollOffMode = 1
1194
  actmus2.TimePosition = 0
1195
  actmus2.Parent = hrp
1196
  actmus1:Play()
1197
  actmus2:Play()
1198
  local mus1 = Instance.new("Sound")
1199
  mus1.SoundId = "rbxassetid://622342161"
1200
  mus1.Volume = 1.25
1201
  mus1.TimePosition = 0.45
1202
  mus1.Parent = cam
1203
  local mus2 = Instance.new("Sound")
1204
  mus2.SoundId = "rbxassetid://622342161"
1205
  mus2.Volume = 1.25
1206
  mus2.TimePosition = 0.45
1207
  mus2.Parent = hrp
1208
  local zawarudoda = Instance.new("Sound")
1209
  zawarudoda.SoundId = "rbxassetid://622342161"
1210
  zawarudoda.Volume = 2
1211
  zawarudoda.TimePosition = 0.3
1212
  zawarudoda.Parent = hrp
1213
  mus1:Play()
1214
  mus2:Play()
1215
  cam.CoordinateFrame = hrp.CFrame * ang(rd(20), rd(100), rd(0)) * cf(0, 0, 7)
1216
  local regface = hed.face.Texture
1217
  local whogothit, bodyvel
1218
  local function checkhit(partoz, magn)
1219
    for _, guy in pairs(workspace:GetChildren()) do
1220
      if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("HumanoidRootPart") and guy ~= chr and magn > (guy:FindFirstChild("HumanoidRootPart").Position - partoz.Position).magnitude and not whogothit then
1221
        whogothit = guy
1222
        guy:FindFirstChild("Humanoid").PlatformStand = true
1223
        do
1224
          local derp = Instance.new("BodyPosition")
1225
          derp.MaxForce = Vector3.new(999999999999, 999999999999, 999999999999)
1226
          derp.P = 8000
1227
          derp.D = 500
1228
          derp.Position = hrp.Position + hrp.CFrame.lookVector * 20
1229
          derp.Parent = guy:FindFirstChild("HumanoidRootPart")
1230
          bodyvel = derp
1231
          local derp2 = Instance.new("BodyAngularVelocity")
1232
          derp2.MaxTorque = Vector3.new(999999999999, 999999999999, 999999999999)
1233
          derp2.P = 8000
1234
          derp2.AngularVelocity = Vector3.new(rd2(2, 4), rd2(50, 100), 0)
1235
          derp2.Parent = guy:FindFirstChild("HumanoidRootPart")
1236
          delay(0.1, function()
1237
            derp2:Destroy()
1238
          end)
1239
          bodyvel = derp
1240
        end
1241
      end
1242
    end
1243
  end
1244
  coroutine.resume(coroutine.create(function()
1245
    for _ = 1, 25 do
1246
      swait()
1247
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(-5), rd(-20)), 0.3)
1248
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(10), rd(20)), 0.3)
1249
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(30), rd(-30)), 0.3)
1250
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1251
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.3)
1252
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1253
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-20)), 0.3)
1254
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1255
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
1256
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1257
    end
1258
    for _ = 1, 20 do
1259
      swait()
1260
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(-5), rd(-20)), 0.3)
1261
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(10), rd(20)), 0.3)
1262
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(30), rd(-30)), 0.3)
1263
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1264
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0.4) * ang(rd(70), rd(-60), rd(-100)), 0.3)
1265
      if dipperhat then
1266
        dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, -40, 0), 0.3)
1267
      end
1268
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1269
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-20)), 0.3)
1270
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1271
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
1272
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1273
    end
1274
  end))
1275
  repeat
1276
    swait()
1277
    cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(1), rd(0)) * cf(0.15, 0, 0)
1278
  until mus1.TimePosition > 2.9
1279
  mus1:Pause()
1280
  mus2:Pause()
1281
  zawarudoda:Play()
1282
  coroutine.resume(coroutine.create(function()
1283
    for _ = 1, 7 do
1284
      swait()
1285
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(-5)), 0.4)
1286
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(5), rd(2), rd(0)), 0.3)
1287
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(80), rd(80)), 0.3)
1288
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1289
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(-80), rd(-70)), 0.3)
1290
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1291
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-10)), 0.3)
1292
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1293
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(10)), 0.3)
1294
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1295
    end
1296
    for _ = 1, 16 do
1297
      swait()
1298
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-15), rd(0), rd(-5)), 0.4)
1299
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(15), rd(8), rd(0)), 0.3)
1300
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(-80), rd(80)), 0.3)
1301
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1302
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(80), rd(-70)), 0.3)
1303
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1304
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-15)), 0.3)
1305
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1306
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(15)), 0.3)
1307
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1308
    end
1309
  end))
1310
  repeat
1311
    swait()
1312
  until zawarudoda.TimePosition > 1.4
1313
  zawarudoda:Pause()
1314
  activu = false
1315
  standappear(thenoob)
1316
  wherto = hrp
1317
  addcfr = cf(3, 0.25, -1.5)
1318
  activu = true
1319
  cam.CoordinateFrame = hrp.CFrame * ang(rd(-25), rd(0), rd(0)) * cf(0, 2, 3)
1320
  for _ = 1, 10 do
1321
    swait()
1322
    cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 1.5)
1323
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(-75)), 0.5)
1324
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(45)), 0.5)
1325
    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)
1326
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1327
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.5)
1328
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1329
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.5)
1330
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1331
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.5)
1332
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1333
  end
1334
  wherto = hrp
1335
  addcfr = cf(-3, 0.25, -1.5)
1336
  for _ = 1, 25 do
1337
    swait()
1338
    checkhit(rightarm, 3)
1339
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(4), rd(105)), 0.4)
1340
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(3), rd(-45)), 0.4)
1341
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(100)), 0.4)
1342
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1343
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-25), rd(10), rd(10)), 0.4)
1344
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1345
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(-5)), 0.4)
1346
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1347
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(5)), 0.4)
1348
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
1349
  end
1350
  if whogothit then
1351
    print("derp")
1352
    cam.CoordinateFrame = hrp.CFrame * ang(rd(15), rd(140), rd(0)) * cf(0, 1, 4)
1353
    local laugo = Instance.new("Sound")
1354
    laugo.SoundId = "rbxassetid://531612047"
1355
    laugo.Volume = 1.5
1356
    laugo.Parent = hrp
1357
    game.Debris:AddItem(laugo, 2.5)
1358
    laugo:Play()
1359
    local sda = 0
1360
    local chn = 2
1361
    local cs = math.cos
1362
    for D = 1, 60 do
1363
      swait()
1364
      cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.15)
1365
      sda = sda + chn
1366
      lerpz(RJ, "C0", RJC0 * cf(0, 0.75, 1 * cs(sda / 2)) * ang(rd(-40), rd(0), rd(-5)), 0.8 / D)
1367
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-60 + 40 * cs(sda / 2)), rd(8), rd(0)), 0.8 / D)
1368
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(10), rd(-110 + 80 * cs(sda / 2)), rd(80)), 0.8 / D)
1369
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1370
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(110 + 80 * cs(sda / 2)), rd(-70)), 0.8 / D)
1371
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1372
      lerpz(RH, "C0", RHC0 * cf(0, -1 * cs(sda / 2), 0) * ang(rd(-10), rd(-10), rd(-40)), 0.8 / D)
1373
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1374
      lerpz(LH, "C0", LHC0 * cf(0, -1 * cs(sda / 2), 0) * ang(rd(-10), rd(10), rd(40)), 0.8 / D)
1375
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.8 / D)
1376
    end
1377
    hed.face.Texture = "rbxassetid://292916914"
1378
    mus1.TimePosition = 2.75
1379
    mus1:Play()
1380
    for C = 1, 30 do
1381
      swait()
1382
      cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, -(0.02 + C / 60))
1383
      sda = sda + chn
1384
      lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(20), rd(0), rd(-5)), 0.05 + C / 31)
1385
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(30), rd(0), rd(0)), 0.05 + C / 31)
1386
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-20)), 0.05 + C / 31)
1387
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1388
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(35), rd(-50), rd(-100)), 0.05 + C / 31)
1389
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1390
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(20)), 0.05 + C / 31)
1391
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1392
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(20)), 0.05 + C / 31)
1393
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.05 + C / 31)
1394
    end
1395
    for _ = 1, 5 do
1396
      swait()
1397
      cam.CoordinateFrame = cam.CoordinateFrame * ang(rd(0), rd(0), rd(0)) * cf(0, 0, 0.02)
1398
      sda = sda + chn
1399
      lerpz(RJ, "C0", RJC0 * cf(0, -0.5, 0) * ang(rd(20), rd(0), rd(-5)), 0.5)
1400
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.5)
1401
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-10), rd(-20), rd(-20)), 0.5)
1402
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1403
      lerpz(LS, "C0", LSC0 * cf(0, 0.25, 0) * ang(rd(60), rd(-60), rd(-100)), 0.5)
1404
      if dipperhat then
1405
        dipperhat.Handle.HatAttachment.Rotation = dipperhat.Handle.HatAttachment.Rotation:lerp(dipperrot + Vector3.new(0, 0, 0), 0.5)
1406
      end
1407
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1408
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-10), rd(-10), rd(20)), 0.5)
1409
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1410
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-10), rd(10), rd(20)), 0.5)
1411
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
1412
    end
1413
    wait(2)
1414
  elseif whogothit == nil then
1415
    print("noderp")
1416
  end
1417
  human:SetStateEnabled(3, true)
1418
  activu = false
1419
  standappear(thenoob)
1420
  activu = true
1421
  if dipperhat then
1422
    dipperhat.Handle.HatAttachment.Rotation = dipperrot
1423
  end
1424
  actmus1:Destroy()
1425
  actmus2:Destroy()
1426
  bast:Play()
1427
  if bodyvel then
1428
    bodyvel:Destroy()
1429
  end
1430
  cam.CameraType = "Custom"
1431
  hed.face.Texture = regface
1432
  chr.PrimaryPart = head
1433
  human.WalkSpeed = 16
1434
  activu = false
1435
  POSU = false
1436
end
1437
function hito(partoz, magn, dmg, debtim, bodyfdire)
1438
  for _, guy in pairs(workspace:GetChildren()) do
1439
    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
1440
      do
1441
        local humz = guy:FindFirstChild("Humanoid")
1442
        local horp = guy:FindFirstChild("HumanoidRootPart")
1443
        TakeDamage(humz, dmg)
1444
        local db = Instance.new("StringValue")
1445
        db.Name = "alabo"
1446
        db.Parent = horp
1447
        delay(debtim, function()
1448
          db:Destroy()
1449
        end)
1450
        local b = Instance.new("Part")
1451
        nooutline(b)
1452
        b.Size = Vector3.new(0.2, 0.2, 0.2)
1453
        b.Transparency = 0.25
1454
        b.Anchored = true
1455
        b.CanCollide = false
1456
        b.BrickColor = BrickColor.new("Institutional white")
1457
        b.Locked = true
1458
        b.CFrame = horp.CFrame * CFrame.new(rd2(-1, 1), rd2(-2, 2), rd2(-1, 1))
1459
        b.Parent = modz
1460
        local c = Instance.new("SpecialMesh")
1461
        c.MeshType = "Sphere"
1462
        c.Scale = Vector3.new(3.5, 3.5, 3.5)
1463
        c.Parent = b
1464
        game.Debris:AddItem(b, 1)
1465
        if bodyfdire then
1466
          local boopyve = Instance.new("BodyVelocity")
1467
          boopyve.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
1468
          boopyve.P = math.huge
1469
          boopyve.Velocity = bodyfdire
1470
          boopyve.Parent = horp
1471
          game.Debris:AddItem(boopyve, debtim)
1472
        end
1473
        local bet = Instance.new("Sound")
1474
        bet.Pitch = rd2(9, 11) / 10
1475
        bet.Volume = rd2(12, 14) / 10
1476
        bet.SoundId = "rbxassetid://165604684"
1477
        bet.Parent = b
1478
        bet:Play()
1479
        coroutine.resume(coroutine.create(function()
1480
          for _ = 1, 5 do
1481
            swait()
1482
            b.Transparency = b.Transparency + 0.15
1483
            c.Scale = c.Scale + Vector3.new(0.8 * dmg, 0.8 * dmg, 0.8 * dmg)
1484
          end
1485
        end))
1486
      end
1487
    end
1488
  end
1489
end
1490
function tagability(partoz, magn)
1491
  for _, guy in pairs(workspace:GetChildren()) do
1492
    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
1493
      do
1494
        local humz = guy:FindFirstChild("Humanoid")
1495
        humz.PlatformStand = true
1496
        delay(1, function()
1497
          humz.PlatformStand = false
1498
        end)
1499
        local horp = guy:FindFirstChild("HumanoidRootPart")
1500
        local db = Instance.new("StringValue")
1501
        db.Name = "dedrbaba"
1502
        db.Parent = horp
1503
        local bodyrot = Instance.new("BodyAngularVelocity")
1504
        bodyrot.MaxTorque = Vector3.new(99999, 99999, 99999)
1505
        bodyrot.P = math.huge
1506
        bodyrot.AngularVelocity = Vector3.new(0, 5, 50)
1507
        bodyrot.Parent = horp
1508
        local hL, tL, aL, bL, cL, dL
1509
        game.Debris:AddItem(bodyrot, 0.2)
1510
        if guy:FindFirstChild("Head") then
1511
          hL = guy:FindFirstChild("Head")
1512
          hL.BrickColor = BrickColor.new("Bright yellow")
1513
        end
1514
        if guy:FindFirstChild("Torso") then
1515
          tL = guy:FindFirstChild("Torso")
1516
          tL.BrickColor = BrickColor.new("Bright blue")
1517
        end
1518
        if guy:FindFirstChild("Left Arm") then
1519
          aL = guy:FindFirstChild("Left Arm")
1520
          aL.BrickColor = BrickColor.new("Bright yellow")
1521
        end
1522
        if guy:FindFirstChild("Right Arm") then
1523
          bL = guy:FindFirstChild("Right Arm")
1524
          bL.BrickColor = BrickColor.new("Bright yellow")
1525
        end
1526
        if guy:FindFirstChild("Left Leg") then
1527
          cL = guy:FindFirstChild("Left Leg")
1528
          cL.BrickColor = BrickColor.new("Br. yellowish green")
1529
        end
1530
        if guy:FindFirstChild("Right Leg") then
1531
          dL = guy:FindFirstChild("Right Leg")
1532
          dL.BrickColor = BrickColor.new("Br. yellowish green")
1533
        end
1534
        coroutine.resume(coroutine.create(function()
1535
          if aL then
1536
            aL.Name = "Right Arm"
1537
            wait()
1538
          end
1539
          if bL then
1540
            bL.Name = "Left Leg"
1541
            wait()
1542
          end
1543
          if cL then
1544
            cL.Name = "Left Arm"
1545
            wait()
1546
          end
1547
          if dL then
1548
            dL.Name = "Right Leg"
1549
          end
1550
        end))
1551
      end
1552
    end
1553
  end
1554
end
1555
mouse.KeyDown:connect(function(key)
1556
  if human.Health <= 0 then
1557
    return
1558
  end
1559
  if key == "f" then
1560
    standappear(thenoob)
1561
  end
1562
  if key == "r" then
1563
    MUDA()
1564
  end
1565
  if key == "e" then
1566
    block()
1567
  end
1568
  if key == "v" then
1569
    cability()
1570
  end
1571
  if key == "m" and plr.UserId then
1572
    THEBEST()
1573
  end
1574
  if key == "j" then
1575
    THREATENING()
1576
  end
1577
  if key == "k" then
1578
    konodioda:Play()
1579
  end
1580
  if key == "l" then
1581
    bast:Play()
1582
  end
1583
  if key == "p" then
1584
    zaworld:Play()
1585
  end
1586
end)
1587
tool.Equipped:connect(function()
1588
  selected = true
1589
end)
1590
tool.Unequipped:connect(function()
1591
  selected = false
1592
end)
1593
sine = 0
1594
charge = 1
1595
cos = math.cos
1596
game:GetService("RunService").RenderStepped:connect(function()
1597
  if POSU == false then
1598
    local checkfloor = Ray.new(hrp.Position, hrp.CFrame.upVector * -4)
1599
    local checkpart = workspace:FindPartOnRayWithIgnoreList(checkfloor, {chr}, false, false)
1600
    local checkstate = human:GetState()
1601
    if checkstate.Value == 13 then
1602
      animpose = "Sitting"
1603
    elseif hrp.Velocity.y > 1 and checkpart == nil then
1604
      animpose = "Jumping"
1605
    elseif hrp.Velocity.y < -1 and checkpart == nil then
1606
      animpose = "Falling"
1607
    elseif 1 > (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude then
1608
      animpose = "Idle"
1609
    elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude < 35 then
1610
      animpose = "Walking"
1611
    elseif (hrp.Velocity * Vector3.new(1, 0, 1)).magnitude > 35 then
1612
      animpose = "TooFast"
1613
    end
1614
    if animpose == "Idle" then
1615
      sine = sine + charge
1616
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.03 * cos(sine / 60)) * ang(rd(0), rd(0), rd(0)), 0.3)
1617
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(3 - 3 * cos(sine / 60)), rd(0), rd(0)), 0.3)
1618
      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)
1619
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1620
      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)
1621
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1622
      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)
1623
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1624
      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)
1625
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1626
    end
1627
    if animpose == "Walking" then
1628
      sine = sine + charge
1629
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0.03 * cos(sine / 60)) * ang(rd(0), rd(0), rd(0)), 0.3)
1630
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(3 - 3 * cos(sine / 60)), rd(0), rd(0)), 0.3)
1631
      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)
1632
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1633
      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)
1634
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1635
      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)
1636
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1637
      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)
1638
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1639
    end
1640
    if animpose == "Jumping" then
1641
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(5), rd(0), rd(0)), 0.3)
1642
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-10), rd(0), rd(0)), 0.3)
1643
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(7), rd(-5), rd(2)), 0.3)
1644
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1645
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(7), rd(5), rd(-3)), 0.3)
1646
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1647
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-10)), 0.3)
1648
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1649
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(20)), 0.3)
1650
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1651
    end
1652
    if animpose == "Falling" then
1653
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(-6), rd(0), rd(0)), 0.3)
1654
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.3)
1655
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(7), rd(-5), rd(2)), 0.3)
1656
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1657
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(7), rd(5), rd(-3)), 0.3)
1658
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1659
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(10)), 0.3)
1660
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1661
      lerpz(LH, "C0", LHC0 * cf(-0.65, 0.75, 0) * ang(rd(0), rd(0), rd(20)), 0.3)
1662
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1663
    end
1664
    if animpose == "TooFast" then
1665
      lerpz(RJ, "C0", RJC0 * cf(0, 0, -1.5) * ang(rd(20), rd(0), rd(0)), 0.3)
1666
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(20), rd(0), rd(0)), 0.3)
1667
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(-20), rd(-10), rd(-10)), 0.3)
1668
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1669
      lerpz(LS, "C0", LSC0 * cf(0, -0.75, 0) * ang(rd(10), rd(-80), rd(-10)), 0.3)
1670
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(30), rd(0), rd(0)), 0.3)
1671
      lerpz(RH, "C0", RHC0 * cf(0.75, 1.5, 0) * ang(rd(0), rd(0), rd(30)), 0.3)
1672
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1673
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(50)), 0.3)
1674
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1675
    end
1676
    if animpose == "Sitting" then
1677
      lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1678
      lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1679
      lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
1680
      lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1681
      lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
1682
      lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1683
      lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
1684
      lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1685
      lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(-90)), 0.3)
1686
      lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1687
    end
1688
  end
1689
  if appeared == false and activu == false then
1690
    lerpz(nRJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1691
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1692
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1693
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1694
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1695
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1696
    lerpz(nRH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1697
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1698
    lerpz(nLH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1699
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1700
  elseif appeared == true and activu == false then
1701
    sine = sine + charge
1702
    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)
1703
    lerpz(nN, "C0", NC0 * cf(0, 0, 0) * ang(rd(2 - 2 * cos(sine / 90)), rd(0), rd(4)), 0.3)
1704
    lerpz(nRS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(2 * cos(sine / 110)), rd(-3 - 3 * cos(sine / 100)), rd(0)), 0.3)
1705
    lerpz(nRS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1706
    lerpz(nLS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(2 * cos(sine / 110)), rd(3 - 3 * cos(sine / 100)), rd(0)), 0.3)
1707
    lerpz(nLS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1708
    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)
1709
    lerpz(nRH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1710
    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)
1711
    lerpz(nLH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
1712
  end
1713
end)
1714
function dispose()
1715
  for i, v in pairs(getfenv(0)) do
1716
    v = nil
1717
  end
1718
  error = nil
1719
  print = nil
1720
  warn = nil
1721
end
1722
human.Died:connect(dispose)
1723
chr.Changed:connect(function()
1724
  if chr.Parent == nil then
1725
    dispose()
1726
  end
1727
end)