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