Advertisement
JRKPastesBins

Untitled

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