Advertisement
NextFlamePB

ROBLOX Nightfall Script

Jan 12th, 2019
2,275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 98.97 KB | None | 0 0
  1. -----------//THE NIGHTFALL\\-----------
  2. --[[Movelist
  3. Mouseclick = 3 combos
  4. -Attack 1 = Downwards slash
  5. -Attack 2 = Power slash
  6. -Attack 3 = Whirlwind slash
  7. Q = Impale
  8. E = Forward dash
  9. R = Ear destroyer
  10. T = Taunt
  11. Y = Cutting storm
  12. U = Homing Cutting storm
  13. ---------]]
  14.  
  15. Player=game.Players.LocalPlayer
  16. Character=Player.Character
  17. Character.Humanoid.Name = "nightfall"
  18. hum = Character.nightfall
  19. LeftArm=Character["Left Arm"]
  20. LeftLeg=Character["Left Leg"]
  21. RightArm=Character["Right Arm"]
  22. RightLeg=Character["Right Leg"]
  23. Root=Character["HumanoidRootPart"]
  24. Head=Character["Head"]
  25. Torso=Character["Torso"]
  26. Neck=Torso["Neck"]
  27. walking = false
  28. singularitybounce = false
  29. jumping = false
  30. targetfound = false
  31. grabbed = false
  32. attacking = false
  33. firsttime = false
  34. dash1 = true
  35. dash2 = false
  36. tauntdebounce = false
  37. mouse = Player:GetMouse()
  38. position = nil
  39. MseGuide = true
  40. running = false
  41. settime = 0
  42. sine = 0
  43. t = 0
  44. ws = 19
  45. jp = 85
  46. secondform = false
  47. change = 1
  48. combo1 = true
  49. dancing = false
  50. equip = false
  51. dgs = 75
  52. dedlaff = false
  53. combo2 = false
  54. spin1 = true
  55. spin2 = false
  56. switch1 = true
  57. switch2 = false
  58. firsttime2 = false
  59. isattacking = false
  60. combo3 = false
  61. gunallowance = false
  62. cooldown = false
  63. shooting = false
  64. RunSrv = game:GetService("RunService")
  65. RenderStepped = game:GetService("RunService").RenderStepped
  66. removeuseless = game:GetService("Debris")
  67. local slasher = {1543186629,1543187082,1543187280,1543186883}
  68. local slasher2 = {220834019,220834000,220833976,220833967}
  69. slash = #slasher
  70. slash2 = #slasher2
  71. screenGui = Instance.new("ScreenGui")
  72. screenGui.Parent = script.Parent
  73.  
  74. local HEADLERP = Instance.new("ManualWeld")
  75. HEADLERP.Parent = Head
  76. HEADLERP.Part0 = Head
  77. HEADLERP.Part1 = Head
  78. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  79.  
  80. local TORSOLERP = Instance.new("ManualWeld")
  81. TORSOLERP.Parent = Root
  82. TORSOLERP.Part0 = Torso
  83. TORSOLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  84.  
  85. local ROOTLERP = Instance.new("ManualWeld")
  86. ROOTLERP.Parent = Root
  87. ROOTLERP.Part0 = Root
  88. ROOTLERP.Part1 = Torso
  89. ROOTLERP.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  90.  
  91. local RIGHTARMLERP = Instance.new("ManualWeld")
  92. RIGHTARMLERP.Parent = RightArm
  93. RIGHTARMLERP.Part0 = RightArm
  94. RIGHTARMLERP.Part1 = Torso
  95. RIGHTARMLERP.C0 = CFrame.new(-1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  96.  
  97. local LEFTARMLERP = Instance.new("ManualWeld")
  98. LEFTARMLERP.Parent = LeftArm
  99. LEFTARMLERP.Part0 = LeftArm
  100. LEFTARMLERP.Part1 = Torso
  101. LEFTARMLERP.C0 = CFrame.new(1.5, 0, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  102.  
  103. local RIGHTLEGLERP = Instance.new("ManualWeld")
  104. RIGHTLEGLERP.Parent = RightLeg
  105. RIGHTLEGLERP.Part0 = RightLeg
  106. RIGHTLEGLERP.Part1 = Torso
  107. RIGHTLEGLERP.C0 = CFrame.new(-0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  108.  
  109. local LEFTLEGLERP = Instance.new("ManualWeld")
  110. LEFTLEGLERP.Parent = LeftLeg
  111. LEFTLEGLERP.Part0 = LeftLeg
  112. LEFTLEGLERP.Part1 = Torso
  113. LEFTLEGLERP.C0 = CFrame.new(0.5, 2, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  114.  
  115. local function weldBetween(a, b)
  116.     local weld = Instance.new("ManualWeld", a)
  117.     weld.Part0 = a
  118.     weld.Part1 = b
  119.     weld.C0 = a.CFrame:inverse() * b.CFrame
  120.     return weld
  121. end
  122.  
  123. function MAKETRAIL(PARENT,POSITION1,POSITION2,LIFETIME,COLOR)
  124. A = Instance.new("Attachment", PARENT)
  125. A.Position = POSITION1
  126. A.Name = "A"
  127. B = Instance.new("Attachment", PARENT)
  128. B.Position = POSITION2
  129. B.Name = "B"
  130. tr1 = Instance.new("Trail", PARENT)
  131. tr1.Attachment0 = A
  132. tr1.Attachment1 = B
  133. tr1.Enabled = true
  134. tr1.Lifetime = LIFETIME
  135. tr1.TextureMode = "Static"
  136. tr1.LightInfluence = 0
  137. tr1.Color = COLOR
  138. tr1.Transparency = NumberSequence.new(0, 1)
  139. end
  140.  
  141. footsteps = Instance.new("Sound",Torso)
  142. footsteps.SoundId = "rbxassetid://1244506786"
  143. footsteps.Volume = 0
  144. footsteps.Looped = true
  145. footsteps.Pitch = 1.6
  146. footsteps.Name = "fp"
  147. footsteps:Play()
  148.  
  149. slash = slasher[math.random(1,#slasher)]
  150. slashs = Instance.new("Sound",RightArm)
  151. slashs.SoundId = "rbxassetid://"..slash
  152. slashs.Volume = 10
  153. slashs.Pitch = 1
  154. slashs.Name = "slashs"
  155.  
  156. introsound = Instance.new("Sound",Torso)
  157. introsound.SoundId = "rbxassetid://1842444810"
  158. introsound.Volume = 4
  159. introsound:Play()
  160.  
  161. coroutine.wrap(function()
  162. doomtheme = Instance.new("Sound",Torso)
  163. doomtheme.Volume = 0
  164. doomtheme.SoundId = "rbxassetid://2114921530"
  165. doomtheme.Looped = true
  166. doomtheme:Play()
  167. doomtheme.Name = "doomtheme"
  168. for i = 1, 20 do
  169. doomtheme.Volume = doomtheme.Volume + .1
  170. wait()
  171. end
  172. end)()
  173.  
  174. Torso.ChildRemoved:connect(function(removed)
  175. if removed.Name == "doomtheme" then
  176. doomtheme = Instance.new("Sound",Torso)
  177. doomtheme.SoundId = "rbxassetid://2114921530"
  178. doomtheme.Looped = true
  179. doomtheme.Volume = 2
  180. doomtheme:Play()
  181. doomtheme.Name = "doomtheme"
  182. end
  183. end)
  184.  
  185. Torso.ChildRemoved:connect(function(removed)
  186. if removed.Name == "slashs" then
  187. slash = slasher[math.random(1,#slasher)]
  188. slashs = Instance.new("Sound",RightArm)
  189. slashs.SoundId = "rbxassetid://"..slash
  190. slashs.Volume = 10
  191. slashs.Pitch = 1
  192. slashs.Name = "slashs"
  193. end
  194. end)
  195.  
  196. Torso.ChildRemoved:connect(function(removed)
  197. if removed.Name == "fp" then
  198. footsteps = Instance.new("Sound",Torso)
  199. footsteps.SoundId = "rbxassetid://1244506786"
  200. footsteps.Volume = 0
  201. footsteps.Looped = true
  202. footsteps.Pitch = 1.6
  203. footsteps.Name = "fp"
  204. footsteps:Play()
  205. end
  206. end)
  207.  
  208. coroutine.wrap(function()
  209. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  210. coroutine.wrap(function()
  211. screenGui = Instance.new("ScreenGui",v.PlayerGui)
  212. local imageLabelo = Instance.new("ImageLabel")
  213. imageLabelo.Parent = screenGui
  214. imageLabelo.BackgroundTransparency = 1
  215. imageLabelo.ImageTransparency = 1
  216. imageLabelo.Position = UDim2.new(0, 0, 0, -60)
  217. imageLabelo.Size = UDim2.new(0, 1570, 0, 950)
  218. imageLabelo.Image = "rbxassetid://759556751"
  219. for i = 1, 15 do
  220. imageLabelo.ImageTransparency = imageLabelo.ImageTransparency -.05
  221. wait()
  222. end
  223. wait(2)
  224. for i = 1, 15 do
  225. imageLabelo.ImageTransparency = imageLabelo.ImageTransparency + .05
  226. wait()
  227. end
  228. end)()
  229. end
  230. end)()
  231.  
  232. leftlocation = Instance.new("Part",LeftArm)
  233. leftlocation.Size = Vector3.new(1,1,1)
  234. leftlocation.Transparency = 1
  235. leftlocation.Name = "leftlocation"
  236. leftlocationweld = weldBetween(leftlocation,LeftArm)
  237. leftlocationweld.C0 = CFrame.new(0,1.2,0)
  238. rightlocation = Instance.new("Part",RightArm)
  239. rightlocation.Size = Vector3.new(1,1,1)
  240. rightlocation.Transparency = 1
  241. rightlocation.Name = "rightlocation"
  242. rightlocationweld = weldBetween(rightlocation,RightArm)
  243. rightlocationweld.C0 = CFrame.new(0,1.2,0)
  244.  
  245. A = Instance.new("Attachment", rightlocation)
  246. A.Position = Vector3.new(.1,.3,.1)
  247. A.Name = "A"
  248. B = Instance.new("Attachment", rightlocation)
  249. B.Position = Vector3.new(-.1,-.3,-.1)
  250. B.Name = "B"
  251. tr1 = Instance.new("Trail", rightlocation)
  252. tr1.Attachment0 = A
  253. tr1.Attachment1 = B
  254. tr1.Enabled = false
  255. tr1.Lifetime = .6
  256. tr1.TextureMode = "Static"
  257. tr1.LightInfluence = 0
  258. tr1.Color = ColorSequence.new(BrickColor.new("Eggplant").Color,BrickColor.new("Really black").Color)
  259. tr1.Transparency = NumberSequence.new(0, 1)
  260.  
  261. shirt = Instance.new("Shirt", Character)
  262. shirt.Name = "Shirt"
  263. Character.Shirt.ShirtTemplate = "rbxassetid://302262616"
  264.  
  265. particlecolor = ColorSequence.new(Color3.new(255, 255, 255))
  266.  
  267. leftlocation = Instance.new("Part",LeftArm)
  268. leftlocation.Size = Vector3.new(1,1,1)
  269. leftlocation.Transparency = 1
  270. leftlocation.Name = "leftlocation"
  271. leftlocationweld = weldBetween(leftlocation,LeftArm)
  272. leftlocationweld.C0 = CFrame.new(0,1.2,0)
  273. rightlocation = Instance.new("Part",RightArm)
  274. rightlocation.Size = Vector3.new(1,1,1)
  275. rightlocation.Transparency = 1
  276. rightlocation.Name = "rightlocation"
  277. rightlocationweld = weldBetween(rightlocation,RightArm)
  278. rightlocationweld.C0 = CFrame.new(0,1.2,0)
  279.  
  280. particlemiter1 = Instance.new("ParticleEmitter", LeftArm)
  281. particlemiter1.Enabled = false
  282. particlemiter1.Color = particlecolor
  283. particlemiter1.Texture = "rbxassetid://886346744"
  284. particlemiter1.Lifetime = NumberRange.new(.05)
  285. particlemiter1.Size = NumberSequence.new(1.75,1.75)
  286. particlemiter1.Rate = 4
  287. particlemiter1.Rotation = NumberRange.new(0,360)
  288. particlemiter1.RotSpeed = NumberRange.new(0)
  289. particlemiter1.Speed = NumberRange.new(0)
  290. particlemiter2 = Instance.new("ParticleEmitter", RightArm)
  291. particlemiter2.Enabled = false
  292. particlemiter2.Color = particlecolor
  293. particlemiter2.Texture = "rbxassetid://886346744"
  294. particlemiter2.Rotation = NumberRange.new(0,360)
  295. particlemiter2.Lifetime = NumberRange.new(.05)
  296. particlemiter2.Size = NumberSequence.new(1.75,1.75)
  297. particlemiter2.Rate = 4
  298. particlemiter2.RotSpeed = NumberRange.new(0)
  299. particlemiter2.Speed = NumberRange.new(0)
  300. particlemiter4 = Instance.new("ParticleEmitter", LeftLeg)
  301. particlemiter4.Enabled = false
  302. particlemiter4.Color = particlecolor
  303. particlemiter4.Texture = "rbxassetid://886346744"
  304. particlemiter4.Lifetime = NumberRange.new(.05)
  305. particlemiter4.Rotation = NumberRange.new(0,360)
  306. particlemiter4.Size = NumberSequence.new(1.75,1.75)
  307. particlemiter4.Rate = 4
  308. particlemiter4.RotSpeed = NumberRange.new(0)
  309. particlemiter4.Speed = NumberRange.new(0)
  310. particlemiter5 = Instance.new("ParticleEmitter", RightLeg)
  311. particlemiter5.Enabled = false
  312. particlemiter5.Color = particlecolor
  313. particlemiter5.Texture = "rbxassetid://886346744"
  314. particlemiter5.Rotation = NumberRange.new(0,360)
  315. particlemiter5.Lifetime = NumberRange.new(.05)
  316. particlemiter5.Size = NumberSequence.new(1.75,1.75)
  317. particlemiter5.Rate = 4
  318. particlemiter5.RotSpeed = NumberRange.new(0)
  319. particlemiter5.Speed = NumberRange.new(0)
  320. particlemiter6 = Instance.new("ParticleEmitter", Torso)
  321. particlemiter6.Enabled = false
  322. particlemiter6.Color = particlecolor
  323. particlemiter6.Texture = "rbxassetid://886346744"
  324. particlemiter6.Rotation = NumberRange.new(0,360)
  325. particlemiter6.Lifetime = NumberRange.new(.05)
  326. particlemiter6.Size = NumberSequence.new(1.75,1.75)
  327. particlemiter6.Rate = 4
  328. particlemiter6.RotSpeed = NumberRange.new(0)
  329. particlemiter6.Speed = NumberRange.new(0)
  330. particlemiter7 = Instance.new("ParticleEmitter", Head)
  331. particlemiter7.Enabled = false
  332. particlemiter7.Color = particlecolor
  333. particlemiter7.Texture = "rbxassetid://886346744"
  334. particlemiter7.Rotation = NumberRange.new(0,360)
  335. particlemiter7.Lifetime = NumberRange.new(.05)
  336. particlemiter7.Size = NumberSequence.new(1.75,1.75)
  337. particlemiter7.Rate = 4
  338. particlemiter7.RotSpeed = NumberRange.new(0)
  339. particlemiter7.Speed = NumberRange.new(0)
  340.  
  341. coroutine.wrap(function()
  342. while true do
  343. wait(7)
  344. particlemiter1.Enabled = true
  345. particlemiter2.Enabled = true
  346. particlemiter4.Enabled = true
  347. particlemiter5.Enabled = true
  348. particlemiter6.Enabled = true
  349. particlemiter7.Enabled = true
  350. swait(60)
  351. particlemiter1.Enabled = false
  352. particlemiter2.Enabled = false
  353. particlemiter4.Enabled = false
  354. particlemiter5.Enabled = false
  355. particlemiter6.Enabled = false
  356. particlemiter7.Enabled = false
  357. wait(11)
  358. particlemiter1.Enabled = true
  359. particlemiter2.Enabled = true
  360. particlemiter4.Enabled = true
  361. particlemiter5.Enabled = true
  362. particlemiter6.Enabled = true
  363. particlemiter7.Enabled = true
  364. swait(60)
  365. particlemiter1.Enabled = false
  366. particlemiter2.Enabled = false
  367. particlemiter4.Enabled = false
  368. particlemiter5.Enabled = false
  369. particlemiter6.Enabled = false
  370. particlemiter7.Enabled = false
  371. wait(4)
  372. particlemiter1.Enabled = true
  373. particlemiter2.Enabled = true
  374. particlemiter4.Enabled = true
  375. particlemiter5.Enabled = true
  376. particlemiter6.Enabled = true
  377. particlemiter7.Enabled = true
  378. swait(60)
  379. particlemiter1.Enabled = false
  380. particlemiter2.Enabled = false
  381. particlemiter4.Enabled = false
  382. particlemiter5.Enabled = false
  383. particlemiter6.Enabled = false
  384. particlemiter7.Enabled = false
  385. swait()
  386. end
  387. end)()
  388.  
  389. Head.BrickColor = BrickColor.new("Really black")
  390.  
  391.  
  392. mas = Instance.new("Model",Head)
  393. mas.Name = "Model2Script"
  394. o1 = Instance.new("Model")
  395. o2 = Instance.new("Part")
  396. o3 = Instance.new("Part")
  397. o4 = Instance.new("Part")
  398. o5 = Instance.new("Part")
  399. o6 = Instance.new("Part")
  400. o7 = Instance.new("Part")
  401. o8 = Instance.new("Part")
  402. o9 = Instance.new("Part")
  403. o10 = Instance.new("Part")
  404. o11 = Instance.new("Part")
  405. o12 = Instance.new("Part")
  406. o13 = Instance.new("Part")
  407. o14 = Instance.new("Part")
  408. o15 = Instance.new("Part")
  409. o16 = Instance.new("Part")
  410. o17 = Instance.new("Part")
  411. o18 = Instance.new("Part")
  412. o19 = Instance.new("Part")
  413. o20 = Instance.new("Part")
  414. o21 = Instance.new("Part")
  415. o22 = Instance.new("Part")
  416. o23 = Instance.new("Part")
  417. o24 = Instance.new("Part")
  418. o25 = Instance.new("Part")
  419. o26 = Instance.new("Part")
  420. o27 = Instance.new("Part")
  421. o28 = Instance.new("Part")
  422. o29 = Instance.new("Part")
  423. o30 = Instance.new("Part")
  424. o31 = Instance.new("Part")
  425. o32 = Instance.new("Part")
  426. o33 = Instance.new("Part")
  427. o34 = Instance.new("Part")
  428. o35 = Instance.new("Part")
  429. o36 = Instance.new("Part")
  430. o37 = Instance.new("Part")
  431. o1.Parent = mas
  432. o2.Name = "Head"
  433. o2.Parent = o1
  434. o2.Material = Enum.Material.SmoothPlastic
  435. o2.BrickColor = BrickColor.new("Really black")
  436. o2.Transparency = 1
  437. o2.Rotation = Vector3.new(-0.00999999978, 3.26999998, 0.00999999978)
  438. o2.FormFactor = Enum.FormFactor.Symmetric
  439. o2.Size = Vector3.new(1.99999988, 0.99999994, 0.99999994)
  440. o2.CFrame = CFrame.new(12.5892553, 4.50960207, -3.75727963, 0.998376548, -0.000250246754, 0.0569584854, 0.000245001953, 1.00000846, 9.91025372e-05, -0.056957975, -8.49864373e-05, 0.998385131)
  441. o2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  442. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  443. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  444. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  445. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  446. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  447. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  448. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  449. o3.Parent = o2
  450. o3.BrickColor = BrickColor.new("Fossil")
  451. o3.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  452. o3.CanCollide = false
  453. o3.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  454. o3.CFrame = CFrame.new(12.3422012, 4.47093582, -4.18185663, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  455. o3.BottomSurface = Enum.SurfaceType.Smooth
  456. o3.TopSurface = Enum.SurfaceType.Smooth
  457. o3.Color = Color3.new(0.623529, 0.631373, 0.67451)
  458. o3.Color = Color3.new(0.623529, 0.631373, 0.67451)
  459. o4.Parent = o2
  460. o4.Material = Enum.Material.Neon
  461. o4.BrickColor = BrickColor.new("Eggplant")
  462. o4.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  463. o4.CanCollide = false
  464. o4.Shape = Enum.PartType.Ball
  465. o4.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
  466. o4.CFrame = CFrame.new(12.6813383, 4.85306978, -4.3403945, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  467. o4.BottomSurface = Enum.SurfaceType.Smooth
  468. o4.TopSurface = Enum.SurfaceType.Smooth
  469. o4.Color = Color3.new(0.482353, 0, 0.482353)
  470. o4.Color = Color3.new(0.482353, 0, 0.482353)
  471. o5.Parent = o2
  472. o5.BrickColor = BrickColor.new("Fossil")
  473. o5.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  474. o5.CanCollide = false
  475. o5.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  476. o5.CFrame = CFrame.new(12.25453, 4.47092152, -4.12017584, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  477. o5.BottomSurface = Enum.SurfaceType.Smooth
  478. o5.TopSurface = Enum.SurfaceType.Smooth
  479. o5.Color = Color3.new(0.623529, 0.631373, 0.67451)
  480. o5.Color = Color3.new(0.623529, 0.631373, 0.67451)
  481. o6.Parent = o2
  482. o6.BrickColor = BrickColor.new("Fossil")
  483. o6.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  484. o6.CanCollide = false
  485. o6.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  486. o6.CFrame = CFrame.new(12.3307505, 4.47093344, -4.19189453, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  487. o6.BottomSurface = Enum.SurfaceType.Smooth
  488. o6.TopSurface = Enum.SurfaceType.Smooth
  489. o6.Color = Color3.new(0.623529, 0.631373, 0.67451)
  490. o6.Color = Color3.new(0.623529, 0.631373, 0.67451)
  491. o7.Parent = o2
  492. o7.BrickColor = BrickColor.new("Fossil")
  493. o7.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  494. o7.CanCollide = false
  495. o7.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  496. o7.CFrame = CFrame.new(12.4249439, 4.47095871, -4.24005365, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  497. o7.BottomSurface = Enum.SurfaceType.Smooth
  498. o7.TopSurface = Enum.SurfaceType.Smooth
  499. o7.Color = Color3.new(0.623529, 0.631373, 0.67451)
  500. o7.Color = Color3.new(0.623529, 0.631373, 0.67451)
  501. o8.Parent = o2
  502. o8.BrickColor = BrickColor.new("Fossil")
  503. o8.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  504. o8.CanCollide = false
  505. o8.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  506. o8.CFrame = CFrame.new(12.8379145, 4.46701479, -4.16434002, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  507. o8.BottomSurface = Enum.SurfaceType.Smooth
  508. o8.TopSurface = Enum.SurfaceType.Smooth
  509. o8.Color = Color3.new(0.623529, 0.631373, 0.67451)
  510. o8.Color = Color3.new(0.623529, 0.631373, 0.67451)
  511. o9.Parent = o2
  512. o9.BrickColor = BrickColor.new("Fossil")
  513. o9.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  514. o9.CanCollide = false
  515. o9.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  516. o9.CFrame = CFrame.new(12.9631338, 4.46704054, -4.09174585, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  517. o9.BottomSurface = Enum.SurfaceType.Smooth
  518. o9.TopSurface = Enum.SurfaceType.Smooth
  519. o9.Color = Color3.new(0.623529, 0.631373, 0.67451)
  520. o9.Color = Color3.new(0.623529, 0.631373, 0.67451)
  521. o10.Parent = o2
  522. o10.BrickColor = BrickColor.new("Fossil")
  523. o10.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  524. o10.CanCollide = false
  525. o10.Size = Vector3.new(0.0600024611, 0.250000179, 0.220000237)
  526. o10.CFrame = CFrame.new(12.2429972, 4.4709177, -4.11946106, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  527. o10.BottomSurface = Enum.SurfaceType.Smooth
  528. o10.TopSurface = Enum.SurfaceType.Smooth
  529. o10.Color = Color3.new(0.623529, 0.631373, 0.67451)
  530. o10.Color = Color3.new(0.623529, 0.631373, 0.67451)
  531. o11.Parent = o2
  532. o11.Material = Enum.Material.Metal
  533. o11.BrickColor = BrickColor.new("Pearl")
  534. o11.Rotation = Vector3.new(-179.959991, 70.5100021, 179.970001)
  535. o11.CanCollide = false
  536. o11.Size = Vector3.new(0.250002503, 0.350000173, 0.2900002)
  537. o11.CFrame = CFrame.new(13.0351248, 4.18798542, -4.05297899, -0.333613515, -0.000202421492, 0.942709923, -1.74622983e-10, 1.00000834, 0.000214724801, -0.942718267, 7.16352733e-05, -0.333615392)
  538. o11.BottomSurface = Enum.SurfaceType.Smooth
  539. o11.TopSurface = Enum.SurfaceType.Smooth
  540. o11.Color = Color3.new(0.905882, 0.905882, 0.92549)
  541. o11.Color = Color3.new(0.905882, 0.905882, 0.92549)
  542. o12.Parent = o2
  543. o12.Material = Enum.Material.Metal
  544. o12.BrickColor = BrickColor.new("Pearl")
  545. o12.Rotation = Vector3.new(-0.0199999996, 59.8599968, 0.0299999993)
  546. o12.CanCollide = false
  547. o12.Size = Vector3.new(0.250002503, 0.330000162, 0.2900002)
  548. o12.CFrame = CFrame.new(12.1336823, 4.17776823, -4.01179171, 0.502042472, -0.000225768134, 0.864842951, 0.000113000759, 1.00000834, 0.000195456203, -0.864849985, -3.99100827e-07, 0.502047539)
  549. o12.BottomSurface = Enum.SurfaceType.Smooth
  550. o12.TopSurface = Enum.SurfaceType.Smooth
  551. o12.Color = Color3.new(0.905882, 0.905882, 0.92549)
  552. o12.Color = Color3.new(0.905882, 0.905882, 0.92549)
  553. o13.Parent = o2
  554. o13.BrickColor = BrickColor.new("Fossil")
  555. o13.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  556. o13.CanCollide = false
  557. o13.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  558. o13.CFrame = CFrame.new(12.4135151, 4.13782883, -4.25640917, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  559. o13.BottomSurface = Enum.SurfaceType.Smooth
  560. o13.TopSurface = Enum.SurfaceType.Smooth
  561. o13.Color = Color3.new(0.623529, 0.631373, 0.67451)
  562. o13.Color = Color3.new(0.623529, 0.631373, 0.67451)
  563. o14.Parent = o2
  564. o14.Material = Enum.Material.SmoothPlastic
  565. o14.BrickColor = BrickColor.new("Really black")
  566. o14.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  567. o14.CanCollide = false
  568. o14.Size = Vector3.new(0.370002419, 0.380000234, 0.300000221)
  569. o14.CFrame = CFrame.new(12.5940952, 4.50669909, -4.2362237, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  570. o14.BottomSurface = Enum.SurfaceType.Smooth
  571. o14.TopSurface = Enum.SurfaceType.Smooth
  572. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  573. o14.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  574. o15.Parent = o2
  575. o15.Material = Enum.Material.Metal
  576. o15.BrickColor = BrickColor.new("Pearl")
  577. o15.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  578. o15.CanCollide = false
  579. o15.Size = Vector3.new(0.0800024197, 0.250000238, 0.300000221)
  580. o15.CFrame = CFrame.new(12.720789, 4.13790607, -4.30649519, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  581. o15.BottomSurface = Enum.SurfaceType.Smooth
  582. o15.TopSurface = Enum.SurfaceType.Smooth
  583. o15.Color = Color3.new(0.905882, 0.905882, 0.92549)
  584. o15.Color = Color3.new(0.905882, 0.905882, 0.92549)
  585. o16.Parent = o2
  586. o16.BrickColor = BrickColor.new("Fossil")
  587. o16.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  588. o16.CanCollide = false
  589. o16.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  590. o16.CFrame = CFrame.new(12.8739166, 4.14795494, -4.19200373, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  591. o16.BottomSurface = Enum.SurfaceType.Smooth
  592. o16.TopSurface = Enum.SurfaceType.Smooth
  593. o16.Color = Color3.new(0.623529, 0.631373, 0.67451)
  594. o16.Color = Color3.new(0.623529, 0.631373, 0.67451)
  595. o17.Parent = o2
  596. o17.Material = Enum.Material.Metal
  597. o17.BrickColor = BrickColor.new("Pearl")
  598. o17.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
  599. o17.CanCollide = false
  600. o17.Size = Vector3.new(0.370002478, 0.120000228, 0.130000144)
  601. o17.CFrame = CFrame.new(13.0013018, 5.05734348, -4.35467005, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
  602. o17.BottomSurface = Enum.SurfaceType.Smooth
  603. o17.TopSurface = Enum.SurfaceType.Smooth
  604. o17.Color = Color3.new(0.905882, 0.905882, 0.92549)
  605. o17.Color = Color3.new(0.905882, 0.905882, 0.92549)
  606. o18.Parent = o2
  607. o18.Material = Enum.Material.Neon
  608. o18.BrickColor = BrickColor.new("Eggplant")
  609. o18.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
  610. o18.CanCollide = false
  611. o18.Shape = Enum.PartType.Cylinder
  612. o18.Size = Vector3.new(0.48999992, 1.15999997, 1.30999982)
  613. o18.CFrame = CFrame.new(12.586771, 4.26036596, -3.78879094, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
  614. o18.BottomSurface = Enum.SurfaceType.Smooth
  615. o18.TopSurface = Enum.SurfaceType.Smooth
  616. o18.Color = Color3.new(0.482353, 0, 0.482353)
  617. o18.Color = Color3.new(0.482353, 0, 0.482353)
  618. o19.Parent = o2
  619. o19.Material = Enum.Material.Metal
  620. o19.BrickColor = BrickColor.new("Pearl")
  621. o19.Rotation = Vector3.new(0, 0.629999995, 12.8699999)
  622. o19.CanCollide = false
  623. o19.Size = Vector3.new(0.0800024197, 0.170000225, 0.2900002)
  624. o19.CFrame = CFrame.new(12.6530409, 4.55379057, -4.27083921, 0.974806547, -0.22278282, 0.0109562129, 0.222797751, 0.974873364, 2.55261766e-05, -0.0106856115, 0.00241591129, 0.999948502)
  625. o19.BottomSurface = Enum.SurfaceType.Smooth
  626. o19.TopSurface = Enum.SurfaceType.Smooth
  627. o19.Color = Color3.new(0.905882, 0.905882, 0.92549)
  628. o19.Color = Color3.new(0.905882, 0.905882, 0.92549)
  629. o20.Parent = o2
  630. o20.Material = Enum.Material.Metal
  631. o20.BrickColor = BrickColor.new("Pearl")
  632. o20.Rotation = Vector3.new(-0.00999999978, 29.6299992, 0.0199999996)
  633. o20.CanCollide = false
  634. o20.Size = Vector3.new(0.420002431, 0.200000226, 0.2900002)
  635. o20.CFrame = CFrame.new(12.2898045, 4.11280489, -4.19457197, 0.869223297, -0.000238353008, 0.494419813, 0.000207001765, 1.00000846, 0.000118167409, -0.494423091, -3.67785105e-07, 0.869231284)
  636. o20.BottomSurface = Enum.SurfaceType.Smooth
  637. o20.TopSurface = Enum.SurfaceType.Smooth
  638. o20.Color = Color3.new(0.905882, 0.905882, 0.92549)
  639. o20.Color = Color3.new(0.905882, 0.905882, 0.92549)
  640. o21.Parent = o2
  641. o21.Material = Enum.Material.Metal
  642. o21.BrickColor = BrickColor.new("Pearl")
  643. o21.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
  644. o21.CanCollide = false
  645. o21.Size = Vector3.new(0.350002438, 0.120000228, 0.130000204)
  646. o21.CFrame = CFrame.new(13.0757389, 4.90882826, -4.35546923, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
  647. o21.BottomSurface = Enum.SurfaceType.Smooth
  648. o21.TopSurface = Enum.SurfaceType.Smooth
  649. o21.Color = Color3.new(0.905882, 0.905882, 0.92549)
  650. o21.Color = Color3.new(0.905882, 0.905882, 0.92549)
  651. o22.Parent = o2
  652. o22.Material = Enum.Material.Metal
  653. o22.BrickColor = BrickColor.new("Pearl")
  654. o22.Rotation = Vector3.new(0, 0.629999995, 30.0699997)
  655. o22.CanCollide = false
  656. o22.Size = Vector3.new(0.330002487, 0.110000268, 0.140000194)
  657. o22.CFrame = CFrame.new(13.142314, 4.7739563, -4.35119486, 0.865364432, -0.501023412, 0.0109602921, 0.501057446, 0.865423858, 2.24432806e-05, -0.00949566439, 0.00547180884, 0.999948561)
  658. o22.BottomSurface = Enum.SurfaceType.Smooth
  659. o22.TopSurface = Enum.SurfaceType.Smooth
  660. o22.Color = Color3.new(0.905882, 0.905882, 0.92549)
  661. o22.Color = Color3.new(0.905882, 0.905882, 0.92549)
  662. o23.Parent = o2
  663. o23.Material = Enum.Material.Metal
  664. o23.BrickColor = BrickColor.new("Pearl")
  665. o23.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  666. o23.CanCollide = false
  667. o23.Size = Vector3.new(0.0800024197, 0.250000238, 0.2900002)
  668. o23.CFrame = CFrame.new(12.4452009, 4.13783503, -4.29846525, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  669. o23.BottomSurface = Enum.SurfaceType.Smooth
  670. o23.TopSurface = Enum.SurfaceType.Smooth
  671. o23.Color = Color3.new(0.905882, 0.905882, 0.92549)
  672. o23.Color = Color3.new(0.905882, 0.905882, 0.92549)
  673. o24.Parent = o2
  674. o24.Material = Enum.Material.Metal
  675. o24.BrickColor = BrickColor.new("Pearl")
  676. o24.Rotation = Vector3.new(0, 0.629999995, -30.1299992)
  677. o24.CanCollide = false
  678. o24.Size = Vector3.new(0.330002487, 0.110000268, 0.130000249)
  679. o24.CFrame = CFrame.new(13.0381289, 4.67515135, -4.35506392, 0.864809334, 0.501980901, 0.0109607317, -0.502015352, 0.864868522, 1.60243653e-05, -0.00947066396, -0.00551580451, 0.999948561)
  680. o24.BottomSurface = Enum.SurfaceType.Smooth
  681. o24.TopSurface = Enum.SurfaceType.Smooth
  682. o24.Color = Color3.new(0.905882, 0.905882, 0.92549)
  683. o24.Color = Color3.new(0.905882, 0.905882, 0.92549)
  684. o25.Parent = o2
  685. o25.BrickColor = BrickColor.new("Fossil")
  686. o25.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  687. o25.CanCollide = false
  688. o25.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  689. o25.CFrame = CFrame.new(12.2344007, 4.13779402, -4.13043022, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  690. o25.BottomSurface = Enum.SurfaceType.Smooth
  691. o25.TopSurface = Enum.SurfaceType.Smooth
  692. o25.Color = Color3.new(0.623529, 0.631373, 0.67451)
  693. o25.Color = Color3.new(0.623529, 0.631373, 0.67451)
  694. o26.Parent = o2
  695. o26.BrickColor = BrickColor.new("Fossil")
  696. o26.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  697. o26.CanCollide = false
  698. o26.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  699. o26.CFrame = CFrame.new(12.7699385, 4.14792395, -4.25231028, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  700. o26.BottomSurface = Enum.SurfaceType.Smooth
  701. o26.TopSurface = Enum.SurfaceType.Smooth
  702. o26.Color = Color3.new(0.623529, 0.631373, 0.67451)
  703. o26.Color = Color3.new(0.623529, 0.631373, 0.67451)
  704. o27.Parent = o2
  705. o27.Material = Enum.Material.SmoothPlastic
  706. o27.BrickColor = BrickColor.new("Really black")
  707. o27.Rotation = Vector3.new(180, -3.27999997, 179.98999)
  708. o27.Shape = Enum.PartType.Cylinder
  709. o27.Size = Vector3.new(0.0500000007, 0.250000238, 1.6000005)
  710. o27.CFrame = CFrame.new(12.2895432, 4.72786093, -4.26638556, -0.998360634, -0.000245401112, -0.0572395623, -0.000245002186, 1.00000846, -1.40238844e-05, 0.0572390407, 2.32175807e-08, -0.998369098)
  711. o27.BottomSurface = Enum.SurfaceType.Smooth
  712. o27.TopSurface = Enum.SurfaceType.Smooth
  713. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  714. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  715. o28.Parent = o2
  716. o28.Material = Enum.Material.SmoothPlastic
  717. o28.BrickColor = BrickColor.new("Really black")
  718. o28.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
  719. o28.CanCollide = false
  720. o28.Shape = Enum.PartType.Cylinder
  721. o28.Size = Vector3.new(0.24999994, 1.25999975, 1.54999959)
  722. o28.CFrame = CFrame.new(12.5879374, 4.09035969, -3.785882, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
  723. o28.BottomSurface = Enum.SurfaceType.Smooth
  724. o28.TopSurface = Enum.SurfaceType.Smooth
  725. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  726. o28.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  727. o29.Parent = o2
  728. o29.Material = Enum.Material.Neon
  729. o29.BrickColor = BrickColor.new("Eggplant")
  730. o29.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  731. o29.CanCollide = false
  732. o29.Shape = Enum.PartType.Ball
  733. o29.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
  734. o29.CFrame = CFrame.new(12.8344183, 4.76740217, -4.34208727, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  735. o29.BottomSurface = Enum.SurfaceType.Smooth
  736. o29.TopSurface = Enum.SurfaceType.Smooth
  737. o29.Color = Color3.new(0.482353, 0, 0.482353)
  738. o29.Color = Color3.new(0.482353, 0, 0.482353)
  739. o30.Parent = o2
  740. o30.Material = Enum.Material.Neon
  741. o30.BrickColor = BrickColor.new("Eggplant")
  742. o30.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  743. o30.CanCollide = false
  744. o30.Shape = Enum.PartType.Ball
  745. o30.Size = Vector3.new(0.190001294, 0.190001294, 0.190001294)
  746. o30.CFrame = CFrame.new(12.6813812, 4.67232227, -4.34039068, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  747. o30.BottomSurface = Enum.SurfaceType.Smooth
  748. o30.TopSurface = Enum.SurfaceType.Smooth
  749. o30.Color = Color3.new(0.482353, 0, 0.482353)
  750. o30.Color = Color3.new(0.482353, 0, 0.482353)
  751. o31.Parent = o2
  752. o31.BrickColor = BrickColor.new("Fossil")
  753. o31.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  754. o31.CanCollide = false
  755. o31.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  756. o31.CFrame = CFrame.new(12.9933138, 4.14798307, -4.12279606, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  757. o31.BottomSurface = Enum.SurfaceType.Smooth
  758. o31.TopSurface = Enum.SurfaceType.Smooth
  759. o31.Color = Color3.new(0.623529, 0.631373, 0.67451)
  760. o31.Color = Color3.new(0.623529, 0.631373, 0.67451)
  761. o32.Name = "r"
  762. o32.Parent = o2
  763. o32.Material = Enum.Material.SmoothPlastic
  764. o32.BrickColor = BrickColor.new("Really black")
  765. o32.Rotation = Vector3.new(0, 0.629999995, -89.9899979)
  766. o32.CanCollide = false
  767. o32.Shape = Enum.PartType.Cylinder
  768. o32.Size = Vector3.new(0.46999985, 1.25999975, 1.54999959)
  769. o32.CFrame = CFrame.new(12.5878134, 4.61972094, -3.7858963, 0.000245000003, 0.999939919, 0.0109635293, -1.00000846, 0.000244855793, 1.46855382e-05, 1.19998876e-05, -0.0109626055, 0.999948502)
  770. o32.BottomSurface = Enum.SurfaceType.Smooth
  771. o32.TopSurface = Enum.SurfaceType.Smooth
  772. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  773. o32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  774. o33.Parent = o2
  775. o33.BrickColor = BrickColor.new("Fossil")
  776. o33.Rotation = Vector3.new(-0.00999999978, 35.1199989, 0.0199999996)
  777. o33.CanCollide = false
  778. o33.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  779. o33.CFrame = CFrame.new(12.3250799, 4.13780499, -4.19420767, 0.817933738, -0.000248847413, 0.575312555, 0.000196001551, 1.00000846, 0.000153887318, -0.575316489, -1.31072084e-05, 0.817941368)
  780. o33.BottomSurface = Enum.SurfaceType.Smooth
  781. o33.TopSurface = Enum.SurfaceType.Smooth
  782. o33.Color = Color3.new(0.623529, 0.631373, 0.67451)
  783. o33.Color = Color3.new(0.623529, 0.631373, 0.67451)
  784. o34.Parent = o2
  785. o34.Material = Enum.Material.Neon
  786. o34.BrickColor = BrickColor.new("Eggplant")
  787. o34.Rotation = Vector3.new(0, 0.629999995, 0.00999999978)
  788. o34.CanCollide = false
  789. o34.Shape = Enum.PartType.Ball
  790. o34.Size = Vector3.new(0.230001301, 0.230001301, 0.230001301)
  791. o34.CFrame = CFrame.new(12.320076, 4.73971415, -4.26470613, 0.999939919, -0.00023901432, 0.0109635331, 0.00023900198, 1.00000846, 2.62037793e-06, -0.0109626129, 3.71073838e-10, 0.999948502)
  792. o34.BottomSurface = Enum.SurfaceType.Smooth
  793. o34.TopSurface = Enum.SurfaceType.Smooth
  794. o34.Color = Color3.new(0.482353, 0, 0.482353)
  795. o34.Color = Color3.new(0.482353, 0, 0.482353)
  796. o35.Parent = o2
  797. o35.Material = Enum.Material.Metal
  798. o35.BrickColor = BrickColor.new("Pearl")
  799. o35.Rotation = Vector3.new(0, 0.629999995, 12.8699999)
  800. o35.CanCollide = false
  801. o35.Size = Vector3.new(0.520002484, 0.440000206, 0.2900002)
  802. o35.CFrame = CFrame.new(12.8338127, 4.79513836, -4.27282286, 0.974806547, -0.22278282, 0.0109562129, 0.222797751, 0.974873364, 2.55261766e-05, -0.0106856115, 0.00241591129, 0.999948502)
  803. o35.BottomSurface = Enum.SurfaceType.Smooth
  804. o35.TopSurface = Enum.SurfaceType.Smooth
  805. o35.Color = Color3.new(0.905882, 0.905882, 0.92549)
  806. o35.Color = Color3.new(0.905882, 0.905882, 0.92549)
  807. o36.Parent = o2
  808. o36.Material = Enum.Material.Metal
  809. o36.BrickColor = BrickColor.new("Pearl")
  810. o36.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  811. o36.CanCollide = false
  812. o36.Size = Vector3.new(0.420002431, 0.200000226, 0.2900002)
  813. o36.CFrame = CFrame.new(12.8746452, 4.11295271, -4.2049346, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  814. o36.BottomSurface = Enum.SurfaceType.Smooth
  815. o36.TopSurface = Enum.SurfaceType.Smooth
  816. o36.Color = Color3.new(0.905882, 0.905882, 0.92549)
  817. o36.Color = Color3.new(0.905882, 0.905882, 0.92549)
  818. o37.Parent = o2
  819. o37.BrickColor = BrickColor.new("Fossil")
  820. o37.Rotation = Vector3.new(0.00999999978, -30.1099987, 0.0199999996)
  821. o37.CanCollide = false
  822. o37.Size = Vector3.new(0.0600024611, 0.250000179, 0.260000259)
  823. o37.CFrame = CFrame.new(12.7551317, 4.46699476, -4.21234465, 0.865085423, -0.000253115431, -0.501624584, 0.000219001973, 1.00000846, -0.000126912026, 0.50162971, -6.67569111e-08, 0.865092278)
  824. o37.BottomSurface = Enum.SurfaceType.Smooth
  825. o37.TopSurface = Enum.SurfaceType.Smooth
  826. o37.Color = Color3.new(0.623529, 0.631373, 0.67451)
  827. o37.Color = Color3.new(0.623529, 0.631373, 0.67451)
  828. mas.Parent = workspace
  829. mas:MakeJoints()
  830.  
  831. mas2 = Instance.new("Model",RightArm)
  832. mas2.Name = "Model2Script2"
  833. ov = Instance.new("Model")
  834. o2 = Instance.new("WedgePart")
  835. o3 = Instance.new("WedgePart")
  836. o4 = Instance.new("WedgePart")
  837. o5 = Instance.new("Part")
  838. o6 = Instance.new("Part")
  839. o7 = Instance.new("Part")
  840. o8 = Instance.new("WedgePart")
  841. o9m = Instance.new("Part")
  842. ov.Parent = mas2
  843. o2.Parent = ov
  844. o2.Material = Enum.Material.Neon
  845. o2.BrickColor = BrickColor.new("Alder")
  846. o2.Transparency = 0.1
  847. o2.Rotation = Vector3.new(-76.2299957, 74.5199966, -102.399994)
  848. o2.Anchored = true
  849. o2.Size = Vector3.new(0.104009911, 0.654072165, 0.0998701826)
  850. o2.CFrame = CFrame.new(-6.25214577, 2.5895319, -11.5024309, -0.057314001, 0.260602951, 0.963743508, -0.0313595012, -0.965332747, 0.259167373, 0.997871935, -0.015368619, 0.0634972602)
  851. o2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  852. o2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  853. o2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  854. o2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  855. o2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  856. o2.Color = Color3.new(0.705882, 0.501961, 1)
  857. o2.Color = Color3.new(0.705882, 0.501961, 1)
  858. o3.Parent = ov
  859. o3.Material = Enum.Material.Neon
  860. o3.BrickColor = BrickColor.new("Alder")
  861. o3.Transparency = 0.1
  862. o3.Rotation = Vector3.new(-88.5499954, -6.10999966, 86.6899948)
  863. o3.Anchored = true
  864. o3.Size = Vector3.new(0.10142266, 0.186803788, 0.632338703)
  865. o3.CFrame = CFrame.new(-5.97627115, 1.30611134, -11.5261898, 0.0573620088, -0.992660284, -0.106466688, 0.0314275026, -0.104794614, 0.994006455, -0.997867048, -0.0603620112, 0.0251852907)
  866. o3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  867. o3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  868. o3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  869. o3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  870. o3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  871. o3.Color = Color3.new(0.705882, 0.501961, 1)
  872. o3.Color = Color3.new(0.705882, 0.501961, 1)
  873. o4.Parent = ov
  874. o4.Material = Enum.Material.Neon
  875. o4.BrickColor = BrickColor.new("Alder")
  876. o4.Transparency = 0.1
  877. o4.Rotation = Vector3.new(103.110001, -74.5599976, -78.2399979)
  878. o4.Anchored = true
  879. o4.Size = Vector3.new(0.104009911, 0.472443491, 0.0998701826)
  880. o4.CFrame = CFrame.new(-5.85783195, 2.78958607, -11.4734116, 0.0542620048, 0.26058802, -0.96392411, 0.0306074936, -0.965335786, -0.25924623, -0.998065889, -0.0154361119, -0.0603548028)
  881. o4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  882. o4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  883. o4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  884. o4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  885. o4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  886. o4.Color = Color3.new(0.705882, 0.501961, 1)
  887. o4.Color = Color3.new(0.705882, 0.501961, 1)
  888. o5.Parent = ov
  889. o5.Material = Enum.Material.Neon
  890. o5.BrickColor = BrickColor.new("Alder")
  891. o5.Transparency = 0.1
  892. o5.Rotation = Vector3.new(-178.199997, 3.28999996, -105.129997)
  893. o5.Anchored = true
  894. o5.Size = Vector3.new(0.701161206, 0.538160622, 0.103492416)
  895. o5.CFrame = CFrame.new(-6.22018671, 3.29966021, -11.4774265, -0.260599941, 0.963741541, 0.0573597625, 0.965332747, 0.259159267, 0.0314289927, 0.0154241361, 0.0635594428, -0.997867107)
  896. o5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  897. o5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  898. o5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  899. o5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  900. o5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  901. o5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  902. o5.Color = Color3.new(0.705882, 0.501961, 1)
  903. o5.Color = Color3.new(0.705882, 0.501961, 1)
  904. o6.Parent = ov
  905. o6.Material = Enum.Material.Neon
  906. o6.BrickColor = BrickColor.new("Alder")
  907. o6.Transparency = 0.1
  908. o6.Rotation = Vector3.new(-178.199997, 3.28999996, -101.059998)
  909. o6.Anchored = true
  910. o6.Size = Vector3.new(0.701161206, 0.371020257, 0.103492416)
  911. o6.CFrame = CFrame.new(-6.05381966, 2.6474514, -11.4884119, -0.191533148, 0.979808867, 0.0573569275, 0.981293619, 0.189983174, 0.0314286686, 0.0198971108, 0.062301416, -0.997867286)
  912. o6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  913. o6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  914. o6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  915. o6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  916. o6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  917. o6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  918. o6.Color = Color3.new(0.705882, 0.501961, 1)
  919. o6.Color = Color3.new(0.705882, 0.501961, 1)
  920. o7.Parent = ov
  921. o7.Material = Enum.Material.Neon
  922. o7.BrickColor = BrickColor.new("Alder")
  923. o7.Transparency = 0.1
  924. o7.Rotation = Vector3.new(-178.199997, 3.28999996, -96.1199951)
  925. o7.Anchored = true
  926. o7.Size = Vector3.new(0.701161206, 0.371020257, 0.103492416)
  927. o7.CFrame = CFrame.new(-5.95285225, 1.97883701, -11.5036192, -0.106464036, 0.99266082, 0.057359308, 0.994006693, 0.104791857, 0.0314288139, 0.025187036, 0.0603593886, -0.997867167)
  928. o7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  929. o7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  930. o7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  931. o7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  932. o7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  933. o7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  934. o7.Color = Color3.new(0.705882, 0.501961, 1)
  935. o7.Color = Color3.new(0.705882, 0.501961, 1)
  936. o8.Parent = ov
  937. o8.Material = Enum.Material.Neon
  938. o8.BrickColor = BrickColor.new("Alder")
  939. o8.Transparency = 0.1
  940. o8.Rotation = Vector3.new(-88.5499954, -6.10999966, -93.3099976)
  941. o8.Anchored = true
  942. o8.Size = Vector3.new(0.10142266, 0.186803788, 0.632338703)
  943. o8.CFrame = CFrame.new(-5.79092312, 1.32566071, -11.5148821, -0.0573620088, 0.992660284, -0.106466688, -0.0314275026, 0.104794614, 0.994006455, 0.997867048, 0.0603620112, 0.0251852907)
  944. o8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  945. o8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  946. o8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  947. o8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  948. o8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  949. o8.Color = Color3.new(0.705882, 0.501961, 1)
  950. o8.Color = Color3.new(0.705882, 0.501961, 1)
  951. o9m.Parent = ov
  952. o9m.Material = Enum.Material.Neon
  953. o9m.BrickColor = BrickColor.new("Alder")
  954. o9m.Transparency = 0.1
  955. o9m.Rotation = Vector3.new(-178.199997, 3.28999996, -118.769997)
  956. o9m.Anchored = true
  957. o9m.Size = Vector3.new(1.56116068, 0.538160563, 0.102974951)
  958. o9m.CFrame = CFrame.new(-6.66080666, 4.25504208, -11.4726496, -0.480506241, 0.875113606, 0.0573588945, 0.876999617, 0.479481548, 0.031427063, 2.6898428e-07, 0.065402478, -0.997867227)
  959. o9m.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  960. o9m.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  961. o9m.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  962. o9m.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  963. o9m.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  964. o9m.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  965. o9m.Color = Color3.new(0.705882, 0.501961, 1)
  966. o9m.Color = Color3.new(0.705882, 0.501961, 1)
  967. mas2.Parent = workspace
  968. mas2:MakeJoints()
  969.  
  970. nightfallknifelocater = Instance.new("Part",RightArm)
  971. nightfallknifelocater.CanCollide = false
  972. nightfallknifelocater.Transparency = 1
  973. nightfallknifelocater.Size = Vector3.new(1,1,1)
  974. ng2 = weldBetween(nightfallknifelocater,RightArm)
  975. ng2.C0 = CFrame.new(-6.2,4.3,-11.35) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-18))
  976.  
  977.  
  978. nightfallmasklocater = Instance.new("Part",Head)
  979. nightfallmasklocater.CanCollide = false
  980. nightfallmasklocater.Transparency = 1
  981. nightfallmasklocater.Size = Vector3.new(1,1,1)
  982. ng = weldBetween(nightfallmasklocater,Head)
  983. ng.C0 = CFrame.new(12.6,4.5,-3.72)
  984.  
  985. hair = Instance.new("Part",Character)
  986. hair.Size = Vector3.new(2,2,2)
  987. hair.CFrame = Head.CFrame
  988. hair.CanCollide = false
  989. hairweld = Instance.new("Weld",hair)
  990. hairweld.Part0 = hair
  991. hairweld.Part1 = Head
  992. hairweld.C0 = hair.CFrame:inverse() * Head.CFrame * CFrame.new(0,.6,-.78)
  993. mhair = Instance.new("SpecialMesh", hair)
  994. mhair.MeshType = "FileMesh"
  995. mhair.Scale = Vector3.new(1.1,1.1,1.1)
  996. mhair.MeshId,mhair.TextureId = 'http://www.roblox.com/asset/?id=398618628','http://www.roblox.com/asset/?id=857871959'
  997.  
  998. function weld()
  999.     local parts,last = {}
  1000.     local function scan(o1)
  1001.         for _,v in pairs(o1:GetChildren()) do
  1002.             if (v:IsA("BasePart")) then
  1003.                 if (last) then
  1004.                     local w = Instance.new("Weld")
  1005.                     w.Name = ("%s_Weld"):format(v.Name)
  1006.                     w.Part0,w.Part1 = last,nightfallmasklocater
  1007.                     w.C0 = last.CFrame:inverse()
  1008.                     w.Parent = last
  1009.                 end
  1010.                 last = v
  1011.                 table.insert(parts,v)
  1012.             end
  1013.             scan(v)
  1014.         end
  1015.     end
  1016.     scan(o1)
  1017.     for _,v in pairs(parts) do
  1018. v.CanCollide = false
  1019.         v.Anchored = false
  1020. v.Parent = Head
  1021.     end
  1022. end
  1023.  
  1024. weld()
  1025.  
  1026. function weld2()
  1027.     local parts,last = {}
  1028.     local function scan(ov)
  1029.         for _,v in pairs(ov:GetChildren()) do
  1030.             if (v:IsA("BasePart")) then
  1031.                 if (last) then
  1032.                     local w = Instance.new("Weld")
  1033.                     w.Name = ("%s_Weld"):format(v.Name)
  1034.                     w.Part0,w.Part1 = last,nightfallknifelocater
  1035.                     w.C0 = last.CFrame:inverse()
  1036.                     w.Parent = last
  1037.                 end
  1038.                 last = v
  1039.                 table.insert(parts,v)
  1040.             end
  1041.             scan(v)
  1042.         end
  1043.     end
  1044.     scan(ov)
  1045.     for _,v in pairs(parts) do
  1046. v.CanCollide = false
  1047.         v.Anchored = false
  1048. v.Parent = RightArm
  1049.     end
  1050. end
  1051.  
  1052. weld2()
  1053.  
  1054. for i,v in pairs(Character:GetChildren()) do
  1055. if v.ClassName == "Pants" or v.ClassName == "Hat" or v.ClassName == "CharacterMesh" or v.ClassName == "Shirt Graphic" then
  1056. v:Remove()
  1057. end
  1058. end
  1059.  
  1060. shirt = Instance.new("Shirt", Character)
  1061. shirt.Name = "Shirt"
  1062. Character.Shirt.ShirtTemplate = "rbxassetid://863473913"
  1063.  
  1064. leg1 = Instance.new("SpecialMesh", LeftLeg)
  1065. leg1.MeshType = "FileMesh"
  1066. leg1.Scale = Vector3.new(1, 1, 1)
  1067. leg1.MeshId,leg1.TextureId = 'http://www.roblox.com/asset/?id=1243660338','http://www.roblox.com/asset/?id=1539341292'
  1068.  
  1069. leg2 = Instance.new("SpecialMesh", RightLeg)
  1070. leg2.MeshType = "FileMesh"
  1071. leg2.Scale = Vector3.new(1, 1, 1)
  1072. leg2.MeshId,leg2.TextureId = 'http://www.roblox.com/asset/?id=1243660660','http://www.roblox.com/asset/?id=1539341292'
  1073.  
  1074. torso1 = Instance.new("CharacterMesh",Character)
  1075. torso1.MeshId = 319346857
  1076. torso1.BodyPart = "Torso"
  1077.  
  1078. arm1 = Instance.new("CharacterMesh",Character)
  1079. arm1.MeshId = 303665934
  1080. arm1.OverlayTextureId = 1539341292
  1081. arm1.BodyPart = "LeftArm"
  1082.  
  1083. arm2 = Instance.new("CharacterMesh",Character)
  1084. arm2.MeshId = 98332573
  1085. arm2.OverlayTextureId = 6347925
  1086. arm2.BodyPart = "RightArm"
  1087.  
  1088. coroutine.wrap(function()
  1089. while wait() do
  1090. if secondform then
  1091. Head.face.Texture = "rbxassetid://1127768638"
  1092. else
  1093. Head.face.Texture = "rbxassetid://629947734"
  1094. end
  1095. hum.WalkSpeed = ws
  1096. hum.JumpPower = jp
  1097. LeftArm.BrickColor = BrickColor.new("Really black")
  1098. RightArm.BrickColor = BrickColor.new("Really black")
  1099. Head.BrickColor = BrickColor.new("Really black")
  1100. Torso.BrickColor = BrickColor.new("Really black")
  1101. LeftLeg.BrickColor = BrickColor.new("Really black")
  1102. RightLeg.BrickColor = BrickColor.new("Really black")
  1103. end
  1104. end)()
  1105. godmode = coroutine.wrap(function()
  1106. for i,v in pairs(Character:GetChildren()) do
  1107. if v:IsA("BasePart") and v ~= Root then
  1108. v.Anchored = false
  1109. end
  1110. end
  1111. hum.MaxHealth = math.huge
  1112. wait(.00001)
  1113. hum.Health = math.huge
  1114. end)
  1115. godmode()
  1116. ff = Instance.new("ForceField", Character)
  1117. ff.Visible = false
  1118.  
  1119. coroutine.wrap(function()
  1120. for i,v in pairs(Character:GetChildren()) do
  1121. if v.Name == "Animate" then v:Remove()
  1122. end
  1123. end
  1124. end)()
  1125.  
  1126. function damagealll(Radius,Position)       
  1127.     local Returning = {}       
  1128.     for _,v in pairs(workspace:GetChildren()) do       
  1129.         if v~=Character and v:FindFirstChildOfClass('Humanoid') and v:FindFirstChild('Torso') or v:FindFirstChild('UpperTorso') then
  1130. if v:FindFirstChild("Torso") then      
  1131.             local Mag = (v.Torso.Position - Position).magnitude    
  1132.             if Mag < Radius then       
  1133.                 table.insert(Returning,v)      
  1134.             end
  1135. elseif v:FindFirstChild("UpperTorso") then 
  1136.             local Mag = (v.UpperTorso.Position - Position).magnitude       
  1137.             if Mag < Radius then       
  1138.                 table.insert(Returning,v)      
  1139.             end
  1140. end
  1141.         end    
  1142.     end    
  1143.     return Returning       
  1144. end
  1145.  
  1146. ArtificialHB = Instance.new("BindableEvent", script)
  1147. ArtificialHB.Name = "Heartbeat"
  1148. script:WaitForChild("Heartbeat")
  1149.  
  1150. frame = 1 / 60
  1151. tf = 0
  1152. allowframeloss = false
  1153. tossremainder = false
  1154.  
  1155.  
  1156. lastframe = tick()
  1157. script.Heartbeat:Fire()
  1158.  
  1159.  
  1160. game:GetService("RunService").Heartbeat:connect(function(s, p)
  1161.     tf = tf + s
  1162.     if tf >= frame then
  1163.         if allowframeloss then
  1164.             script.Heartbeat:Fire()
  1165.             lastframe = tick()
  1166.         else
  1167.             for i = 1, math.floor(tf / frame) do
  1168.                 script.Heartbeat:Fire()
  1169.             end
  1170.             lastframe = tick()
  1171.         end
  1172.         if tossremainder then
  1173.             tf = 0
  1174.         else
  1175.             tf = tf - frame * math.floor(tf / frame)
  1176.         end
  1177.     end
  1178. end)
  1179.  
  1180. function swait(num)
  1181.     if num == 0 or num == nil then
  1182.         game:service("RunService").Stepped:wait(0)
  1183.     else
  1184.         for i = 0, num do
  1185.             game:service("RunService").Stepped:wait(0)
  1186.         end
  1187.     end
  1188. end
  1189.  
  1190. for _,n in pairs(Character:GetChildren()) do
  1191. if n:IsA("Accessory") then n:Remove() end
  1192. end
  1193. for _,x in pairs(Character:GetChildren()) do
  1194. if x:IsA("Decal") then x:Remove() end
  1195. end
  1196.  
  1197. function ray(pos, dir, rang, ignoredesc)
  1198.     return workspace:FindPartOnRay(Ray.new(pos, dir.unit * rang), ignoredesc)
  1199. end
  1200.  
  1201. function ray2(startpos, endpos, distance, ignore)
  1202. local dir = CFrame.new(startpos,endpos).lookVector
  1203. return ray(startpos, dir, distance, ignore)
  1204. end
  1205.  
  1206. coroutine.wrap(function()
  1207. while true do
  1208. for i,v in pairs(Torso:GetChildren()) do
  1209. if v.Name == "explodball" then
  1210. v.Size = v.Size + Vector3.new(2,2,2)
  1211. v.Transparency = v.Transparency + .08
  1212. end
  1213. end
  1214. for i,v in pairs(Torso:GetDescendants()) do
  1215. if v.Name == "explodmesh" then
  1216. v.Scale = v.Scale + Vector3.new(.01,0,.01)
  1217. v.Parent.Transparency = v.Parent.Transparency + .06
  1218. end
  1219. end
  1220. for i,v in pairs(Torso:GetDescendants()) do
  1221. if v.Name == "explodmesh2" then
  1222. v.Scale = v.Scale + Vector3.new(1.5,0,1.5)
  1223. v.Parent.Transparency = v.Parent.Transparency + .06
  1224. end
  1225. end
  1226. swait()
  1227. end
  1228. end)()
  1229.  
  1230. function SOUND(PARENT,ID,VOL,LOOP,REMOVE)
  1231. so = Instance.new("Sound")
  1232. so.Parent = PARENT
  1233. so.SoundId = "rbxassetid://"..ID
  1234. so.Volume = VOL
  1235. so.Looped = LOOP
  1236. so:Play()
  1237. removeuseless:AddItem(so,REMOVE)
  1238. end
  1239.  
  1240. mouse.Button1Down:connect(function()
  1241. if debounce then return end
  1242. debounce = true
  1243. if combo1 then
  1244. combo1 = false
  1245. combo2 = true
  1246. combo3 = false
  1247. attacking = true
  1248. ws = 12
  1249. g1 = Instance.new("BodyGyro", Root)
  1250. g1.D = 175
  1251. g1.P = 20000
  1252. g1.MaxTorque = Vector3.new(0,9000,0)
  1253. for i = 1, 12 do
  1254. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1255. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.4,-.2,-.2) * CFrame.Angles(math.rad(90),math.rad(130),math.rad(0)),.3)
  1256. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1257. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-2), math.rad(40), math.rad(0)), 0.3)
  1258. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1259. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1260. swait()
  1261. end
  1262. tr1.Enabled = true
  1263. slash = slasher[math.random(1,#slasher)]
  1264. slashs.SoundId = "rbxassetid://"..slash
  1265. slashs:Play()
  1266. hitbox = Instance.new("Part",Torso)
  1267. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1268. hitbox.Anchored = true
  1269. hitbox.Transparency = 1
  1270. hitbox.Size = Vector3.new(1,1,1)
  1271. hitbox.CanCollide = false
  1272. Hit = damagealll(3,hitbox.Position)
  1273. for _,v in pairs(Hit) do
  1274. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1275. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1276. slash2 = slasher2[math.random(1,#slasher2)]
  1277. local damagesound = Instance.new("Sound",slachtoffer.Parent:FindFirstChild("Torso") or slachtoffer.Parent:FindFirstChild("UpperTorso"))
  1278. damagesound.SoundId = "rbxassetid://"..slash2
  1279. damagesound.Volume = 8
  1280. damagesound:Play()
  1281. removeuseless:AddItem(damagesound,4)
  1282. slachtoffer:TakeDamage(math.random(29,52))
  1283. end
  1284. end
  1285. ws = 6
  1286. for i = 1, 12 do
  1287. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1288. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.2,1.4,-.3) * CFrame.Angles(math.rad(90),math.rad(230),math.rad(0)),.3)
  1289. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1290. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-60), math.rad(0)), 0.3)
  1291. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1292. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1293. swait()
  1294. end
  1295. removeuseless:AddItem(g1,.001)
  1296. hitbox:Remove()
  1297. tr1.Enabled = false
  1298. attacking = false
  1299. debounce = false
  1300. ws = 19
  1301. elseif combo2 then
  1302. combo1 = false
  1303. combo2 = false
  1304. combo3 = true
  1305. attacking = true
  1306. ws = 12
  1307. g1 = Instance.new("BodyGyro", Root)
  1308. g1.D = 175
  1309. g1.P = 20000
  1310. g1.MaxTorque = Vector3.new(0,9000,0)
  1311. for i = 1, 12 do
  1312. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1313. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1314. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-40), math.rad(0)), 0.3)
  1315. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.8,-0) * CFrame.Angles(math.rad(-120),math.rad(99),math.rad(0)),.3)
  1316. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1317. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1318. swait()
  1319. end
  1320. tr1.Enabled = true
  1321. slash = slasher[math.random(1,#slasher)]
  1322. slashs.SoundId = "rbxassetid://"..slash
  1323. slashs:Play()
  1324. hitbox = Instance.new("Part",Torso)
  1325. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1326. hitbox.Anchored = true
  1327. hitbox.Transparency = 1
  1328. hitbox.Size = Vector3.new(1,1,1)
  1329. hitbox.CanCollide = false
  1330. Hit = damagealll(3,hitbox.Position)
  1331. for _,v in pairs(Hit) do
  1332. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1333. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1334. slachtoffer:TakeDamage(math.random(34,42))
  1335. slash2 = slasher2[math.random(1,#slasher2)]
  1336. local damagesound = Instance.new("Sound",slachtoffer.Parent:FindFirstChild("Torso") or slachtoffer.Parent:FindFirstChild("UpperTorso"))
  1337. damagesound.SoundId = "rbxassetid://"..slash2
  1338. damagesound.Volume = 8
  1339. damagesound:Play()
  1340. removeuseless:AddItem(damagesound,4)
  1341. end
  1342. end
  1343. for i = 1, 12 do
  1344. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1345. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1346. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-2), math.rad(40), math.rad(0)), 0.3)
  1347. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.8,-.25,0) * CFrame.Angles(math.rad(-60),math.rad(-70),math.rad(0)),.3)
  1348. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1349. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1350. swait()
  1351. end
  1352. removeuseless:AddItem(g1,.001)
  1353. tr1.Enabled = false
  1354. debounce = false
  1355. hitbox:Remove()
  1356. attacking = false
  1357. ws = 19
  1358. elseif combo3 then
  1359. combo1 = true
  1360. combo2 = false
  1361. combo3 = false
  1362. attacking = true
  1363. spinny = 0
  1364. ws = 16
  1365. local spinnysound = Instance.new("Sound",Torso)
  1366. spinnysound.SoundId = "rbxassetid://1290491542"
  1367. spinnysound.Volume = 8
  1368. spinnysound.Pitch = .8
  1369. spinnysound:Play()
  1370. tr1.Enabled = true
  1371. hitbox = Instance.new("Part",Torso)
  1372. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1373. hitbox.Anchored = true
  1374. hitbox.Transparency = 1
  1375. hitbox.Size = Vector3.new(1,1,1)
  1376. hitbox.CanCollide = false
  1377. if spin1 then
  1378. spin1 = false
  1379. spin2 = true
  1380. else
  1381. spin1 = true
  1382. spin2 = false
  1383. end
  1384. for i = 1, 45 do
  1385. hitbox.CFrame = Root.CFrame * CFrame.new(1,0,-3)
  1386. local Hit = damagealll(3,hitbox.Position)
  1387. for _,v in pairs(Hit) do
  1388. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  1389. local slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1390. slachtoffer:TakeDamage(math.random(1,3))
  1391. end
  1392. end
  1393. if spin1 then
  1394. spinny = spinny - 45
  1395. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.4,.5) * CFrame.Angles(math.rad(-90),math.rad(90),math.rad(0)),.3)
  1396. LEFTARMLERP.C0 = LEFTARMLERP.C0:Lerp(CFrame.new(1.55,.55,0)* CFrame.Angles(math.rad(10),math.rad(-5),math.rad(35)),.3)
  1397. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(40)), 0.3)
  1398. ROOTLERP.C1 = ROOTLERP.C1:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(spinny), math.rad(0)), 0.3)
  1399. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1400. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1401. elseif spin2 then
  1402. spinny = spinny - 45
  1403. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.4,.5) * CFrame.Angles(math.rad(-90),math.rad(90),math.rad(0)),.3)
  1404. LEFTARMLERP.C0 = LEFTARMLERP.C0:Lerp(CFrame.new(1.55,.55,0)* CFrame.Angles(math.rad(10),math.rad(-5),math.rad(35)),.3)
  1405. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-40)), 0.3)
  1406. ROOTLERP.C1 = ROOTLERP.C1:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(spinny), math.rad(0)), 0.3)
  1407. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1408. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1409. end
  1410. swait()
  1411. end
  1412. tr1.Enabled = false
  1413. spinnysound:Remove()
  1414. attacking = false
  1415. debounce = false
  1416. spinny = 0
  1417. ROOTLERP.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1418. ws = 19
  1419. end
  1420. end)
  1421.  
  1422. mouse.KeyDown:connect(function(Press)
  1423. Press=Press:lower()
  1424. if Press=='q' then
  1425. if mouse.Target ~= nil then
  1426. if mouse.Target.Parent ~= Character and mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil and mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  1427. if debounce then return end
  1428. debounce = true
  1429. attacking = true
  1430. enemy = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1431. SOUND(Torso,862693565,10,false,5)
  1432. Character.Shirt.ShirtTemplate = "rbxassetid://0"
  1433. arm1.OverlayTextureId = 0
  1434. arm2.OverlayTextureId = 653553298
  1435. RightArm.BrickColor = BrickColor.new("Really black")
  1436. for i = 1, 400 do
  1437. if targetfound then break end
  1438. local Hit = damagealll(5,Torso.Position)
  1439. for _,v in pairs(Hit) do
  1440. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Parent.Name == enemy.Parent.Name then
  1441. targetfound = true
  1442. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1443. end
  1444. end
  1445. hum:MoveTo(enemy.Parent.Torso.Position)
  1446. footsteps.Volume = 2
  1447. footsteps.Pitch = 2.2
  1448. ws = 30
  1449. change = 2
  1450. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  1451. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  1452. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.07 + 0.2*math.sin(sine/3.5), 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  1453. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9 - 0.35 * math.cos(sine/7)/2.8, -.3  + 0.2 - math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) + -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/7), math.rad(0), math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  1454. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9 + 0.35 * math.cos(sine/7)/2.8, -.3 + 0.2 + math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) - -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0) , math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  1455. swait()
  1456. end
  1457. if targetfound then
  1458. ws = 0
  1459. enemy.WalkSpeed = 0
  1460. SOUND(rightlocation,862701802,9,false,5)
  1461. footsteps.Volume = 0
  1462. footsteps.Pitch = 1.6
  1463. for i = 1, 12 do
  1464. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1465. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.175, 0) * CFrame.Angles(math.rad(0), math.rad(60), math.rad(0)), 0.3)
  1466. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1467. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1468. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.79,.05) * CFrame.Angles(math.rad(190),math.rad(0),math.rad(-10)),.3)
  1469. swait()
  1470. end
  1471. locationpartz = Instance.new("Part",Torso)
  1472. locationpartz.Size = Vector3.new(1,1,1)
  1473. locationpartz.Anchored = false
  1474. locationpartz.Transparency = 1
  1475. locationpartz.CanCollide = false
  1476. locationpartz.CFrame = rightlocation.CFrame * CFrame.new(0,-1.5,0)
  1477. enemy.Parent.Torso.CFrame = locationpartz.CFrame * CFrame.new(1,0,0) * CFrame.Angles(math.rad(-90),0,0)
  1478. weldofweld = weldBetween(locationpartz,enemy.Parent.Torso)
  1479. weldofweld.C0 = CFrame.Angles(math.rad(-90),0,0)
  1480. locationpartz.Anchored = true
  1481. SOUND(RightArm,877870515,7,false,6)
  1482. coroutine.wrap(function()
  1483. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1484. screenGui = Instance.new("ScreenGui",v.PlayerGui)
  1485. local imageLabelo = Instance.new("ImageLabel")
  1486. imageLabelo.Parent = screenGui
  1487. imageLabelo.BackgroundTransparency = 1
  1488. imageLabelo.ImageTransparency = 1
  1489. imageLabelo.Position = UDim2.new(0, 0, 0, -60)
  1490. imageLabelo.Size = UDim2.new(0, 1570, 0, 950)
  1491. imageLabelo.Image = "rbxassetid://759556751"
  1492. wait(1)
  1493. imageLabelo.ImageTransparency = .9
  1494. wait(.2)
  1495. imageLabelo.ImageTransparency = 1
  1496. wait(.2)
  1497. imageLabelo.ImageTransparency = .9
  1498. wait(.2)
  1499. imageLabelo.ImageTransparency = 1
  1500. wait(.2)
  1501. imageLabelo.ImageTransparency = .8
  1502. wait(1)
  1503. for i = 1, 20 do
  1504. imageLabelo.ImageTransparency = imageLabelo.ImageTransparency + .025
  1505. swait()
  1506. end
  1507. imageLabelo:Remove()
  1508. end
  1509. end)()
  1510. for i = 1, 250 do
  1511. locationpartz.CFrame = rightlocation.CFrame * CFrame.new(0,-1.5,0)
  1512. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.44,-.125) * CFrame.Angles(math.rad(48),math.rad(0),math.rad(30)), 0.02)
  1513. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.175, 0) * CFrame.Angles(math.rad(0), math.rad(60), math.rad(0)), 0.03)
  1514. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.03)
  1515. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.03)
  1516. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.79,.05) * CFrame.Angles(math.rad(190),math.rad(0),math.rad(-12)),.03)
  1517. swait()
  1518. end
  1519. ded = Instance.new("Sound",enemy.Parent.Torso)
  1520. ded.SoundId = "rbxassetid://429400881"
  1521. ded.Volume = 9
  1522. ded.Pitch = .9
  1523. ded:Play()
  1524. coroutine.wrap(function()
  1525. local energyplosion = Instance.new("Part",Torso)
  1526. energyplosion.CFrame = enemy.Parent.Torso.CFrame
  1527. energyplosion.Size = Vector3.new(.1,.1,.1)
  1528. energyplosion.BrickColor = BrickColor.new("Alder")
  1529. energyplosion.Anchored = true
  1530. energyplosion.CanCollide = false
  1531. energyplosion.Transparency = 0
  1532. energyplosion.Shape = "Ball"
  1533. energyplosion.Material = "Neon"
  1534. for i = 1, 20 do
  1535. enemy.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1536. hum.CameraOffset = Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1537. energyplosion.Size = energyplosion.Size + Vector3.new(2,2,2)
  1538. energyplosion.Transparency = energyplosion.Transparency + .05
  1539. swait()
  1540. end
  1541. hum.CameraOffset = Vector3.new(0,0,0)
  1542. enemy.CameraOffset = Vector3.new(0,0,0)
  1543. energyplosion:Remove()
  1544. end)()
  1545. locationpartz:Remove()
  1546. targetfound = false
  1547. arm1.MeshId = 303665934
  1548. arm1.OverlayTextureId = 1539341292
  1549. arm2.MeshId = 98332573
  1550. arm2.OverlayTextureId = 6347925
  1551. footsteps.Volume = 0
  1552. Character.Shirt.ShirtTemplate = "rbxassetid://863473913"
  1553. enemy.Parent:BreakJoints()
  1554. coroutine.wrap(function()
  1555. tauntsoundz = Instance.new("Sound", Head)
  1556. tauntsoundz.Volume = 10
  1557. tauntsoundz.SoundId = "rbxassetid://246480487"
  1558. tauntsoundz.Looped = false
  1559. tauntsoundz:Play()
  1560. wait(3)
  1561. wait(tauntsoundz.TimeLength)
  1562. tauntsoundz:Remove()
  1563. end)()
  1564. change = .5
  1565. for i = 1, 90 do
  1566. swait()
  1567. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  1568. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  1569. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  1570. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.64 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(45)), 0.2)
  1571. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  1572. end
  1573. attacking = false
  1574. debounce = false
  1575. else
  1576. footsteps.Pitch = 1.6
  1577. targetfound = false
  1578. arm1.MeshId = 303665934
  1579. arm1.OverlayTextureId = 1539341292
  1580. arm2.MeshId = 98332573
  1581. arm2.OverlayTextureId = 6347925
  1582. footsteps.Volume = 0
  1583. Character.Shirt.ShirtTemplate = "rbxassetid://863473913"
  1584. debounce = false
  1585. attacking = false
  1586. end
  1587. end
  1588. end
  1589. elseif Press=='y' then
  1590. if debounce then return end
  1591. debounce = true
  1592. attacking = true
  1593. ws = 12
  1594. g1 = Instance.new("BodyGyro", Root)
  1595. g1.D = 175
  1596. g1.P = 20000
  1597. g1.MaxTorque = Vector3.new(0,9000,0)
  1598. local chargo = Instance.new("Sound",rightlocation)
  1599. chargo.SoundId = "rbxassetid://306181935"
  1600. chargo.Volume = 7
  1601. chargo.Looped = false
  1602. chargo.Pitch = 1.1
  1603. chargo:Play()
  1604. removeuseless:AddItem(chargo,5)
  1605. for i = 1, 120 do
  1606. coroutine.wrap(function()
  1607. local sk = Instance.new("Part",Torso)
  1608. sk.CanCollide = false
  1609. sk.Anchored = true
  1610. sk.BrickColor = BrickColor.new("Alder")
  1611. sk.Name = "sk"
  1612. sk.CFrame = rightlocation.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1613. local skmesh = Instance.new("SpecialMesh",sk)
  1614. skmesh.MeshId = "rbxassetid://662586858"
  1615. skmesh.Name = "wave"
  1616. skmesh.Scale = Vector3.new(.01,.001,.01)
  1617. for i = 1, 20 do
  1618. skmesh.Scale = skmesh.Scale + Vector3.new(.01,0,.01)
  1619. sk.Transparency = sk.Transparency + .05
  1620. swait()
  1621. end
  1622. sk:Remove()
  1623. end)()
  1624. coroutine.wrap(function()
  1625. local wshockwave = Instance.new("Part", Torso)
  1626. wshockwave.Size = Vector3.new(1,1,1)
  1627. wshockwave.CanCollide = false
  1628. wshockwave.Anchored = true
  1629. wshockwave.Transparency = .45
  1630. wshockwave.BrickColor = BrickColor.new("Alder")
  1631. wshockwave.CFrame = CFrame.new(rightlocation.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1632. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1633. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1634. wshockwavemesh.Name = "wswm"
  1635. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1636. removeuseless:AddItem(wshockwave,2)
  1637. for i = 1, 20 do
  1638. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(1,0,1)
  1639. wshockwave.Transparency = wshockwave.Transparency + .05
  1640. swait()
  1641. end
  1642. wshockwave:Remove()
  1643. end)()
  1644. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1645. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1646. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-40), math.rad(0)), 0.03)
  1647. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.8,-0) * CFrame.Angles(math.rad(-120),math.rad(99),math.rad(0)),.03)
  1648. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.03)
  1649. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.03)
  1650. swait()
  1651. end
  1652. coroutine.wrap(function()
  1653. local bullet = Instance.new("Part",Torso)
  1654. bullet.CanCollide = false
  1655. bullet.Anchored = false
  1656. bullet.Size = Vector3.new(2,2,2)
  1657. bullet.Transparency = .5
  1658. bullet.Shape = "Ball"
  1659. bullet.Material = "Neon"
  1660. bullet.BrickColor = BrickColor.new("Alder")
  1661. bullet.CFrame = rightlocation.CFrame
  1662. energloop = Instance.new("Sound",bullet)
  1663. energloop.Volume = 6
  1664. energloop.SoundId = "rbxassetid://2607597779"
  1665. energloop.Looped = true
  1666. MAKETRAIL(bullet,Vector3.new(.2,.2,0),Vector3.new(-.2,-.2,0),.5,ColorSequence.new(BrickColor.new("Alder").Color,BrickColor.new("Eggplant").Color))
  1667. local bov = Instance.new("BodyVelocity",bullet)
  1668. bov.maxForce = Vector3.new(99999,99999,99999)
  1669. bullet.CFrame = CFrame.new(bullet.Position,mouse.Hit.p)
  1670. bov.velocity = bullet.CFrame.lookVector*180
  1671. for i = 1, 225 do
  1672. local Hit = damagealll(15,bullet.Position)
  1673. for _,v in pairs(Hit) do
  1674. if v:FindFirstChildOfClass("Humanoid") and v.Name ~= Player.Name then
  1675. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1676. slachtoffer:TakeDamage(math.random(3,10))
  1677. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1678. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1679. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1680. vel.velocity = CFrame.new(bullet.Position,torso.Position).lookVector*120
  1681. removeuseless:AddItem(vel,.1)
  1682. end
  1683. end
  1684. local sk = Instance.new("Part",Torso)
  1685. sk.CanCollide = false
  1686. sk.Anchored = true
  1687. sk.BrickColor = BrickColor.new("Alder")
  1688. sk.Name = "sk"
  1689. sk.CFrame = bullet.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1690. local skmesh = Instance.new("SpecialMesh",sk)
  1691. skmesh.MeshId = "rbxassetid://662586858"
  1692. skmesh.Name = "wave"
  1693. skmesh.Scale = Vector3.new(.01,.001,.01)
  1694. coroutine.wrap(function()
  1695. for i = 1, 20 do
  1696. skmesh.Scale = skmesh.Scale + Vector3.new(.03,0,.03)
  1697. sk.Transparency = sk.Transparency + .05
  1698. swait()
  1699. end
  1700. sk:Remove()
  1701. end)()
  1702. local wshockwave = Instance.new("Part", Torso)
  1703. wshockwave.Size = Vector3.new(1,1,1)
  1704. wshockwave.CanCollide = false
  1705. wshockwave.Anchored = true
  1706. wshockwave.Transparency = .45
  1707. wshockwave.BrickColor = BrickColor.new("Alder")
  1708. wshockwave.CFrame = CFrame.new(bullet.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1709. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1710. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1711. wshockwavemesh.Name = "wswm"
  1712. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1713. removeuseless:AddItem(wshockwave,2)
  1714. coroutine.wrap(function()
  1715. for i = 1, 20 do
  1716. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(3,0,3)
  1717. wshockwave.Transparency = wshockwave.Transparency + .05
  1718. swait()
  1719. end
  1720. wshockwave:Remove()
  1721. end)()
  1722. swait()
  1723. end
  1724. bullet:Remove()
  1725. end)()
  1726. energloop:Play()
  1727. local bems = Instance.new("Sound",rightlocation)
  1728. bems.SoundId = "rbxassetid://1351572613"
  1729. bems.Volume = 8
  1730. bems:Play()
  1731. removeuseless:AddItem(bems,5)
  1732. for i = 1, 12 do
  1733. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.2,1.4,-.3) * CFrame.Angles(math.rad(90),math.rad(230),math.rad(0)),.3)
  1734. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1735. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-8), math.rad(60), math.rad(0)), 0.3)
  1736. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1737. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1738. swait()
  1739. end
  1740. removeuseless:AddItem(g1,.001)
  1741. debounce = false
  1742. attacking = false
  1743. elseif Press=='u' then
  1744. if mouse.Target ~= nil then
  1745. if mouse.Target.Parent ~= Character and mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil and mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  1746. if debounce then return end
  1747. debounce = true
  1748. attacking = true
  1749. enemyhum = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1750. ETorso = enemyhum.Parent:FindFirstChild("Torso") or enemyhum.Parent:FindFirstChild("LowerTorso")
  1751. ws = 12
  1752. g1 = Instance.new("BodyGyro", Root)
  1753. g1.D = 175
  1754. g1.P = 20000
  1755. g1.MaxTorque = Vector3.new(0,9000,0)
  1756. local chargo = Instance.new("Sound",rightlocation)
  1757. chargo.SoundId = "rbxassetid://306181935"
  1758. chargo.Volume = 7
  1759. chargo.Looped = false
  1760. chargo.Pitch = 1.1
  1761. chargo:Play()
  1762. removeuseless:AddItem(chargo,5)
  1763. for i = 1, 120 do
  1764. coroutine.wrap(function()
  1765. local sk = Instance.new("Part",Torso)
  1766. sk.CanCollide = false
  1767. sk.Anchored = true
  1768. sk.BrickColor = BrickColor.new("Alder")
  1769. sk.Name = "sk"
  1770. sk.CFrame = rightlocation.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1771. local skmesh = Instance.new("SpecialMesh",sk)
  1772. skmesh.MeshId = "rbxassetid://662586858"
  1773. skmesh.Name = "wave"
  1774. skmesh.Scale = Vector3.new(.01,.001,.01)
  1775. for i = 1, 20 do
  1776. skmesh.Scale = skmesh.Scale + Vector3.new(.01,0,.01)
  1777. sk.Transparency = sk.Transparency + .05
  1778. swait()
  1779. end
  1780. sk:Remove()
  1781. end)()
  1782. coroutine.wrap(function()
  1783. local wshockwave = Instance.new("Part", Torso)
  1784. wshockwave.Size = Vector3.new(1,1,1)
  1785. wshockwave.CanCollide = false
  1786. wshockwave.Anchored = true
  1787. wshockwave.Transparency = .45
  1788. wshockwave.BrickColor = BrickColor.new("Alder")
  1789. wshockwave.CFrame = CFrame.new(rightlocation.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1790. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1791. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1792. wshockwavemesh.Name = "wswm"
  1793. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1794. removeuseless:AddItem(wshockwave,2)
  1795. for i = 1, 20 do
  1796. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(1,0,1)
  1797. wshockwave.Transparency = wshockwave.Transparency + .05
  1798. swait()
  1799. end
  1800. wshockwave:Remove()
  1801. end)()
  1802. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  1803. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1804. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(2), math.rad(-40), math.rad(0)), 0.03)
  1805. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(-.3,1.8,-0) * CFrame.Angles(math.rad(-120),math.rad(99),math.rad(0)),.03)
  1806. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.03)
  1807. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.03)
  1808. swait()
  1809. end
  1810. coroutine.wrap(function()
  1811. local bullet = Instance.new("Part",Torso)
  1812. bullet.CanCollide = false
  1813. bullet.Anchored = false
  1814. bullet.Size = Vector3.new(2,2,2)
  1815. bullet.Transparency = .5
  1816. bullet.Shape = "Ball"
  1817. bullet.Material = "Neon"
  1818. bullet.BrickColor = BrickColor.new("Alder")
  1819. bullet.CFrame = rightlocation.CFrame
  1820. energloop = Instance.new("Sound",bullet)
  1821. energloop.Volume = 6
  1822. energloop.SoundId = "rbxassetid://2607597779"
  1823. energloop.Looped = true
  1824. MAKETRAIL(bullet,Vector3.new(.2,.2,0),Vector3.new(-.2,-.2,0),.5,ColorSequence.new(BrickColor.new("Alder").Color,BrickColor.new("Eggplant").Color))
  1825. maxsped = 45
  1826. local bov = Instance.new("RocketPropulsion",bullet)
  1827. bov.MaxThrust = 4000
  1828. bov.MaxSpeed = maxsped
  1829. bov.MaxTorque = Vector3.new(99999999,99999999,99999999)
  1830. bov.Target = ETorso
  1831. bov.TargetRadius = math.huge
  1832. bov:fire()
  1833. for i = 1, 1001 do
  1834. maxsped = maxsped + 1
  1835. bov.MaxSpeed = maxsped
  1836. local Hit = damagealll(15,bullet.Position)
  1837. for _,v in pairs(Hit) do
  1838. if v:FindFirstChildOfClass("Humanoid") and v.Name ~= Player.Name then
  1839. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1840. slachtoffer:TakeDamage(1)
  1841. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  1842. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  1843. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  1844. vel.velocity = CFrame.new(bullet.Position,torso.Position).lookVector*150
  1845. removeuseless:AddItem(vel,.1)
  1846. end
  1847. end
  1848. local sk = Instance.new("Part",Torso)
  1849. sk.CanCollide = false
  1850. sk.Anchored = true
  1851. sk.BrickColor = BrickColor.new("Alder")
  1852. sk.Name = "sk"
  1853. sk.CFrame = bullet.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1854. local skmesh = Instance.new("SpecialMesh",sk)
  1855. skmesh.MeshId = "rbxassetid://662586858"
  1856. skmesh.Name = "wave"
  1857. skmesh.Scale = Vector3.new(.01,.001,.01)
  1858. coroutine.wrap(function()
  1859. for i = 1, 20 do
  1860. skmesh.Scale = skmesh.Scale + Vector3.new(.03,0,.03)
  1861. sk.Transparency = sk.Transparency + .05
  1862. swait()
  1863. end
  1864. sk:Remove()
  1865. end)()
  1866. local wshockwave = Instance.new("Part", Torso)
  1867. wshockwave.Size = Vector3.new(1,1,1)
  1868. wshockwave.CanCollide = false
  1869. wshockwave.Anchored = true
  1870. wshockwave.Transparency = .45
  1871. wshockwave.BrickColor = BrickColor.new("Alder")
  1872. wshockwave.CFrame = CFrame.new(bullet.Position) * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  1873. local wshockwavemesh = Instance.new("SpecialMesh", wshockwave)
  1874. wshockwavemesh.Scale = Vector3.new(1,.05,1)
  1875. wshockwavemesh.Name = "wswm"
  1876. wshockwavemesh.MeshId = "rbxassetid://20329976"
  1877. removeuseless:AddItem(wshockwave,2)
  1878. coroutine.wrap(function()
  1879. for i = 1, 20 do
  1880. wshockwavemesh.Scale = wshockwavemesh.Scale + Vector3.new(3,0,3)
  1881. wshockwave.Transparency = wshockwave.Transparency + .05
  1882. swait()
  1883. end
  1884. wshockwave:Remove()
  1885. end)()
  1886. swait()
  1887. end
  1888. bullet:Remove()
  1889. end)()
  1890. energloop:Play()
  1891. local bems = Instance.new("Sound",rightlocation)
  1892. bems.SoundId = "rbxassetid://1351572613"
  1893. bems.Volume = 8
  1894. bems:Play()
  1895. removeuseless:AddItem(bems,5)
  1896. for i = 1, 12 do
  1897. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:Lerp(CFrame.new(.2,1.4,-.3) * CFrame.Angles(math.rad(90),math.rad(230),math.rad(0)),.3)
  1898. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(38 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.3)
  1899. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.1, 0) * CFrame.Angles(math.rad(-8), math.rad(60), math.rad(0)), 0.3)
  1900. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1901. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  1902. swait()
  1903. end
  1904. removeuseless:AddItem(g1,.001)
  1905. debounce = false
  1906. attacking = false
  1907. end
  1908. end
  1909. elseif Press=='t' then
  1910. if oofing then return end
  1911. if dedlaff then return end
  1912. if tauntdebounce == true then return end
  1913. if debounce then return end
  1914. debounce = true
  1915. attacking = true
  1916. ws = 4
  1917. coroutine.wrap(function()
  1918. for i = 1, 60 do
  1919. swait()
  1920. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  1921. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  1922. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  1923. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.64 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(45)), 0.2)
  1924. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  1925. end
  1926. debounce = false
  1927. attacking = false
  1928. ws = 19
  1929. end)()
  1930. tauntdebounce = true
  1931. tauntsound = Instance.new("Sound", Head)
  1932. tauntsound.Volume = 10
  1933. tauntsound.SoundId = "rbxassetid://246480487"
  1934. tauntsound.Looped = false
  1935. tauntsound:Play()
  1936. wait(3)
  1937. wait(tauntsound.TimeLength)
  1938. tauntsound:Remove()
  1939. wait(1)
  1940. tauntdebounce = false
  1941. end
  1942. end)
  1943.  
  1944. mouse.KeyDown:connect(function(Press)
  1945. Press=Press:lower()
  1946. if Press=='r' then
  1947. if mouse.Target ~= nil then
  1948. if mouse.Target.Parent ~= Character and mouse.Target.Parent:FindFirstChildOfClass("Humanoid") ~= nil and mouse.Target.Parent:FindFirstChildOfClass("Humanoid").Health > 0 then
  1949. if debounce then return end
  1950. debounce = true
  1951. attacking = true
  1952. ws = 8
  1953. enemy = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1954. for i = 1, 20 do
  1955. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2, 0) * CFrame.Angles(math.rad(-2), math.rad(40), math.rad(0)), 0.3)
  1956. LEFTARMLERP.C0 = LEFTARMLERP.C0:Lerp(CFrame.new(.3,1.62,-.07) * CFrame.Angles(math.rad(-120),math.rad(-99),math.rad(0)),.3)
  1957. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  1958. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  1959. swait()
  1960. end
  1961. for i = 1, 20 do
  1962. if grabbed then break end
  1963. local Hit = damagealll(5,rightlocation.Position)
  1964. for _,v in pairs(Hit) do
  1965. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Parent.Name == enemy.Parent.Name then
  1966. grabbed = true
  1967. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  1968. end
  1969. end
  1970. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  1971. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  1972. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.25,-.18,.2) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(0)),.3)
  1973. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.2, 0) * CFrame.Angles(math.rad(-2), math.rad(-40), math.rad(0)), 0.3)
  1974. swait()
  1975. end
  1976. if grabbed then
  1977. change = .5
  1978. ws = 0
  1979. jp = 0
  1980. enemyweld = weldBetween(enemy.Parent.Head,leftlocation)
  1981. enemyweld.C0 = CFrame.new(0,-.6,0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(180))
  1982. for i = 1, 35 do
  1983. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165 + -.1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)),math.rad(0),math.rad(0)),.1)
  1984. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.4 + .02 * math.sin(sine/12),.10 * -math.sin(sine/12)) * CFrame.Angles(math.rad(-10 + 10 * math.sin(sine/12)),math.rad(0),math.rad(-25)), 0.1)
  1985. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(-10)), 0.1)
  1986. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2.0 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(10)), 0.1)
  1987. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.4,.8,.39) * CFrame.Angles(math.rad(-138),math.rad(0),math.rad(0)),.3)
  1988. swait()
  1989. end
  1990. rawr = Instance.new("Sound",Head)
  1991. rawr.SoundId = "rbxassetid://246480487"
  1992. rawr.Volume = 8
  1993. rawr.Pitch = 1.05
  1994. rawr:Play()
  1995. wait(.35)
  1996. for i = 1, 60 do
  1997. if enemy.Health > 1 then
  1998. enemy:TakeDamage(1)
  1999. end
  2000. hum.CameraOffset = Vector3.new(math.random(-1,1),0,math.random(-1,1))
  2001. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  2002. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .5) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  2003. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  2004. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  2005. swait()
  2006. end
  2007. hum.CameraOffset = Vector3.new(0,0,0)
  2008. g1 = Instance.new("BodyGyro", Root)
  2009. g1.D = 175
  2010. g1.P = 20000
  2011. g1.MaxTorque = Vector3.new(0,9000,0)
  2012. for i = 1, 25 do
  2013. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2014. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2015. g1.CFrame = g1.CFrame:lerp(CFrame.new(Root.Position,mouse.Hit.p),.4)
  2016. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.4,.2,.39) * CFrame.Angles(math.rad(-90),math.rad(30),math.rad(0)),.3)
  2017. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(-0),math.rad(40),math.rad(0)),.1)
  2018. swait()
  2019. end
  2020. g1:Remove()
  2021. enemyweld:Remove()
  2022. throwo = Instance.new("Sound",enemy.Parent.Head)
  2023. throwo.SoundId = "rbxassetid://2314640406"
  2024. throwo.Volume = 10
  2025. throwo.Pitch = .95
  2026. throwo:Play()
  2027. enemy:TakeDamage(math.random(4,10))
  2028. removeuseless:AddItem(throwo,4)
  2029. local bov = Instance.new("BodyVelocity",enemy.Parent.Head)
  2030. bov.maxForce = Vector3.new(99999,99999,99999)
  2031. enemy.Parent.Head.CFrame = CFrame.new(enemy.Parent.Head.Position,mouse.Hit.p)
  2032. bov.velocity = enemy.Parent.Head.CFrame.lookVector*100
  2033. removeuseless:AddItem(bov,.25)
  2034. for i = 1, 25 do
  2035. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  2036. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2, .1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  2037. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.25,-.18,.2) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(0)),.3)
  2038. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165, 0) * CFrame.Angles(math.rad(-0),math.rad(-40),math.rad(0)),.1)
  2039. swait()
  2040. end
  2041. jp = 85
  2042. grabbed = false
  2043. debounce = false
  2044. attacking = false
  2045. else
  2046. ws = 19
  2047. jp = 85
  2048. grabbed = false
  2049. debounce = false
  2050. attacking = false
  2051. end
  2052. end
  2053. end
  2054. end
  2055. end)
  2056.  
  2057. mouse.KeyDown:connect(function(Press)
  2058. Press=Press:lower()
  2059. if Press=='e' then
  2060. if debounce then return end
  2061. debounce = true
  2062. attacking = true
  2063. coroutine.wrap(function()
  2064. if dash1 then
  2065. dash1 = false
  2066. dash2 = true
  2067. for i = 1, 30 do
  2068. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  2069. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  2070. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.25, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  2071. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, .3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2072. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,-.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2073. swait()
  2074. end
  2075. elseif dash2 then
  2076. dash1 = true
  2077. dash2 = false
  2078. for i = 1, 30 do
  2079. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  2080. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  2081. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.25, 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  2082. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9, -.2) * CFrame.Angles(math.rad(-25), math.rad(0)*math.cos(sine/7), math.rad(-2)), 0.3)
  2083. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9,.3) * CFrame.Angles(math.rad(25), math.rad(0)*math.cos(sine/1), math.rad(0)), 0.3)
  2084. swait()
  2085. end
  2086. end
  2087. end)()
  2088. local boomsound = Instance.new("Sound",Torso)
  2089. boomsound.SoundId = "rbxassetid://1177784919"
  2090. boomsound.Volume = 8
  2091. boomsound:Play()
  2092. removeuseless:AddItem(boomsound,5)
  2093. local tornadotwistloc = Instance.new("Part",Torso)
  2094. tornadotwistloc.CFrame = Root.CFrame
  2095. tornadotwistloc.Anchored = true
  2096. tornadotwistloc.Transparency = 1
  2097. tornadotwistloc.CanCollide = false
  2098. tornadotwistloc.Size = Vector3.new(1,1,1)
  2099. twist = 0
  2100. grassblocksloc = Instance.new("Part",Torso)
  2101. grassblocksloc.Size = Vector3.new(1,1,1)
  2102. grassblocksloc.CanCollide = false
  2103. grassblocksloc.Transparency = 1
  2104. grassblocksloc.Anchored = false
  2105. grassblockslocweld = weldBetween(grassblocksloc,Torso)
  2106. grassblockslocweld.C0 = CFrame.new(4,4,0)
  2107. grassblocksloc2 = Instance.new("Part",Torso)
  2108. grassblocksloc2.Size = Vector3.new(1,1,1)
  2109. grassblocksloc2.CanCollide = false
  2110. grassblocksloc2.Transparency = 1
  2111. grassblocksloc2.Anchored = false
  2112. grassblockslocweld2 = weldBetween(grassblocksloc2,Torso)
  2113. grassblockslocweld2.C0 = CFrame.new(-4,4,0)
  2114. coroutine.wrap(function()
  2115. for i = 1, 30 do
  2116. Hit = damagealll(16,Torso.Position)
  2117. for _,v in pairs(Hit) do
  2118. if v:FindFirstChildOfClass("Humanoid") and v:FindFirstChildOfClass("Humanoid").Health > 0 then
  2119. slachtoffer = v:FindFirstChildOfClass("Humanoid")
  2120. slachtoffer:TakeDamage(math.random(1,4))
  2121. vel = Instance.new("BodyVelocity",v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso"))
  2122. vel.maxForce = Vector3.new(9999999999999,9999999999999,9999999999999)
  2123. torso = v:FindFirstChild("Torso") or v:FindFirstChild("UpperTorso")
  2124. vel.velocity = CFrame.new(Torso.Position,torso.Position).lookVector*90
  2125. removeuseless:AddItem(vel,.1)
  2126. end
  2127. end
  2128. coroutine.wrap(function()
  2129. local sk = Instance.new("Part",Torso)
  2130. sk.CanCollide = false
  2131. sk.Anchored = true
  2132. sk.BrickColor = BrickColor.new("Alder")
  2133. sk.Name = "sk"
  2134. sk.CFrame = Torso.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),0,math.rad(math.random(-180,180)))
  2135. local skmesh = Instance.new("SpecialMesh",sk)
  2136. skmesh.MeshId = "rbxassetid://662586858"
  2137. skmesh.Name = "wave"
  2138. skmesh.Scale = Vector3.new(.04,.01,.04)
  2139. removeuseless:AddItem(sk,2)
  2140. local energys = Instance.new("Part",Torso)
  2141. energys.Size = Vector3.new(3.5,3.5,3.5)
  2142. energys.Material = "Neon"
  2143. energys.BrickColor = BrickColor.new("Alder")
  2144. energys.Anchored = true
  2145. energys.CanCollide = false
  2146. energys.CFrame = grassblocksloc.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))
  2147. local energys2 = Instance.new("Part",Torso)
  2148. energys2.Size = Vector3.new(3.5,3.5,3.5)
  2149. energys2.Material = "Neon"
  2150. energys2.BrickColor = BrickColor.new("Alder")
  2151. energys2.Anchored = true
  2152. energys2.CanCollide = false
  2153. energys2.CFrame = grassblocksloc2.CFrame * CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))
  2154. for i = 1, 20 do
  2155. skmesh.Scale = skmesh.Scale + Vector3.new(.01,0,.01)
  2156. sk.Transparency = sk.Transparency + .05
  2157. energys2.Transparency = energys2.Transparency + .05
  2158. energys.Transparency = energys.Transparency + .05
  2159. swait()
  2160. end
  2161. sk:Remove()
  2162. energys2:Remove()
  2163. energys:Remove()
  2164. end)()
  2165. Root.CFrame = Root.CFrame * CFrame.new(0,0,-2.4)
  2166. swait()
  2167. end
  2168. debounce = false
  2169. attacking = false
  2170. end)()
  2171. coroutine.wrap(function()
  2172. local wind = Instance.new("Part", Torso)
  2173. wind.Size = Vector3.new(0.5, 0.5, 0.5)
  2174. wind.Material = "Neon"
  2175. wind.BrickColor = BrickColor.new("Really white")
  2176. wind.Transparency = .5
  2177. wind.Anchored = true
  2178. wind.CanCollide = false
  2179. wind.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),0,0)
  2180. windMESH = Instance.new("SpecialMesh", wind)
  2181. windMESH.Scale = Vector3.new(4.5,7.5,4.5)
  2182. windMESH.MeshId = "rbxassetid://168892432"
  2183. local wind2 = Instance.new("Part", Torso)
  2184. wind2.Size = Vector3.new(0.5, 0.5, 0.5)
  2185. wind2.Material = "Neon"
  2186. wind2.BrickColor = BrickColor.new("Really white")
  2187. wind2.Transparency = .5
  2188. wind2.Anchored = true
  2189. wind2.CanCollide = false
  2190. wind2.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),0,0)
  2191. windMESH2 = Instance.new("SpecialMesh", wind2)
  2192. windMESH2.Scale = Vector3.new(2.5,5.5,2.5)
  2193. windMESH2.MeshId = "rbxassetid://168892432"
  2194. for i = 1, 50 do
  2195. twist = twist + 11
  2196. windMESH.Scale = windMESH.Scale + Vector3.new(.35,.35,.35)
  2197. windMESH2.Scale = windMESH2.Scale + Vector3.new(.35,.35,.35)
  2198. wind.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),math.rad(twist),0)
  2199. wind2.CFrame = tornadotwistloc.CFrame * CFrame.Angles(math.rad(90),math.rad(-twist),0)
  2200. wind.Transparency = wind.Transparency + .015
  2201. wind2.Transparency = wind2.Transparency + .015
  2202. swait()
  2203. end
  2204. wind:Remove()
  2205. wind2:Remove()
  2206. end)()
  2207. end
  2208. end)
  2209.  
  2210. checks1 = coroutine.wrap(function() -------Checks
  2211. while true do
  2212. hf = ray(Root.Position,(CFrame.new(Root.Position,Root.Position+Vector3.new(0,-1,0))).lookVector,3*3,Character)
  2213. if Root.Velocity.y > 1 and hf == nil then
  2214. position = "Jump"
  2215. elseif Root.Velocity.y < -1 and hf == nil then
  2216. position = "Falling"
  2217. elseif Root.Velocity.Magnitude < 2 and hf ~= nil then
  2218. position = "Idle"
  2219. elseif Root.Velocity.Magnitude > 2 and hf ~= nil then
  2220. position = "Walking"
  2221. end
  2222. wait()
  2223. end
  2224. end)
  2225. checks1()
  2226.  
  2227. oofing = true
  2228. hum.HealthChanged:Connect(function(healthz)
  2229. if tauntdebounce then return end
  2230. if dedlaff then return end
  2231. if oofing then return end
  2232. oofing = true
  2233. ouchtable = beingattackedtable[math.random(1,#beingattackedtable)]
  2234. ouch = Instance.new("Sound",Head)
  2235. ouch.SoundId = "rbxassetid://"..ouchtable
  2236. ouch.Volume = 8
  2237. ouch:Play()
  2238. wait(1)
  2239. wait(ouch.TimeLength)
  2240. ouch:Remove()
  2241. wait(1)
  2242. oofing = false
  2243. end)
  2244. coroutine.wrap(function()
  2245. wait(2)
  2246. oofing = false
  2247. end)()
  2248.  
  2249. OrgnC0 = Neck.C0
  2250. local movelimbs = coroutine.wrap(function()
  2251. while RunSrv.RenderStepped:wait() do
  2252. TrsoLV = Torso.CFrame.lookVector
  2253. Dist = nil
  2254. Diff = nil
  2255. if not MseGuide then
  2256. print("Failed to recognize")
  2257. else
  2258. local _, Point = Workspace:FindPartOnRay(Ray.new(Head.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  2259. Dist = (Head.CFrame.p-Point).magnitude
  2260. Diff = Head.CFrame.Y-Point.Y
  2261. local _, Point2 = Workspace:FindPartOnRay(Ray.new(LeftArm.CFrame.p, mouse.Hit.lookVector), Workspace, false, true)
  2262. Dist2 = (LeftArm.CFrame.p-Point).magnitude
  2263. Diff2 = LeftArm.CFrame.Y-Point.Y
  2264. HEADLERP.C0 = CFrame.new(0, -1.5, -0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2265. Neck.C0 = Neck.C0:lerp(OrgnC0*CFrame.Angles((math.tan(Diff/Dist)*1), 0, (((Head.CFrame.p-Point).Unit):Cross(Torso.CFrame.lookVector)).Y*1), .1)
  2266. end
  2267. end
  2268. end)
  2269. movelimbs()
  2270. immortal = {}
  2271. for i,v in pairs(Character:GetDescendants()) do
  2272.     if v:IsA("BasePart") and v.Name ~= "lmagic" and v.Name ~= "rmagic" then
  2273.         if v ~= Root and v ~= Torso and v ~= Head and v ~= RightArm and v ~= LeftArm and v ~= RightLeg and v.Name ~= "lmagic" and v.Name ~= "rmagic" and v ~= LeftLeg then
  2274.             v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  2275.         end
  2276.         table.insert(immortal,{v,v.Parent,v.Material,v.Color,v.Transparency})
  2277.     elseif v:IsA("JointInstance") then
  2278.         table.insert(immortal,{v,v.Parent,nil,nil,nil})
  2279.     end
  2280. end
  2281. for e = 1, #immortal do
  2282.     if immortal[e] ~= nil then
  2283.         local STUFF = immortal[e]
  2284.         local PART = STUFF[1]
  2285.         local PARENT = STUFF[2]
  2286.         local MATERIAL = STUFF[3]
  2287.         local COLOR = STUFF[4]
  2288.         local TRANSPARENCY = STUFF[5]
  2289. if levitate then
  2290.         if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= eyo1 and PART.Name ~= eyo2 and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  2291.             PART.Material = MATERIAL
  2292.             PART.Color = COLOR
  2293.             PART.Transparency = TRANSPARENCY
  2294.         end
  2295.         PART.AncestryChanged:connect(function()
  2296.             PART.Parent = PARENT
  2297.         end)
  2298. else
  2299.         if PART.ClassName == "Part" and PART ~= Root and PART.Name ~= "lmagic" and PART.Name ~= "rmagic" then
  2300.             PART.Material = MATERIAL
  2301.             PART.Color = COLOR
  2302.             PART.Transparency = TRANSPARENCY
  2303.         end
  2304.         PART.AncestryChanged:connect(function()
  2305.             PART.Parent = PARENT
  2306.         end)
  2307. end
  2308.     end
  2309. end
  2310. function immortality()
  2311.     for e = 1, #immortal do
  2312.         if immortal[e] ~= nil then
  2313.             local STUFF = immortal[e]
  2314.             local PART = STUFF[1]
  2315.             local PARENT = STUFF[2]
  2316.             local MATERIAL = STUFF[3]
  2317.             local COLOR = STUFF[4]
  2318.             local TRANSPARENCY = STUFF[5]
  2319.             if PART.ClassName == "Part" and PART == Root then
  2320.                 PART.Material = MATERIAL
  2321.                 PART.Color = COLOR
  2322.                 PART.Transparency = TRANSPARENCY
  2323.             end
  2324.             if PART.Parent ~= PARENT then
  2325.                 hum:Remove()
  2326.                 PART.Parent = PARENT
  2327.                 hum = Instance.new("Humanoid",Character)
  2328.                                 hum.Name = "nightfall"
  2329.             end
  2330.         end
  2331.     end
  2332. end
  2333. alreadyflip = false
  2334. function jumpsound()
  2335. if alreadyflip then return end
  2336. alreadyflip = true
  2337. flipsound = Instance.new("Sound",Torso)
  2338. flipsound.SoundId = "rbxassetid://1031614266"
  2339. flipsound.Volume = 2
  2340. flipsound.Pitch = 1
  2341. flipsound:Play()
  2342. removeuseless:AddItem(flipsound,2)
  2343. wait(1)
  2344. alreadyflip = false
  2345. end
  2346. coroutine.wrap(function()
  2347. while true do
  2348. if hum.Health < .1 then
  2349. deadsound = Instance.new("Sound", Torso)
  2350. deadsound.Volume = 6
  2351. deadsound.SoundId = "rbxassetid://1411352723"
  2352. deadsound:Play()
  2353. immortality()
  2354. end
  2355. wait()
  2356. end
  2357. end)()
  2358. spinny = 0
  2359. local anims = coroutine.wrap(function()
  2360. while true do
  2361. settime = 0.05
  2362. sine = sine + change
  2363. if position == "Jump" and attacking == false then
  2364. coroutine.wrap(function()
  2365. jumpsound()
  2366. end)()
  2367. spinny = spinny - 18
  2368. change = 1
  2369. ws = 35
  2370. footsteps.Volume = 0
  2371. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  2372. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  2373. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  2374. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(spinny), math.rad(0), math.rad(0)), 0.4)
  2375. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.2)
  2376. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-10)), 0.2)
  2377. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 1., .9) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.4)
  2378. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 1.0, .9) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.4)
  2379. elseif position == "Falling" and attacking == false then
  2380. change = 1
  2381. ws = 19
  2382. spinny = 0
  2383. footsteps.Volume = 0
  2384. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.15)
  2385. LEFTLEGLERP.C1 = LEFTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.1)
  2386. RIGHTLEGLERP.C1 = RIGHTLEGLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),0,0),.1)
  2387. LEFTARMLERP.C1 = LEFTARMLERP.C1:lerp(CFrame.new(0,0,0) * CFrame.Angles(0,0,0),.4)
  2388. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.5, 2, .5) * CFrame.Angles(math.rad(8), math.rad(4), math.rad(0)), 0.2)
  2389. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.5, 2, .5) * CFrame.Angles(math.rad(8), math.rad(-4), math.rad(0)), 0.2)
  2390. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.64 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(45)), 0.2)
  2391. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.9 + .02 * math.sin(sine/12),.05) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(-45)), 0.2)
  2392. elseif position == "Walking" and attacking == false and running == false then
  2393. change = 1.2
  2394. if invisible then
  2395. ws = 30
  2396. else
  2397. ws = 19
  2398. end
  2399. walking = true
  2400. spinny = 0
  2401. footsteps.Volume = 2
  2402. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.15,-.3) * CFrame.Angles(math.rad(50 + 5 * math.sin(sine/8)),math.rad(0),math.rad(-10)),.3)
  2403. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.1,-.15,.5) * CFrame.Angles(math.rad(-70),math.rad(40),math.rad(-20)),.3)
  2404. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.07 + 0.2*math.sin(sine/3.5), 0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(0) + Root.RotVelocity.Y / 30, math.cos(25 * math.cos(sine/7))), 0.3)
  2405. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.52, 1.9 - 0.35 * math.cos(sine/7)/2.8, -.3  + 0.2 - math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) + -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/7), math.rad(0), math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  2406. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.52, 1.9 + 0.35 * math.cos(sine/7)/2.8, -.3 + 0.2 + math.sin(sine/7)/3.4) * CFrame.Angles(math.rad(25 - 35) - -math.sin(sine/7)/2.3, math.rad(0)*math.cos(sine/1), math.rad(0) , math.cos(-15 * 75 * math.cos(sine/7))), 0.3)
  2407. elseif position == "Idle" and attacking == false and running == false then
  2408. change = .5
  2409. if invisible then
  2410. ws = 30
  2411. else
  2412. ws = 19
  2413. end
  2414. spinny = 0
  2415. footsteps.Volume = 0
  2416. ROOTLERP.C0 = ROOTLERP.C0:lerp(CFrame.new(0, -.165 + -.1 * math.sin(sine/12), 0) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)),math.rad(0),math.rad(0)),.1)
  2417. LEFTARMLERP.C0 = LEFTARMLERP.C0:lerp(CFrame.new(1.5,.14 + .02 * math.sin(sine/12),-.125) * CFrame.Angles(math.rad(28 + 5 * math.sin(sine/12)),math.rad(0),math.rad(10)), 0.1)
  2418. RIGHTARMLERP.C0 = RIGHTARMLERP.C0:lerp(CFrame.new(-1.5,.4 + .02 * math.sin(sine/12),.10 * -math.sin(sine/12)) * CFrame.Angles(math.rad(-10 + 10 * math.sin(sine/12)),math.rad(0),math.rad(-25)), 0.1)
  2419. RIGHTLEGLERP.C0 = RIGHTLEGLERP.C0:lerp(CFrame.new(-0.3, 2 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(-10)), 0.1)
  2420. LEFTLEGLERP.C0 = LEFTLEGLERP.C0:lerp(CFrame.new(0.3, 2.0 - .1 * math.sin(sine/12), .1) * CFrame.Angles(math.rad(6 * -math.sin(sine/12)), math.rad(0), math.rad(10)), 0.1)
  2421. end
  2422. swait()
  2423. end
  2424. end)
  2425. anims()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement