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