Namoo546

Dio Over Heaven FE

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