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