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