Advertisement
Fik_1221

DIO

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