Advertisement
maskyman

test

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