Advertisement
Eminic

fixovr

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