carlosname

Untitled

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