Advertisement
spidercraft78

Untitled

Apr 8th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 332.60 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6. local lleg = char["Left Leg"]
  7. local rleg = char["Right Leg"]
  8. local hed = char.Head
  9. local torso = char.Torso
  10. local hum = char.Humanoid
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local deb = false
  14. local shot = 0
  15. local l = game:GetService("Lighting")
  16. local rs = game:GetService("RunService").RenderStepped
  17. local debris=game:service"Debris"
  18. local stanceToggle = "Normal"
  19. math.randomseed(os.time())
  20. hum.WalkSpeed = 100
  21. char.Health:Destroy()
  22. hum.MaxHealth = 99999999999999999
  23. wait(0.1)
  24. hum.Health = 99999999999999999
  25. ----------------------------------------------------
  26. ypcall(function()
  27. char.Shirt:Destroy()
  28. char.Pants:Destroy()
  29. shirt = Instance.new("Shirt", char)
  30. shirt.Name = "Shirt"
  31. pants = Instance.new("Pants", char)
  32. pants.Name = "Pants"
  33. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=131708604"
  34. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=131708657"
  35. end)
  36. ----------------------------------------------------
  37. Debounces = {
  38. on = false;
  39. ks = false;
  40. CanAttack = true;
  41. CanJoke = true;
  42. NoIdl = false;
  43. Slashing = false;
  44. Slashed = false;
  45. Grabbing = false;
  46. Grabbed = false;
  47. }
  48. local Touche = {char.Name, }
  49. ----------------------------------------------------
  50. function lerp(a, b, t) -- Linear interpolation
  51. return a + (b - a)*t
  52. end
  53.  
  54. function slerp(a, b, t) --Spherical interpolation
  55. dot = a:Dot(b)
  56. if dot > 0.99999 or dot < -0.99999 then
  57. return t <= 0.5 and a or b
  58. else
  59. r = math.acos(dot)
  60. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  61. end
  62. end
  63.  
  64. function matrixInterpolate(a, b, t)
  65. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  66. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  67. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  68. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  69. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  70. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  71. local t = v1:Dot(v2)
  72. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  73. return CFrame.new()
  74. end
  75. return CFrame.new(
  76. v0.x, v0.y, v0.z,
  77. v1.x, v1.y, v1.z,
  78. v2.x, v2.y, v2.z,
  79. v3.x, v3.y, v3.z)
  80. end
  81. ----------------------------------------------------
  82. function genWeld(a,b)
  83. local w = Instance.new("Weld",a)
  84. w.Part0 = a
  85. w.Part1 = b
  86. return w
  87. end
  88. function weld(a, b)
  89. local weld = Instance.new("Weld")
  90. weld.Name = "W"
  91. weld.Part0 = a
  92. weld.Part1 = b
  93. weld.C0 = a.CFrame:inverse() * b.CFrame
  94. weld.Parent = a
  95. return weld;
  96. end
  97. ----------------------------------------------------
  98. function Lerp(c1,c2,al)
  99. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  100. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  101. for i,v in pairs(com1) do
  102. com1[i] = v+(com2[i]-v)*al
  103. end
  104. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  105. end
  106. ----------------------------------------------------
  107. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  108. local wld = Instance.new("Weld", wp1)
  109. wld.Part0 = wp0
  110. wld.Part1 = wp1
  111. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  112. end
  113. ----------------------------------------------------
  114. function Tween(a,b,c)
  115. return a+(b-a)*c
  116. end
  117. ----------------------------------------------------
  118. function nwPrt(prnt,siz,cf,col)
  119. local prt=Instance.new("Part")
  120. prt.Parent=prnt
  121. prt.FormFactor=3
  122. prt.Name="Part"
  123. prt.Size=siz
  124. prt.CanCollide=false
  125. prt.Anchored=true
  126. prt.Locked=true
  127. prt.TopSurface=10
  128. prt.BottomSurface=10
  129. prt.FrontSurface=10
  130. prt.BackSurface=10
  131. prt.LeftSurface=10
  132. prt.RightSurface=10
  133. prt:BreakJoints()
  134. prt.CFrame=cf or CFrame.new(30,10,30)
  135. prt.Material="Neon"
  136. prt.BrickColor=BrickColor.new(col)
  137. m=Instance.new("SpecialMesh",prt)
  138. m.MeshType=6
  139. return prt
  140. end
  141. ----------------------------------------------------
  142. function nwSnd(prnt,pch,vol,id)
  143. local s=Instance.new("Sound",prnt)
  144. s.Pitch=pch
  145. s.Volume=vol
  146. s.SoundId="rbxassetid://"..id
  147. s.PlayOnRemove=true
  148. return s
  149. end
  150. ----------------------------------------------------
  151. function newRay(start,face,range,wat)
  152. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  153. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  154. return rey,hit,pos
  155. end
  156. ----------------------------------------------------
  157. for i,v in pairs(char:children()) do
  158. if v:IsA("Hat") then
  159. v:Destroy()
  160. end
  161. end
  162. for i,v in pairs(hed:children()) do
  163. if v:IsA("Sound") then
  164. v:Destroy()
  165. end
  166. end
  167. ----------------------------------------------------
  168. function HasntTouched(plrname)
  169. local ret = true
  170. for _, v in pairs(Touche) do
  171. if v == plrname then
  172. ret = false
  173. end
  174. end
  175. return ret
  176. end
  177. ----------------------------------------------------
  178. larm.Size = larm.Size * 2
  179. rarm.Size = rarm.Size * 2
  180. lleg.Size = lleg.Size * 2
  181. rleg.Size = rleg.Size * 2
  182. torso.Size = torso.Size * 2
  183. hed.Size = hed.Size * 2
  184. root.Size = root.Size * 2
  185. ----------------------------------------------------
  186. newWeld(torso, larm, -1.5, 0.5, 0)
  187. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  188. newWeld(torso, rarm, 1.5, 0.5, 0)
  189. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  190. newWeld(torso, hed, 0, 1.5, 0)
  191. newWeld(torso, lleg, -0.5, -1, 0)
  192. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  193. newWeld(torso, rleg, 0.5, -1, 0)
  194. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  195. newWeld(root, torso, 0, -1, 0)
  196. torso.Weld.C1 = CFrame.new(0, -1, 0)
  197. ----------------------------------------------------
  198. hed.face.Texture = "rbxassetid://629947734"
  199. z=Instance.new('Decal',hed)
  200. z.Face = 'Front'
  201. z.Texture='rbxassetid://99174105'
  202. z1=Instance.new('Decal',hed)
  203. z1.Face = 'Right'
  204. hed.BrickColor = BrickColor.new("Really black")
  205. lite = Instance.new("PointLight", torso)
  206. lite.Brightness = 14
  207. lite.Range = 10
  208. lite.Color = Color3.new(170, 0, 255)
  209. --[[local hed2 = hed:Clone()
  210. hed2.CanCollide = false
  211. hed2.Parent = char
  212. hed2:ClearAllChildren()
  213. hed2.Transparency = 1
  214. hed2.Name = "DARP"
  215. local w = Instance.new("Weld",hed2)
  216. w.Part0 = hed
  217. w.Part1 = hed2
  218. w.C0 = CFrame.new(0,0,-0.175)
  219. z=Instance.new("SurfaceGui",hed2)
  220. z.Enabled = true
  221. z.Face = "Front"
  222. z.Adornee = hed2
  223. z.CanvasSize = Vector2.new(100,100)
  224. local face = Instance.new("ImageLabel",z)
  225. face.Size = UDim2.new(1,-30,1,0)
  226. face.Position = UDim2.new(0,15,0,0)
  227. face.BackgroundTransparency = 1
  228. face.Image='rbxassetid://46282671']]--
  229. ----------------------------------------------------
  230. z = Instance.new("Sound", char)
  231. z.SoundId = "rbxassetid://695312907"--242463565
  232. z.Looped = true
  233. z.Pitch = .6
  234. z.Volume = 1
  235. wait(.01)
  236. z:Play()
  237. ----------------------------------------------------
  238. local l = game.Lighting
  239. local sky = Instance.new("Sky",l)
  240. sky.CelestialBodiesShown = true
  241. sky.SkyboxBk = "http://www.roblox.com/asset/?id=159454299"
  242. sky.SkyboxDn = "http://www.roblox.com/asset/?id=159454296"
  243. sky.SkyboxFt = "http://www.roblox.com/asset/?id=159454293"
  244. sky.SkyboxLf = "http://www.roblox.com/asset/?id=159454286"
  245. sky.SkyboxRt = "http://www.roblox.com/asset/?id=159454300"
  246. sky.SkyboxUp = "http://www.roblox.com/asset/?id=159454288"
  247. sky.StarCount = 100
  248. sky.Name = "N3xul Sky"
  249. ----------------------------------------------------
  250. local m = Instance.new("Model")
  251. m.Name = "Absolution"
  252. p1 = Instance.new("Part", m)
  253. p1.BrickColor = BrickColor.new("Royal purple")
  254. p1.Material = "Neon"
  255. p1.FormFactor = Enum.FormFactor.Custom
  256. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  257. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  258. p1.CanCollide = false
  259. p1.Locked = true
  260. p1.Elasticity = 0
  261. p1.BottomSurface = Enum.SurfaceType.Smooth
  262. p1.TopSurface = Enum.SurfaceType.Smooth
  263. b1 = Instance.new("SpecialMesh", p1)
  264. b1.MeshType = Enum.MeshType.Wedge
  265. b1.Name = "Mesh"
  266. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  267. p2 = Instance.new("Part", m)
  268. p2.BrickColor = BrickColor.new("Really black")
  269. p2.FormFactor = Enum.FormFactor.Custom
  270. p2.Size = Vector3.new(1, 2.9000001, 1)
  271. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  272. p2.CanCollide = false
  273. p2.Locked = true
  274. p2.Elasticity = 0
  275. p2.BottomSurface = Enum.SurfaceType.Smooth
  276. p2.TopSurface = Enum.SurfaceType.Smooth
  277. b2 = Instance.new("BlockMesh", p2)
  278. b2.Name = "Mesh"
  279. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  280. p3 = Instance.new("Part", m)
  281. p3.BrickColor = BrickColor.new("Royal purple")
  282. p3.Material = "Neon"
  283. p3.FormFactor = Enum.FormFactor.Custom
  284. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  285. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  286. p3.CanCollide = false
  287. p3.Locked = true
  288. p3.Elasticity = 0
  289. p3.BottomSurface = Enum.SurfaceType.Smooth
  290. p3.TopSurface = Enum.SurfaceType.Smooth
  291. b3 = Instance.new("SpecialMesh", p3)
  292. b3.MeshType = Enum.MeshType.Wedge
  293. b3.Name = "Mesh"
  294. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  295. p4 = Instance.new("Part", m)
  296. p4.BrickColor = BrickColor.new("Royal purple")
  297. p4.Material = "Neon"
  298. p4.FormFactor = Enum.FormFactor.Custom
  299. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  300. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  301. p4.CanCollide = false
  302. p4.Locked = true
  303. p4.Elasticity = 0
  304. p4.BottomSurface = Enum.SurfaceType.Smooth
  305. p4.TopSurface = Enum.SurfaceType.Smooth
  306. b4 = Instance.new("SpecialMesh", p4)
  307. b4.MeshType = Enum.MeshType.Wedge
  308. b4.Name = "Mesh"
  309. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  310. p5 = Instance.new("Part", m)
  311. p5.BrickColor = BrickColor.new("Royal purple")
  312. p5.Material = "Neon"
  313. p5.FormFactor = Enum.FormFactor.Custom
  314. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  315. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  316. p5.CanCollide = false
  317. p5.Locked = true
  318. p5.Elasticity = 0
  319. p5.BottomSurface = Enum.SurfaceType.Smooth
  320. p5.TopSurface = Enum.SurfaceType.Smooth
  321. b5 = Instance.new("SpecialMesh", p5)
  322. b5.MeshType = Enum.MeshType.Wedge
  323. b5.Name = "Mesh"
  324. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  325. p6 = Instance.new("Part", m)
  326. p6.Name = "Handle"
  327. p6.BrickColor = BrickColor.new("Really black")
  328. p6.FormFactor = Enum.FormFactor.Custom
  329. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  330. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  331. p6.CanCollide = false
  332. p6.Locked = true
  333. p6.Elasticity = 0
  334. p6.BottomSurface = Enum.SurfaceType.Smooth
  335. p6.TopSurface = Enum.SurfaceType.Smooth
  336. b6 = Instance.new("BlockMesh", p6)
  337. b6.Name = "Mesh"
  338. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  339. p7 = Instance.new("Part", m)
  340. p7.BrickColor = BrickColor.new("Royal purple")
  341. p7.Material = "Neon"
  342. p7.FormFactor = Enum.FormFactor.Custom
  343. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  344. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  345. p7.CanCollide = false
  346. p7.Locked = true
  347. p7.Elasticity = 0
  348. p7.BottomSurface = Enum.SurfaceType.Smooth
  349. p7.TopSurface = Enum.SurfaceType.Smooth
  350. b7 = Instance.new("SpecialMesh", p7)
  351. b7.MeshType = Enum.MeshType.Wedge
  352. b7.Name = "Mesh"
  353. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  354. p8 = Instance.new("Part", m)
  355. p8.BrickColor = BrickColor.new("Royal purple")
  356. p8.Material = "Neon"
  357. p8.FormFactor = Enum.FormFactor.Custom
  358. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  359. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  360. p8.CanCollide = false
  361. p8.Locked = true
  362. p8.Elasticity = 0
  363. p8.BottomSurface = Enum.SurfaceType.Smooth
  364. p8.TopSurface = Enum.SurfaceType.Smooth
  365. b8 = Instance.new("SpecialMesh", p8)
  366. b8.MeshType = Enum.MeshType.Wedge
  367. b8.Name = "Mesh"
  368. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  369. p9 = Instance.new("Part", m)
  370. p9.BrickColor = BrickColor.new("Really black")
  371. p9.FormFactor = Enum.FormFactor.Custom
  372. p9.Size = Vector3.new(1, 1.07999957, 1)
  373. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  374. p9.CanCollide = false
  375. p9.Locked = true
  376. p9.Elasticity = 0
  377. p9.BottomSurface = Enum.SurfaceType.Smooth
  378. p9.TopSurface = Enum.SurfaceType.Smooth
  379. b9 = Instance.new("BlockMesh", p9)
  380. b9.Name = "Mesh"
  381. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  382. p10 = Instance.new("Part", m)
  383. p10.BrickColor = BrickColor.new("Really black")
  384. p10.FormFactor = Enum.FormFactor.Custom
  385. p10.Size = Vector3.new(1, 1.41999948, 1)
  386. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  387. p10.CanCollide = false
  388. p10.Locked = true
  389. p10.Elasticity = 0
  390. p10.BottomSurface = Enum.SurfaceType.Smooth
  391. p10.TopSurface = Enum.SurfaceType.Smooth
  392. b10 = Instance.new("BlockMesh", p10)
  393. b10.Name = "Mesh"
  394. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  395. p11 = Instance.new("Part", m)
  396. p11.BrickColor = BrickColor.new("Really black")
  397. p11.FormFactor = Enum.FormFactor.Custom
  398. p11.Size = Vector3.new(1, 1.50999951, 1)
  399. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  400. p11.CanCollide = false
  401. p11.Locked = true
  402. p11.Elasticity = 0
  403. p11.BottomSurface = Enum.SurfaceType.Smooth
  404. p11.TopSurface = Enum.SurfaceType.Smooth
  405. b11 = Instance.new("BlockMesh", p11)
  406. b11.Name = "Mesh"
  407. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  408. p12 = Instance.new("Part", m)
  409. p12.Name = "BladeCenter"
  410. p12.BrickColor = BrickColor.new("Royal purple")
  411. p12.Material = Enum.Material.Neon
  412. p12.FormFactor = Enum.FormFactor.Symmetric
  413. p12.Size = Vector3.new(1, 2, 2)
  414. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  415. p12.CanCollide = false
  416. p12.Locked = true
  417. p12.BottomSurface = Enum.SurfaceType.Smooth
  418. p12.TopSurface = Enum.SurfaceType.Smooth
  419. b12 = Instance.new("SpecialMesh", p12)
  420. b12.MeshType = Enum.MeshType.Brick
  421. b12.Name = "Mesh"
  422. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  423. p13 = Instance.new("Part", m)
  424. p13.BrickColor = BrickColor.new("Really black")
  425. p13.FormFactor = Enum.FormFactor.Custom
  426. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  427. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  428. p13.CanCollide = false
  429. p13.Locked = true
  430. p13.Elasticity = 0
  431. p13.BottomSurface = Enum.SurfaceType.Smooth
  432. p13.TopSurface = Enum.SurfaceType.Smooth
  433. b13 = Instance.new("BlockMesh", p13)
  434. b13.Name = "Mesh"
  435. b13.Scale = Vector3.new(1, 1, 0.400000006)
  436. p14 = Instance.new("Part", m)
  437. p14.BrickColor = BrickColor.new("Really black")
  438. p14.FormFactor = Enum.FormFactor.Custom
  439. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  440. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  441. p14.CanCollide = false
  442. p14.Locked = true
  443. p14.Elasticity = 0
  444. p14.BottomSurface = Enum.SurfaceType.Smooth
  445. p14.TopSurface = Enum.SurfaceType.Smooth
  446. b14 = Instance.new("BlockMesh", p14)
  447. b14.Name = "Mesh"
  448. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  449. p15 = Instance.new("Part", m)
  450. p15.BrickColor = BrickColor.new("Really black")
  451. p15.FormFactor = Enum.FormFactor.Custom
  452. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  453. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  454. p15.CanCollide = false
  455. p15.Locked = true
  456. p15.Elasticity = 0
  457. p15.BottomSurface = Enum.SurfaceType.Smooth
  458. p15.TopSurface = Enum.SurfaceType.Smooth
  459. b15 = Instance.new("BlockMesh", p15)
  460. b15.Name = "Mesh"
  461. b15.Scale = Vector3.new(1, 1, 0.400000006)
  462. p16 = Instance.new("Part", m)
  463. p16.BrickColor = BrickColor.new("Really black")
  464. p16.FormFactor = Enum.FormFactor.Custom
  465. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  466. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  467. p16.CanCollide = false
  468. p16.Locked = true
  469. p16.Elasticity = 0
  470. p16.BottomSurface = Enum.SurfaceType.Smooth
  471. p16.TopSurface = Enum.SurfaceType.Smooth
  472. b16 = Instance.new("BlockMesh", p16)
  473. b16.Name = "Mesh"
  474. b16.Scale = Vector3.new(1, 1, 0.400000006)
  475. p17 = Instance.new("Part", m)
  476. p17.BrickColor = BrickColor.new("Really black")
  477. p17.FormFactor = Enum.FormFactor.Custom
  478. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  479. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  480. p17.CanCollide = false
  481. p17.Locked = true
  482. p17.Elasticity = 0
  483. p17.BottomSurface = Enum.SurfaceType.Smooth
  484. p17.TopSurface = Enum.SurfaceType.Smooth
  485. b17 = Instance.new("BlockMesh", p17)
  486. b17.Name = "Mesh"
  487. b17.Scale = Vector3.new(1, 1, 0.400000006)
  488. p18 = Instance.new("WedgePart", m)
  489. p18.BrickColor = BrickColor.new("Royal purple")
  490. p18.Name = "BladePart1"
  491. p18.Material = Enum.Material.Neon
  492. p18.Name = "Wedge"
  493. p18.FormFactor = Enum.FormFactor.Symmetric
  494. p18.Size = Vector3.new(1, 4, 2)
  495. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  496. p18.CanCollide = false
  497. p18.Locked = true
  498. p18.BottomSurface = Enum.SurfaceType.Smooth
  499. p18.TopSurface = Enum.SurfaceType.Smooth
  500. b18 = Instance.new("SpecialMesh", p18)
  501. b18.MeshType = Enum.MeshType.Wedge
  502. b18.Name = "Mesh"
  503. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  504. p19 = Instance.new("WedgePart", m)
  505. p19.BrickColor = BrickColor.new("Royal purple")
  506. p19.Name = "BladePart2"
  507. p19.Material = Enum.Material.Neon
  508. p19.Name = "Wedge"
  509. p19.FormFactor = Enum.FormFactor.Symmetric
  510. p19.Size = Vector3.new(1, 4, 2)
  511. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  512. p19.CanCollide = false
  513. p19.Locked = true
  514. p19.BottomSurface = Enum.SurfaceType.Smooth
  515. p19.TopSurface = Enum.SurfaceType.Smooth
  516. b19 = Instance.new("SpecialMesh", p19)
  517. b19.MeshType = Enum.MeshType.Wedge
  518. b19.Name = "Mesh"
  519. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  520. p20 = Instance.new("Part", m)
  521. p20.BrickColor = BrickColor.new("Really black")
  522. p20.FormFactor = Enum.FormFactor.Custom
  523. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  524. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  525. p20.CanCollide = false
  526. p20.Locked = true
  527. p20.Elasticity = 0
  528. p20.BottomSurface = Enum.SurfaceType.Smooth
  529. p20.TopSurface = Enum.SurfaceType.Smooth
  530. b20 = Instance.new("BlockMesh", p20)
  531. b20.Name = "Mesh"
  532. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  533. p21 = Instance.new("Part", m)
  534. p21.BrickColor = BrickColor.new("Royal purple")
  535. p21.Material = "Neon"
  536. p21.FormFactor = Enum.FormFactor.Custom
  537. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  538. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  539. p21.CanCollide = false
  540. p21.Locked = true
  541. p21.Elasticity = 0
  542. p21.BottomSurface = Enum.SurfaceType.Smooth
  543. p21.TopSurface = Enum.SurfaceType.Smooth
  544. b21 = Instance.new("SpecialMesh", p21)
  545. b21.MeshType = Enum.MeshType.Wedge
  546. b21.Name = "Mesh"
  547. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  548. w1 = Instance.new("Weld", p1)
  549. w1.Name = "Part_Weld"
  550. w1.Part0 = p1
  551. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  552. w1.Part1 = p2
  553. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  554. w2 = Instance.new("Weld", p2)
  555. w2.Name = "Part_Weld"
  556. w2.Part0 = p2
  557. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  558. w2.Part1 = p3
  559. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  560. w3 = Instance.new("Weld", p3)
  561. w3.Name = "Part_Weld"
  562. w3.Part0 = p3
  563. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  564. w3.Part1 = p4
  565. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  566. w4 = Instance.new("Weld", p4)
  567. w4.Name = "Part_Weld"
  568. w4.Part0 = p4
  569. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  570. w4.Part1 = p5
  571. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  572. w5 = Instance.new("Weld", p5)
  573. w5.Name = "Part_Weld"
  574. w5.Part0 = p5
  575. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  576. w5.Part1 = p6
  577. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  578. w6 = Instance.new("Weld", p6)
  579. w6.Name = "Part_Weld"
  580. w6.Part0 = p6
  581. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  582. w6.Part1 = p7
  583. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  584. w7 = Instance.new("Weld", p7)
  585. w7.Name = "Part_Weld"
  586. w7.Part0 = p7
  587. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  588. w7.Part1 = p8
  589. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  590. w8 = Instance.new("Weld", p8)
  591. w8.Name = "Part_Weld"
  592. w8.Part0 = p8
  593. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  594. w8.Part1 = p9
  595. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  596. w9 = Instance.new("Weld", p9)
  597. w9.Name = "Part_Weld"
  598. w9.Part0 = p9
  599. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  600. w9.Part1 = p10
  601. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  602. w10 = Instance.new("Weld", p10)
  603. w10.Name = "Part_Weld"
  604. w10.Part0 = p10
  605. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  606. w10.Part1 = p11
  607. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  608. w11 = Instance.new("Weld", p11)
  609. w11.Name = "Part_Weld"
  610. w11.Part0 = p11
  611. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  612. w11.Part1 = p12
  613. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  614. w12 = Instance.new("Weld", p12)
  615. w12.Name = "Part_Weld"
  616. w12.Part0 = p12
  617. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  618. w12.Part1 = p13
  619. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  620. w13 = Instance.new("Weld", p13)
  621. w13.Name = "Part_Weld"
  622. w13.Part0 = p13
  623. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  624. w13.Part1 = p14
  625. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  626. w14 = Instance.new("Weld", p14)
  627. w14.Name = "Part_Weld"
  628. w14.Part0 = p14
  629. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  630. w14.Part1 = p15
  631. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  632. w15 = Instance.new("Weld", p15)
  633. w15.Name = "Part_Weld"
  634. w15.Part0 = p15
  635. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  636. w15.Part1 = p16
  637. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  638. w16 = Instance.new("Weld", p16)
  639. w16.Name = "Part_Weld"
  640. w16.Part0 = p16
  641. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  642. w16.Part1 = p17
  643. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  644. w17 = Instance.new("Weld", p17)
  645. w17.Name = "Wedge_Weld"
  646. w17.Part0 = p17
  647. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  648. w17.Part1 = p18
  649. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  650. w18 = Instance.new("Weld", p18)
  651. w18.Name = "Wedge_Weld"
  652. w18.Part0 = p18
  653. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  654. w18.Part1 = p19
  655. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  656. w19 = Instance.new("Weld", p19)
  657. w19.Name = "Part_Weld"
  658. w19.Part0 = p19
  659. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  660. w19.Part1 = p20
  661. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  662. w20 = Instance.new("Weld", p20)
  663. w20.Name = "Part_Weld"
  664. w20.Part0 = p20
  665. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  666. w20.Part1 = p21
  667. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  668. m.Parent = char
  669. m:MakeJoints()
  670. ----------------------------------------------------
  671. local cor = Instance.new("Part", char.Absolution)
  672. cor.Name = "Thingy"
  673. cor.Locked = true
  674. cor.BottomSurface = 0
  675. cor.CanCollide = false
  676. cor.Size = Vector3.new(1, 13, 1)
  677. cor.Transparency = 1
  678. cor.TopSurface = 0
  679. corw = Instance.new("Weld", cor)
  680. corw.Part0 = rarm
  681. corw.Part1 = cor
  682. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  683. corw.C1 = CFrame.new(0, 0, 0)
  684. weld1 = Instance.new("Weld", char.Absolution)
  685. weld1.Part0 = cor
  686. weld1.Part1 = p6
  687. weld1.C0 = CFrame.new(0, 0, 0)
  688. ----------------------------------------------------
  689. hitb = Instance.new("Part", char.Absolution)
  690. hitb.Name = "Thingy2"
  691. hitb.Locked = true
  692. hitb.BottomSurface = 0
  693. hitb.CanCollide = false
  694. hitb.Size = Vector3.new(0, 8, 6)
  695. hitb.Transparency = 1
  696. hitb.TopSurface = 0
  697. weld2 = Instance.new("Weld", char.Absolution)
  698. weld2.Part0 = hitb
  699. weld2.Part1 = p12
  700. weld2.C0 = CFrame.new(0, .6, 1)
  701. ----------------------------------------------------
  702. local m = Instance.new("Model")
  703. m.Name = "Claw"
  704. p1 = Instance.new("Part", m)
  705. p1.BrickColor = BrickColor.new("Really black")
  706. p1.FormFactor = Enum.FormFactor.Custom
  707. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  708. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  709. p1.CanCollide = false
  710. p1.Locked = true
  711. p1.BottomSurface = Enum.SurfaceType.Smooth
  712. p1.TopSurface = Enum.SurfaceType.Smooth
  713. b1 = Instance.new("BlockMesh", p1)
  714. b1.Name = "Mesh"
  715. p2 = Instance.new("WedgePart", m)
  716. p2.BrickColor = BrickColor.new("Really black")
  717. p2.Name = "Wedge"
  718. p2.FormFactor = Enum.FormFactor.Custom
  719. p2.Size = Vector3.new(3, 1, 0.5)
  720. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  721. p2.CanCollide = false
  722. p2.Locked = true
  723. p2.BottomSurface = Enum.SurfaceType.Smooth
  724. p2.TopSurface = Enum.SurfaceType.Smooth
  725. p3 = Instance.new("Part", m)
  726. p3.BrickColor = BrickColor.new("Really black")
  727. p3.FormFactor = Enum.FormFactor.Custom
  728. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  729. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  730. p3.CanCollide = false
  731. p3.Locked = true
  732. p3.BottomSurface = Enum.SurfaceType.Smooth
  733. p3.TopSurface = Enum.SurfaceType.Smooth
  734. b2 = Instance.new("BlockMesh", p3)
  735. b2.Name = "Mesh"
  736. p4 = Instance.new("WedgePart", m)
  737. p4.BrickColor = BrickColor.new("Really black")
  738. p4.Name = "Wedge"
  739. p4.FormFactor = Enum.FormFactor.Custom
  740. p4.Size = Vector3.new(3, 1, 0.5)
  741. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  742. p4.CanCollide = false
  743. p4.Locked = true
  744. p4.BottomSurface = Enum.SurfaceType.Smooth
  745. p4.TopSurface = Enum.SurfaceType.Smooth
  746. p5 = Instance.new("Part", m)
  747. p5.BrickColor = BrickColor.new("Really black")
  748. p5.FormFactor = Enum.FormFactor.Custom
  749. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  750. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  751. p5.CanCollide = false
  752. p5.Locked = true
  753. p5.BottomSurface = Enum.SurfaceType.Smooth
  754. p5.TopSurface = Enum.SurfaceType.Smooth
  755. b3 = Instance.new("BlockMesh", p5)
  756. b3.Name = "Mesh"
  757. p6 = Instance.new("Part", m)
  758. p6.BrickColor = BrickColor.new("Really black")
  759. p6.FormFactor = Enum.FormFactor.Custom
  760. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  761. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  762. p6.CanCollide = false
  763. p6.Locked = true
  764. p6.BottomSurface = Enum.SurfaceType.Smooth
  765. p6.TopSurface = Enum.SurfaceType.Smooth
  766. b4 = Instance.new("BlockMesh", p6)
  767. b4.Name = "Mesh"
  768. p7 = Instance.new("Part", m)
  769. p7.BrickColor = BrickColor.new("Really black")
  770. p7.FormFactor = Enum.FormFactor.Custom
  771. p7.Size = Vector3.new(3, 1, 1.20000005)
  772. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  773. p7.CanCollide = false
  774. p7.Locked = true
  775. p7.BottomSurface = Enum.SurfaceType.Smooth
  776. p7.TopSurface = Enum.SurfaceType.Smooth
  777. b5 = Instance.new("BlockMesh", p7)
  778. b5.Name = "Mesh"
  779. p8 = Instance.new("Part", m)
  780. p8.BrickColor = BrickColor.new("Royal purple")
  781. p8.Material = "Neon"
  782. p8.FormFactor = Enum.FormFactor.Symmetric
  783. p8.Size = Vector3.new(1, 1, 1)
  784. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  785. p8.CanCollide = false
  786. p8.Locked = true
  787. b6 = Instance.new("SpecialMesh", p8)
  788. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  789. b6.TextureId = ""
  790. b6.MeshType = Enum.MeshType.FileMesh
  791. b6.Name = "Mesh"
  792. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  793. p9 = Instance.new("Part", m)
  794. p9.BrickColor = BrickColor.new("Really black")
  795. p9.FormFactor = Enum.FormFactor.Custom
  796. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  797. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  798. p9.CanCollide = false
  799. p9.Locked = true
  800. p9.BottomSurface = Enum.SurfaceType.Smooth
  801. p9.TopSurface = Enum.SurfaceType.Smooth
  802. b7 = Instance.new("BlockMesh", p9)
  803. b7.Name = "Mesh"
  804. p10 = Instance.new("Part", m)
  805. p10.BrickColor = BrickColor.new("Royal purple")
  806. p10.Material = "Neon"
  807. p10.FormFactor = Enum.FormFactor.Symmetric
  808. p10.Size = Vector3.new(1, 1, 1)
  809. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  810. p10.CanCollide = false
  811. p10.Locked = true
  812. b8 = Instance.new("SpecialMesh", p10)
  813. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  814. b8.TextureId = ""
  815. b8.MeshType = Enum.MeshType.FileMesh
  816. b8.Name = "Mesh"
  817. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  818. p11 = Instance.new("Part", m)
  819. p11.BrickColor = BrickColor.new("Really black")
  820. p11.FormFactor = Enum.FormFactor.Custom
  821. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  822. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  823. p11.CanCollide = false
  824. p11.Locked = true
  825. p11.BottomSurface = Enum.SurfaceType.Smooth
  826. p11.TopSurface = Enum.SurfaceType.Smooth
  827. b9 = Instance.new("BlockMesh", p11)
  828. b9.Name = "Mesh"
  829. p12 = Instance.new("Part", m)
  830. p12.BrickColor = BrickColor.new("Really black")
  831. p12.FormFactor = Enum.FormFactor.Custom
  832. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  833. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  834. p12.CanCollide = false
  835. p12.Locked = true
  836. p12.BottomSurface = Enum.SurfaceType.Smooth
  837. p12.TopSurface = Enum.SurfaceType.Smooth
  838. b10 = Instance.new("BlockMesh", p12)
  839. b10.Name = "Mesh"
  840. p13 = Instance.new("Part", m)
  841. p13.BrickColor = BrickColor.new("Really black")
  842. p13.FormFactor = Enum.FormFactor.Custom
  843. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  844. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  845. p13.CanCollide = false
  846. p13.Locked = true
  847. p13.BottomSurface = Enum.SurfaceType.Smooth
  848. p13.TopSurface = Enum.SurfaceType.Smooth
  849. b11 = Instance.new("BlockMesh", p13)
  850. b11.Name = "Mesh"
  851. p14 = Instance.new("Part", m)
  852. p14.BrickColor = BrickColor.new("Royal purple")
  853. p14.Material = "Neon"
  854. p14.FormFactor = Enum.FormFactor.Symmetric
  855. p14.Size = Vector3.new(1, 1, 1)
  856. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  857. p14.CanCollide = false
  858. p14.Locked = true
  859. b12 = Instance.new("SpecialMesh", p14)
  860. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  861. b12.TextureId = ""
  862. b12.MeshType = Enum.MeshType.FileMesh
  863. b12.Name = "Mesh"
  864. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  865. p15 = Instance.new("Part", m)
  866. p15.BrickColor = BrickColor.new("Royal purple")
  867. p15.Transparency = 1
  868. p15.Name = "ArmPart"
  869. p15.FormFactor = Enum.FormFactor.Custom
  870. p15.Size = Vector3.new(2, 1, 1)
  871. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  872. p15.CanCollide = false
  873. p15.Locked = true
  874. p15.BottomSurface = Enum.SurfaceType.Smooth
  875. p15.TopSurface = Enum.SurfaceType.Smooth
  876. b13 = Instance.new("BlockMesh", p15)
  877. b13.Name = "Mesh"
  878. p16 = Instance.new("Part", m)
  879. p16.BrickColor = BrickColor.new("Really black")
  880. p16.FormFactor = Enum.FormFactor.Custom
  881. p16.Size = Vector3.new(3, 1, 2.4000001)
  882. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  883. p16.CanCollide = false
  884. p16.Locked = true
  885. p16.BottomSurface = Enum.SurfaceType.Smooth
  886. p16.TopSurface = Enum.SurfaceType.Smooth
  887. b14 = Instance.new("BlockMesh", p16)
  888. b14.Name = "Mesh"
  889. p17 = Instance.new("Part", m)
  890. p17.BrickColor = BrickColor.new("Really black")
  891. p17.FormFactor = Enum.FormFactor.Custom
  892. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  893. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  894. p17.CanCollide = false
  895. p17.Locked = true
  896. p17.BottomSurface = Enum.SurfaceType.Smooth
  897. p17.TopSurface = Enum.SurfaceType.Smooth
  898. b15 = Instance.new("BlockMesh", p17)
  899. b15.Name = "Mesh"
  900. p18 = Instance.new("Part", m)
  901. p18.BrickColor = BrickColor.new("Royal purple")
  902. p18.Material = "Neon"
  903. p18.FormFactor = Enum.FormFactor.Symmetric
  904. p18.Size = Vector3.new(1, 1, 1)
  905. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  906. p18.CanCollide = false
  907. p18.Locked = true
  908. b16 = Instance.new("SpecialMesh", p18)
  909. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  910. b16.TextureId = ""
  911. b16.MeshType = Enum.MeshType.FileMesh
  912. b16.Name = "Mesh"
  913. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  914. p19 = Instance.new("Part", m)
  915. p19.BrickColor = BrickColor.new("Royal purple")
  916. p19.Material = "Neon"
  917. p19.FormFactor = Enum.FormFactor.Symmetric
  918. p19.Size = Vector3.new(1, 1, 1)
  919. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  920. p19.CanCollide = false
  921. p19.Locked = true
  922. b17 = Instance.new("SpecialMesh", p19)
  923. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  924. b17.TextureId = ""
  925. b17.MeshType = Enum.MeshType.FileMesh
  926. b17.Name = "Mesh"
  927. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  928. p20 = Instance.new("Part", m)
  929. p20.BrickColor = BrickColor.new("Really black")
  930. p20.FormFactor = Enum.FormFactor.Custom
  931. p20.Size = Vector3.new(3, 1, 2.4000001)
  932. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  933. p20.CanCollide = false
  934. p20.Locked = true
  935. p20.BottomSurface = Enum.SurfaceType.Smooth
  936. p20.TopSurface = Enum.SurfaceType.Smooth
  937. b18 = Instance.new("BlockMesh", p20)
  938. b18.Name = "Mesh"
  939. p21 = Instance.new("Part", m)
  940. p21.BrickColor = BrickColor.new("Really black")
  941. p21.FormFactor = Enum.FormFactor.Custom
  942. p21.Size = Vector3.new(3, 1, 1.19999993)
  943. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  944. p21.CanCollide = false
  945. p21.Locked = true
  946. p21.BottomSurface = Enum.SurfaceType.Smooth
  947. p21.TopSurface = Enum.SurfaceType.Smooth
  948. b19 = Instance.new("BlockMesh", p21)
  949. b19.Name = "Mesh"
  950. p22 = Instance.new("WedgePart", m)
  951. p22.BrickColor = BrickColor.new("Really black")
  952. p22.Name = "Wedge"
  953. p22.FormFactor = Enum.FormFactor.Custom
  954. p22.Size = Vector3.new(3, 1, 0.5)
  955. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  956. p22.CanCollide = false
  957. p22.Locked = true
  958. p22.BottomSurface = Enum.SurfaceType.Smooth
  959. p22.TopSurface = Enum.SurfaceType.Smooth
  960. p23 = Instance.new("Part", m)
  961. p23.BrickColor = BrickColor.new("Really black")
  962. p23.FormFactor = Enum.FormFactor.Custom
  963. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  964. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  965. p23.CanCollide = false
  966. p23.Locked = true
  967. p23.BottomSurface = Enum.SurfaceType.Smooth
  968. p23.TopSurface = Enum.SurfaceType.Smooth
  969. b20 = Instance.new("BlockMesh", p23)
  970. b20.Name = "Mesh"
  971. p24 = Instance.new("WedgePart", m)
  972. p24.BrickColor = BrickColor.new("Really black")
  973. p24.Name = "Wedge"
  974. p24.FormFactor = Enum.FormFactor.Custom
  975. p24.Size = Vector3.new(3, 1, 0.5)
  976. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  977. p24.CanCollide = false
  978. p24.Locked = true
  979. p24.BottomSurface = Enum.SurfaceType.Smooth
  980. p24.TopSurface = Enum.SurfaceType.Smooth
  981. p25 = Instance.new("Part", m)
  982. p25.BrickColor = BrickColor.new("Royal purple")
  983. p25.Material = "Neon"
  984. p25.FormFactor = Enum.FormFactor.Symmetric
  985. p25.Size = Vector3.new(1, 1, 1)
  986. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  987. p25.CanCollide = false
  988. p25.Locked = true
  989. p25.BottomSurface = Enum.SurfaceType.Smooth
  990. p25.TopSurface = Enum.SurfaceType.Smooth
  991. b21 = Instance.new("SpecialMesh", p25)
  992. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  993. b21.TextureId = ""
  994. b21.MeshType = Enum.MeshType.FileMesh
  995. b21.Name = "Mesh"
  996. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  997. p26 = Instance.new("Part", m)
  998. p26.BrickColor = BrickColor.new("Really black")
  999. p26.FormFactor = Enum.FormFactor.Symmetric
  1000. p26.Size = Vector3.new(1, 1, 1)
  1001. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1002. p26.CanCollide = false
  1003. p26.Locked = true
  1004. p26.BottomSurface = Enum.SurfaceType.Smooth
  1005. p26.TopSurface = Enum.SurfaceType.Smooth
  1006. b22 = Instance.new("SpecialMesh", p26)
  1007. b22.MeshType = Enum.MeshType.Brick
  1008. b22.Name = "Mesh"
  1009. w1 = Instance.new("Weld", p1)
  1010. w1.Name = "Wedge_Weld"
  1011. w1.Part0 = p1
  1012. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1013. w1.Part1 = p2
  1014. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1015. w2 = Instance.new("Weld", p2)
  1016. w2.Name = "Part_Weld"
  1017. w2.Part0 = p2
  1018. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1019. w2.Part1 = p3
  1020. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1021. w3 = Instance.new("Weld", p3)
  1022. w3.Name = "Wedge_Weld"
  1023. w3.Part0 = p3
  1024. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1025. w3.Part1 = p4
  1026. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1027. w4 = Instance.new("Weld", p4)
  1028. w4.Name = "Part_Weld"
  1029. w4.Part0 = p4
  1030. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1031. w4.Part1 = p5
  1032. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1033. w5 = Instance.new("Weld", p5)
  1034. w5.Name = "Part_Weld"
  1035. w5.Part0 = p5
  1036. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1037. w5.Part1 = p6
  1038. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1039. w6 = Instance.new("Weld", p6)
  1040. w6.Name = "Part_Weld"
  1041. w6.Part0 = p6
  1042. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1043. w6.Part1 = p7
  1044. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1045. w7 = Instance.new("Weld", p7)
  1046. w7.Name = "Part_Weld"
  1047. w7.Part0 = p7
  1048. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1049. w7.Part1 = p8
  1050. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1051. w8 = Instance.new("Weld", p8)
  1052. w8.Name = "Part_Weld"
  1053. w8.Part0 = p8
  1054. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1055. w8.Part1 = p9
  1056. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1057. w9 = Instance.new("Weld", p9)
  1058. w9.Name = "Part_Weld"
  1059. w9.Part0 = p9
  1060. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1061. w9.Part1 = p10
  1062. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1063. w10 = Instance.new("Weld", p10)
  1064. w10.Name = "Part_Weld"
  1065. w10.Part0 = p10
  1066. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1067. w10.Part1 = p11
  1068. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1069. w11 = Instance.new("Weld", p11)
  1070. w11.Name = "Part_Weld"
  1071. w11.Part0 = p11
  1072. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1073. w11.Part1 = p12
  1074. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1075. w12 = Instance.new("Weld", p12)
  1076. w12.Name = "Part_Weld"
  1077. w12.Part0 = p12
  1078. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1079. w12.Part1 = p13
  1080. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1081. w13 = Instance.new("Weld", p13)
  1082. w13.Name = "Part_Weld"
  1083. w13.Part0 = p13
  1084. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1085. w13.Part1 = p14
  1086. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1087. w14 = Instance.new("Weld", p14)
  1088. w14.Name = "ArmPart_Weld"
  1089. w14.Part0 = p14
  1090. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1091. w14.Part1 = p15
  1092. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1093. w15 = Instance.new("Weld", p15)
  1094. w15.Name = "Part_Weld"
  1095. w15.Part0 = p15
  1096. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1097. w15.Part1 = p16
  1098. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1099. w16 = Instance.new("Weld", p16)
  1100. w16.Name = "Part_Weld"
  1101. w16.Part0 = p16
  1102. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1103. w16.Part1 = p17
  1104. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1105. w17 = Instance.new("Weld", p17)
  1106. w17.Name = "Part_Weld"
  1107. w17.Part0 = p17
  1108. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1109. w17.Part1 = p18
  1110. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1111. w18 = Instance.new("Weld", p18)
  1112. w18.Name = "Part_Weld"
  1113. w18.Part0 = p18
  1114. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1115. w18.Part1 = p19
  1116. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1117. w19 = Instance.new("Weld", p19)
  1118. w19.Name = "Part_Weld"
  1119. w19.Part0 = p19
  1120. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1121. w19.Part1 = p20
  1122. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1123. w20 = Instance.new("Weld", p20)
  1124. w20.Name = "Part_Weld"
  1125. w20.Part0 = p20
  1126. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1127. w20.Part1 = p21
  1128. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1129. w21 = Instance.new("Weld", p21)
  1130. w21.Name = "Wedge_Weld"
  1131. w21.Part0 = p21
  1132. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1133. w21.Part1 = p22
  1134. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1135. w22 = Instance.new("Weld", p22)
  1136. w22.Name = "Part_Weld"
  1137. w22.Part0 = p22
  1138. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1139. w22.Part1 = p23
  1140. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1141. w23 = Instance.new("Weld", p23)
  1142. w23.Name = "Wedge_Weld"
  1143. w23.Part0 = p23
  1144. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1145. w23.Part1 = p24
  1146. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1147. w24 = Instance.new("Weld", p24)
  1148. w24.Name = "Part_Weld"
  1149. w24.Part0 = p24
  1150. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1151. w24.Part1 = p25
  1152. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1153. w25 = Instance.new("Weld", p25)
  1154. w25.Name = "Part_Weld"
  1155. w25.Part0 = p25
  1156. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1157. w25.Part1 = p26
  1158. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1159. m.Parent = char
  1160. m:MakeJoints()
  1161. ----------------------------------------------------
  1162. local cor2 = Instance.new("Part", char.Claw)
  1163. cor2.Name = "Thingy"
  1164. cor2.Locked = true
  1165. cor2.BottomSurface = 0
  1166. cor2.CanCollide = false
  1167. cor2.Size = Vector3.new(2, 1, 1)
  1168. cor2.Transparency = 1
  1169. cor2.TopSurface = 0
  1170. corw2 = Instance.new("Weld", cor2)
  1171. corw2.Part0 = larm
  1172. corw2.Part1 = cor2
  1173. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1174. corw2.C1 = CFrame.new(0, 0, 0)
  1175. weld2 = Instance.new("Weld", char.Claw)
  1176. weld2.Part0 = cor2
  1177. weld2.Part1 = char.Claw.ArmPart
  1178. weld2.C0 = CFrame.new(0, 0, 0)
  1179. ----------------------------------------------------
  1180. local m = Instance.new("Model")
  1181. m.Name = "LeftArm"
  1182. p1 = Instance.new("WedgePart", m)
  1183. p1.BrickColor = BrickColor.new("Royal purple")
  1184. p1.Material = Enum.Material.Neon
  1185. p1.Name = "Wedge"
  1186. p1.FormFactor = Enum.FormFactor.Custom
  1187. p1.Size = Vector3.new(1, 1.19999981, 4)
  1188. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  1189. p1.CanCollide = false
  1190. p1.Locked = true
  1191. p1.TopSurface = Enum.SurfaceType.Smooth
  1192. b1 = Instance.new("SpecialMesh", p1)
  1193. b1.MeshType = Enum.MeshType.Wedge
  1194. b1.Name = "Mesh"
  1195. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1196. p2 = Instance.new("WedgePart", m)
  1197. p2.BrickColor = BrickColor.new("Royal purple")
  1198. p2.Material = Enum.Material.Neon
  1199. p2.Name = "Wedge"
  1200. p2.FormFactor = Enum.FormFactor.Custom
  1201. p2.Size = Vector3.new(1, 1.19999981, 4)
  1202. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  1203. p2.CanCollide = false
  1204. p2.Locked = true
  1205. p2.TopSurface = Enum.SurfaceType.Smooth
  1206. b2 = Instance.new("SpecialMesh", p2)
  1207. b2.MeshType = Enum.MeshType.Wedge
  1208. b2.Name = "Mesh"
  1209. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1210. p3 = Instance.new("WedgePart", m)
  1211. p3.BrickColor = BrickColor.new("Royal purple")
  1212. p3.Material = Enum.Material.Neon
  1213. p3.Name = "Wedge"
  1214. p3.FormFactor = Enum.FormFactor.Custom
  1215. p3.Size = Vector3.new(1, 1.19999981, 4)
  1216. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  1217. p3.CanCollide = false
  1218. p3.Locked = true
  1219. p3.TopSurface = Enum.SurfaceType.Smooth
  1220. b3 = Instance.new("SpecialMesh", p3)
  1221. b3.MeshType = Enum.MeshType.Wedge
  1222. b3.Name = "Mesh"
  1223. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1224. p4 = Instance.new("WedgePart", m)
  1225. p4.BrickColor = BrickColor.new("Royal purple")
  1226. p4.Material = Enum.Material.Neon
  1227. p4.Name = "Wedge"
  1228. p4.FormFactor = Enum.FormFactor.Custom
  1229. p4.Size = Vector3.new(1, 1.19999981, 4)
  1230. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  1231. p4.CanCollide = false
  1232. p4.Locked = true
  1233. p4.TopSurface = Enum.SurfaceType.Smooth
  1234. b4 = Instance.new("SpecialMesh", p4)
  1235. b4.MeshType = Enum.MeshType.Wedge
  1236. b4.Name = "Mesh"
  1237. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1238. p5 = Instance.new("WedgePart", m)
  1239. p5.BrickColor = BrickColor.new("Royal purple")
  1240. p5.Material = Enum.Material.Neon
  1241. p5.Name = "Wedge"
  1242. p5.FormFactor = Enum.FormFactor.Custom
  1243. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1244. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  1245. p5.CanCollide = false
  1246. p5.Locked = true
  1247. p5.TopSurface = Enum.SurfaceType.Smooth
  1248. b5 = Instance.new("SpecialMesh", p5)
  1249. b5.MeshType = Enum.MeshType.Wedge
  1250. b5.Name = "Mesh"
  1251. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1252. p6 = Instance.new("WedgePart", m)
  1253. p6.BrickColor = BrickColor.new("Royal purple")
  1254. p6.Material = Enum.Material.Neon
  1255. p6.Name = "Wedge"
  1256. p6.FormFactor = Enum.FormFactor.Custom
  1257. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1258. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  1259. p6.CanCollide = false
  1260. p6.Locked = true
  1261. p6.TopSurface = Enum.SurfaceType.Smooth
  1262. b6 = Instance.new("SpecialMesh", p6)
  1263. b6.MeshType = Enum.MeshType.Wedge
  1264. b6.Name = "Mesh"
  1265. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1266. p7 = Instance.new("WedgePart", m)
  1267. p7.BrickColor = BrickColor.new("Royal purple")
  1268. p7.Material = Enum.Material.Neon
  1269. p7.Name = "Wedge"
  1270. p7.FormFactor = Enum.FormFactor.Custom
  1271. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1272. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  1273. p7.CanCollide = false
  1274. p7.Locked = true
  1275. p7.TopSurface = Enum.SurfaceType.Smooth
  1276. b7 = Instance.new("SpecialMesh", p7)
  1277. b7.MeshType = Enum.MeshType.Wedge
  1278. b7.Name = "Mesh"
  1279. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1280. p8 = Instance.new("Part", m)
  1281. p8.BrickColor = BrickColor.new("Really black")
  1282. p8.Material = Enum.Material.Neon
  1283. p8.FormFactor = Enum.FormFactor.Custom
  1284. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1285. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  1286. p8.CanCollide = false
  1287. p8.Locked = true
  1288. p8.BottomSurface = Enum.SurfaceType.Smooth
  1289. p8.TopSurface = Enum.SurfaceType.Smooth
  1290. b8 = Instance.new("SpecialMesh", p8)
  1291. b8.MeshType = Enum.MeshType.Sphere
  1292. b8.Name = "Mesh"
  1293. p9 = Instance.new("Part", m)
  1294. p9.BrickColor = BrickColor.new("Really black")
  1295. p9.Material = Enum.Material.Neon
  1296. p9.FormFactor = Enum.FormFactor.Custom
  1297. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1298. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  1299. p9.CanCollide = false
  1300. p9.Locked = true
  1301. p9.BottomSurface = Enum.SurfaceType.Smooth
  1302. p9.TopSurface = Enum.SurfaceType.Smooth
  1303. b9 = Instance.new("SpecialMesh", p9)
  1304. b9.MeshType = Enum.MeshType.Sphere
  1305. b9.Name = "Mesh"
  1306. p10 = Instance.new("Part", m)
  1307. p10.BrickColor = BrickColor.new("Royal purple")
  1308. p10.Material = Enum.Material.Neon
  1309. p10.FormFactor = Enum.FormFactor.Custom
  1310. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1311. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  1312. p10.CanCollide = false
  1313. p10.Locked = true
  1314. p10.BottomSurface = Enum.SurfaceType.Smooth
  1315. p10.TopSurface = Enum.SurfaceType.Smooth
  1316. p11 = Instance.new("Part", m)
  1317. p11.BrickColor = BrickColor.new("Royal purple")
  1318. p11.Material = Enum.Material.Neon
  1319. p11.FormFactor = Enum.FormFactor.Custom
  1320. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1321. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  1322. p11.CanCollide = false
  1323. p11.Locked = true
  1324. p11.BottomSurface = Enum.SurfaceType.Smooth
  1325. p11.TopSurface = Enum.SurfaceType.Smooth
  1326. p12 = Instance.new("Part", m)
  1327. p12.BrickColor = BrickColor.new("Really black")
  1328. p12.Material = Enum.Material.Neon
  1329. p12.FormFactor = Enum.FormFactor.Custom
  1330. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1331. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  1332. p12.CanCollide = false
  1333. p12.Locked = true
  1334. p12.BottomSurface = Enum.SurfaceType.Smooth
  1335. p12.TopSurface = Enum.SurfaceType.Smooth
  1336. b10 = Instance.new("SpecialMesh", p12)
  1337. b10.MeshType = Enum.MeshType.Sphere
  1338. b10.Name = "Mesh"
  1339. p13 = Instance.new("Part", m)
  1340. p13.BrickColor = BrickColor.new("Royal purple")
  1341. p13.Material = Enum.Material.Neon
  1342. p13.FormFactor = Enum.FormFactor.Custom
  1343. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1344. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  1345. p13.CanCollide = false
  1346. p13.Locked = true
  1347. p13.BottomSurface = Enum.SurfaceType.Smooth
  1348. p13.TopSurface = Enum.SurfaceType.Smooth
  1349. b11 = Instance.new("SpecialMesh", p13)
  1350. b11.MeshType = Enum.MeshType.Sphere
  1351. b11.Name = "Mesh"
  1352. p14 = Instance.new("Part", m)
  1353. p14.BrickColor = BrickColor.new("Really black")
  1354. p14.Material = Enum.Material.Neon
  1355. p14.FormFactor = Enum.FormFactor.Custom
  1356. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1357. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  1358. p14.CanCollide = false
  1359. p14.Locked = true
  1360. p14.BottomSurface = Enum.SurfaceType.Smooth
  1361. p14.TopSurface = Enum.SurfaceType.Smooth
  1362. b12 = Instance.new("SpecialMesh", p14)
  1363. b12.MeshType = Enum.MeshType.Sphere
  1364. b12.Name = "Mesh"
  1365. p15 = Instance.new("Part", m)
  1366. p15.BrickColor = BrickColor.new("Really black")
  1367. p15.Material = Enum.Material.Metal
  1368. p15.Name = "Main"
  1369. p15.FormFactor = Enum.FormFactor.Custom
  1370. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1371. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  1372. p15.CanCollide = false
  1373. p15.Locked = true
  1374. p15.BottomSurface = Enum.SurfaceType.Smooth
  1375. p15.TopSurface = Enum.SurfaceType.Smooth
  1376. p16 = Instance.new("Part", m)
  1377. p16.BrickColor = BrickColor.new("Really black")
  1378. p16.Material = Enum.Material.Neon
  1379. p16.FormFactor = Enum.FormFactor.Custom
  1380. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1381. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  1382. p16.CanCollide = false
  1383. p16.Locked = true
  1384. p16.BottomSurface = Enum.SurfaceType.Smooth
  1385. p16.TopSurface = Enum.SurfaceType.Smooth
  1386. b13 = Instance.new("SpecialMesh", p16)
  1387. b13.MeshType = Enum.MeshType.Sphere
  1388. b13.Name = "Mesh"
  1389. p17 = Instance.new("Part", m)
  1390. p17.BrickColor = BrickColor.new("Royal purple")
  1391. p17.Material = Enum.Material.Neon
  1392. p17.FormFactor = Enum.FormFactor.Custom
  1393. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1394. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  1395. p17.CanCollide = false
  1396. p17.Locked = true
  1397. p17.BottomSurface = Enum.SurfaceType.Smooth
  1398. p17.TopSurface = Enum.SurfaceType.Smooth
  1399. p18 = Instance.new("Part", m)
  1400. p18.BrickColor = BrickColor.new("Royal purple")
  1401. p18.Material = Enum.Material.Neon
  1402. p18.FormFactor = Enum.FormFactor.Custom
  1403. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1404. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  1405. p18.CanCollide = false
  1406. p18.Locked = true
  1407. p18.BottomSurface = Enum.SurfaceType.Smooth
  1408. p18.TopSurface = Enum.SurfaceType.Smooth
  1409. p19 = Instance.new("Part", m)
  1410. p19.BrickColor = BrickColor.new("Royal purple")
  1411. p19.Material = Enum.Material.Neon
  1412. p19.FormFactor = Enum.FormFactor.Custom
  1413. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1414. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  1415. p19.CanCollide = false
  1416. p19.Locked = true
  1417. p19.BottomSurface = Enum.SurfaceType.Smooth
  1418. p19.TopSurface = Enum.SurfaceType.Smooth
  1419. p20 = Instance.new("Part", m)
  1420. p20.BrickColor = BrickColor.new("Royal purple")
  1421. p20.Material = Enum.Material.Neon
  1422. p20.FormFactor = Enum.FormFactor.Custom
  1423. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1424. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  1425. p20.CanCollide = false
  1426. p20.Locked = true
  1427. p20.BottomSurface = Enum.SurfaceType.Smooth
  1428. p20.TopSurface = Enum.SurfaceType.Smooth
  1429. p21 = Instance.new("Part", m)
  1430. p21.BrickColor = BrickColor.new("Royal purple")
  1431. p21.Material = Enum.Material.Neon
  1432. p21.FormFactor = Enum.FormFactor.Custom
  1433. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1434. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  1435. p21.CanCollide = false
  1436. p21.Locked = true
  1437. p21.BottomSurface = Enum.SurfaceType.Smooth
  1438. p21.TopSurface = Enum.SurfaceType.Smooth
  1439. p22 = Instance.new("Part", m)
  1440. p22.BrickColor = BrickColor.new("Really black")
  1441. p22.Material = Enum.Material.Neon
  1442. p22.FormFactor = Enum.FormFactor.Custom
  1443. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1444. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  1445. p22.CanCollide = false
  1446. p22.Locked = true
  1447. p22.BottomSurface = Enum.SurfaceType.Smooth
  1448. p22.TopSurface = Enum.SurfaceType.Smooth
  1449. b14 = Instance.new("SpecialMesh", p22)
  1450. b14.MeshType = Enum.MeshType.Sphere
  1451. b14.Name = "Mesh"
  1452. p23 = Instance.new("Part", m)
  1453. p23.BrickColor = BrickColor.new("Really black")
  1454. p23.Material = Enum.Material.Neon
  1455. p23.FormFactor = Enum.FormFactor.Custom
  1456. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1457. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  1458. p23.CanCollide = false
  1459. p23.Locked = true
  1460. p23.BottomSurface = Enum.SurfaceType.Smooth
  1461. p23.TopSurface = Enum.SurfaceType.Smooth
  1462. b15 = Instance.new("SpecialMesh", p23)
  1463. b15.MeshType = Enum.MeshType.Sphere
  1464. b15.Name = "Mesh"
  1465. p24 = Instance.new("Part", m)
  1466. p24.BrickColor = BrickColor.new("Really black")
  1467. p24.Material = Enum.Material.Neon
  1468. p24.FormFactor = Enum.FormFactor.Custom
  1469. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1470. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  1471. p24.CanCollide = false
  1472. p24.Locked = true
  1473. p24.BottomSurface = Enum.SurfaceType.Smooth
  1474. p24.TopSurface = Enum.SurfaceType.Smooth
  1475. b16 = Instance.new("SpecialMesh", p24)
  1476. b16.MeshType = Enum.MeshType.Sphere
  1477. b16.Name = "Mesh"
  1478. w1 = Instance.new("Weld", p1)
  1479. w1.Name = "Wedge_Weld"
  1480. w1.Part0 = p1
  1481. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  1482. w1.Part1 = p2
  1483. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1484. w2 = Instance.new("Weld", p2)
  1485. w2.Name = "Wedge_Weld"
  1486. w2.Part0 = p2
  1487. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1488. w2.Part1 = p3
  1489. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1490. w3 = Instance.new("Weld", p3)
  1491. w3.Name = "Wedge_Weld"
  1492. w3.Part0 = p3
  1493. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1494. w3.Part1 = p4
  1495. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1496. w4 = Instance.new("Weld", p4)
  1497. w4.Name = "Wedge_Weld"
  1498. w4.Part0 = p4
  1499. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1500. w4.Part1 = p5
  1501. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1502. w5 = Instance.new("Weld", p5)
  1503. w5.Name = "Wedge_Weld"
  1504. w5.Part0 = p5
  1505. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1506. w5.Part1 = p6
  1507. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1508. w6 = Instance.new("Weld", p6)
  1509. w6.Name = "Wedge_Weld"
  1510. w6.Part0 = p6
  1511. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1512. w6.Part1 = p7
  1513. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1514. w7 = Instance.new("Weld", p7)
  1515. w7.Name = "Part_Weld"
  1516. w7.Part0 = p7
  1517. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1518. w7.Part1 = p8
  1519. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1520. w8 = Instance.new("Weld", p8)
  1521. w8.Name = "Part_Weld"
  1522. w8.Part0 = p8
  1523. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1524. w8.Part1 = p9
  1525. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1526. w9 = Instance.new("Weld", p9)
  1527. w9.Name = "Part_Weld"
  1528. w9.Part0 = p9
  1529. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1530. w9.Part1 = p10
  1531. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1532. w10 = Instance.new("Weld", p10)
  1533. w10.Name = "Part_Weld"
  1534. w10.Part0 = p10
  1535. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1536. w10.Part1 = p11
  1537. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1538. w11 = Instance.new("Weld", p11)
  1539. w11.Name = "Part_Weld"
  1540. w11.Part0 = p11
  1541. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1542. w11.Part1 = p12
  1543. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1544. w12 = Instance.new("Weld", p12)
  1545. w12.Name = "Part_Weld"
  1546. w12.Part0 = p12
  1547. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1548. w12.Part1 = p13
  1549. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1550. w13 = Instance.new("Weld", p13)
  1551. w13.Name = "Part_Weld"
  1552. w13.Part0 = p13
  1553. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1554. w13.Part1 = p14
  1555. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1556. w14 = Instance.new("Weld", p14)
  1557. w14.Name = "Part_Weld"
  1558. w14.Part0 = p14
  1559. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1560. w14.Part1 = p15
  1561. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1562. w15 = Instance.new("Weld", p15)
  1563. w15.Name = "Part_Weld"
  1564. w15.Part0 = p15
  1565. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1566. w15.Part1 = p16
  1567. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1568. w16 = Instance.new("Weld", p16)
  1569. w16.Name = "Part_Weld"
  1570. w16.Part0 = p16
  1571. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1572. w16.Part1 = p17
  1573. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1574. w17 = Instance.new("Weld", p17)
  1575. w17.Name = "Part_Weld"
  1576. w17.Part0 = p17
  1577. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1578. w17.Part1 = p18
  1579. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1580. w18 = Instance.new("Weld", p18)
  1581. w18.Name = "Part_Weld"
  1582. w18.Part0 = p18
  1583. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1584. w18.Part1 = p19
  1585. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1586. w19 = Instance.new("Weld", p19)
  1587. w19.Name = "Part_Weld"
  1588. w19.Part0 = p19
  1589. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1590. w19.Part1 = p20
  1591. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1592. w20 = Instance.new("Weld", p20)
  1593. w20.Name = "Part_Weld"
  1594. w20.Part0 = p20
  1595. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1596. w20.Part1 = p21
  1597. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1598. w21 = Instance.new("Weld", p21)
  1599. w21.Name = "Part_Weld"
  1600. w21.Part0 = p21
  1601. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1602. w21.Part1 = p22
  1603. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1604. w22 = Instance.new("Weld", p22)
  1605. w22.Name = "Part_Weld"
  1606. w22.Part0 = p22
  1607. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1608. w22.Part1 = p23
  1609. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1610. w23 = Instance.new("Weld", p23)
  1611. w23.Name = "Part_Weld"
  1612. w23.Part0 = p23
  1613. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1614. w23.Part1 = p24
  1615. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1616. w24 = Instance.new("Weld", p24)
  1617. w24.Name = "Part_Weld"
  1618. w24.Part0 = p24
  1619. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1620. m.Parent = larm
  1621. m:MakeJoints()
  1622. ----------------------------------------------------
  1623. local cor3 = Instance.new("Part", larm.LeftArm)
  1624. cor3.Name = "Thingy"
  1625. cor3.Locked = true
  1626. cor3.BottomSurface = 0
  1627. cor3.CanCollide = false
  1628. cor3.Size = Vector3.new(2, 1, 1)
  1629. cor3.Transparency = 1
  1630. cor3.TopSurface = 0
  1631. corw2 = Instance.new("Weld", cor3)
  1632. corw2.Part0 = larm
  1633. corw2.Part1 = cor3
  1634. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1635. corw2.C1 = CFrame.new(0, 0, 0)
  1636. weld2 = Instance.new("Weld", larm.LeftArm)
  1637. weld2.Part0 = cor3
  1638. weld2.Part1 = p15
  1639. weld2.C0 = CFrame.new(0, 0, 0)
  1640. ----------------------------------------------------
  1641. local m = Instance.new("Model")
  1642. m.Name = "RightArm"
  1643. p1 = Instance.new("WedgePart", m)
  1644. p1.BrickColor = BrickColor.new("Royal purple")
  1645. p1.Material = Enum.Material.Neon
  1646. p1.Name = "Wedge"
  1647. p1.FormFactor = Enum.FormFactor.Custom
  1648. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1649. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  1650. p1.CanCollide = false
  1651. p1.Locked = true
  1652. p1.TopSurface = Enum.SurfaceType.Smooth
  1653. b1 = Instance.new("SpecialMesh", p1)
  1654. b1.MeshType = Enum.MeshType.Wedge
  1655. b1.Name = "Mesh"
  1656. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1657. p2 = Instance.new("WedgePart", m)
  1658. p2.BrickColor = BrickColor.new("Royal purple")
  1659. p2.Material = Enum.Material.Neon
  1660. p2.Name = "Wedge"
  1661. p2.FormFactor = Enum.FormFactor.Custom
  1662. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1663. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  1664. p2.CanCollide = false
  1665. p2.Locked = true
  1666. p2.TopSurface = Enum.SurfaceType.Smooth
  1667. b2 = Instance.new("SpecialMesh", p2)
  1668. b2.MeshType = Enum.MeshType.Wedge
  1669. b2.Name = "Mesh"
  1670. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1671. p3 = Instance.new("WedgePart", m)
  1672. p3.BrickColor = BrickColor.new("Royal purple")
  1673. p3.Material = Enum.Material.Neon
  1674. p3.Name = "Wedge"
  1675. p3.FormFactor = Enum.FormFactor.Custom
  1676. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1677. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  1678. p3.CanCollide = false
  1679. p3.Locked = true
  1680. p3.TopSurface = Enum.SurfaceType.Smooth
  1681. b3 = Instance.new("SpecialMesh", p3)
  1682. b3.MeshType = Enum.MeshType.Wedge
  1683. b3.Name = "Mesh"
  1684. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1685. p4 = Instance.new("WedgePart", m)
  1686. p4.BrickColor = BrickColor.new("Royal purple")
  1687. p4.Material = Enum.Material.Neon
  1688. p4.Name = "Wedge"
  1689. p4.FormFactor = Enum.FormFactor.Custom
  1690. p4.Size = Vector3.new(1, 1.19999981, 4)
  1691. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  1692. p4.CanCollide = false
  1693. p4.Locked = true
  1694. p4.TopSurface = Enum.SurfaceType.Smooth
  1695. b4 = Instance.new("SpecialMesh", p4)
  1696. b4.MeshType = Enum.MeshType.Wedge
  1697. b4.Name = "Mesh"
  1698. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1699. p5 = Instance.new("WedgePart", m)
  1700. p5.BrickColor = BrickColor.new("Royal purple")
  1701. p5.Material = Enum.Material.Neon
  1702. p5.Name = "Wedge"
  1703. p5.FormFactor = Enum.FormFactor.Custom
  1704. p5.Size = Vector3.new(1, 1.19999981, 4)
  1705. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  1706. p5.CanCollide = false
  1707. p5.Locked = true
  1708. p5.TopSurface = Enum.SurfaceType.Smooth
  1709. b5 = Instance.new("SpecialMesh", p5)
  1710. b5.MeshType = Enum.MeshType.Wedge
  1711. b5.Name = "Mesh"
  1712. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1713. p6 = Instance.new("WedgePart", m)
  1714. p6.BrickColor = BrickColor.new("Royal purple")
  1715. p6.Material = Enum.Material.Neon
  1716. p6.Name = "Wedge"
  1717. p6.FormFactor = Enum.FormFactor.Custom
  1718. p6.Size = Vector3.new(1, 1.19999981, 4)
  1719. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  1720. p6.CanCollide = false
  1721. p6.Locked = true
  1722. p6.TopSurface = Enum.SurfaceType.Smooth
  1723. b6 = Instance.new("SpecialMesh", p6)
  1724. b6.MeshType = Enum.MeshType.Wedge
  1725. b6.Name = "Mesh"
  1726. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1727. p7 = Instance.new("Part", m)
  1728. p7.BrickColor = BrickColor.new("Really black")
  1729. p7.Material = Enum.Material.Neon
  1730. p7.FormFactor = Enum.FormFactor.Custom
  1731. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1732. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  1733. p7.CanCollide = false
  1734. p7.Locked = true
  1735. p7.BottomSurface = Enum.SurfaceType.Smooth
  1736. p7.TopSurface = Enum.SurfaceType.Smooth
  1737. b7 = Instance.new("SpecialMesh", p7)
  1738. b7.MeshType = Enum.MeshType.Sphere
  1739. b7.Name = "Mesh"
  1740. p8 = Instance.new("Part", m)
  1741. p8.BrickColor = BrickColor.new("Royal purple")
  1742. p8.Material = Enum.Material.Neon
  1743. p8.FormFactor = Enum.FormFactor.Custom
  1744. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1745. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  1746. p8.CanCollide = false
  1747. p8.Locked = true
  1748. p8.BottomSurface = Enum.SurfaceType.Smooth
  1749. p8.TopSurface = Enum.SurfaceType.Smooth
  1750. p9 = Instance.new("Part", m)
  1751. p9.BrickColor = BrickColor.new("Really black")
  1752. p9.Material = Enum.Material.Neon
  1753. p9.FormFactor = Enum.FormFactor.Custom
  1754. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1755. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  1756. p9.CanCollide = false
  1757. p9.Locked = true
  1758. p9.BottomSurface = Enum.SurfaceType.Smooth
  1759. p9.TopSurface = Enum.SurfaceType.Smooth
  1760. b8 = Instance.new("SpecialMesh", p9)
  1761. b8.MeshType = Enum.MeshType.Sphere
  1762. b8.Name = "Mesh"
  1763. p10 = Instance.new("Part", m)
  1764. p10.BrickColor = BrickColor.new("Really black")
  1765. p10.Material = Enum.Material.Neon
  1766. p10.FormFactor = Enum.FormFactor.Custom
  1767. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1768. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  1769. p10.CanCollide = false
  1770. p10.Locked = true
  1771. p10.BottomSurface = Enum.SurfaceType.Smooth
  1772. p10.TopSurface = Enum.SurfaceType.Smooth
  1773. b9 = Instance.new("SpecialMesh", p10)
  1774. b9.MeshType = Enum.MeshType.Sphere
  1775. b9.Name = "Mesh"
  1776. p11 = Instance.new("Part", m)
  1777. p11.BrickColor = BrickColor.new("Royal purple")
  1778. p11.Material = Enum.Material.Neon
  1779. p11.FormFactor = Enum.FormFactor.Custom
  1780. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1781. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  1782. p11.CanCollide = false
  1783. p11.Locked = true
  1784. p11.BottomSurface = Enum.SurfaceType.Smooth
  1785. p11.TopSurface = Enum.SurfaceType.Smooth
  1786. p12 = Instance.new("Part", m)
  1787. p12.BrickColor = BrickColor.new("Royal purple")
  1788. p12.Material = Enum.Material.Neon
  1789. p12.FormFactor = Enum.FormFactor.Custom
  1790. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1791. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  1792. p12.CanCollide = false
  1793. p12.Locked = true
  1794. p12.BottomSurface = Enum.SurfaceType.Smooth
  1795. p12.TopSurface = Enum.SurfaceType.Smooth
  1796. p13 = Instance.new("Part", m)
  1797. p13.BrickColor = BrickColor.new("Royal purple")
  1798. p13.Material = Enum.Material.Neon
  1799. p13.FormFactor = Enum.FormFactor.Custom
  1800. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1801. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  1802. p13.CanCollide = false
  1803. p13.Locked = true
  1804. p13.BottomSurface = Enum.SurfaceType.Smooth
  1805. p13.TopSurface = Enum.SurfaceType.Smooth
  1806. b10 = Instance.new("SpecialMesh", p13)
  1807. b10.MeshType = Enum.MeshType.Sphere
  1808. b10.Name = "Mesh"
  1809. p14 = Instance.new("Part", m)
  1810. p14.BrickColor = BrickColor.new("Really black")
  1811. p14.Material = Enum.Material.Metal
  1812. p14.Name = "Main"
  1813. p14.FormFactor = Enum.FormFactor.Custom
  1814. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1815. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  1816. p14.CanCollide = false
  1817. p14.Locked = true
  1818. p14.BottomSurface = Enum.SurfaceType.Smooth
  1819. p14.TopSurface = Enum.SurfaceType.Smooth
  1820. p15 = Instance.new("Part", m)
  1821. p15.BrickColor = BrickColor.new("Really black")
  1822. p15.Material = Enum.Material.Neon
  1823. p15.FormFactor = Enum.FormFactor.Custom
  1824. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1825. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  1826. p15.CanCollide = false
  1827. p15.Locked = true
  1828. p15.BottomSurface = Enum.SurfaceType.Smooth
  1829. p15.TopSurface = Enum.SurfaceType.Smooth
  1830. b11 = Instance.new("SpecialMesh", p15)
  1831. b11.MeshType = Enum.MeshType.Sphere
  1832. b11.Name = "Mesh"
  1833. p16 = Instance.new("Part", m)
  1834. p16.BrickColor = BrickColor.new("Royal purple")
  1835. p16.Material = Enum.Material.Neon
  1836. p16.FormFactor = Enum.FormFactor.Custom
  1837. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1838. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  1839. p16.CanCollide = false
  1840. p16.Locked = true
  1841. p16.BottomSurface = Enum.SurfaceType.Smooth
  1842. p16.TopSurface = Enum.SurfaceType.Smooth
  1843. p17 = Instance.new("Part", m)
  1844. p17.BrickColor = BrickColor.new("Royal purple")
  1845. p17.Material = Enum.Material.Neon
  1846. p17.FormFactor = Enum.FormFactor.Custom
  1847. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1848. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  1849. p17.CanCollide = false
  1850. p17.Locked = true
  1851. p17.BottomSurface = Enum.SurfaceType.Smooth
  1852. p17.TopSurface = Enum.SurfaceType.Smooth
  1853. p18 = Instance.new("Part", m)
  1854. p18.BrickColor = BrickColor.new("Really black")
  1855. p18.Material = Enum.Material.Neon
  1856. p18.FormFactor = Enum.FormFactor.Custom
  1857. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1858. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  1859. p18.CanCollide = false
  1860. p18.Locked = true
  1861. p18.BottomSurface = Enum.SurfaceType.Smooth
  1862. p18.TopSurface = Enum.SurfaceType.Smooth
  1863. b12 = Instance.new("SpecialMesh", p18)
  1864. b12.MeshType = Enum.MeshType.Sphere
  1865. b12.Name = "Mesh"
  1866. p19 = Instance.new("Part", m)
  1867. p19.BrickColor = BrickColor.new("Really black")
  1868. p19.Material = Enum.Material.Neon
  1869. p19.FormFactor = Enum.FormFactor.Custom
  1870. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1871. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  1872. p19.CanCollide = false
  1873. p19.Locked = true
  1874. p19.BottomSurface = Enum.SurfaceType.Smooth
  1875. p19.TopSurface = Enum.SurfaceType.Smooth
  1876. b13 = Instance.new("SpecialMesh", p19)
  1877. b13.MeshType = Enum.MeshType.Sphere
  1878. b13.Name = "Mesh"
  1879. w1 = Instance.new("Weld", p1)
  1880. w1.Name = "Wedge_Weld"
  1881. w1.Part0 = p1
  1882. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  1883. w1.Part1 = p2
  1884. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1885. w2 = Instance.new("Weld", p2)
  1886. w2.Name = "Wedge_Weld"
  1887. w2.Part0 = p2
  1888. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1889. w2.Part1 = p3
  1890. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1891. w3 = Instance.new("Weld", p3)
  1892. w3.Name = "Wedge_Weld"
  1893. w3.Part0 = p3
  1894. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1895. w3.Part1 = p4
  1896. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1897. w4 = Instance.new("Weld", p4)
  1898. w4.Name = "Wedge_Weld"
  1899. w4.Part0 = p4
  1900. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1901. w4.Part1 = p5
  1902. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1903. w5 = Instance.new("Weld", p5)
  1904. w5.Name = "Wedge_Weld"
  1905. w5.Part0 = p5
  1906. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1907. w5.Part1 = p6
  1908. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1909. w6 = Instance.new("Weld", p6)
  1910. w6.Name = "Part_Weld"
  1911. w6.Part0 = p6
  1912. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1913. w6.Part1 = p7
  1914. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1915. w7 = Instance.new("Weld", p7)
  1916. w7.Name = "Part_Weld"
  1917. w7.Part0 = p7
  1918. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1919. w7.Part1 = p8
  1920. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1921. w8 = Instance.new("Weld", p8)
  1922. w8.Name = "Part_Weld"
  1923. w8.Part0 = p8
  1924. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1925. w8.Part1 = p9
  1926. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1927. w9 = Instance.new("Weld", p9)
  1928. w9.Name = "Part_Weld"
  1929. w9.Part0 = p9
  1930. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1931. w9.Part1 = p10
  1932. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1933. w10 = Instance.new("Weld", p10)
  1934. w10.Name = "Part_Weld"
  1935. w10.Part0 = p10
  1936. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1937. w10.Part1 = p11
  1938. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1939. w11 = Instance.new("Weld", p11)
  1940. w11.Name = "Part_Weld"
  1941. w11.Part0 = p11
  1942. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1943. w11.Part1 = p12
  1944. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1945. w12 = Instance.new("Weld", p12)
  1946. w12.Name = "Part_Weld"
  1947. w12.Part0 = p12
  1948. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1949. w12.Part1 = p13
  1950. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1951. w13 = Instance.new("Weld", p13)
  1952. w13.Name = "Part_Weld"
  1953. w13.Part0 = p13
  1954. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1955. w13.Part1 = p14
  1956. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1957. w14 = Instance.new("Weld", p14)
  1958. w14.Name = "Part_Weld"
  1959. w14.Part0 = p14
  1960. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1961. w14.Part1 = p15
  1962. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1963. w15 = Instance.new("Weld", p15)
  1964. w15.Name = "Part_Weld"
  1965. w15.Part0 = p15
  1966. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1967. w15.Part1 = p16
  1968. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1969. w16 = Instance.new("Weld", p16)
  1970. w16.Name = "Part_Weld"
  1971. w16.Part0 = p16
  1972. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1973. w16.Part1 = p17
  1974. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1975. w17 = Instance.new("Weld", p17)
  1976. w17.Name = "Part_Weld"
  1977. w17.Part0 = p17
  1978. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1979. w17.Part1 = p18
  1980. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1981. w18 = Instance.new("Weld", p18)
  1982. w18.Name = "Part_Weld"
  1983. w18.Part0 = p18
  1984. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1985. w18.Part1 = p19
  1986. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1987. w19 = Instance.new("Weld", p19)
  1988. w19.Name = "Wedge_Weld"
  1989. w19.Part0 = p19
  1990. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1991. m.Parent = rarm
  1992. m:MakeJoints()
  1993. ----------------------------------------------------
  1994. local cor4 = Instance.new("Part", rarm.RightArm)
  1995. cor4.Name = "Thingy"
  1996. cor4.Locked = true
  1997. cor4.BottomSurface = 0
  1998. cor4.CanCollide = false
  1999. cor4.Size = Vector3.new(2, 1, 1)
  2000. cor4.Transparency = 1
  2001. cor4.TopSurface = 0
  2002. corw2 = Instance.new("Weld", cor4)
  2003. corw2.Part0 = rarm
  2004. corw2.Part1 = cor4
  2005. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2006. corw2.C1 = CFrame.new(0, 0, 0)
  2007. weld2 = Instance.new("Weld", rarm.RightArm)
  2008. weld2.Part0 = cor4
  2009. weld2.Part1 = p14
  2010. weld2.C0 = CFrame.new(0, 0, 0)
  2011. ----------------------------------------------------
  2012. local m = Instance.new("Model")
  2013. m.Name = "Torso"
  2014. p1 = Instance.new("Part", m)
  2015. p1.BrickColor = BrickColor.new("Really black")
  2016. p1.Material = Enum.Material.Neon
  2017. p1.FormFactor = Enum.FormFactor.Custom
  2018. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2019. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2020. p1.CanCollide = false
  2021. p1.Locked = true
  2022. p1.BottomSurface = Enum.SurfaceType.Smooth
  2023. p1.TopSurface = Enum.SurfaceType.Smooth
  2024. b1 = Instance.new("SpecialMesh", p1)
  2025. b1.MeshType = Enum.MeshType.Sphere
  2026. b1.Name = "Mesh"
  2027. p2 = Instance.new("Part", m)
  2028. p2.BrickColor = BrickColor.new("Really black")
  2029. p2.Material = Enum.Material.Neon
  2030. p2.FormFactor = Enum.FormFactor.Custom
  2031. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2032. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2033. p2.CanCollide = false
  2034. p2.Locked = true
  2035. p2.BottomSurface = Enum.SurfaceType.Smooth
  2036. p2.TopSurface = Enum.SurfaceType.Smooth
  2037. b2 = Instance.new("SpecialMesh", p2)
  2038. b2.MeshType = Enum.MeshType.Sphere
  2039. b2.Name = "Mesh"
  2040. p3 = Instance.new("Part", m)
  2041. p3.BrickColor = BrickColor.new("Royal purple")
  2042. p3.Material = Enum.Material.Neon
  2043. p3.FormFactor = Enum.FormFactor.Custom
  2044. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2045. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2046. p3.CanCollide = false
  2047. p3.Locked = true
  2048. p3.BottomSurface = Enum.SurfaceType.Smooth
  2049. p3.TopSurface = Enum.SurfaceType.Smooth
  2050. p4 = Instance.new("Part", m)
  2051. p4.BrickColor = BrickColor.new("Royal purple")
  2052. p4.Material = Enum.Material.Neon
  2053. p4.FormFactor = Enum.FormFactor.Custom
  2054. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2055. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2056. p4.CanCollide = false
  2057. p4.Locked = true
  2058. p4.BottomSurface = Enum.SurfaceType.Smooth
  2059. p4.TopSurface = Enum.SurfaceType.Smooth
  2060. p5 = Instance.new("Part", m)
  2061. p5.BrickColor = BrickColor.new("Royal purple")
  2062. p5.Material = Enum.Material.Neon
  2063. p5.FormFactor = Enum.FormFactor.Custom
  2064. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2065. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2066. p5.CanCollide = false
  2067. p5.Locked = true
  2068. p5.BottomSurface = Enum.SurfaceType.Smooth
  2069. p5.TopSurface = Enum.SurfaceType.Smooth
  2070. p6 = Instance.new("Part", m)
  2071. p6.BrickColor = BrickColor.new("Royal purple")
  2072. p6.Material = Enum.Material.Neon
  2073. p6.FormFactor = Enum.FormFactor.Custom
  2074. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2075. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2076. p6.CanCollide = false
  2077. p6.Locked = true
  2078. p6.BottomSurface = Enum.SurfaceType.Smooth
  2079. p6.TopSurface = Enum.SurfaceType.Smooth
  2080. p7 = Instance.new("Part", m)
  2081. p7.BrickColor = BrickColor.new("Really black")
  2082. p7.Material = Enum.Material.Neon
  2083. p7.FormFactor = Enum.FormFactor.Custom
  2084. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2085. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2086. p7.CanCollide = false
  2087. p7.Locked = true
  2088. p7.BottomSurface = Enum.SurfaceType.Smooth
  2089. p7.TopSurface = Enum.SurfaceType.Smooth
  2090. b3 = Instance.new("SpecialMesh", p7)
  2091. b3.MeshType = Enum.MeshType.Sphere
  2092. b3.Name = "Mesh"
  2093. p8 = Instance.new("Part", m)
  2094. p8.BrickColor = BrickColor.new("Really black")
  2095. p8.Material = Enum.Material.Neon
  2096. p8.FormFactor = Enum.FormFactor.Custom
  2097. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2098. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2099. p8.CanCollide = false
  2100. p8.Locked = true
  2101. p8.BottomSurface = Enum.SurfaceType.Smooth
  2102. p8.TopSurface = Enum.SurfaceType.Smooth
  2103. b4 = Instance.new("SpecialMesh", p8)
  2104. b4.MeshType = Enum.MeshType.Sphere
  2105. b4.Name = "Mesh"
  2106. p9 = Instance.new("Part", m)
  2107. p9.BrickColor = BrickColor.new("Really black")
  2108. p9.Material = Enum.Material.Neon
  2109. p9.FormFactor = Enum.FormFactor.Custom
  2110. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2111. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2112. p9.CanCollide = false
  2113. p9.Locked = true
  2114. p9.BottomSurface = Enum.SurfaceType.Smooth
  2115. p9.TopSurface = Enum.SurfaceType.Smooth
  2116. b5 = Instance.new("SpecialMesh", p9)
  2117. b5.MeshType = Enum.MeshType.Sphere
  2118. b5.Name = "Mesh"
  2119. p10 = Instance.new("Part", m)
  2120. p10.BrickColor = BrickColor.new("Royal purple")
  2121. p10.Material = Enum.Material.Neon
  2122. p10.FormFactor = Enum.FormFactor.Custom
  2123. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2124. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2125. p10.CanCollide = false
  2126. p10.Locked = true
  2127. p10.BottomSurface = Enum.SurfaceType.Smooth
  2128. p10.TopSurface = Enum.SurfaceType.Smooth
  2129. p11 = Instance.new("Part", m)
  2130. p11.BrickColor = BrickColor.new("Really black")
  2131. p11.Material = Enum.Material.Metal
  2132. p11.Name = "Main"
  2133. p11.FormFactor = Enum.FormFactor.Custom
  2134. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2135. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2136. p11.CanCollide = false
  2137. p11.Locked = true
  2138. p11.BottomSurface = Enum.SurfaceType.Smooth
  2139. p11.TopSurface = Enum.SurfaceType.Smooth
  2140. p12 = Instance.new("Part", m)
  2141. p12.BrickColor = BrickColor.new("Really black")
  2142. p12.Material = Enum.Material.Neon
  2143. p12.FormFactor = Enum.FormFactor.Custom
  2144. p12.Size = Vector3.new(3, 3, 2)
  2145. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2146. p12.CanCollide = false
  2147. p12.Locked = true
  2148. p12.BottomSurface = Enum.SurfaceType.Smooth
  2149. p12.TopSurface = Enum.SurfaceType.Smooth
  2150. b6 = Instance.new("SpecialMesh", p12)
  2151. b6.MeshType = Enum.MeshType.Sphere
  2152. b6.Name = "Mesh"
  2153. p13 = Instance.new("Part", m)
  2154. p13.BrickColor = BrickColor.new("Royal purple")
  2155. p13.Material = Enum.Material.Neon
  2156. p13.FormFactor = Enum.FormFactor.Custom
  2157. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2158. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2159. p13.CanCollide = false
  2160. p13.Locked = true
  2161. p13.BottomSurface = Enum.SurfaceType.Smooth
  2162. p13.TopSurface = Enum.SurfaceType.Smooth
  2163. p14 = Instance.new("Part", m)
  2164. p14.BrickColor = BrickColor.new("Royal purple")
  2165. p14.Material = Enum.Material.Neon
  2166. p14.FormFactor = Enum.FormFactor.Custom
  2167. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2168. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2169. p14.CanCollide = false
  2170. p14.Locked = true
  2171. p14.BottomSurface = Enum.SurfaceType.Smooth
  2172. p14.TopSurface = Enum.SurfaceType.Smooth
  2173. p15 = Instance.new("Part", m)
  2174. p15.BrickColor = BrickColor.new("Royal purple")
  2175. p15.Material = Enum.Material.Neon
  2176. p15.FormFactor = Enum.FormFactor.Custom
  2177. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2178. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2179. p15.CanCollide = false
  2180. p15.Locked = true
  2181. p15.BottomSurface = Enum.SurfaceType.Smooth
  2182. p15.TopSurface = Enum.SurfaceType.Smooth
  2183. p16 = Instance.new("Part", m)
  2184. p16.BrickColor = BrickColor.new("Royal purple")
  2185. p16.Material = Enum.Material.Neon
  2186. p16.FormFactor = Enum.FormFactor.Custom
  2187. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2188. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2189. p16.CanCollide = false
  2190. p16.Locked = true
  2191. p16.BottomSurface = Enum.SurfaceType.Smooth
  2192. p16.TopSurface = Enum.SurfaceType.Smooth
  2193. p17 = Instance.new("Part", m)
  2194. p17.BrickColor = BrickColor.new("Royal purple")
  2195. p17.Material = Enum.Material.Neon
  2196. p17.FormFactor = Enum.FormFactor.Custom
  2197. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2198. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2199. p17.CanCollide = false
  2200. p17.Locked = true
  2201. p17.BottomSurface = Enum.SurfaceType.Smooth
  2202. p17.TopSurface = Enum.SurfaceType.Smooth
  2203. p18 = Instance.new("Part", m)
  2204. p18.BrickColor = BrickColor.new("Royal purple")
  2205. p18.Material = Enum.Material.Neon
  2206. p18.FormFactor = Enum.FormFactor.Custom
  2207. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2208. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2209. p18.CanCollide = false
  2210. p18.Locked = true
  2211. p18.BottomSurface = Enum.SurfaceType.Smooth
  2212. p18.TopSurface = Enum.SurfaceType.Smooth
  2213. p19 = Instance.new("Part", m)
  2214. p19.BrickColor = BrickColor.new("Really black")
  2215. p19.Material = Enum.Material.Neon
  2216. p19.FormFactor = Enum.FormFactor.Custom
  2217. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2218. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2219. p19.CanCollide = false
  2220. p19.Locked = true
  2221. p19.BottomSurface = Enum.SurfaceType.Smooth
  2222. p19.TopSurface = Enum.SurfaceType.Smooth
  2223. b7 = Instance.new("SpecialMesh", p19)
  2224. b7.MeshType = Enum.MeshType.Sphere
  2225. b7.Name = "Mesh"
  2226. p20 = Instance.new("Part", m)
  2227. p20.BrickColor = BrickColor.new("Really black")
  2228. p20.Material = Enum.Material.Neon
  2229. p20.FormFactor = Enum.FormFactor.Custom
  2230. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2231. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2232. p20.CanCollide = false
  2233. p20.Locked = true
  2234. p20.BottomSurface = Enum.SurfaceType.Smooth
  2235. p20.TopSurface = Enum.SurfaceType.Smooth
  2236. b8 = Instance.new("SpecialMesh", p20)
  2237. b8.MeshType = Enum.MeshType.Sphere
  2238. b8.Name = "Mesh"
  2239. p21 = Instance.new("Part", m)
  2240. p21.BrickColor = BrickColor.new("Royal purple")
  2241. p21.Material = Enum.Material.Neon
  2242. p21.FormFactor = Enum.FormFactor.Custom
  2243. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2244. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2245. p21.CanCollide = false
  2246. p21.Locked = true
  2247. p21.BottomSurface = Enum.SurfaceType.Smooth
  2248. p21.TopSurface = Enum.SurfaceType.Smooth
  2249. p22 = Instance.new("Part", m)
  2250. p22.BrickColor = BrickColor.new("Really black")
  2251. p22.Material = Enum.Material.Neon
  2252. p22.FormFactor = Enum.FormFactor.Custom
  2253. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2254. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2255. p22.CanCollide = false
  2256. p22.Locked = true
  2257. p22.BottomSurface = Enum.SurfaceType.Smooth
  2258. p22.TopSurface = Enum.SurfaceType.Smooth
  2259. b9 = Instance.new("SpecialMesh", p22)
  2260. b9.MeshType = Enum.MeshType.Sphere
  2261. b9.Name = "Mesh"
  2262. w1 = Instance.new("Weld", p1)
  2263. w1.Name = "Part_Weld"
  2264. w1.Part0 = p1
  2265. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2266. w1.Part1 = p2
  2267. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2268. w2 = Instance.new("Weld", p2)
  2269. w2.Name = "Part_Weld"
  2270. w2.Part0 = p2
  2271. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2272. w2.Part1 = p3
  2273. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2274. w3 = Instance.new("Weld", p3)
  2275. w3.Name = "Part_Weld"
  2276. w3.Part0 = p3
  2277. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2278. w3.Part1 = p4
  2279. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2280. w4 = Instance.new("Weld", p4)
  2281. w4.Name = "Part_Weld"
  2282. w4.Part0 = p4
  2283. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2284. w4.Part1 = p5
  2285. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2286. w5 = Instance.new("Weld", p5)
  2287. w5.Name = "Part_Weld"
  2288. w5.Part0 = p5
  2289. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2290. w5.Part1 = p6
  2291. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2292. w6 = Instance.new("Weld", p6)
  2293. w6.Name = "Part_Weld"
  2294. w6.Part0 = p6
  2295. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2296. w6.Part1 = p7
  2297. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2298. w7 = Instance.new("Weld", p7)
  2299. w7.Name = "Part_Weld"
  2300. w7.Part0 = p7
  2301. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2302. w7.Part1 = p8
  2303. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2304. w8 = Instance.new("Weld", p8)
  2305. w8.Name = "Part_Weld"
  2306. w8.Part0 = p8
  2307. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2308. w8.Part1 = p9
  2309. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2310. w9 = Instance.new("Weld", p9)
  2311. w9.Name = "Part_Weld"
  2312. w9.Part0 = p9
  2313. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2314. w9.Part1 = p10
  2315. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2316. w10 = Instance.new("Weld", p10)
  2317. w10.Name = "Main_Weld"
  2318. w10.Part0 = p10
  2319. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2320. w10.Part1 = p11
  2321. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2322. w11 = Instance.new("Weld", p11)
  2323. w11.Name = "Part_Weld"
  2324. w11.Part0 = p11
  2325. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2326. w11.Part1 = p12
  2327. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2328. w12 = Instance.new("Weld", p12)
  2329. w12.Name = "Part_Weld"
  2330. w12.Part0 = p12
  2331. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2332. w12.Part1 = p13
  2333. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2334. w13 = Instance.new("Weld", p13)
  2335. w13.Name = "Part_Weld"
  2336. w13.Part0 = p13
  2337. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2338. w13.Part1 = p14
  2339. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2340. w14 = Instance.new("Weld", p14)
  2341. w14.Name = "Part_Weld"
  2342. w14.Part0 = p14
  2343. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2344. w14.Part1 = p15
  2345. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2346. w15 = Instance.new("Weld", p15)
  2347. w15.Name = "Part_Weld"
  2348. w15.Part0 = p15
  2349. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2350. w15.Part1 = p16
  2351. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2352. w16 = Instance.new("Weld", p16)
  2353. w16.Name = "Part_Weld"
  2354. w16.Part0 = p16
  2355. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2356. w16.Part1 = p17
  2357. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2358. w17 = Instance.new("Weld", p17)
  2359. w17.Name = "Part_Weld"
  2360. w17.Part0 = p17
  2361. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2362. w17.Part1 = p18
  2363. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2364. w18 = Instance.new("Weld", p18)
  2365. w18.Name = "Part_Weld"
  2366. w18.Part0 = p18
  2367. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2368. w18.Part1 = p19
  2369. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2370. w19 = Instance.new("Weld", p19)
  2371. w19.Name = "Part_Weld"
  2372. w19.Part0 = p19
  2373. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2374. w19.Part1 = p20
  2375. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2376. w20 = Instance.new("Weld", p20)
  2377. w20.Name = "Part_Weld"
  2378. w20.Part0 = p20
  2379. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2380. w20.Part1 = p21
  2381. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2382. w21 = Instance.new("Weld", p21)
  2383. w21.Name = "Part_Weld"
  2384. w21.Part0 = p21
  2385. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2386. w21.Part1 = p22
  2387. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2388. w22 = Instance.new("Weld", p22)
  2389. w22.Name = "Wedge_Weld"
  2390. w22.Part0 = p22
  2391. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2392. m.Parent = torso
  2393. m:MakeJoints()
  2394. ----------------------------------------------------
  2395. local cor5 = Instance.new("Part", torso.Torso)
  2396. cor5.Name = "Thingy"
  2397. cor5.Locked = true
  2398. cor5.BottomSurface = 0
  2399. cor5.CanCollide = false
  2400. cor5.Size = Vector3.new(2, 1, 1)
  2401. cor5.Transparency = 1
  2402. cor5.TopSurface = 0
  2403. corw2 = Instance.new("Weld", cor5)
  2404. corw2.Part0 = torso
  2405. corw2.Part1 = cor5
  2406. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2407. corw2.C1 = CFrame.new(0, 0, 0)
  2408. weld2 = Instance.new("Weld", torso.Torso)
  2409. weld2.Part0 = cor5
  2410. weld2.Part1 = p11
  2411. weld2.C0 = CFrame.new(0, 0, 0)
  2412. ----------------------------------------------------
  2413. local m = Instance.new("Model")
  2414. m.Name = "RightLeg"
  2415. p1 = Instance.new("Part", m)
  2416. p1.BrickColor = BrickColor.new("Really black")
  2417. p1.Material = Enum.Material.Neon
  2418. p1.FormFactor = Enum.FormFactor.Custom
  2419. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2420. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  2421. p1.CanCollide = false
  2422. p1.Locked = true
  2423. p1.BottomSurface = Enum.SurfaceType.Smooth
  2424. p1.TopSurface = Enum.SurfaceType.Smooth
  2425. b1 = Instance.new("SpecialMesh", p1)
  2426. b1.MeshType = Enum.MeshType.Sphere
  2427. b1.Name = "Mesh"
  2428. p2 = Instance.new("Part", m)
  2429. p2.BrickColor = BrickColor.new("Really black")
  2430. p2.Material = Enum.Material.Neon
  2431. p2.FormFactor = Enum.FormFactor.Custom
  2432. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2433. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  2434. p2.CanCollide = false
  2435. p2.Locked = true
  2436. p2.BottomSurface = Enum.SurfaceType.Smooth
  2437. p2.TopSurface = Enum.SurfaceType.Smooth
  2438. b2 = Instance.new("SpecialMesh", p2)
  2439. b2.MeshType = Enum.MeshType.Sphere
  2440. b2.Name = "Mesh"
  2441. p3 = Instance.new("Part", m)
  2442. p3.BrickColor = BrickColor.new("Royal purple")
  2443. p3.Material = Enum.Material.Neon
  2444. p3.FormFactor = Enum.FormFactor.Custom
  2445. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2446. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  2447. p3.CanCollide = false
  2448. p3.Locked = true
  2449. p3.BottomSurface = Enum.SurfaceType.Smooth
  2450. p3.TopSurface = Enum.SurfaceType.Smooth
  2451. p4 = Instance.new("Part", m)
  2452. p4.BrickColor = BrickColor.new("Really black")
  2453. p4.Material = Enum.Material.Neon
  2454. p4.FormFactor = Enum.FormFactor.Custom
  2455. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2456. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  2457. p4.CanCollide = false
  2458. p4.Locked = true
  2459. p4.BottomSurface = Enum.SurfaceType.Smooth
  2460. p4.TopSurface = Enum.SurfaceType.Smooth
  2461. b3 = Instance.new("SpecialMesh", p4)
  2462. b3.MeshType = Enum.MeshType.Sphere
  2463. b3.Name = "Mesh"
  2464. p5 = Instance.new("Part", m)
  2465. p5.BrickColor = BrickColor.new("Royal purple")
  2466. p5.Material = Enum.Material.Neon
  2467. p5.FormFactor = Enum.FormFactor.Custom
  2468. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2469. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  2470. p5.CanCollide = false
  2471. p5.Locked = true
  2472. p5.BottomSurface = Enum.SurfaceType.Smooth
  2473. p5.TopSurface = Enum.SurfaceType.Smooth
  2474. p6 = Instance.new("Part", m)
  2475. p6.BrickColor = BrickColor.new("Royal purple")
  2476. p6.Material = Enum.Material.Neon
  2477. p6.FormFactor = Enum.FormFactor.Custom
  2478. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2479. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  2480. p6.CanCollide = false
  2481. p6.Locked = true
  2482. p6.BottomSurface = Enum.SurfaceType.Smooth
  2483. p6.TopSurface = Enum.SurfaceType.Smooth
  2484. p7 = Instance.new("Part", m)
  2485. p7.BrickColor = BrickColor.new("Really black")
  2486. p7.Material = Enum.Material.Metal
  2487. p7.Name = "Main"
  2488. p7.FormFactor = Enum.FormFactor.Custom
  2489. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2490. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  2491. p7.CanCollide = false
  2492. p7.Locked = true
  2493. p7.BottomSurface = Enum.SurfaceType.Smooth
  2494. p7.TopSurface = Enum.SurfaceType.Smooth
  2495. p8 = Instance.new("Part", m)
  2496. p8.BrickColor = BrickColor.new("Royal purple")
  2497. p8.Material = Enum.Material.Neon
  2498. p8.FormFactor = Enum.FormFactor.Custom
  2499. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2500. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  2501. p8.CanCollide = false
  2502. p8.Locked = true
  2503. p8.BottomSurface = Enum.SurfaceType.Smooth
  2504. p8.TopSurface = Enum.SurfaceType.Smooth
  2505. p9 = Instance.new("WedgePart", m)
  2506. p9.BrickColor = BrickColor.new("Royal purple")
  2507. p9.Material = Enum.Material.Neon
  2508. p9.Name = "Wedge"
  2509. p9.FormFactor = Enum.FormFactor.Custom
  2510. p9.Size = Vector3.new(1, 1.19999981, 4)
  2511. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  2512. p9.CanCollide = false
  2513. p9.Locked = true
  2514. p9.TopSurface = Enum.SurfaceType.Smooth
  2515. b4 = Instance.new("SpecialMesh", p9)
  2516. b4.MeshType = Enum.MeshType.Wedge
  2517. b4.Name = "Mesh"
  2518. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2519. p10 = Instance.new("Part", m)
  2520. p10.BrickColor = BrickColor.new("Really black")
  2521. p10.Material = Enum.Material.Neon
  2522. p10.FormFactor = Enum.FormFactor.Custom
  2523. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2524. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  2525. p10.CanCollide = false
  2526. p10.Locked = true
  2527. p10.BottomSurface = Enum.SurfaceType.Smooth
  2528. p10.TopSurface = Enum.SurfaceType.Smooth
  2529. b5 = Instance.new("SpecialMesh", p10)
  2530. b5.MeshType = Enum.MeshType.Sphere
  2531. b5.Name = "Mesh"
  2532. p11 = Instance.new("Part", m)
  2533. p11.BrickColor = BrickColor.new("Really black")
  2534. p11.Material = Enum.Material.Neon
  2535. p11.FormFactor = Enum.FormFactor.Custom
  2536. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2537. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  2538. p11.CanCollide = false
  2539. p11.Locked = true
  2540. p11.BottomSurface = Enum.SurfaceType.Smooth
  2541. p11.TopSurface = Enum.SurfaceType.Smooth
  2542. b6 = Instance.new("SpecialMesh", p11)
  2543. b6.MeshType = Enum.MeshType.Sphere
  2544. b6.Name = "Mesh"
  2545. p12 = Instance.new("Part", m)
  2546. p12.BrickColor = BrickColor.new("Royal purple")
  2547. p12.Material = Enum.Material.Neon
  2548. p12.FormFactor = Enum.FormFactor.Custom
  2549. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2550. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  2551. p12.CanCollide = false
  2552. p12.Locked = true
  2553. p12.BottomSurface = Enum.SurfaceType.Smooth
  2554. p12.TopSurface = Enum.SurfaceType.Smooth
  2555. p13 = Instance.new("Part", m)
  2556. p13.BrickColor = BrickColor.new("Really black")
  2557. p13.Material = Enum.Material.Neon
  2558. p13.FormFactor = Enum.FormFactor.Custom
  2559. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2560. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  2561. p13.CanCollide = false
  2562. p13.Locked = true
  2563. p13.BottomSurface = Enum.SurfaceType.Smooth
  2564. p13.TopSurface = Enum.SurfaceType.Smooth
  2565. b7 = Instance.new("SpecialMesh", p13)
  2566. b7.MeshType = Enum.MeshType.Sphere
  2567. b7.Name = "Mesh"
  2568. p14 = Instance.new("WedgePart", m)
  2569. p14.BrickColor = BrickColor.new("Royal purple")
  2570. p14.Material = Enum.Material.Neon
  2571. p14.Name = "Wedge"
  2572. p14.FormFactor = Enum.FormFactor.Custom
  2573. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2574. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  2575. p14.CanCollide = false
  2576. p14.Locked = true
  2577. p14.TopSurface = Enum.SurfaceType.Smooth
  2578. b8 = Instance.new("SpecialMesh", p14)
  2579. b8.MeshType = Enum.MeshType.Wedge
  2580. b8.Name = "Mesh"
  2581. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2582. p15 = Instance.new("WedgePart", m)
  2583. p15.BrickColor = BrickColor.new("Royal purple")
  2584. p15.Material = Enum.Material.Neon
  2585. p15.Name = "Wedge"
  2586. p15.FormFactor = Enum.FormFactor.Custom
  2587. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2588. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  2589. p15.CanCollide = false
  2590. p15.Locked = true
  2591. p15.TopSurface = Enum.SurfaceType.Smooth
  2592. b9 = Instance.new("SpecialMesh", p15)
  2593. b9.MeshType = Enum.MeshType.Wedge
  2594. b9.Name = "Mesh"
  2595. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2596. p16 = Instance.new("WedgePart", m)
  2597. p16.BrickColor = BrickColor.new("Royal purple")
  2598. p16.Material = Enum.Material.Neon
  2599. p16.Name = "Wedge"
  2600. p16.FormFactor = Enum.FormFactor.Custom
  2601. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2602. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  2603. p16.CanCollide = false
  2604. p16.Locked = true
  2605. p16.TopSurface = Enum.SurfaceType.Smooth
  2606. b10 = Instance.new("SpecialMesh", p16)
  2607. b10.MeshType = Enum.MeshType.Wedge
  2608. b10.Name = "Mesh"
  2609. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2610. w1 = Instance.new("Weld", p1)
  2611. w1.Name = "Part_Weld"
  2612. w1.Part0 = p1
  2613. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2614. w1.Part1 = p2
  2615. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2616. w2 = Instance.new("Weld", p2)
  2617. w2.Name = "Part_Weld"
  2618. w2.Part0 = p2
  2619. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2620. w2.Part1 = p3
  2621. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2622. w3 = Instance.new("Weld", p3)
  2623. w3.Name = "Part_Weld"
  2624. w3.Part0 = p3
  2625. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2626. w3.Part1 = p4
  2627. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2628. w4 = Instance.new("Weld", p4)
  2629. w4.Name = "Part_Weld"
  2630. w4.Part0 = p4
  2631. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2632. w4.Part1 = p5
  2633. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2634. w5 = Instance.new("Weld", p5)
  2635. w5.Name = "Part_Weld"
  2636. w5.Part0 = p5
  2637. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2638. w5.Part1 = p6
  2639. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2640. w6 = Instance.new("Weld", p6)
  2641. w6.Name = "Part_Weld"
  2642. w6.Part0 = p6
  2643. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2644. w6.Part1 = p7
  2645. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2646. w7 = Instance.new("Weld", p7)
  2647. w7.Name = "Part_Weld"
  2648. w7.Part0 = p7
  2649. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2650. w7.Part1 = p8
  2651. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2652. w8 = Instance.new("Weld", p8)
  2653. w8.Name = "Wedge_Weld"
  2654. w8.Part0 = p8
  2655. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2656. w8.Part1 = p9
  2657. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2658. w9 = Instance.new("Weld", p9)
  2659. w9.Name = "Part_Weld"
  2660. w9.Part0 = p9
  2661. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2662. w9.Part1 = p10
  2663. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2664. w10 = Instance.new("Weld", p10)
  2665. w10.Name = "Part_Weld"
  2666. w10.Part0 = p10
  2667. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2668. w10.Part1 = p11
  2669. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2670. w11 = Instance.new("Weld", p11)
  2671. w11.Name = "Part_Weld"
  2672. w11.Part0 = p11
  2673. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2674. w11.Part1 = p12
  2675. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2676. w12 = Instance.new("Weld", p12)
  2677. w12.Name = "Part_Weld"
  2678. w12.Part0 = p12
  2679. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2680. w12.Part1 = p13
  2681. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2682. w13 = Instance.new("Weld", p13)
  2683. w13.Name = "Wedge_Weld"
  2684. w13.Part0 = p13
  2685. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2686. w13.Part1 = p14
  2687. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2688. w14 = Instance.new("Weld", p14)
  2689. w14.Name = "Wedge_Weld"
  2690. w14.Part0 = p14
  2691. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2692. w14.Part1 = p15
  2693. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2694. w15 = Instance.new("Weld", p15)
  2695. w15.Name = "Wedge_Weld"
  2696. w15.Part0 = p15
  2697. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2698. w15.Part1 = p16
  2699. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2700. m.Parent = rleg
  2701. m:MakeJoints()
  2702. ----------------------------------------------------
  2703. local cor6 = Instance.new("Part", rleg.RightLeg)
  2704. cor6.Name = "Thingy"
  2705. cor6.Locked = true
  2706. cor6.BottomSurface = 0
  2707. cor6.CanCollide = false
  2708. cor6.Size = Vector3.new(2, 1, 1)
  2709. cor6.Transparency = 1
  2710. cor6.TopSurface = 0
  2711. corw2 = Instance.new("Weld", cor6)
  2712. corw2.Part0 = rleg
  2713. corw2.Part1 = cor6
  2714. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2715. corw2.C1 = CFrame.new(0, 0, 0)
  2716. weld2 = Instance.new("Weld", rleg.RightLeg)
  2717. weld2.Part0 = cor6
  2718. weld2.Part1 = p7
  2719. weld2.C0 = CFrame.new(0, 0, 0)
  2720. ----------------------------------------------------
  2721. local m = Instance.new("Model")
  2722. m.Name = "LeftLeg"
  2723. p1 = Instance.new("WedgePart", m)
  2724. p1.BrickColor = BrickColor.new("Royal purple")
  2725. p1.Material = Enum.Material.Neon
  2726. p1.Name = "Wedge"
  2727. p1.FormFactor = Enum.FormFactor.Custom
  2728. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2729. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  2730. p1.CanCollide = false
  2731. p1.Locked = true
  2732. p1.TopSurface = Enum.SurfaceType.Smooth
  2733. b1 = Instance.new("SpecialMesh", p1)
  2734. b1.MeshType = Enum.MeshType.Wedge
  2735. b1.Name = "Mesh"
  2736. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2737. p2 = Instance.new("WedgePart", m)
  2738. p2.BrickColor = BrickColor.new("Royal purple")
  2739. p2.Material = Enum.Material.Neon
  2740. p2.Name = "Wedge"
  2741. p2.FormFactor = Enum.FormFactor.Custom
  2742. p2.Size = Vector3.new(1, 1.19999981, 4)
  2743. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  2744. p2.CanCollide = false
  2745. p2.Locked = true
  2746. p2.TopSurface = Enum.SurfaceType.Smooth
  2747. b2 = Instance.new("SpecialMesh", p2)
  2748. b2.MeshType = Enum.MeshType.Wedge
  2749. b2.Name = "Mesh"
  2750. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2751. p3 = Instance.new("Part", m)
  2752. p3.BrickColor = BrickColor.new("Really black")
  2753. p3.Material = Enum.Material.Metal
  2754. p3.Name = "Main"
  2755. p3.FormFactor = Enum.FormFactor.Custom
  2756. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2757. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  2758. p3.CanCollide = false
  2759. p3.Locked = true
  2760. p3.BottomSurface = Enum.SurfaceType.Smooth
  2761. p3.TopSurface = Enum.SurfaceType.Smooth
  2762. p4 = Instance.new("Part", m)
  2763. p4.BrickColor = BrickColor.new("Really black")
  2764. p4.Material = Enum.Material.Neon
  2765. p4.FormFactor = Enum.FormFactor.Custom
  2766. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2767. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  2768. p4.CanCollide = false
  2769. p4.Locked = true
  2770. p4.BottomSurface = Enum.SurfaceType.Smooth
  2771. p4.TopSurface = Enum.SurfaceType.Smooth
  2772. b3 = Instance.new("SpecialMesh", p4)
  2773. b3.MeshType = Enum.MeshType.Sphere
  2774. b3.Name = "Mesh"
  2775. p5 = Instance.new("WedgePart", m)
  2776. p5.BrickColor = BrickColor.new("Royal purple")
  2777. p5.Material = Enum.Material.Neon
  2778. p5.Name = "Wedge"
  2779. p5.FormFactor = Enum.FormFactor.Custom
  2780. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2781. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  2782. p5.CanCollide = false
  2783. p5.Locked = true
  2784. p5.TopSurface = Enum.SurfaceType.Smooth
  2785. b4 = Instance.new("SpecialMesh", p5)
  2786. b4.MeshType = Enum.MeshType.Wedge
  2787. b4.Name = "Mesh"
  2788. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2789. p6 = Instance.new("Part", m)
  2790. p6.BrickColor = BrickColor.new("Royal purple")
  2791. p6.Material = Enum.Material.Neon
  2792. p6.FormFactor = Enum.FormFactor.Custom
  2793. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2794. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  2795. p6.CanCollide = false
  2796. p6.Locked = true
  2797. p6.BottomSurface = Enum.SurfaceType.Smooth
  2798. p6.TopSurface = Enum.SurfaceType.Smooth
  2799. p7 = Instance.new("Part", m)
  2800. p7.BrickColor = BrickColor.new("Royal purple")
  2801. p7.Material = Enum.Material.Neon
  2802. p7.FormFactor = Enum.FormFactor.Custom
  2803. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2804. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  2805. p7.CanCollide = false
  2806. p7.Locked = true
  2807. p7.BottomSurface = Enum.SurfaceType.Smooth
  2808. p7.TopSurface = Enum.SurfaceType.Smooth
  2809. p8 = Instance.new("Part", m)
  2810. p8.BrickColor = BrickColor.new("Really black")
  2811. p8.Material = Enum.Material.Neon
  2812. p8.FormFactor = Enum.FormFactor.Custom
  2813. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2814. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  2815. p8.CanCollide = false
  2816. p8.Locked = true
  2817. p8.BottomSurface = Enum.SurfaceType.Smooth
  2818. p8.TopSurface = Enum.SurfaceType.Smooth
  2819. b5 = Instance.new("SpecialMesh", p8)
  2820. b5.MeshType = Enum.MeshType.Sphere
  2821. b5.Name = "Mesh"
  2822. p9 = Instance.new("Part", m)
  2823. p9.BrickColor = BrickColor.new("Really black")
  2824. p9.Material = Enum.Material.Neon
  2825. p9.FormFactor = Enum.FormFactor.Custom
  2826. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2827. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  2828. p9.CanCollide = false
  2829. p9.Locked = true
  2830. p9.BottomSurface = Enum.SurfaceType.Smooth
  2831. p9.TopSurface = Enum.SurfaceType.Smooth
  2832. b6 = Instance.new("SpecialMesh", p9)
  2833. b6.MeshType = Enum.MeshType.Sphere
  2834. b6.Name = "Mesh"
  2835. p10 = Instance.new("Part", m)
  2836. p10.BrickColor = BrickColor.new("Royal purple")
  2837. p10.Material = Enum.Material.Neon
  2838. p10.FormFactor = Enum.FormFactor.Custom
  2839. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2840. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  2841. p10.CanCollide = false
  2842. p10.Locked = true
  2843. p10.BottomSurface = Enum.SurfaceType.Smooth
  2844. p10.TopSurface = Enum.SurfaceType.Smooth
  2845. p11 = Instance.new("Part", m)
  2846. p11.BrickColor = BrickColor.new("Royal purple")
  2847. p11.Material = Enum.Material.Neon
  2848. p11.FormFactor = Enum.FormFactor.Custom
  2849. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2850. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  2851. p11.CanCollide = false
  2852. p11.Locked = true
  2853. p11.BottomSurface = Enum.SurfaceType.Smooth
  2854. p11.TopSurface = Enum.SurfaceType.Smooth
  2855. p12 = Instance.new("WedgePart", m)
  2856. p12.BrickColor = BrickColor.new("Royal purple")
  2857. p12.Material = Enum.Material.Neon
  2858. p12.Name = "Wedge"
  2859. p12.FormFactor = Enum.FormFactor.Custom
  2860. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2861. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  2862. p12.CanCollide = false
  2863. p12.Locked = true
  2864. p12.TopSurface = Enum.SurfaceType.Smooth
  2865. b7 = Instance.new("SpecialMesh", p12)
  2866. b7.MeshType = Enum.MeshType.Wedge
  2867. b7.Name = "Mesh"
  2868. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2869. p13 = Instance.new("Part", m)
  2870. p13.BrickColor = BrickColor.new("Really black")
  2871. p13.Material = Enum.Material.Neon
  2872. p13.FormFactor = Enum.FormFactor.Custom
  2873. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2874. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  2875. p13.CanCollide = false
  2876. p13.Locked = true
  2877. p13.BottomSurface = Enum.SurfaceType.Smooth
  2878. p13.TopSurface = Enum.SurfaceType.Smooth
  2879. b8 = Instance.new("SpecialMesh", p13)
  2880. b8.MeshType = Enum.MeshType.Sphere
  2881. b8.Name = "Mesh"
  2882. p14 = Instance.new("Part", m)
  2883. p14.BrickColor = BrickColor.new("Really black")
  2884. p14.Material = Enum.Material.Neon
  2885. p14.FormFactor = Enum.FormFactor.Custom
  2886. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2887. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  2888. p14.CanCollide = false
  2889. p14.Locked = true
  2890. p14.BottomSurface = Enum.SurfaceType.Smooth
  2891. p14.TopSurface = Enum.SurfaceType.Smooth
  2892. b9 = Instance.new("SpecialMesh", p14)
  2893. b9.MeshType = Enum.MeshType.Sphere
  2894. b9.Name = "Mesh"
  2895. w1 = Instance.new("Weld", p1)
  2896. w1.Name = "Wedge_Weld"
  2897. w1.Part0 = p1
  2898. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2899. w1.Part1 = p2
  2900. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2901. w2 = Instance.new("Weld", p2)
  2902. w2.Name = "Part_Weld"
  2903. w2.Part0 = p2
  2904. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2905. w2.Part1 = p3
  2906. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2907. w3 = Instance.new("Weld", p3)
  2908. w3.Name = "Part_Weld"
  2909. w3.Part0 = p3
  2910. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2911. w3.Part1 = p4
  2912. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2913. w4 = Instance.new("Weld", p4)
  2914. w4.Name = "Wedge_Weld"
  2915. w4.Part0 = p4
  2916. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2917. w4.Part1 = p5
  2918. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2919. w5 = Instance.new("Weld", p5)
  2920. w5.Name = "Part_Weld"
  2921. w5.Part0 = p5
  2922. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2923. w5.Part1 = p6
  2924. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2925. w6 = Instance.new("Weld", p6)
  2926. w6.Name = "Part_Weld"
  2927. w6.Part0 = p6
  2928. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2929. w6.Part1 = p7
  2930. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2931. w7 = Instance.new("Weld", p7)
  2932. w7.Name = "Part_Weld"
  2933. w7.Part0 = p7
  2934. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2935. w7.Part1 = p8
  2936. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2937. w8 = Instance.new("Weld", p8)
  2938. w8.Name = "Part_Weld"
  2939. w8.Part0 = p8
  2940. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2941. w8.Part1 = p9
  2942. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2943. w9 = Instance.new("Weld", p9)
  2944. w9.Name = "Part_Weld"
  2945. w9.Part0 = p9
  2946. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2947. w9.Part1 = p10
  2948. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2949. w10 = Instance.new("Weld", p10)
  2950. w10.Name = "Part_Weld"
  2951. w10.Part0 = p10
  2952. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2953. w10.Part1 = p11
  2954. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2955. w11 = Instance.new("Weld", p11)
  2956. w11.Name = "Wedge_Weld"
  2957. w11.Part0 = p11
  2958. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2959. w11.Part1 = p12
  2960. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2961. w12 = Instance.new("Weld", p12)
  2962. w12.Name = "Part_Weld"
  2963. w12.Part0 = p12
  2964. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2965. w12.Part1 = p13
  2966. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2967. w13 = Instance.new("Weld", p13)
  2968. w13.Name = "Part_Weld"
  2969. w13.Part0 = p13
  2970. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2971. w13.Part1 = p14
  2972. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2973. w14 = Instance.new("Weld", p14)
  2974. w14.Name = "Wedge_Weld"
  2975. w14.Part0 = p14
  2976. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2977. m.Parent = lleg
  2978. m:MakeJoints()
  2979. ----------------------------------------------------
  2980. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2981. cor7.Name = "Thingy"
  2982. cor7.Locked = true
  2983. cor7.BottomSurface = 0
  2984. cor7.CanCollide = false
  2985. cor7.Size = Vector3.new(2, 1, 1)
  2986. cor7.Transparency = 1
  2987. cor7.TopSurface = 0
  2988. corw2 = Instance.new("Weld", cor7)
  2989. corw2.Part0 = lleg
  2990. corw2.Part1 = cor7
  2991. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2992. corw2.C1 = CFrame.new(0, 0, 0)
  2993. weld2 = Instance.new("Weld", lleg.LeftLeg)
  2994. weld2.Part0 = cor7
  2995. weld2.Part1 = p3
  2996. weld2.C0 = CFrame.new(0, 0, 0)
  2997. ----------------------------------------------------
  2998. function weld5(part0, part1, c0, c1)
  2999. weeld=Instance.new("Weld", part0)
  3000. weeld.Part0=part0
  3001. weeld.Part1=part1
  3002. weeld.C0=c0
  3003. weeld.C1=c1
  3004. return weeld
  3005. end
  3006. ----------------------------------------------------
  3007. function newRay(start,face,range,wat)
  3008. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3009. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3010. return rey,hit,pos
  3011. end
  3012. ----------------------------------------------------
  3013. mod5 = Instance.new("Model",char)
  3014.  
  3015. function FindNearestTorso(Position,Distance,SinglePlayer)
  3016. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3017. local List = {}
  3018. for i,v in pairs(workspace:GetChildren())do
  3019. if v:IsA("Model")then
  3020. if v:findFirstChild("Torso")then
  3021. if v ~= char then
  3022. if(v.Torso.Position -Position).magnitude <= Distance then
  3023. table.insert(List,v)
  3024. end
  3025. end
  3026. end
  3027. end
  3028. end
  3029. return List
  3030. end
  3031.  
  3032. function Landing()
  3033. part=Instance.new('Part',mod5)
  3034. part.Anchored=true
  3035. part.CanCollide=false
  3036. part.FormFactor='Custom'
  3037. part.Size=Vector3.new(.2,.2,.2)
  3038. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3039. part.Transparency=.7
  3040. part.BrickColor=BrickColor.new('Really black')
  3041. part2=part:clone()
  3042. part2.Parent = mod5
  3043. part2.BrickColor=BrickColor.new('Royal purple')
  3044. mesh=Instance.new('SpecialMesh',part)
  3045. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3046. mesh.Scale=Vector3.new(10,5,10)
  3047. mesh2=mesh:clone()
  3048. mesh2.Parent=part2
  3049. mesh2.Scale=Vector3.new(12, 6, 12)
  3050.  
  3051. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3052. if v:FindFirstChild('Humanoid') then
  3053. v.Humanoid:TakeDamage(math.random(999,999))
  3054. v.Humanoid.PlatformStand = true
  3055. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3056. end
  3057. end
  3058.  
  3059. coroutine.resume(coroutine.create(function()
  3060. for i=0,3.8,0.05 do
  3061. wait()
  3062. part.CFrame=part.CFrame
  3063. part.Transparency=i
  3064. part2.CFrame=part2.CFrame
  3065. part2.Transparency=i
  3066. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3067. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3068. end
  3069. part.Parent = nil
  3070. end))
  3071. end
  3072. ----------------------------------------------------
  3073. mod4 = Instance.new("Model",char)
  3074.  
  3075. ptez = {0.7, 0.8, 0.9, 1}
  3076.  
  3077. function FindNearestTorso(Position,Distance,SinglePlayer)
  3078. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3079. local List = {}
  3080. for i,v in pairs(workspace:GetChildren())do
  3081. if v:IsA("Model")then
  3082. if v:findFirstChild("Torso")then
  3083. if v ~= char then
  3084. if(v.Torso.Position -Position).magnitude <= Distance then
  3085. table.insert(List,v)
  3086. end
  3087. end
  3088. end
  3089. end
  3090. end
  3091. return List
  3092. end
  3093.  
  3094. function GroundPound()
  3095. part=Instance.new('Part',mod4)
  3096. part.Anchored=true
  3097. part.CanCollide=false
  3098. part.FormFactor='Custom'
  3099. part.Size=Vector3.new(.2,.2,.2)
  3100. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3101. part.Transparency=.7
  3102. part.BrickColor=BrickColor.new('Really black')
  3103. mesh=Instance.new('SpecialMesh',part)
  3104. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3105. mesh.Scale=Vector3.new(3,3,3)
  3106. part2=Instance.new('Part',mod4)
  3107. part2.Anchored=true
  3108. part2.CanCollide=false
  3109. part2.FormFactor='Custom'
  3110. part2.Size=Vector3.new(.2,.2,.2)
  3111. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3112. part2.Transparency=.7
  3113. part2.BrickColor=BrickColor.new('Royal purple')
  3114. mesh2=Instance.new('SpecialMesh',part2)
  3115. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3116. mesh2.Scale=Vector3.new(3,1.5,3)
  3117. x = Instance.new("Sound",char)
  3118. x.SoundId = "http://www.roblox.com/asset/?id=157878578"
  3119. x.Pitch = ptez[math.random(1,#ptez)]
  3120. x.Volume = 1
  3121. wait(.1)
  3122. x:Play()
  3123. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3124. if v:FindFirstChild('Humanoid') then
  3125. v.Humanoid:TakeDamage(math.random(999,999))
  3126. end
  3127. end
  3128. coroutine.resume(coroutine.create(function()
  3129. for i=0,0.62,0.13 do
  3130. wait()
  3131. part.CFrame=part.CFrame
  3132. part.Transparency=i
  3133. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3134. part2.CFrame=part2.CFrame
  3135. part2.Transparency=i
  3136. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3137. end
  3138. part.Parent=nil
  3139. part2.Parent=nil
  3140. x:Destroy()
  3141. end))
  3142. end
  3143. ----------------------------------------------------
  3144. mod=Instance.new('Model',char)
  3145.  
  3146. function charge()
  3147. hed.Velocity=hed.CFrame.lookVector*200
  3148. part=Instance.new('Part',mod)
  3149. part.Anchored=true
  3150. part.CanCollide=false
  3151. part.FormFactor='Custom'
  3152. part.Size=Vector3.new(.2,.2,.2)
  3153. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3154. part.Transparency=.7
  3155. part.BrickColor=BrickColor.new('Black')
  3156. mesh=Instance.new('SpecialMesh',part)
  3157. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3158. mesh.Scale=Vector3.new(10,5,10)
  3159. part2=part:clone()
  3160. part2.Parent=mod
  3161. part2.BrickColor=BrickColor.new('Royal purple')
  3162. mesh2=mesh:clone()
  3163. mesh2.Parent=part2
  3164. mesh2.Scale=Vector3.new(20,10,20)
  3165. part3=part2:clone()
  3166. part3.Parent = mod
  3167. part3.BrickColor=BrickColor.new('Really black')
  3168. mesh3=mesh2:clone()
  3169. mesh2.Parent=part3
  3170. mesh3.Scale=Vector3.new(30,15,30)
  3171. coroutine.resume(coroutine.create(function()
  3172. for i=0,1,0.1 do
  3173. wait()
  3174. part.CFrame=part.CFrame
  3175. part.Transparency=i
  3176. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3177. part2.CFrame=part2.CFrame
  3178. part2.Transparency=i
  3179. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3180. part3.CFrame=part3.CFrame
  3181. part3.Transparency=i
  3182. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3183. end
  3184. part.Parent=nil
  3185. part2.Parent=nil
  3186. part3.Parent = nil
  3187. end))
  3188. end
  3189. ----------------------------------------------------
  3190. function FindNearestTorso(Position,Distance,SinglePlayer)
  3191. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3192. local List = {}
  3193. for i,v in pairs(workspace:GetChildren())do
  3194. if v:IsA("Model")then
  3195. if v:findFirstChild("Torso")then
  3196. if v ~= char then
  3197. if(v.Torso.Position -Position).magnitude <= Distance then
  3198. table.insert(List,v)
  3199. end
  3200. end
  3201. end
  3202. end
  3203. end
  3204. return List
  3205. end
  3206.  
  3207. mod3 = Instance.new("Model",rleg)
  3208.  
  3209. function Stomp()
  3210. part=Instance.new('Part',mod3)
  3211. part.Anchored=true
  3212. part.CanCollide=false
  3213. part.FormFactor='Custom'
  3214. part.Size=Vector3.new(.2,.2,.2)
  3215. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3216. part.Transparency=.7
  3217. part.BrickColor=BrickColor.new('Bright green')
  3218. mesh=Instance.new('SpecialMesh',part)
  3219. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3220. mesh.Scale=Vector3.new(25,25,25)
  3221. part2=part:clone()
  3222. part2.Parent=mod3
  3223. part2.BrickColor=BrickColor.new('Bright green')
  3224. mesh2=mesh:clone()
  3225. mesh2.Parent=part2
  3226. mesh2.Scale=Vector3.new(15,15,15)
  3227. part3=part:clone()
  3228. part3.Parent=mod3
  3229. part3.TopSurface=0
  3230. part3.BottomSurface=0
  3231. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3232. mesh3=Instance.new('SpecialMesh',part3)
  3233. mesh3.MeshType = 3
  3234. mesh3.Scale=Vector3.new(12,12,12)
  3235. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3236. if v:FindFirstChild('Humanoid') then
  3237. v.Humanoid:TakeDamage(math.random(999,999))
  3238. v.Humanoid.PlatformStand = true
  3239. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3240. end
  3241. end
  3242. coroutine.resume(coroutine.create(function()
  3243. for i=0,3.8,0.05 do
  3244. wait()
  3245. part.CFrame=part.CFrame
  3246. part.Transparency=i
  3247. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3248. part2.CFrame=part2.CFrame
  3249. part2.Transparency=i
  3250. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3251. part3.CFrame=part3.CFrame
  3252. part3.Transparency=i
  3253. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3254. end
  3255. end))
  3256. end
  3257. ----------------------------------------------------
  3258.  
  3259. local acos = math.acos
  3260. local sqrt = math.sqrt
  3261. local Vec3 = Vector3.new
  3262. local fromAxisAngle = CFrame.fromAxisAngle
  3263.  
  3264. local function toAxisAngle(CFr)
  3265. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3266. local Angle = math.acos((R00+R11+R22-1)/2)
  3267. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3268. A = A == 0 and 0.00001 or A
  3269. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3270. B = B == 0 and 0.00001 or B
  3271. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3272. C = C == 0 and 0.00001 or C
  3273. local x = (R21-R12)/sqrt(A)
  3274. local y = (R02-R20)/sqrt(B)
  3275. local z = (R10-R01)/sqrt(C)
  3276. return Vec3(x,y,z),Angle
  3277. end
  3278.  
  3279. function ApplyTrig(Num,Func)
  3280. local Min,Max = Func(0),Func(1)
  3281. local i = Func(Num)
  3282. return (i-Min)/(Max-Min)
  3283. --[[if Func == "sin" then
  3284. return (math.sin((1-Num)*math.pi)+1)/2
  3285. elseif Func == "cos" then
  3286. return (math.cos((1-Num)*math.pi)+1)/2
  3287. end]]
  3288. end
  3289.  
  3290. function LerpCFrame(CFrame1,CFrame2,Num)
  3291. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3292. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3293. end
  3294.  
  3295. function Crater(Torso,Radius)
  3296. Spawn(function()
  3297. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3298. local Ignore = {}
  3299. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3300. if v.Character ~= nil then
  3301. Ignore[#Ignore+1] = v.Character
  3302. end
  3303. end
  3304. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3305. if Hit == nil then return end
  3306. local Parts = {}
  3307. for i = 1,360,10 do
  3308. local P = Instance.new("Part",Torso.Parent)
  3309. P.Anchored = true
  3310. P.FormFactor = "Custom"
  3311. P.BrickColor = Hit.BrickColor
  3312. P.Material = Hit.Material
  3313. P.TopSurface = "Smooth"
  3314. P.BottomSurface = "Smooth"
  3315. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3316. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  3317. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  3318. if math.random(0,5) == 0 then -- rubble
  3319. local P = Instance.new("Part",Torso.Parent)
  3320. P.Anchored = true
  3321. P.FormFactor = "Custom"
  3322. P.BrickColor = Hit.BrickColor
  3323. P.Material = Hit.Material
  3324. P.TopSurface = "Smooth"
  3325. P.BottomSurface = "Smooth"
  3326. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3327. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  3328. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  3329. end
  3330. end
  3331. for i = 0,1,0.05 do
  3332. for i2,v in pairs(Parts) do
  3333. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3334. end
  3335. wait(0.02)
  3336. end
  3337. for i,v in pairs(Parts) do
  3338. if v[1].Size.X > 2.1 then
  3339. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3340. end
  3341. v[1].Anchored = false
  3342. end
  3343. for i = 0,1,0.05 do
  3344. for i2,v in pairs(Parts) do
  3345. v[1].Transparency = i
  3346. if i == 1 then
  3347. v[1]:Destroy()
  3348. elseif i >= 0.25 then
  3349. v[1].CanCollide = false
  3350. end
  3351. end
  3352. wait(0.02)
  3353. end
  3354. Parts = nil
  3355. end)
  3356. end
  3357.  
  3358. ----------------------------------------------------
  3359. mouse.KeyDown:connect(function(key)
  3360. if key == "r" then
  3361. larm.BrickColor = BrickColor.new("Royal purple")
  3362. rarm.BrickColor = BrickColor.new("Royal purple")
  3363. if Debounces.CanAttack == true then
  3364. Debounces.CanAttack = false
  3365. Debounces.on = true
  3366. Debounces.NoIdl = true
  3367. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3368. hit = ht.Parent
  3369. if ht and hit:IsA("Model") then
  3370. if hit:FindFirstChild("Humanoid") then
  3371. if hit.Name ~= p.Name then
  3372. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3373. Debounces.Slashed = true]]--
  3374. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3375. wait(1)
  3376. --Debounces.Slashed = false
  3377. --end
  3378. end
  3379. end
  3380. elseif ht and hit:IsA("Hat") then
  3381. if hit.Parent.Name ~= p.Name then
  3382. if hit.Parent:FindFirstChild("Humanoid") then
  3383. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3384. Debounces.Slashed = true]]--
  3385. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3386. wait(1)
  3387. --Debounces.Slashed = false
  3388. end
  3389. end
  3390. end
  3391. end)
  3392. q = Instance.new("Sound",hed)
  3393. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3394. q.Pitch = 0.85
  3395. q.Looped = false
  3396. q1 = Instance.new("Sound",hed)
  3397. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3398. q1.Pitch = 0.85
  3399. q1.Looped = false
  3400. q:Play()
  3401. q1:Play()
  3402. for i = 1,20 do
  3403. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3404. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3405. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3406. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3407. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3408. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3409. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25)
  3410. if Debounces.on == false then break end
  3411. rs:wait(.6)
  3412. end
  3413. n = Instance.new("Sound",hed)
  3414. n.SoundId = "http://www.roblox.com/asset/?id=165969964"
  3415. n.Pitch = 0.94
  3416. n.Looped = false
  3417. n1 = Instance.new("Sound",hed)
  3418. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3419. n1.Pitch = 0.94
  3420. n1.Looped = false
  3421. n:Play()
  3422. n1:Play()
  3423. b = Instance.new("Sound",hed)
  3424. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3425. b.Pitch = 0.94
  3426. b.Looped = false
  3427. b1 = Instance.new("Sound",hed)
  3428. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3429. b1.Pitch = 0.94
  3430. b1.Looped = false
  3431. b:Play()
  3432. b1:Play()
  3433. for i = 1,26 do
  3434. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25)
  3435. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25)
  3436. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3437. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3438. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3439. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3440. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.25)
  3441. if Debounces.on == false then break end
  3442. rs:wait(1)
  3443. end
  3444. wait(.5)
  3445. to:disconnect()
  3446. q:Destroy()
  3447. q1:Destroy()
  3448. n:Destroy()
  3449. n1:Destroy()
  3450. larm.BrickColor = BrickColor.new("Really black")
  3451. rarm.BrickColor = BrickColor.new("Really black")
  3452. if Debounces.CanAttack == false then
  3453. Debounces.CanAttack = true
  3454. Debounces.on = false
  3455. Debounces.NoIdl = false
  3456. end
  3457. end
  3458. end
  3459. end)
  3460. ----------------------------------------------------
  3461. mouse.KeyDown:connect(function(key)
  3462. if key == "q" then
  3463. larm.BrickColor = BrickColor.new("Royal purple")
  3464. rarm.BrickColor = BrickColor.new("Royal purple")
  3465. if Debounces.CanAttack == true then
  3466. Debounces.CanAttack = false
  3467. Debounces.on = true
  3468. Debounces.NoIdl = true
  3469. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3470. hit = ht.Parent
  3471. if ht and hit:IsA("Model") then
  3472. if hit:FindFirstChild("Humanoid") then
  3473. if hit.Name ~= p.Name then
  3474. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3475. Debounces.Slashed = true]]--
  3476. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3477. wait(1)
  3478. --Debounces.Slashed = false
  3479. --end
  3480. end
  3481. end
  3482. elseif ht and hit:IsA("Hat") then
  3483. if hit.Parent.Name ~= p.Name then
  3484. if hit.Parent:FindFirstChild("Humanoid") then
  3485. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3486. Debounces.Slashed = true]]--
  3487. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3488. wait(1)
  3489. --Debounces.Slashed = false
  3490. end
  3491. end
  3492. end
  3493. end)
  3494. for i = 1, 20 do
  3495. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  3496. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  3497. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3498. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3499. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3500. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3501. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3502. if Debounces.on == false then break end
  3503. rs:wait(2)
  3504. end
  3505. z = Instance.new("Sound",hed)
  3506. z.SoundId = "rbxassetid://160069154"
  3507. z.Looped = false
  3508. z.Pitch = .9
  3509. z1 = Instance.new("Sound",hed)
  3510. z1.SoundId = "rbxassetid://160069154"
  3511. z1.Looped = false
  3512. z1.Pitch = .9
  3513. wait(0.01)
  3514. z:Play()
  3515. z1:Play()
  3516. for i = 1, 20 do
  3517. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  3518. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  3519. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3520. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  3521. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3522. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3523. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3524. if Debounces.on == false then break end
  3525. rs:wait(2)
  3526. end
  3527. for i = 1, 20 do
  3528. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  3529. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  3530. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3531. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3532. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3533. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3534. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3535. if Debounces.on == false then break end
  3536. rs:wait(2)
  3537. end
  3538. z = Instance.new("Sound",hed)
  3539. z.SoundId = "rbxassetid://168586621"
  3540. z.Looped = false
  3541. z.Pitch = 1
  3542. z1 = Instance.new("Sound",hed)
  3543. z1.SoundId = "rbxassetid://168586621"
  3544. z1.Looped = false
  3545. z1.Pitch = 1
  3546. wait(0.01)
  3547. z:Play()
  3548. z1:Play()
  3549. for i = 1, 20 do
  3550. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  3551. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  3552. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3553. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3554. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3555. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3556. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  3557. if Debounces.on == false then break end
  3558. rs:wait(2)
  3559. end
  3560. to:disconnect()
  3561. larm.BrickColor = BrickColor.new("Really black")
  3562. rarm.BrickColor = BrickColor.new("Really black")
  3563. if Debounces.CanAttack == false then
  3564. Debounces.CanAttack = true
  3565. Debounces.on = false
  3566. Debounces.NoIdl = false
  3567. end
  3568. end
  3569. end
  3570. end)
  3571. ----------------------------------------------------
  3572. Sit = false
  3573. mouse.KeyDown:connect(function(key)
  3574. if key == "v" then
  3575. if Sit == false then
  3576. Sit = true
  3577. hum.WalkSpeed = 0.001
  3578. stanceToggle = "Sitting"
  3579. elseif Sit == true then
  3580. Sit = false
  3581. hum.WalkSpeed = 7
  3582. stanceToggle = "Normal"
  3583. end
  3584. end
  3585. end)
  3586. ----------------------------------------------------
  3587. mouse.KeyDown:connect(function(key)
  3588. if key == "t" then
  3589. if Debounces.CanAttack == true then
  3590. Debounces.CanAttack = false
  3591. Debounces.on = true
  3592. Debounces.NoIdl = true
  3593. for i = 1, 20 do
  3594. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3595. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3596. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3597. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3598. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3599. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3600. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3601. if Debounces.on == false then break end
  3602. rs:wait(2.6)
  3603. end
  3604. Spawn(function()
  3605. local Parts = {}
  3606. for Y = -5,5 do
  3607. local P = Instance.new("Part",char)
  3608. P.Anchored = true
  3609. P.FormFactor = "Custom"
  3610. P.CanCollide = false
  3611. P.Size = Vector3.new(1,2,1)
  3612. P.TopSurface = "SmoothNoOutlines"
  3613. P.BottomSurface = "SmoothNoOutlines"
  3614. P.BrickColor = BrickColor.new("Really black")
  3615. P.Name = tostring(Y)
  3616. local i = (Y+5)/(10)
  3617. i = 1-math.cos(math.pi*i-(math.pi/2))
  3618. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3619. --[[P.Touched:connect(function(ht)
  3620. local hit = ht.Parent
  3621. if hit:FindFirstChild("Humanoid") then
  3622. hit.Humanoid:TakeDamage(math.random(999,999))
  3623. end
  3624. end)]]--
  3625. s = Instance.new("Sound",P)
  3626. s.SoundId = "rbxassetid://228343271"
  3627. s.Volume = .7
  3628. s.Pitch = 0.9
  3629. s:Play()
  3630. P.Touched:connect(function(ht)
  3631. hit = ht.Parent
  3632. if ht and hit:IsA("Model") then
  3633. if hit:FindFirstChild("Humanoid") then
  3634. if hit.Name ~= p.Name then
  3635. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3636. Debounces.Slashed = true]]--
  3637. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(999,999))
  3638. hit:FindFirstChild("Humanoid").PlatformStand = true
  3639. wait(1)
  3640. --Debounces.Slashed = false
  3641. --end
  3642. end
  3643. end
  3644. elseif ht and hit:IsA("Hat") then
  3645. if hit.Parent.Name ~= p.Name then
  3646. if hit.Parent:FindFirstChild("Humanoid") then
  3647. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3648. Debounces.Slashed = true]]--
  3649. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (999,999))
  3650. hit:FindFirstChild("Humanoid").PlatformStand = true
  3651. wait(1)
  3652. --Debounces.Slashed = false
  3653. --end
  3654. end
  3655. end
  3656. end
  3657. end)
  3658. Parts[#Parts+1] = P
  3659. end
  3660. local BREAKIT = false
  3661. local CParts = {}
  3662. local Rocks = {}
  3663. local LastPos = nil
  3664. for i = 1,70 do
  3665. for i2,v in pairs(Parts) do
  3666. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3667. local cf = v.CFrame
  3668. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3669. v.CFrame = cf
  3670. v.Transparency = v.Transparency+0.02
  3671. if v.Transparency >= 0.975 then BREAKIT = true end
  3672. if v.Name == "0" then
  3673. local Ignore = {}
  3674. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3675. if v.Character ~= nil then
  3676. Ignore[#Ignore+1] = v.Character
  3677. end
  3678. end
  3679. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3680. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3681. if Hit ~= nil then
  3682. if #Rocks == 0 then
  3683. for i = 1,5 do
  3684. local P = Instance.new("Part",char)
  3685. Rocks[#Rocks+1] = P
  3686. P.Anchored = true
  3687. P.FormFactor = "Custom"
  3688. P.BrickColor = Hit.BrickColor
  3689. P.Material = Hit.Material
  3690. P.TopSurface = "Smooth"
  3691. P.BottomSurface = "Smooth"
  3692. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3693. end
  3694. end
  3695. for i,P in pairs(Rocks) do
  3696. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3697. end
  3698. local P = Instance.new("Part",char)
  3699. CParts[#CParts+1] = {P,tick()}
  3700. P.Anchored = true
  3701. P.FormFactor = "Custom"
  3702. P.BrickColor = Hit.BrickColor
  3703. P.Material = Hit.Material
  3704. P.TopSurface = "Smooth"
  3705. P.BottomSurface = "Smooth"
  3706. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3707. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3708. Pos = Pos.p
  3709. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3710. local P = P:Clone()
  3711. CParts[#CParts+1] = {P,tick()}
  3712. P.Parent = char
  3713. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3714. Pos = Pos.p
  3715. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  3716. if LastPos ~= nil then
  3717. local P = P:Clone()
  3718. CParts[#CParts+1] = {P,tick()}
  3719. P.Parent = char
  3720. P.BrickColor = BrickColor.new("Really black")
  3721. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3722. Pos = Pos.p
  3723. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3724. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3725. --P.Velocity = Vector3.new(0,-1000,0)
  3726. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3727. end
  3728. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3729. end
  3730. end
  3731. end
  3732. if BREAKIT then break end
  3733. wait(0.002)
  3734. end
  3735. for i,v in pairs(Rocks) do
  3736. CParts[#CParts+1] = {v,tick()}
  3737. end
  3738. for i,v in pairs(Parts) do
  3739. v:Destroy()
  3740. end
  3741. Parts = nil
  3742. while true do
  3743. local t = tick()
  3744. local p = nil
  3745. for i,v in pairs(CParts) do
  3746. if t-v[2] > 4 then
  3747. v[1].Transparency = v[1].Transparency+0.05
  3748. if v[1].Transparency >= 1 then
  3749. v[1]:Destroy()
  3750. CParts[i] = nil
  3751. end
  3752. end
  3753. p = v
  3754. end
  3755. if p == nil then break end
  3756. wait(0.002)
  3757. end
  3758. for i,v in pairs(CParts) do
  3759. v:Destroy()
  3760. end
  3761. CParts = {}
  3762. end)
  3763. for i = 1, 20 do
  3764. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  3765. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  3766. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  3767. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3768. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3769. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3770. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3771. if Debounces.on == false then break end
  3772. rs:wait(2)
  3773. end
  3774. if Debounces.CanAttack == false then
  3775. Debounces.CanAttack = true
  3776. Debounces.on = false
  3777. Debounces.NoIdl = false
  3778. end
  3779. end
  3780. end
  3781. end)
  3782. ----------------------------------------------------
  3783. mouse.KeyDown:connect(function(key)
  3784. if key == "e" then
  3785. larm.BrickColor = BrickColor.new("Royal purple")
  3786. rarm.BrickColor = BrickColor.new("Royal purple")
  3787. if Debounces.CanAttack == true then
  3788. Debounces.CanAttack = false
  3789. Debounces.on = true
  3790. Debounces.NoIdl = true
  3791. for i = 1, 18 do
  3792. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  3793. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3794. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3795. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3796. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3797. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3798. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3799. if Debounces.on == false then break end
  3800. rs:wait(4)
  3801. end
  3802. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3803. local rng = Instance.new("Part", char.Absolution.Handle)
  3804. rng.Anchored = true
  3805. rng.BrickColor = BrickColor.new("Really black")
  3806. rng.CanCollide = true
  3807. rng.FormFactor = 3
  3808. rng.Name = "Ring"
  3809. rng.Size = Vector3.new(1, 1, 1)
  3810. rng.CanCollide = false
  3811. rng.Transparency = 0.35
  3812. rng.TopSurface = 0
  3813. rng.BottomSurface = 0
  3814. rng.CFrame = HandCF
  3815. local rngm = Instance.new("SpecialMesh", rng)
  3816. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3817. rngm.Scale = Vector3.new(1, 1, 2)
  3818. x = Instance.new("Sound", hed)
  3819. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3820. x.Looped = false
  3821. x.Pitch = .7
  3822. x.Volume = 1
  3823. x1 = Instance.new("Sound", hed)
  3824. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3825. x1.Looped = false
  3826. x1.Pitch = .7
  3827. x1.Volume = 1
  3828. x:Play()
  3829. x1:Play()
  3830. rngto = rng.Touched:connect(function(ht)
  3831. hit = ht.Parent
  3832. if ht and hit:IsA("Model") then
  3833. if hit:FindFirstChild("Humanoid") then
  3834. if hit.Name ~= p.Name then
  3835. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3836. Debounces.Slashed = true]]--
  3837. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3838. hit:FindFirstChild("Humanoid").PlatformStand = true
  3839. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3840. --Debounces.Slashed = false
  3841. --end
  3842. end
  3843. end
  3844. elseif ht and hit:IsA("Hat") then
  3845. if hit.Parent.Name ~= p.Name then
  3846. if hit.Parent:FindFirstChild("Humanoid") then
  3847. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3848. Debounces.Slashed = true]]--
  3849. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3850. hit:FindFirstChild("Humanoid").PlatformStand = true
  3851. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3852. --Debounces.Slashed = false
  3853. end
  3854. end
  3855. end
  3856. end)
  3857. coroutine.wrap(function()
  3858. for i = 1, 60, 2 do
  3859. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3860. rng.Size = rngm.Scale
  3861. rng.CFrame = HandCF
  3862. rng.Transparency = i/60
  3863. wait()
  3864. end
  3865. wait()
  3866. rng:Destroy()
  3867. end)()
  3868. for i = 1, 18 do
  3869. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  3870. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3871. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3872. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3873. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3874. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3875. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3876. if Debounces.on == false then break end
  3877. rs:wait(2.4)
  3878. end
  3879. larm.BrickColor = BrickColor.new("Really black")
  3880. rarm.BrickColor = BrickColor.new("Really black")
  3881. x:Destroy()
  3882. x1:Destroy()
  3883. if Debounces.CanAttack == false then
  3884. Debounces.CanAttack = true
  3885. Debounces.on = false
  3886. Debounces.NoIdl = false
  3887. end
  3888. end
  3889. end
  3890. end)
  3891. ----------------------------------------------------
  3892. mouse.KeyDown:connect(function(key)
  3893. if key == "y" then
  3894. if Debounces.CanAttack == true then
  3895. Debounces.CanAttack = false
  3896. Debounces.on = true
  3897. Debounces.NoIdl = true
  3898. for i = 1, 15 do
  3899. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  3900. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  3901. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3902. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3903. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3904. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3905. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3906. if Debounces.on == false then break end
  3907. rs:wait(2.7)
  3908. end
  3909. x = Instance.new("Sound",char)
  3910. x.SoundId = "rbxassetid://228343271"
  3911. x.Pitch = 1
  3912. x.Volume = .8
  3913. wait(.1)
  3914. x:Play()
  3915. Debounces.on = false
  3916. Debounces.Here = false
  3917. shot = shot + 1
  3918. local rng = Instance.new("Part", char)
  3919. rng.Anchored = true
  3920. rng.BrickColor = BrickColor.new("Royal purple")
  3921. rng.CanCollide = false
  3922. rng.FormFactor = 3
  3923. rng.Name = "Ring"
  3924. rng.Size = Vector3.new(1, 1, 1)
  3925. rng.Transparency = 0.35
  3926. rng.TopSurface = 0
  3927. rng.BottomSurface = 0
  3928. rng2 = rng:clone()
  3929. rng3 = rng2:clone()
  3930. rng4 = rng2:clone()
  3931. local rngm = Instance.new("SpecialMesh", rng)
  3932. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3933. rngm.Scale = Vector3.new(10, 10, 1)
  3934. rngm2 = rngm:clone()
  3935. rngm2.Scale = Vector3.new(5, 5, 3)
  3936. rngm3=rngm2:clone()
  3937. rngm3.Parent = rng3
  3938. rngm3.Scale = Vector3.new(8, 8, 1)
  3939. rngm4 = rngm2:clone()
  3940. rngm4.Parent = rng4
  3941. rngm4.Scale = Vector3.new(6, 6, 1)
  3942. local bem = Instance.new("Part", char)
  3943. bem.Anchored = true
  3944. bem.BrickColor = BrickColor.new("Really black")
  3945. bem.CanCollide = false
  3946. bem.FormFactor = 3
  3947. bem.Name = "Beam" .. shot
  3948. bem.Size = Vector3.new(1, 1, 1)
  3949. bem.Transparency = 0.35
  3950. bem.TopSurface = 0
  3951. bem.BottomSurface = 0
  3952. local bemm = Instance.new("SpecialMesh", bem)
  3953. bemm.MeshType = 4
  3954. bemm.Scale = Vector3.new(1, 4, 4)
  3955. local out = Instance.new("Part", char)
  3956. out.Anchored = true
  3957. out.BrickColor = BrickColor.new("Really black")
  3958. out.CanCollide = false
  3959. out.FormFactor = 3
  3960. out.Name = "Out"
  3961. out.Size = Vector3.new(4, 4, 4)
  3962. out.Transparency = 0.35
  3963. out.TopSurface = 0
  3964. out.BottomSurface = 0
  3965. local outm = Instance.new("SpecialMesh", out)
  3966. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3967. outm.Scale = Vector3.new(4, 4, 4)
  3968. local bnd = Instance.new("Part", char)
  3969. bnd.Anchored = true
  3970. bnd.BrickColor = BrickColor.new("Royal purple")
  3971. bnd.CanCollide = false
  3972. bnd.FormFactor = 3
  3973. bnd.Name = "Bend"
  3974. bnd.Size = Vector3.new(1, 1, 1)
  3975. bnd.Transparency = 1
  3976. bnd.TopSurface = 0
  3977. bnd.BottomSurface = 0
  3978. local bndm = Instance.new("SpecialMesh", bnd)
  3979. bndm.MeshType = 3
  3980. bndm.Scale = Vector3.new(8, 8, 8)
  3981. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3982. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3983. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3984. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3985. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3986. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3987. Debounces.Shewt = true
  3988. coroutine.wrap(function()
  3989. for i = 1, 20, 0.2 do
  3990. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3991. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3992. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3993. rng.Transparency = i/20
  3994. rng3.Transparency = 1/24
  3995. rng4.Transparency = i/26
  3996. wait()
  3997. end
  3998. wait()
  3999. rng:Destroy()
  4000. end)()
  4001. if Debounces.Shewt == true then
  4002. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4003. hit = ht.Parent
  4004. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4005. if HasntTouched(hit.Name) == true and deb == false then
  4006. deb = true
  4007. coroutine.wrap(function()
  4008. hit:FindFirstChild("Humanoid").PlatformStand = true
  4009. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4010. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(999,999))
  4011. end)()
  4012. table.insert(Touche, hit.Name)
  4013. deb = false
  4014. end
  4015. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4016. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4017. deb = true
  4018. coroutine.wrap(function()
  4019. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4020. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4021. wait(1)
  4022. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4023. end)()
  4024. table.insert(Touche, hit.Parent.Name)
  4025. deb = false
  4026. for i, v in pairs(Touche) do
  4027. print(v)
  4028. end
  4029. end
  4030. end
  4031. end)
  4032. end
  4033. for i = 0, 260, 8 do
  4034. bem.Size = Vector3.new(i, 2, 2)
  4035. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4036. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4037. bnd.Size = Vector3.new(1,1,1)
  4038. bndm.Scale = Vector3.new(8,8,8)
  4039. if i % 10 == 0 then
  4040. local newRng = rng2:Clone()
  4041. newRng.Parent = char
  4042. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4043. local newRngm = rngm2:clone()
  4044. newRngm.Parent=newRng
  4045. coroutine.wrap(function()
  4046. for i = 1, 10, 0.2 do
  4047. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4048. newRng.Transparency = i/10
  4049. wait()
  4050. end
  4051. wait()
  4052. newRng:Destroy()
  4053. end)()
  4054. end
  4055. wait()
  4056. end
  4057. wait()
  4058. Debounces.Shewt = false
  4059. bem:Destroy()
  4060. out:Destroy()
  4061. bnd:Destroy()
  4062. Debounces.Ready = false
  4063. for i, v in pairs(Touche) do
  4064. table.remove(Touche, i)
  4065. end
  4066. wait()
  4067. table.insert(Touche, char.Name)
  4068. Debounces.NoIdl = false
  4069. if Debounces.CanAttack == false then
  4070. Debounces.CanAttack = true
  4071. end
  4072. end
  4073. end
  4074. end)
  4075. ----------------------------------------------------
  4076. sidz = {"231917888", "231917845", "231917806"}
  4077. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4078. mouse.KeyDown:connect(function(key)
  4079. if key == "f" then
  4080. larm.BrickColor = BrickColor.new("Royal purple")
  4081. rarm.BrickColor = BrickColor.new("Royal purple")
  4082. if Debounces.CanAttack == true then
  4083. Debounces.CanAttack = false
  4084. Debounces.on = true
  4085. Debounces.NoIdl = true
  4086. for i = 1, 20 do
  4087. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4088. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4089. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4090. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4091. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4092. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4093. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4094. if Debounces.on == false then break end
  4095. rs:wait(6)
  4096. end
  4097. z = Instance.new("Sound",char)
  4098. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4099. z.Pitch = ptz[math.random(1,#ptz)]
  4100. z.Volume = 1
  4101. z1 = Instance.new("Sound",char)
  4102. z1.SoundId = z.SoundId
  4103. z1.Pitch = z.Pitch
  4104. z1.Volume = 1
  4105. z:Play()
  4106. z1:Play()
  4107. Stomp()
  4108. for i = 1, 20 do
  4109. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4110. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4111. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4112. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4113. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4114. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4115. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4116. if Debounces.on == false then break end
  4117. rs:wait(2.5)
  4118. end
  4119. if Debounces.CanAttack == false then
  4120. Debounces.CanAttack = true
  4121. Debounces.on = false
  4122. Debounces.NoIdl = false
  4123. larm.BrickColor = BrickColor.new("Really black")
  4124. rarm.BrickColor = BrickColor.new("Really black")
  4125. end
  4126. end
  4127. end
  4128. end)
  4129. ----------------------------------------------------
  4130. mouse.KeyDown:connect(function(key)
  4131. if key == "g" then
  4132. larm.BrickColor = BrickColor.new("Royal purple")
  4133. rarm.BrickColor = BrickColor.new("Royal purple")
  4134. if Debounces.CanAttack == true then
  4135. Debounces.CanAttack = false
  4136. Debounces.on = true
  4137. Debounces.NoIdl = true
  4138. chrg = lleg.Touched:connect(function(ht)
  4139. hit = ht.Parent
  4140. if ht and hit:IsA("Model") then
  4141. if hit:FindFirstChild("Humanoid") then
  4142. if hit.Name ~= p.Name then
  4143. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4144. Debounces.Slashed = true]]--
  4145. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4146. hit:FindFirstChild("Humanoid").PlatformStand = true
  4147. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4148. --Debounces.Slashed = false
  4149. --end
  4150. end
  4151. end
  4152. elseif ht and hit:IsA("Hat") then
  4153. if hit.Parent.Name ~= p.Name then
  4154. if hit.Parent:FindFirstChild("Humanoid") then
  4155. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4156. Debounces.Slashed = true]]--
  4157. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4158. hit:FindFirstChild("Humanoid").PlatformStand = true
  4159. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4160. --Debounces.Slashed = false
  4161. end
  4162. end
  4163. end
  4164. end)
  4165. for i = 1, 14 do
  4166. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4167. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2)
  4168. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  4169. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
  4170. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4171. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4172. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  4173. if Debounces.on == false then break end
  4174. rs:wait(3)
  4175. end
  4176. charge()
  4177. z = Instance.new("Sound",char)
  4178. z.SoundId = "rbxassetid://200632875"
  4179. z.Volume = 1
  4180. z.Pitch = .8
  4181. z1 = Instance.new("Sound",char)
  4182. z1.SoundId = "rbxassetid://200632875"
  4183. z1.Volume = 1
  4184. z1.Pitch = .9
  4185. z:Play()
  4186. z1:Play()
  4187. wait(1)
  4188. z:Destroy()
  4189. z1:Destroy()
  4190. chrg:disconnect()
  4191. if Debounces.CanAttack == false then
  4192. Debounces.CanAttack = true
  4193. Debounces.on = false
  4194. Debounces.NoIdl = false
  4195. larm.BrickColor = BrickColor.new("Really black")
  4196. rarm.BrickColor = BrickColor.new("Really black")
  4197. end
  4198. end
  4199. end
  4200. end)
  4201. ----------------------------------------------------
  4202. pt = {0.7, 0.8, 0.9}
  4203. mouse.KeyDown:connect(function(key)
  4204. if key == "h" then
  4205. if Debounces.CanJoke == true then
  4206. Debounces.CanJoke = false
  4207. u = Instance.new("Sound")
  4208. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4209. u.Parent = char
  4210. u.Looped = false
  4211. u.Pitch = pt[math.random(1,#pt)]
  4212. u.Volume = 1
  4213. u2 = Instance.new("Sound")
  4214. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4215. u2.Parent = char
  4216. u2.Looped = false
  4217. u2.Pitch = u.Pitch
  4218. u2.Volume = 1
  4219. wait(.01)
  4220. u:Play()
  4221. u2:Play()
  4222. wait(6)
  4223. u:Destroy()
  4224. u2:Destroy()
  4225. if Debounces.CanJoke == false then
  4226. Debounces.CanJoke = true
  4227. end
  4228. end
  4229. end
  4230. end)
  4231. ----------------------------------------------------
  4232. mouse.KeyDown:connect(function(key)
  4233. if key == "j" then
  4234. if Debounces.CanJoke == true then
  4235. Debounces.CanJoke = false
  4236. z = Instance.new("Sound",char)
  4237. z.SoundId = "rbxassetid://135017755"
  4238. z.Pitch = .76
  4239. z.Volume = 1
  4240. wait()
  4241. z:Play()
  4242. wait(6)
  4243. z:Destroy()
  4244. if Debounces.CanJoke == false then
  4245. Debounces.CanJoke = true
  4246. end
  4247. end
  4248. end
  4249. end)
  4250. ----------------------------------------------------
  4251. mouse.KeyDown:connect(function(key)
  4252. if key == "k" then
  4253. if Debounces.CanJoke == true then
  4254. Debounces.CanJoke = false
  4255. z = Instance.new("Sound",char)
  4256. z.SoundId = "rbxassetid://135017578"
  4257. z.Pitch = .76
  4258. z.Volume = 1
  4259. wait()
  4260. z:Play()
  4261. wait(4)
  4262. z:Destroy()
  4263. if Debounces.CanJoke == false then
  4264. Debounces.CanJoke = true
  4265. end
  4266. end
  4267. end
  4268. end)
  4269. ----------------------------------------------------
  4270. mouse.KeyDown:connect(function(key)
  4271. if key == "x" then
  4272. if Debounces.CanAttack == true then
  4273. Debounces.CanAttack = false
  4274. Debounces.NoIdl = true
  4275. Debounces.on = true
  4276. Debounces.ks = true
  4277. for i = 1, 10 do
  4278. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  4279. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2)
  4280. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4281. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4282. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4283. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2)
  4284. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4285. if Debounces.on == false then break end
  4286. rs:wait(1)
  4287. end
  4288. z = Instance.new("Sound",hed)
  4289. z.SoundId = "rbxassetid://169445092"
  4290. z.Volume = 1
  4291. wait(0.1)
  4292. z:Play()
  4293. kik = rleg.Touched:connect(function(ht)
  4294. hit = ht.Parent
  4295. if ht and hit:IsA("Model") then
  4296. if hit:FindFirstChild("Humanoid") then
  4297. if hit.Name ~= p.Name then
  4298. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4299. Debounces.Slashed = true]]--
  4300. if Debounces.ks==true then
  4301. z = Instance.new("Sound",hed)
  4302. z.SoundId = "rbxassetid://169380525"
  4303. z.Volume = 1
  4304. z:Play()
  4305. Debounces.ks=false
  4306. end
  4307. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4308. hit:FindFirstChild("Humanoid").PlatformStand = true
  4309. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4310. --Debounces.Slashed = false
  4311. --end
  4312. end
  4313. end
  4314. elseif ht and hit:IsA("Hat") then
  4315. if hit.Parent.Name ~= p.Name then
  4316. if hit.Parent:FindFirstChild("Humanoid") then
  4317. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4318. Debounces.Slashed = true]]--
  4319. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4320. hit:FindFirstChild("Humanoid").PlatformStand = true
  4321. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4322. --Debounces.Slashed = false
  4323. --end
  4324. end
  4325. end
  4326. end
  4327. end)
  4328. for i = 1, 8 do
  4329. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  4330. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  4331. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4332. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4333. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  4334. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3)
  4335. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4336. if Debounces.on == false then break end
  4337. rs:wait(.7)
  4338. end
  4339. kik:disconnect()
  4340. if Debounces.CanAttack == false then
  4341. Debounces.CanAttack = true
  4342. Debounces.on = false
  4343. Debounces.NoIdl = false
  4344. end
  4345. end
  4346. end
  4347. end)
  4348. ----------------------------------------------------
  4349. mouse.KeyDown:connect(function(key)
  4350. if key == "c" then
  4351. if Debounces.CanAttack == true then
  4352. Debounces.CanAttack = false
  4353. Debounces.NoIdl = true
  4354. Debounces.on = true
  4355. SIDZ = {"231917744", "231917742"}
  4356. PTZ = {0.7, 0.8, 0.9, 1}
  4357. for i = 1, 20 do
  4358. wait()
  4359. for i,v in pairs(char.Absolution:children()) do
  4360. if v:IsA("Part") or v:IsA("WedgePart") then
  4361. v.Transparency = v.Transparency + 0.05
  4362. end
  4363. end
  4364. end
  4365. function FindNearestTorso(Position,Distance,SinglePlayer)
  4366. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4367. local List = {}
  4368. for i,v in pairs(workspace:GetChildren())do
  4369. if v:IsA("Model")then
  4370. if v:findFirstChild("Torso")then
  4371. if v ~= char then
  4372. if(v.Torso.Position -Position).magnitude <= Distance then
  4373. table.insert(List,v)
  4374. end
  4375. end
  4376. end
  4377. end
  4378. end
  4379. return List
  4380. end
  4381. GroundPound()
  4382. for i = 1, 11 do
  4383. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4384. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4385. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4386. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4387. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4388. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4389. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4390. if Debounces.on == false then break end
  4391. rs:wait(1.4)
  4392. end
  4393. GroundPound()
  4394. for i = 1, 11 do
  4395. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4396. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4397. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4398. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4399. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4400. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4401. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4402. if Debounces.on == false then break end
  4403. rs:wait(1.4)
  4404. end
  4405. GroundPound()
  4406. for i = 1, 11 do
  4407. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4408. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4409. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4410. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4411. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4412. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4413. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4414. if Debounces.on == false then break end
  4415. rs:wait(1.4)
  4416. end
  4417. GroundPound()
  4418. for i = 1, 11 do
  4419. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4420. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4421. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4422. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4423. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4424. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4425. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4426. if Debounces.on == false then break end
  4427. rs:wait(1.4)
  4428. end
  4429. GroundPound()
  4430. for i = 1, 11 do
  4431. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4432. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4433. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4434. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4435. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4436. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4437. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4438. if Debounces.on == false then break end
  4439. rs:wait(1.4)
  4440. end
  4441. GroundPound()
  4442. for i = 1, 11 do
  4443. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4444. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4445. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4446. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4447. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4448. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4449. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4450. if Debounces.on == false then break end
  4451. rs:wait(1.4)
  4452. end
  4453. for i = 1, 24 do
  4454. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2)
  4455. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2)
  4456. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4457. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4458. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4459. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4460. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4461. if Debounces.on == false then break end
  4462. rs:wait(3)
  4463. end
  4464. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4465. if v:FindFirstChild('Humanoid') then
  4466. v.Humanoid:TakeDamage(math.random(999,999))
  4467. v.Humanoid.PlatformStand = true
  4468. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4469. end
  4470. end
  4471. x = Instance.new("Sound",char)
  4472. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4473. x.Pitch = PTZ[math.random(1,#PTZ)]
  4474. x.Volume = 1
  4475. wait(0.1)
  4476. x:Play()
  4477. Crater(hed,20)
  4478. for i = 1, 20 do
  4479. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  4480. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  4481. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4482. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4483. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4484. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4485. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4486. if Debounces.on == false then break end
  4487. rs:wait(2)
  4488. end
  4489. if Debounces.CanAttack == false then
  4490. Debounces.CanAttack = true
  4491. Debounces.on = false
  4492. Debounces.NoIdl = false
  4493. for i = 1, 20 do
  4494. wait()
  4495. for i,v in pairs(char.Absolution:children()) do
  4496. if v:IsA("Part") or v:IsA("WedgePart") then
  4497. v.Transparency = v.Transparency - 0.05
  4498. end
  4499. end
  4500. end
  4501. end
  4502. end
  4503. end
  4504. end)
  4505. ----------------------------------------------------176349813
  4506. mouse.KeyDown:connect(function(key)
  4507. if key == "b" then
  4508. hum.WalkSpeed = 0.01
  4509. if Debounces.CanAttack == true then
  4510. Debounces.CanAttack = false
  4511. Debounces.NoIdl = true
  4512. Debounces.on = true
  4513. for i = 1, 30 do
  4514. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4515. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4516. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4517. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4518. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4519. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4520. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4521. if Debounces.on == false then break end
  4522. rs:wait(6)
  4523. end
  4524. v = Instance.new("Sound")
  4525. v.SoundId = "rbxassetid://181384451"
  4526. v.Parent = char
  4527. v.Looped = false
  4528. v.Pitch = .94
  4529. v.Volume = 1
  4530. wait(.01)
  4531. v:Play()
  4532.  
  4533. if Daytime == true then
  4534. Daytime = false
  4535. l.TimeOfDay = 24
  4536. else
  4537. Daytime = true
  4538. l.TimeOfDay = 12
  4539. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4540. end
  4541.  
  4542. local Shockwave = function()
  4543. local rng1 = Instance.new("Part", char)
  4544. rng1.Anchored = true
  4545. rng1.BrickColor = BrickColor.new("Really black")
  4546. rng1.CanCollide = false
  4547. rng1.FormFactor = 3
  4548. rng1.Name = "Ring"
  4549. rng1.Size = Vector3.new(1, 1, 1)
  4550. rng1.Transparency = 0.35
  4551. rng1.TopSurface = 0
  4552. rng1.BottomSurface = 0
  4553. local rngm1 = Instance.new("SpecialMesh", rng)
  4554. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4555. rngm1.Scale = Vector3.new(10, 10, 1)
  4556. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4557. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4558. Wave.Name = "Shockwave"
  4559. Wave.BrickColor = BrickColor.new("Really black")
  4560. Wave.Size = Vector3.new(1, 1, 1)
  4561. Wave.Shape = "Ball"
  4562. Wave.CanCollide = false
  4563. Wave.Anchored = true
  4564. Wave.TopSurface = 0
  4565. Wave.BottomSurface = 0
  4566. Wave.Touched:connect(function(hit)
  4567. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4568. local Occlude = true
  4569. local NotOccludes = {
  4570. char.Name;
  4571. "Wings";
  4572. "Scythe";
  4573. "Thingy";
  4574. "Thingy2"; -- put all of the names in a table pls
  4575. }
  4576. for i,v in pairs(NotOccludes) do
  4577. if hit.Parent.Name == v then
  4578. Occlude = false
  4579. end
  4580. end
  4581. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4582. if Occlude then
  4583. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4584. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4585. end
  4586. end
  4587. end)
  4588.  
  4589. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4590.  
  4591. coroutine.wrap(function()
  4592. for i = 1, 20, 0.2 do
  4593. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4594. rng1.Transparency = i/20
  4595. wait()
  4596. end
  4597. wait()
  4598. rng1:Destroy()
  4599. end)()
  4600.  
  4601. Delay(0, function()
  4602.  
  4603. if Daytime == false then
  4604. for i = 1, 50, 1 do
  4605. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4606. Wave.CFrame = char.Torso.CFrame
  4607. local t = i / 50
  4608. Wave.Transparency = t
  4609. wait()
  4610. end
  4611. else
  4612. for i = 1, 50, 1 do
  4613. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4614. Wave.CFrame = char.Torso.CFrame
  4615. local t = i / 50
  4616. Wave.Transparency = t
  4617. wait()
  4618. end
  4619. end
  4620. Wave:Destroy()
  4621. end)
  4622. Delay(0, function()
  4623. while wait() do
  4624. if Wave ~= nil then
  4625. Wave.CFrame = char.Torso.CFrame
  4626. else
  4627. break
  4628. end
  4629. end
  4630. end)
  4631. end
  4632. Shockwave()
  4633. for i = 1, 30 do
  4634. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4635. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4636. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4637. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4638. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4639. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4640. if Debounces.on == false then break end
  4641. rs:wait()
  4642. end
  4643. wait(2.4)
  4644. Debounces.NoIdl = false
  4645. hum.WalkSpeed = 5
  4646. Debounces.on = false
  4647. wait()
  4648. if Debounces.CanAttack == false then
  4649. Debounces.CanAttack = true
  4650. v:Destroy()
  4651. end
  4652. end
  4653. end
  4654. end)
  4655. ----------------------------------------------------
  4656. mouse.KeyDown:connect(function(key)
  4657. if key == "l" then
  4658. for i = 1, 20 do
  4659. wait()
  4660. for i,v in pairs(char.Absolution:children()) do
  4661. if v:IsA("Part") or v:IsA("WedgePart") then
  4662. v.Transparency = v.Transparency + 0.05
  4663. end
  4664. end
  4665. end
  4666. if Debounces.CanAttack == true then
  4667. Debounces.CanAttack = false
  4668. Debounces.NoIdl = true
  4669. Debounces.on = true
  4670. bv = Instance.new("BodyVelocity",torso)
  4671. bv.maxForce = Vector3.new(0,200000,0)
  4672. bv.P = 100000
  4673. bv.velocity = Vector3.new(0,500,0)
  4674. wait(2)
  4675. bv:Destroy()
  4676. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4677. for i = 1, 20 do
  4678. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  4679. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4680. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  4681. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  4682. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4683. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4684. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4685. if Debounces.on == false then break end
  4686. wait()
  4687. end
  4688. for i = 1, 360, 20 do wait()
  4689. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4690. end
  4691. end
  4692. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4693. local ry,ht,ps=nil,nil,nil
  4694. while ht==nil do
  4695. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4696. wait()
  4697. end
  4698. z = Instance.new("Sound",char)
  4699. z.SoundId = "rbxassetid://245537790"
  4700. z.Pitch = 1
  4701. z.Volume = 1
  4702. wait(0.1)
  4703. z:Play()
  4704. local sp = Instance.new("Part", char)
  4705. sp.Name = "Energy"
  4706. sp.BrickColor = BrickColor.new("Really black")
  4707. sp.Size = Vector3.new(1, 1, 1)
  4708. sp.Shape = "Ball"
  4709. sp.CanCollide = false
  4710. sp.Anchored = true
  4711. sp.TopSurface = 0
  4712. sp.BottomSurface = 0
  4713. local spm = Instance.new("SpecialMesh",sp)
  4714. spm.MeshId = "rbxassetid://9982590"
  4715. spm.Scale = Vector3.new(3,3,3)
  4716. local sp2 = Instance.new("Part", char)
  4717. sp2.Name = "Energy2"
  4718. sp2.BrickColor = BrickColor.new("Really black")
  4719. sp2.Size = Vector3.new(1, 1, 1)
  4720. sp2.Shape = "Ball"
  4721. sp2.CanCollide = false
  4722. sp2.Anchored = true
  4723. sp2.TopSurface = 0
  4724. sp2.BottomSurface = 0
  4725. local spm2 = Instance.new("SpecialMesh",sp2)
  4726. spm2.MeshId = "rbxassetid://9982590"
  4727. spm2.Scale = Vector3.new(3,3,3)
  4728. sp.Touched:connect(function(hit)
  4729. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4730. local Occlude = true
  4731. local NotOccludes = {
  4732. char.Name;
  4733. "Wings";
  4734. "Scythe";
  4735. "Thingy";
  4736. "Thingy2"; -- put all of the names in a table pls
  4737. }
  4738. for i,v in pairs(NotOccludes) do
  4739. if hit.Parent.Name == v then
  4740. Occlude = false
  4741. end
  4742. end
  4743. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4744. if Occlude then
  4745. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4746. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4747. end
  4748. end
  4749. end)
  4750. sp2.Touched:connect(function(hit)
  4751. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4752. local Occlude = true
  4753. local NotOccludes = {
  4754. char.Name;
  4755. "Wings";
  4756. "Scythe";
  4757. "Thingy";
  4758. "Thingy2"; -- put all of the names in a table pls
  4759. }
  4760. for i,v in pairs(NotOccludes) do
  4761. if hit.Parent.Name == v then
  4762. Occlude = false
  4763. end
  4764. end
  4765. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4766. if Occlude then
  4767. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4768. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4769. end
  4770. end
  4771. end)
  4772. for i = 1, 100, 1 do
  4773. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4774. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4775. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4776. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4777. spm.Scale = sp.Size
  4778. spm2.Scale = sp2.Size
  4779. local t = i / 100
  4780. sp.Transparency = t
  4781. sp2.Transparency = t
  4782. wait()
  4783. end
  4784. sp:Destroy()
  4785. sp2:Destroy()
  4786. z:Destroy()
  4787. for i = 1, 20 do
  4788. wait()
  4789. for i,v in pairs(char.Absolution:children()) do
  4790. if v:IsA("Part") or v:IsA("WedgePart") then
  4791. v.Transparency = v.Transparency - 0.05
  4792. end
  4793. end
  4794. end
  4795. if Debounces.CanAttack == false then
  4796. Debounces.CanAttack = true
  4797. Debounces.NoIdl = false
  4798. Debounces.on = false
  4799. end
  4800. end
  4801. end
  4802. end)
  4803. ----------------------------------------------------
  4804. local orbt={}
  4805. local stlt={}
  4806. local chot={}
  4807. local cfxt={}
  4808. local pfxt={}
  4809. local cns=0
  4810. local cnOrb=nil
  4811. mouse.KeyDown:connect(function(key)
  4812. if key == "u" then
  4813. if Debounces.CanAttack == true then
  4814. Debounces.CanAttack = false
  4815. Debounces.NoIdl = true
  4816. Debounces.on = true
  4817. orbt={}
  4818. stlt={}
  4819. chot={}
  4820. cfxt={}
  4821. for i = 1, 20 do
  4822. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  4823. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  4824. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4825. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4826. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  4827. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  4828. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4829. if Debounces.on == false then end
  4830. rs:wait()
  4831. end
  4832. z = Instance.new("Sound",char)
  4833. z.SoundId = "rbxassetid://170053944"
  4834. z.Pitch = 1.07
  4835. z.Volume = 1
  4836. wait(0.1)
  4837. z:Play()
  4838. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4839. debris:AddItem(cnOrb,50)
  4840. cnOrb.Mesh.MeshType=3
  4841. table.insert(orbt,cnOrb)
  4842. table.insert(stlt,cnOrb)
  4843. local nt=0
  4844. for i=0,5,0.02 do
  4845. nt=nt+1
  4846. cns=i
  4847. if nt>=2 then
  4848. nt=0
  4849. local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really black")
  4850. debris:AddItem(cho,1)
  4851. cho.Mesh.MeshType=3
  4852. table.insert(chot,cho)
  4853. end
  4854. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4855. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4856. wait()
  4857. end
  4858. for i = 1, 14 do
  4859. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  4860. if Debounces.on == false then end
  4861. rs:wait()
  4862. end
  4863. coroutine.wrap(function()
  4864. for i = 1, 20 do
  4865. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  4866. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  4867. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4868. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4869. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  4870. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  4871. if Debounces.on == false then end
  4872. rs:wait()
  4873. end
  4874. end)()
  4875. wait(0.1)
  4876. stlt={}
  4877. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  4878. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4879. local nt=0
  4880. for i=0,160,3 do
  4881. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4882. nt=nt+1
  4883. if nt>=6 then
  4884. nt=0
  4885. local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
  4886. cfx.Mesh.MeshId="rbxassetid://20329976"
  4887. cfx.Transparency=0.4
  4888. table.insert(cfxt,cfx)
  4889. debris:AddItem(cfx,1)
  4890. end
  4891. if (cnOrb.Position-ps).magnitude<6 then
  4892. break
  4893. end
  4894. wait()
  4895. end
  4896. orbt={}
  4897.  
  4898. for i=0,1,0.1 do
  4899. local cs=cnOrb.Mesh.Scale
  4900. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4901. wait()
  4902. end
  4903. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4904. ofx.Transparency=0.5
  4905. ofx.Mesh.MeshType=3
  4906. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4907. for _,v in pairs(game:service"Players":GetChildren()) do
  4908. pcall(function()
  4909. for _,c in pairs(v.Character:GetChildren()) do
  4910. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then
  4911. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4912. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4913. end
  4914. end
  4915. end)
  4916. end
  4917. for i=0,1,0.05 do
  4918. local cs=cnOrb.Mesh.Scale
  4919. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4920. local ofs=ofx.Mesh.Scale
  4921. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4922. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4923. wait()
  4924. end
  4925. ofx:Destroy()
  4926. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4927. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4928. cnfx.Mesh.MeshType=3
  4929. cnOrb.Transparency=0.05
  4930. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4931. cnr.Mesh.MeshType=3
  4932. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4933. rn1.Transparency=1
  4934. rn1.Mesh.MeshId="rbxassetid://3270017"
  4935. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4936. rn2.Transparency=1
  4937. rn2.Mesh.MeshId="rbxassetid://3270017"
  4938. local nt=0
  4939. local cs=nil
  4940. for i=0,1,0.05 do
  4941. cs=cnOrb.Mesh.Scale
  4942. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4943. local fs=cnfx.Mesh.Scale
  4944. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4945. cnfx.Transparency=cnfx.Transparency+0.05
  4946. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4947. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4948. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4949. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4950. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4951. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4952. local rs=cnr.Mesh.Scale
  4953. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4954. nt=nt+1
  4955. if nt>=6 then
  4956. local pls={}
  4957. for _,v in pairs(game.Players:GetChildren()) do
  4958. table.insert(pls,v)
  4959. end
  4960. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4961. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4962. pffx.Mesh.MeshId="rbxassetid://20329976"
  4963. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  4964. debris:AddItem(pffx,2)
  4965. table.insert(pfxt,pffx)
  4966. nt=0
  4967. end
  4968. wait()
  4969. end
  4970. local int=0
  4971. coroutine.wrap(function()
  4972. for i=1,500 do
  4973. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4974. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4975. nt=nt+1
  4976. int=int+1
  4977. local htd={p}
  4978. for _,v in pairs(game:service"Players":GetChildren()) do
  4979. pcall(function()
  4980. for _,c in pairs(v.Character:GetChildren()) do
  4981. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4982. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  4983. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  4984. table.insert(htd,v)
  4985. end
  4986. end
  4987. end)
  4988. end
  4989. htd={p}
  4990. if int>=6 then
  4991. for _,v in pairs(game:service"Players":GetChildren()) do
  4992. pcall(function()
  4993. for _,c in pairs(v.Character:GetChildren()) do
  4994. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4995. table.insert(htd,v)
  4996. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black")
  4997. hfx.Mesh.Scale=Vector3.new(2,2,2)
  4998. hfx.Mesh.MeshType=3
  4999. debris:AddItem(hfx,2)
  5000. coroutine.wrap(function()
  5001. pcall(function()
  5002. for i=0,1,0.05 do
  5003. pcall(function()
  5004. local hs=hfx.Mesh.Scale
  5005. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5006. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5007. end)
  5008. wait()
  5009. end
  5010. hfx:Destroy()
  5011. end)
  5012. end)()
  5013. end
  5014. end
  5015. end)
  5016. end
  5017. int=0
  5018. end
  5019. if nt>=4 then
  5020. local pls={}
  5021. for _,v in pairs(game.Players:GetChildren()) do
  5022. table.insert(pls,v)
  5023. end
  5024. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5025. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5026. pffx.Transparency=0.4
  5027. pffx.Mesh.MeshId="rbxassetid://20329976"
  5028. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5029. debris:AddItem(pffx,2)
  5030. table.insert(pfxt,pffx)
  5031. nt=0
  5032. end
  5033. wait()
  5034. end
  5035. cnOrb:Destroy()
  5036. cnfx:Destroy()
  5037. for _,v in pairs(mod3:GetChildren()) do
  5038. v:Destroy()
  5039. end
  5040. orbt={}
  5041. stlt={}
  5042. chot={}
  5043. cfxt={}
  5044. pfxt={}
  5045. end)()
  5046. if Debounces.CanAttack == false then
  5047. Debounces.CanAttack = true
  5048. Debounces.NoIdl = false
  5049. Debounces.on = false
  5050. end
  5051. end
  5052. end
  5053. end)
  5054. ----------------------------------------------------
  5055. mouse.KeyDown:connect(function(key)
  5056. if key == "m" then
  5057. if Debounces.CanAttack == true then
  5058. Debounces.CanAttack = false
  5059. Debounces.on = true
  5060. Debounces.NoIdl = true
  5061. --[[x = Instance.new("Sound",char)
  5062. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5063. x.Looped = false
  5064. x.Pitch = 1.1
  5065. x.Volume = 1
  5066. x:Play()
  5067. x2 = Instance.new("Sound",char)
  5068. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5069. x2.Looped = false
  5070. x2.Pitch = .7
  5071. x2.Volume = 1
  5072. wait(.1)
  5073. x:Play()
  5074. x2:Play()
  5075. for i = 1, 20 do
  5076. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  5077. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  5078. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  5079. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  5080. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  5081. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  5082. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  5083. if Debounces.on == false then break end
  5084. wait()
  5085. x:Destroy()
  5086. x2:Destroy()
  5087. end
  5088. wait(1)]]--
  5089. local rng = Instance.new("Part", char)
  5090. rng.Anchored = true
  5091. rng.BrickColor = BrickColor.new("Really black")
  5092. rng.CanCollide = false
  5093. rng.FormFactor = 3
  5094. rng.Name = "Ring"
  5095. rng.Size = Vector3.new(1, 1, 1)
  5096. rng.Transparency = 0.35
  5097. rng.TopSurface = 0
  5098. rng.BottomSurface = 0
  5099. rng.Position = torso.Position - Vector3.new(0,5,0)
  5100. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5101. local rngm = Instance.new("SpecialMesh", rng)
  5102. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5103. rngm.Scale = Vector3.new(1, 1, 2)
  5104. x = Instance.new("Sound",char)
  5105. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5106. x.Looped = false
  5107. x.Pitch = .7
  5108. x.Volume = 1
  5109. x:Play()
  5110. coroutine.wrap(function()
  5111. for i = 1, 60, 2 do
  5112. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5113. rng.Transparency = i/60
  5114. wait()
  5115. end
  5116. wait()
  5117. rng:Destroy()
  5118. end)()
  5119. hum.WalkSpeed = 100
  5120. BV = Instance.new("BodyVelocity", torso)
  5121. BV.maxForce = Vector3.new(0,200000,0)
  5122. BV.P = 240000
  5123. BV.velocity = Vector3.new(0,700,0)
  5124. for i = 1, 20 do
  5125. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  5126. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  5127. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5128. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  5129. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5130. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5131. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5132. if Debounces.on == false then break end
  5133. wait()
  5134. end
  5135. x:Destroy()
  5136. BV:Destroy()
  5137. --[[for i = 1, 30 doc
  5138. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  5139. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  5140. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  5141. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  5142. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5143. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5144. if Debounces.on == false then break end
  5145. wait()
  5146. end]]--
  5147. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5148. for i = 1, 30 do
  5149. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  5150. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  5151. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  5152. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  5153. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  5154. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  5155. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5156. if Debounces.on == false then break end
  5157. wait()
  5158. end
  5159. end
  5160. Debounces.on = false
  5161. Debounces.NoIdl = false
  5162. local ry,ht,ps=nil,nil,nil
  5163. while ht==nil do
  5164. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5165. wait()
  5166. end
  5167. z = Instance.new("Sound",char)
  5168. z.SoundId = "rbxassetid://142070127"
  5169. z.Volume = 1
  5170. wait(.1)
  5171. z:Play()
  5172. Landing()
  5173. hum.WalkSpeed = 8
  5174. if Debounces.CanAttack == false then
  5175. Debounces.CanAttack = true
  5176. end
  5177. end
  5178. end
  5179. end)
  5180. ----------------------------------------------------
  5181. Grab = false
  5182. mouse.KeyDown:connect(function(key)
  5183. if key == "z" then
  5184. Debounces.on = true
  5185. Debounces.NoIdl = true
  5186. if Grab == false then
  5187. gp = nil
  5188. con1=larm.Touched:connect(function(hit) -- this is grab
  5189. ht = hit.Parent
  5190. hum1=ht:FindFirstChild('Humanoid')
  5191. if hum1 ~= nil then
  5192. hum1.PlatformStand=true
  5193. gp = ht
  5194. Grab = true
  5195. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5196. asd.Parent = larm
  5197. asd.Name = "asd"
  5198. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5199. con1:disconnect()
  5200. elseif hum1 ~= nil then
  5201. con1:disconnect()
  5202. wait() return
  5203. end
  5204. end)
  5205. for i = 1, 18 do
  5206. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  5207. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  5208. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5209. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5210. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  5211. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  5212. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  5213. if Debounces.on == false then break end
  5214. wait()
  5215. end
  5216. con1:disconnect()
  5217. Debounces.on = false
  5218. Debounces.NoIdl = false
  5219. elseif Grab == true then
  5220. Grab = false
  5221. for i = 1, 20 do
  5222. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  5223. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  5224. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5225. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5226. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5227. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5228. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5229. if Debounces.on == false then end
  5230. wait()
  5231. end
  5232. if gp ~= nil then
  5233. for i,v in pairs(larm:GetChildren()) do
  5234. if v.Name == "asd" and v:IsA("Weld") then
  5235. v:Remove()
  5236. end
  5237. end
  5238. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5239. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5240. bv.P = 125000
  5241. bv.velocity = char.Head.CFrame.lookVector * 200
  5242. for i = 1, 12 do
  5243. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  5244. if Debounces.on == false then end
  5245. wait()
  5246. end--
  5247. ht=nil
  5248. Spawn(function()
  5249. wait(0.5)
  5250. bv:Destroy()
  5251. end)
  5252. Debounces.on = false
  5253. Debounces.NoIdl = false
  5254. elseif ht == nil then wait()
  5255. Grab = false
  5256. Debounces.on = false
  5257. Debounces.NoIdl = false
  5258. end
  5259. end
  5260. end
  5261. end)
  5262. ----------------------------------------------------
  5263. mouse.KeyDown:connect(function(key)
  5264. if string.byte(key) == 52 then
  5265. char.Humanoid.WalkSpeed = 21
  5266. end
  5267. end)
  5268. mouse.KeyUp:connect(function(key)
  5269. if string.byte(key) == 52 then
  5270. char.Humanoid.WalkSpeed = 5
  5271. end
  5272. end)
  5273. ----------------------------------------------------
  5274. Change = false
  5275. mouse.KeyDown:connect(function(key)
  5276. if key == "n" then
  5277. if Change == false then
  5278. Change = true
  5279. stanceToggle = "Normal2"
  5280. elseif Change == true then
  5281. Change = false
  5282. stanceToggle = "Normal"
  5283. end
  5284. end
  5285. end)
  5286. ----------------------------------------------------
  5287. local animpose = "Idle"
  5288. local lastanimpose = "Idle"
  5289. local sine = 0
  5290. local change = 1
  5291. local val = 0
  5292. local ffing = false
  5293. local och = 0
  5294. ----------------------------------------------------
  5295. game:GetService("RunService").RenderStepped:connect(function()
  5296. --[[if char.Humanoid.Jump == true then
  5297. jump = true
  5298. else
  5299. jump = false
  5300. end]]
  5301. char.Humanoid.FreeFalling:connect(function(f)
  5302. if f then
  5303. ffing = true
  5304. else
  5305. ffing = false
  5306. end
  5307. end)
  5308. sine = sine + change
  5309. if jumpn == true then
  5310. animpose = "Jumping"
  5311. elseif ffing == true then
  5312. animpose = "Freefalling"
  5313. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5314. animpose = "Idle"
  5315. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5316. animpose = "Walking"
  5317. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5318. animpose = "Running"
  5319. end
  5320. if animpose ~= lastanimpose then
  5321. sine = 0
  5322. if Debounces.NoIdl == false then
  5323. if animpose == "Idle" then
  5324. for i = 1, 2 do
  5325. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  5326. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  5327. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5328. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5329. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5330. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5331. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5332. end
  5333. elseif animpose == "Walking" then
  5334. for i = 1, 2 do
  5335. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  5336. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5337. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  5338. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5339. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5340. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5341. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5342. end
  5343. elseif animpose == "Running" then
  5344. for i = 1, 2 do
  5345. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  5346. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  5347. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  5348. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5349. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  5350. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  5351. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5352. end
  5353. rs:wait(2)
  5354. end
  5355. else
  5356. end
  5357. end
  5358. lastanimpose = animpose
  5359. if Debounces.NoIdl == false then
  5360. if animpose == "Idle" then
  5361. if stanceToggle == "Normal" then
  5362. change = 0.5
  5363. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  5364. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5365. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  5366. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5367. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  5368. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  5369. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5370. elseif stanceToggle == "Sitting" then
  5371. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  5372. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  5373. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  5374. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  5375. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  5376. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  5377. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5378. elseif stanceToggle == "Normal2" then
  5379. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  5380. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5381. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  5382. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5383. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  5384. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  5385. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5386. end
  5387. elseif animpose == "Walking" then
  5388. if stanceToggle == "Normal" then
  5389. change = 1
  5390. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  5391. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  5392. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  5393. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  5394. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5395. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5396. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5397. elseif stanceToggle == "Normal2" then
  5398. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  5399. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  5400. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  5401. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  5402. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  5403. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  5404. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5405. end
  5406. elseif animpose == "Running" then
  5407. change = 1
  5408. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  5409. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  5410. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  5411. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5412. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  5413. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  5414. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5415. end
  5416. end
  5417. och=och+1
  5418. for _,v in pairs(orbt) do
  5419. pcall(function()
  5420. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  5421. end)
  5422. end
  5423. for _,v in pairs(stlt) do
  5424. pcall(function()
  5425. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5426. end)
  5427. end
  5428. for _,v in pairs(chot) do
  5429. pcall(function()
  5430. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5431. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  5432. end)
  5433. end
  5434. for _,v in pairs(cfxt) do
  5435. pcall(function()
  5436. local vs=v.Mesh.Scale
  5437. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5438. v.Transparency=v.Transparency+0.05
  5439. end)
  5440. end
  5441. for _,v in pairs(pfxt) do
  5442. pcall(function()
  5443. local vs=v.Mesh.Scale
  5444. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5445. v.Transparency=v.Transparency+0.025
  5446. end)
  5447. end
  5448. end)
  5449. --N3xul Animated Sky
  5450. local runDummyScript = function(f,scri)
  5451. local oldenv = getfenv(f)
  5452. local newenv = setmetatable({}, {
  5453. __index = function(_, k)
  5454. if k:lower() == 'script' then
  5455. return scri
  5456. else
  5457. return oldenv[k]
  5458. end
  5459. end
  5460. })
  5461. setfenv(f, newenv)
  5462. ypcall(function() f() end)
  5463. end
  5464. cors = {}
  5465. mas = Instance.new("Model",game:GetService("Lighting"))
  5466. mas.Name = "CompiledModel"
  5467. o1 = Instance.new("Model")
  5468. o2 = Instance.new("Model")
  5469. o3 = Instance.new("Part")
  5470. o4 = Instance.new("SpecialMesh")
  5471. o5 = Instance.new("Part")
  5472. o6 = Instance.new("SpecialMesh")
  5473. o7 = Instance.new("Part")
  5474. o8 = Instance.new("SpecialMesh")
  5475. o9 = Instance.new("Part")
  5476. o10 = Instance.new("SpecialMesh")
  5477. o11 = Instance.new("Part")
  5478. o12 = Instance.new("SpecialMesh")
  5479. o13 = Instance.new("Part")
  5480. o14 = Instance.new("SpecialMesh")
  5481. o15 = Instance.new("Part")
  5482. o16 = Instance.new("SpecialMesh")
  5483. o17 = Instance.new("Part")
  5484. o18 = Instance.new("SpecialMesh")
  5485. o19 = Instance.new("Part")
  5486. o20 = Instance.new("SpecialMesh")
  5487. o21 = Instance.new("Part")
  5488. o22 = Instance.new("SpecialMesh")
  5489. o23 = Instance.new("Part")
  5490. o24 = Instance.new("SpecialMesh")
  5491. o25 = Instance.new("Part")
  5492. o26 = Instance.new("SpecialMesh")
  5493. o27 = Instance.new("Part")
  5494. o28 = Instance.new("SpecialMesh")
  5495. o29 = Instance.new("Part")
  5496. o30 = Instance.new("SpecialMesh")
  5497. o31 = Instance.new("Part")
  5498. o32 = Instance.new("SpecialMesh")
  5499. o33 = Instance.new("Part")
  5500. o34 = Instance.new("SpecialMesh")
  5501. o35 = Instance.new("Part")
  5502. o36 = Instance.new("SpecialMesh")
  5503. o37 = Instance.new("Part")
  5504. o38 = Instance.new("SpecialMesh")
  5505. o39 = Instance.new("Part")
  5506. o40 = Instance.new("SpecialMesh")
  5507. o41 = Instance.new("Part")
  5508. o42 = Instance.new("SpecialMesh")
  5509. o43 = Instance.new("Part")
  5510. o44 = Instance.new("SpecialMesh")
  5511. o45 = Instance.new("Part")
  5512. o46 = Instance.new("SpecialMesh")
  5513. o47 = Instance.new("Part")
  5514. o48 = Instance.new("SpecialMesh")
  5515. o49 = Instance.new("Part")
  5516. o50 = Instance.new("SpecialMesh")
  5517. o51 = Instance.new("Part")
  5518. o52 = Instance.new("SpecialMesh")
  5519. o53 = Instance.new("Part")
  5520. o54 = Instance.new("SpecialMesh")
  5521. o55 = Instance.new("Part")
  5522. o56 = Instance.new("SpecialMesh")
  5523. o57 = Instance.new("Part")
  5524. o58 = Instance.new("SpecialMesh")
  5525. o59 = Instance.new("Part")
  5526. o60 = Instance.new("SpecialMesh")
  5527. o61 = Instance.new("Part")
  5528. o62 = Instance.new("SpecialMesh")
  5529. o63 = Instance.new("Part")
  5530. o64 = Instance.new("SpecialMesh")
  5531. o65 = Instance.new("Part")
  5532. o66 = Instance.new("SpecialMesh")
  5533. o67 = Instance.new("Script")
  5534. o1.Name = "$_N3xul Sky"
  5535. o1.Parent = mas
  5536. o2.Name = "SKY IS DA LIMIT"
  5537. o2.Parent = o1
  5538. o3.Name = "Brick"
  5539. o3.Parent = o2
  5540. o3.Material = Enum.Material.Neon
  5541. o3.BrickColor = BrickColor.new("Royal purple")
  5542. o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
  5543. o3.Rotation = Vector3.new(96.8799973, 29.4200001, 64.2200012)
  5544. o3.Anchored = true
  5545. o3.CanCollide = false
  5546. o3.Size = Vector3.new(1, 2.4000001, 1)
  5547. o3.CFrame = CFrame.new(3.5, 1.66253495, -1.5, 0.378833085, -0.784395874, 0.49113974, 0.104257114, -0.491143882, -0.864818215, 0.919577479, 0.378825694, -0.104285136)
  5548. o3.BottomSurface = Enum.SurfaceType.Smooth
  5549. o3.TopSurface = Enum.SurfaceType.Smooth
  5550. o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5551. o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
  5552. o3.Orientation = Vector3.new(59.8600006, 101.989998, 168.020004)
  5553. o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5554. o4.Parent = o3
  5555. o4.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5556. o4.Offset = Vector3.new(2, 2, 2)
  5557. o4.Scale = Vector3.new(1000, 1000, 1000)
  5558. o4.VertexColor = Vector3.new(0.300000012, 4, 9)
  5559. o4.MeshType = Enum.MeshType.FileMesh
  5560. o4.Scale = Vector3.new(1000, 1000, 1000)
  5561. o5.Name = "Brick"
  5562. o5.Parent = o2
  5563. o5.Material = Enum.Material.Neon
  5564. o5.BrickColor = BrickColor.new("Royal purple")
  5565. o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
  5566. o5.Rotation = Vector3.new(55.5499992, -81.6699982, 96.1299973)
  5567. o5.Anchored = true
  5568. o5.CanCollide = false
  5569. o5.Size = Vector3.new(1, 2.4000001, 1)
  5570. o5.CFrame = CFrame.new(3.618927, 3.53207898, -2.67700195, -0.0154758478, -0.144104496, -0.989441693, 0.649552941, 0.750867248, -0.119519472, 0.760160863, -0.644543171, 0.0819826573)
  5571. o5.BottomSurface = Enum.SurfaceType.Smooth
  5572. o5.TopSurface = Enum.SurfaceType.Smooth
  5573. o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5574. o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
  5575. o5.Orientation = Vector3.new(6.86000013, -85.2600021, 40.8600006)
  5576. o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5577. o6.Parent = o5
  5578. o6.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5579. o6.Offset = Vector3.new(2, 2, 2)
  5580. o6.Scale = Vector3.new(1000, 1000, 1000)
  5581. o6.VertexColor = Vector3.new(0.300000012, 4, 9)
  5582. o6.MeshType = Enum.MeshType.FileMesh
  5583. o6.Scale = Vector3.new(1000, 1000, 1000)
  5584. o7.Name = "Brick"
  5585. o7.Parent = o2
  5586. o7.Material = Enum.Material.Neon
  5587. o7.BrickColor = BrickColor.new("Royal purple")
  5588. o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
  5589. o7.Rotation = Vector3.new(60.2599983, -71.0599976, 96.9499969)
  5590. o7.Anchored = true
  5591. o7.CanCollide = false
  5592. o7.Size = Vector3.new(1, 2.4000001, 1)
  5593. o7.CFrame = CFrame.new(3.41925001, 3.46374989, -2.55004907, -0.0392630808, -0.322262198, -0.945838571, 0.591747701, 0.755236924, -0.281889617, 0.80517143, -0.570765078, 0.161043555)
  5594. o7.BottomSurface = Enum.SurfaceType.Smooth
  5595. o7.TopSurface = Enum.SurfaceType.Smooth
  5596. o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5597. o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
  5598. o7.Orientation = Vector3.new(16.3700008, -80.3399963, 38.0800018)
  5599. o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5600. o8.Parent = o7
  5601. o8.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5602. o8.Offset = Vector3.new(2, 2, 2)
  5603. o8.Scale = Vector3.new(1000, 1000, 1000)
  5604. o8.VertexColor = Vector3.new(0.300000012, 4, 9)
  5605. o8.MeshType = Enum.MeshType.FileMesh
  5606. o8.Scale = Vector3.new(1000, 1000, 1000)
  5607. o9.Name = "Brick"
  5608. o9.Parent = o2
  5609. o9.Material = Enum.Material.Neon
  5610. o9.BrickColor = BrickColor.new("Royal purple")
  5611. o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
  5612. o9.Rotation = Vector3.new(63.0400009, -60.4500008, 95.7099991)
  5613. o9.Anchored = true
  5614. o9.CanCollide = false
  5615. o9.Size = Vector3.new(1, 2.4000001, 1)
  5616. o9.CFrame = CFrame.new(3.24560499, 3.35655093, -2.41162109, -0.0490314811, -0.490668416, -0.86996752, 0.528260767, 0.726481915, -0.439518034, 0.847669482, -0.481119365, 0.223578453)
  5617. o9.BottomSurface = Enum.SurfaceType.Smooth
  5618. o9.TopSurface = Enum.SurfaceType.Smooth
  5619. o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5620. o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
  5621. o9.Orientation = Vector3.new(26.0699997, -75.5899963, 36.0200005)
  5622. o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5623. o10.Parent = o9
  5624. o10.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5625. o10.Offset = Vector3.new(2, 2, 2)
  5626. o10.Scale = Vector3.new(1000, 1000, 1000)
  5627. o10.VertexColor = Vector3.new(0.300000012, 4, 9)
  5628. o10.MeshType = Enum.MeshType.FileMesh
  5629. o10.Scale = Vector3.new(1000, 1000, 1000)
  5630. o11.Name = "Brick"
  5631. o11.Parent = o2
  5632. o11.Material = Enum.Material.Neon
  5633. o11.BrickColor = BrickColor.new("Royal purple")
  5634. o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
  5635. o11.Rotation = Vector3.new(84.7699966, 11.3299999, 76.1299973)
  5636. o11.Anchored = true
  5637. o11.CanCollide = false
  5638. o11.Size = Vector3.new(1, 2.4000001, 1)
  5639. o11.CFrame = CFrame.new(3.16018701, 2.01041889, -1.56359899, 0.234984711, -0.951925099, 0.196545079, 0.135413677, -0.168172807, -0.976414025, 0.962523997, 0.256055504, 0.0893825442)
  5640. o11.BottomSurface = Enum.SurfaceType.Smooth
  5641. o11.TopSurface = Enum.SurfaceType.Smooth
  5642. o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5643. o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
  5644. o11.Orientation = Vector3.new(77.5299988, 65.5500031, 141.160004)
  5645. o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5646. o12.Parent = o11
  5647. o12.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5648. o12.Offset = Vector3.new(2, 2, 2)
  5649. o12.Scale = Vector3.new(1000, 1000, 1000)
  5650. o12.VertexColor = Vector3.new(0.300000012, 4, 9)
  5651. o12.MeshType = Enum.MeshType.FileMesh
  5652. o12.Scale = Vector3.new(1000, 1000, 1000)
  5653. o13.Name = "Brick"
  5654. o13.Parent = o2
  5655. o13.Material = Enum.Material.Neon
  5656. o13.BrickColor = BrickColor.new("Royal purple")
  5657. o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
  5658. o13.Rotation = Vector3.new(90.1399994, 20.6700001, 70.8600006)
  5659. o13.Anchored = true
  5660. o13.CanCollide = false
  5661. o13.Size = Vector3.new(1, 2.4000001, 1)
  5662. o13.CFrame = CFrame.new(3.31469703, 1.82450104, -1.51757801, 0.306727529, -0.883943498, 0.352943659, 0.113343202, -0.334257245, -0.935642958, 0.945028484, 0.32698974, -0.00233911769)
  5663. o13.BottomSurface = Enum.SurfaceType.Smooth
  5664. o13.TopSurface = Enum.SurfaceType.Smooth
  5665. o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5666. o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
  5667. o13.Orientation = Vector3.new(69.3300018, 90.3799973, 161.270004)
  5668. o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5669. o14.Parent = o13
  5670. o14.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5671. o14.Offset = Vector3.new(2, 2, 2)
  5672. o14.Scale = Vector3.new(1000, 1000, 1000)
  5673. o14.VertexColor = Vector3.new(0.300000012, 4, 9)
  5674. o14.MeshType = Enum.MeshType.FileMesh
  5675. o14.Scale = Vector3.new(1000, 1000, 1000)
  5676. o15.Name = "Brick"
  5677. o15.Parent = o2
  5678. o15.Material = Enum.Material.Neon
  5679. o15.BrickColor = BrickColor.new("Royal purple")
  5680. o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
  5681. o15.Rotation = Vector3.new(160.410004, 49.5999985, 1.05999994)
  5682. o15.Anchored = true
  5683. o15.CanCollide = false
  5684. o15.Size = Vector3.new(1, 2.4000001, 1)
  5685. o15.CFrame = CFrame.new(4.57440186, 1.39447999, -1.79949903, 0.64802295, -0.0120393187, 0.761527359, 0.237799332, -0.946695745, -0.217319146, 0.7235502, 0.321917951, -0.610618293)
  5686. o15.BottomSurface = Enum.SurfaceType.Smooth
  5687. o15.TopSurface = Enum.SurfaceType.Smooth
  5688. o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5689. o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
  5690. o15.Orientation = Vector3.new(12.5500002, 128.720001, 165.899994)
  5691. o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5692. o16.Parent = o15
  5693. o16.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5694. o16.Offset = Vector3.new(2, 2, 2)
  5695. o16.Scale = Vector3.new(1000, 1000, 1000)
  5696. o16.VertexColor = Vector3.new(0.300000012, 4, 9)
  5697. o16.MeshType = Enum.MeshType.FileMesh
  5698. o16.Scale = Vector3.new(1000, 1000, 1000)
  5699. o17.Name = "Brick"
  5700. o17.Parent = o2
  5701. o17.Material = Enum.Material.Neon
  5702. o17.BrickColor = BrickColor.new("Royal purple")
  5703. o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
  5704. o17.Rotation = Vector3.new(70.6100006, -28.9300003, 89.6299973)
  5705. o17.Anchored = true
  5706. o17.CanCollide = false
  5707. o17.Size = Vector3.new(1, 2.4000001, 1)
  5708. o17.CFrame = CFrame.new(2.94677711, 2.85119104, -1.97851598, 0.00562491454, -0.875205159, -0.483721107, 0.328991413, 0.458422065, -0.825601816, 0.944317937, -0.154494658, 0.290510803)
  5709. o17.BottomSurface = Enum.SurfaceType.Smooth
  5710. o17.TopSurface = Enum.SurfaceType.Smooth
  5711. o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5712. o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
  5713. o17.Orientation = Vector3.new(55.6500015, -59.0099983, 35.6699982)
  5714. o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5715. o18.Parent = o17
  5716. o18.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5717. o18.Offset = Vector3.new(2, 2, 2)
  5718. o18.Scale = Vector3.new(1000, 1000, 1000)
  5719. o18.VertexColor = Vector3.new(0.300000012, 4, 9)
  5720. o18.MeshType = Enum.MeshType.FileMesh
  5721. o18.Scale = Vector3.new(1000, 1000, 1000)
  5722. o19.Name = "Brick"
  5723. o19.Parent = o2
  5724. o19.Material = Enum.Material.Neon
  5725. o19.BrickColor = BrickColor.new("Royal purple")
  5726. o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
  5727. o19.Rotation = Vector3.new(68, -39.3699989, 91.9400024)
  5728. o19.Anchored = true
  5729. o19.CanCollide = false
  5730. o19.Size = Vector3.new(1, 2.4000001, 1)
  5731. o19.CFrame = CFrame.new(3.00463891, 3.044065, -2.12027001, -0.0261950977, -0.772609949, -0.634342492, 0.394283026, 0.575135231, -0.716777742, 0.918619871, -0.26888746, 0.289558738)
  5732. o19.BottomSurface = Enum.SurfaceType.Smooth
  5733. o19.TopSurface = Enum.SurfaceType.Smooth
  5734. o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5735. o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
  5736. o19.Orientation = Vector3.new(45.7900009, -65.4599991, 34.4300003)
  5737. o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5738. o20.Parent = o19
  5739. o20.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5740. o20.Offset = Vector3.new(2, 2, 2)
  5741. o20.Scale = Vector3.new(1000, 1000, 1000)
  5742. o20.VertexColor = Vector3.new(0.300000012, 4, 9)
  5743. o20.MeshType = Enum.MeshType.FileMesh
  5744. o20.Scale = Vector3.new(1000, 1000, 1000)
  5745. o21.Name = "Brick"
  5746. o21.Parent = o2
  5747. o21.Material = Enum.Material.Neon
  5748. o21.BrickColor = BrickColor.new("Royal purple")
  5749. o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
  5750. o21.Rotation = Vector3.new(65.5299988, -49.8899994, 93.9800034)
  5751. o21.Anchored = true
  5752. o21.CanCollide = false
  5753. o21.Size = Vector3.new(1, 2.4000001, 1)
  5754. o21.CFrame = CFrame.new(3.10595703, 3.21490192, -2.26617408, -0.0446844138, -0.642767787, -0.764757931, 0.46155408, 0.665641308, -0.586429715, 0.88599056, -0.37918207, 0.26692614)
  5755. o21.BottomSurface = Enum.SurfaceType.Smooth
  5756. o21.TopSurface = Enum.SurfaceType.Smooth
  5757. o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5758. o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
  5759. o21.Orientation = Vector3.new(35.9000015, -70.7600021, 34.7400017)
  5760. o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5761. o22.Parent = o21
  5762. o22.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5763. o22.Offset = Vector3.new(2, 2, 2)
  5764. o22.Scale = Vector3.new(1000, 1000, 1000)
  5765. o22.VertexColor = Vector3.new(0.300000012, 4, 9)
  5766. o22.MeshType = Enum.MeshType.FileMesh
  5767. o22.Scale = Vector3.new(1000, 1000, 1000)
  5768. o23.Name = "Brick"
  5769. o23.Parent = o2
  5770. o23.Material = Enum.Material.Neon
  5771. o23.BrickColor = BrickColor.new("Royal purple")
  5772. o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
  5773. o23.Rotation = Vector3.new(73.4700012, -18.5900002, 87.0100021)
  5774. o23.Anchored = true
  5775. o23.CanCollide = false
  5776. o23.Size = Vector3.new(1, 2.4000001, 1)
  5777. o23.CFrame = CFrame.new(2.93334889, 2.64311099, -1.84747303, 0.0495064296, -0.946529031, -0.318804532, 0.268211812, 0.320073038, -0.908636391, 0.962090611, -0.0405250117, 0.269712627)
  5778. o23.BottomSurface = Enum.SurfaceType.Smooth
  5779. o23.TopSurface = Enum.SurfaceType.Smooth
  5780. o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5781. o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
  5782. o23.Orientation = Vector3.new(65.3199997, -49.7700005, 39.9599991)
  5783. o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5784. o24.Parent = o23
  5785. o24.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5786. o24.Offset = Vector3.new(2, 2, 2)
  5787. o24.Scale = Vector3.new(1000, 1000, 1000)
  5788. o24.VertexColor = Vector3.new(0.300000012, 4, 9)
  5789. o24.MeshType = Enum.MeshType.FileMesh
  5790. o24.Scale = Vector3.new(1000, 1000, 1000)
  5791. o25.Name = "Brick"
  5792. o25.Parent = o2
  5793. o25.Material = Enum.Material.Neon
  5794. o25.BrickColor = BrickColor.new("Royal purple")
  5795. o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
  5796. o25.Rotation = Vector3.new(76.6699982, -8.39000034, 83.9700012)
  5797. o25.Anchored = true
  5798. o25.CanCollide = false
  5799. o25.Size = Vector3.new(1, 2.4000001, 1)
  5800. o25.CFrame = CFrame.new(2.965698, 2.42810798, -1.73171997, 0.103865072, -0.983827293, -0.14595513, 0.214386716, 0.165448487, -0.962637901, 0.971214116, 0.0686925501, 0.22809954)
  5801. o25.BottomSurface = Enum.SurfaceType.Smooth
  5802. o25.TopSurface = Enum.SurfaceType.Smooth
  5803. o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5804. o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
  5805. o25.Orientation = Vector3.new(74.2900009, -32.6100006, 52.3400002)
  5806. o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5807. o26.Parent = o25
  5808. o26.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5809. o26.Offset = Vector3.new(2, 2, 2)
  5810. o26.Scale = Vector3.new(1000, 1000, 1000)
  5811. o26.VertexColor = Vector3.new(0.300000012, 4, 9)
  5812. o26.MeshType = Enum.MeshType.FileMesh
  5813. o26.Scale = Vector3.new(1000, 1000, 1000)
  5814. o27.Name = "Brick"
  5815. o27.Parent = o2
  5816. o27.Material = Enum.Material.Neon
  5817. o27.BrickColor = BrickColor.new("Royal purple")
  5818. o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
  5819. o27.Rotation = Vector3.new(80.3700027, 1.61000001, 80.4100037)
  5820. o27.Anchored = true
  5821. o27.CanCollide = false
  5822. o27.Size = Vector3.new(1, 2.4000001, 1)
  5823. o27.CFrame = CFrame.new(3.04232788, 2.21434498, -1.63577294, 0.166501582, -0.985645115, 0.0280937776, 0.169498622, 0.000545704737, -0.985533655, 0.971367121, 0.168852925, 0.167152837)
  5824. o27.BottomSurface = Enum.SurfaceType.Smooth
  5825. o27.TopSurface = Enum.SurfaceType.Smooth
  5826. o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5827. o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
  5828. o27.Orientation = Vector3.new(80.2399979, 9.53999996, 89.8199997)
  5829. o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5830. o28.Parent = o27
  5831. o28.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5832. o28.Offset = Vector3.new(2, 2, 2)
  5833. o28.Scale = Vector3.new(1000, 1000, 1000)
  5834. o28.VertexColor = Vector3.new(0.300000012, 4, 9)
  5835. o28.MeshType = Enum.MeshType.FileMesh
  5836. o28.Scale = Vector3.new(1000, 1000, 1000)
  5837. o29.Name = "Brick"
  5838. o29.Parent = o2
  5839. o29.Material = Enum.Material.Neon
  5840. o29.BrickColor = BrickColor.new("Royal purple")
  5841. o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
  5842. o29.Rotation = Vector3.new(-133.990005, -24.3700008, -63.5200005)
  5843. o29.Anchored = true
  5844. o29.CanCollide = false
  5845. o29.Size = Vector3.new(1, 2.4000001, 1)
  5846. o29.CFrame = CFrame.new(5.06256104, 2.90255404, -2.91796899, 0.406100124, 0.815340042, -0.412699133, 0.754046142, -0.0438508503, 0.655360699, 0.516244054, -0.577332199, -0.632607102)
  5847. o29.BottomSurface = Enum.SurfaceType.Smooth
  5848. o29.TopSurface = Enum.SurfaceType.Smooth
  5849. o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5850. o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
  5851. o29.Orientation = Vector3.new(-40.9500008, -146.880005, 93.3300018)
  5852. o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5853. o30.Parent = o29
  5854. o30.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5855. o30.Offset = Vector3.new(2, 2, 2)
  5856. o30.Scale = Vector3.new(1000, 1000, 1000)
  5857. o30.VertexColor = Vector3.new(0.300000012, 4, 9)
  5858. o30.MeshType = Enum.MeshType.FileMesh
  5859. o30.Scale = Vector3.new(1000, 1000, 1000)
  5860. o31.Name = "Brick"
  5861. o31.Parent = o2
  5862. o31.Material = Enum.Material.Neon
  5863. o31.BrickColor = BrickColor.new("Royal purple")
  5864. o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
  5865. o31.Rotation = Vector3.new(-131.279999, -34.7700005, -65.9599991)
  5866. o31.Anchored = true
  5867. o31.CanCollide = false
  5868. o31.Size = Vector3.new(1, 2.4000001, 1)
  5869. o31.CFrame = CFrame.new(4.91119385, 3.09106302, -2.96588111, 0.334565103, 0.75018847, -0.570341349, 0.777153254, 0.122676805, 0.61724031, 0.533016145, -0.649748385, -0.541965544)
  5870. o31.BottomSurface = Enum.SurfaceType.Smooth
  5871. o31.TopSurface = Enum.SurfaceType.Smooth
  5872. o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5873. o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
  5874. o31.Orientation = Vector3.new(-38.1100006, -133.539993, 81.0299988)
  5875. o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5876. o32.Parent = o31
  5877. o32.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5878. o32.Offset = Vector3.new(2, 2, 2)
  5879. o32.Scale = Vector3.new(1000, 1000, 1000)
  5880. o32.VertexColor = Vector3.new(0.300000012, 4, 9)
  5881. o32.MeshType = Enum.MeshType.FileMesh
  5882. o32.Scale = Vector3.new(1000, 1000, 1000)
  5883. o33.Name = "Brick"
  5884. o33.Parent = o2
  5885. o33.Material = Enum.Material.Neon
  5886. o33.BrickColor = BrickColor.new("Royal purple")
  5887. o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
  5888. o33.Rotation = Vector3.new(-128.759995, -45.2599983, -68.1200027)
  5889. o33.Anchored = true
  5890. o33.CanCollide = false
  5891. o33.Size = Vector3.new(1, 2.4000001, 1)
  5892. o33.CFrame = CFrame.new(4.72817993, 3.2543149, -2.98629689, 0.262331456, 0.653153419, -0.71034348, 0.78741014, 0.280647159, 0.548841178, 0.557832479, -0.703308582, -0.440674037)
  5893. o33.BottomSurface = Enum.SurfaceType.Smooth
  5894. o33.TopSurface = Enum.SurfaceType.Smooth
  5895. o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5896. o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
  5897. o33.Orientation = Vector3.new(-33.2900009, -121.809998, 70.3799973)
  5898. o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5899. o34.Parent = o33
  5900. o34.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5901. o34.Offset = Vector3.new(2, 2, 2)
  5902. o34.Scale = Vector3.new(1000, 1000, 1000)
  5903. o34.VertexColor = Vector3.new(0.300000012, 4, 9)
  5904. o34.MeshType = Enum.MeshType.FileMesh
  5905. o34.Scale = Vector3.new(1000, 1000, 1000)
  5906. o35.Name = "Brick"
  5907. o35.Parent = o2
  5908. o35.Material = Enum.Material.Neon
  5909. o35.BrickColor = BrickColor.new("Royal purple")
  5910. o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
  5911. o35.Rotation = Vector3.new(-126.300003, -55.8100014, -69.9899979)
  5912. o35.Anchored = true
  5913. o35.CanCollide = false
  5914. o35.Size = Vector3.new(1, 2.4000001, 1)
  5915. o35.CFrame = CFrame.new(4.52124023, 3.38793397, -2.97735596, 0.192273602, 0.528050721, -0.8271662, 0.784404039, 0.42380619, 0.452882349, 0.589703321, -0.735906541, -0.332716405)
  5916. o35.BottomSurface = Enum.SurfaceType.Smooth
  5917. o35.TopSurface = Enum.SurfaceType.Smooth
  5918. o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5919. o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
  5920. o35.Orientation = Vector3.new(-26.9300003, -111.910004, 61.6199989)
  5921. o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5922. o36.Parent = o35
  5923. o36.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5924. o36.Offset = Vector3.new(2, 2, 2)
  5925. o36.Scale = Vector3.new(1000, 1000, 1000)
  5926. o36.VertexColor = Vector3.new(0.300000012, 4, 9)
  5927. o36.MeshType = Enum.MeshType.FileMesh
  5928. o36.Scale = Vector3.new(1000, 1000, 1000)
  5929. o37.Name = "Brick"
  5930. o37.Parent = o2
  5931. o37.Material = Enum.Material.Neon
  5932. o37.BrickColor = BrickColor.new("Royal purple")
  5933. o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
  5934. o37.Rotation = Vector3.new(-123.709999, -66.4000015, -71.4899979)
  5935. o37.Anchored = true
  5936. o37.CanCollide = false
  5937. o37.Size = Vector3.new(1, 2.4000001, 1)
  5938. o37.CFrame = CFrame.new(4.29772902, 3.48497605, -2.94018507, 0.12711224, 0.379692227, -0.916344583, 0.768234134, 0.546692252, 0.333088756, 0.627428651, -0.746304989, -0.222200081)
  5939. o37.BottomSurface = Enum.SurfaceType.Smooth
  5940. o37.TopSurface = Enum.SurfaceType.Smooth
  5941. o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5942. o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
  5943. o37.Orientation = Vector3.new(-19.4599991, -103.629997, 54.5600014)
  5944. o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5945. o38.Parent = o37
  5946. o38.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5947. o38.Offset = Vector3.new(2, 2, 2)
  5948. o38.Scale = Vector3.new(1000, 1000, 1000)
  5949. o38.VertexColor = Vector3.new(0.300000012, 4, 9)
  5950. o38.MeshType = Enum.MeshType.FileMesh
  5951. o38.Scale = Vector3.new(1000, 1000, 1000)
  5952. o39.Name = "Brick"
  5953. o39.Parent = o2
  5954. o39.Material = Enum.Material.Neon
  5955. o39.BrickColor = BrickColor.new("Royal purple")
  5956. o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
  5957. o39.Rotation = Vector3.new(-120.32, -77.0100021, -72.0400009)
  5958. o39.Anchored = true
  5959. o39.CanCollide = false
  5960. o39.Size = Vector3.new(1, 2.4000001, 1)
  5961. o39.CFrame = CFrame.new(4.06726122, 3.54251599, -2.87588501, 0.0693322793, 0.213873416, -0.974402368, 0.739563346, 0.644502819, 0.194081604, 0.669512689, -0.734086096, -0.113487378)
  5962. o39.BottomSurface = Enum.SurfaceType.Smooth
  5963. o39.TopSurface = Enum.SurfaceType.Smooth
  5964. o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5965. o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
  5966. o39.Orientation = Vector3.new(-11.1899996, -96.6399994, 48.9300003)
  5967. o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5968. o40.Parent = o39
  5969. o40.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5970. o40.Offset = Vector3.new(2, 2, 2)
  5971. o40.Scale = Vector3.new(1000, 1000, 1000)
  5972. o40.VertexColor = Vector3.new(0.300000012, 4, 9)
  5973. o40.MeshType = Enum.MeshType.FileMesh
  5974. o40.Scale = Vector3.new(1000, 1000, 1000)
  5975. o41.Name = "Brick"
  5976. o41.Parent = o2
  5977. o41.Material = Enum.Material.Neon
  5978. o41.BrickColor = BrickColor.new("Royal purple")
  5979. o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
  5980. o41.Rotation = Vector3.new(-104.620003, -87.5599976, -60.2000008)
  5981. o41.Anchored = true
  5982. o41.CanCollide = false
  5983. o41.Size = Vector3.new(1, 2.4000001, 1)
  5984. o41.CFrame = CFrame.new(3.83755493, 3.5582931, -2.78716993, 0.0211498551, 0.0369331241, -0.999094546, 0.6994735, 0.713474691, 0.0411797762, 0.714347363, -0.699709892, -0.0107443864)
  5985. o41.BottomSurface = Enum.SurfaceType.Smooth
  5986. o41.TopSurface = Enum.SurfaceType.Smooth
  5987. o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5988. o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
  5989. o41.Orientation = Vector3.new(-2.3599999, -90.6200027, 44.4300003)
  5990. o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5991. o42.Parent = o41
  5992. o42.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5993. o42.Offset = Vector3.new(2, 2, 2)
  5994. o42.Scale = Vector3.new(1000, 1000, 1000)
  5995. o42.VertexColor = Vector3.new(0.300000012, 4, 9)
  5996. o42.MeshType = Enum.MeshType.FileMesh
  5997. o42.Scale = Vector3.new(1000, 1000, 1000)
  5998. o43.Name = "Brick"
  5999. o43.Parent = o2
  6000. o43.Material = Enum.Material.Neon
  6001. o43.BrickColor = BrickColor.new("Royal purple")
  6002. o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
  6003. o43.Rotation = Vector3.new(105.5, 37.2799988, 55.6800003)
  6004. o43.Anchored = true
  6005. o43.CanCollide = false
  6006. o43.Size = Vector3.new(1, 2.4000001, 1)
  6007. o43.CFrame = CFrame.new(3.70880103, 1.53280604, -1.51110804, 0.448593676, -0.657117724, 0.605777919, 0.108368672, -0.632810354, -0.766686857, 0.887145698, 0.409578443, -0.21266529)
  6008. o43.BottomSurface = Enum.SurfaceType.Smooth
  6009. o43.TopSurface = Enum.SurfaceType.Smooth
  6010. o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6011. o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
  6012. o43.Orientation = Vector3.new(50.0600014, 109.339996, 170.279999)
  6013. o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6014. o44.Parent = o43
  6015. o44.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6016. o44.Offset = Vector3.new(2, 2, 2)
  6017. o44.Scale = Vector3.new(1000, 1000, 1000)
  6018. o44.VertexColor = Vector3.new(0.300000012, 4, 9)
  6019. o44.MeshType = Enum.MeshType.FileMesh
  6020. o44.Scale = Vector3.new(1000, 1000, 1000)
  6021. o45.Name = "Brick"
  6022. o45.Parent = o2
  6023. o45.Material = Enum.Material.Neon
  6024. o45.BrickColor = BrickColor.new("Royal purple")
  6025. o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
  6026. o45.Rotation = Vector3.new(116.610001, 43.8199997, 44.6500015)
  6027. o45.Anchored = true
  6028. o45.CanCollide = false
  6029. o45.Size = Vector3.new(1, 2.4000001, 1)
  6030. o45.CFrame = CFrame.new(3.9332881, 1.43899, -1.55038404, 0.513256431, -0.507025182, 0.692457318, 0.125652671, -0.753752112, -0.645036459, 0.848991394, 0.418078154, -0.323159516)
  6031. o45.BottomSurface = Enum.SurfaceType.Smooth
  6032. o45.TopSurface = Enum.SurfaceType.Smooth
  6033. o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6034. o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
  6035. o45.Orientation = Vector3.new(40.1699982, 115.019997, 170.539993)
  6036. o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6037. o46.Parent = o45
  6038. o46.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6039. o46.Offset = Vector3.new(2, 2, 2)
  6040. o46.Scale = Vector3.new(1000, 1000, 1000)
  6041. o46.VertexColor = Vector3.new(0.300000012, 4, 9)
  6042. o46.MeshType = Enum.MeshType.FileMesh
  6043. o46.Scale = Vector3.new(1000, 1000, 1000)
  6044. o47.Name = "Brick"
  6045. o47.Parent = o2
  6046. o47.Material = Enum.Material.Neon
  6047. o47.BrickColor = BrickColor.new("Royal purple")
  6048. o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
  6049. o47.Rotation = Vector3.new(130.539993, 48.4000015, 30.7999992)
  6050. o47.Anchored = true
  6051. o47.CanCollide = false
  6052. o47.Size = Vector3.new(1, 2.4000001, 1)
  6053. o47.CFrame = CFrame.new(4.16439819, 1.38474405, -1.61688197, 0.570331037, -0.339972913, 0.747757614, 0.155332476, -0.849266231, -0.504599333, 0.806594849, 0.403941095, -0.43155393)
  6054. o47.BottomSurface = Enum.SurfaceType.Smooth
  6055. o47.TopSurface = Enum.SurfaceType.Smooth
  6056. o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6057. o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
  6058. o47.Orientation = Vector3.new(30.2999992, 119.989998, 169.639999)
  6059. o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6060. o48.Parent = o47
  6061. o48.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6062. o48.Offset = Vector3.new(2, 2, 2)
  6063. o48.Scale = Vector3.new(1000, 1000, 1000)
  6064. o48.VertexColor = Vector3.new(0.300000012, 4, 9)
  6065. o48.MeshType = Enum.MeshType.FileMesh
  6066. o48.Scale = Vector3.new(1000, 1000, 1000)
  6067. o49.Name = "Brick"
  6068. o49.Parent = o2
  6069. o49.Material = Enum.Material.Neon
  6070. o49.BrickColor = BrickColor.new("Royal purple")
  6071. o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
  6072. o49.Rotation = Vector3.new(146.669998, 50.3100014, 14.7399998)
  6073. o49.Anchored = true
  6074. o49.CanCollide = false
  6075. o49.Size = Vector3.new(1, 2.4000001, 1)
  6076. o49.CFrame = CFrame.new(4.39288282, 1.37233901, -1.70782495, 0.617577851, -0.162517488, 0.769542575, 0.196282297, -0.915626526, -0.35088259, 0.76163286, 0.367743611, -0.533573449)
  6077. o49.BottomSurface = Enum.SurfaceType.Smooth
  6078. o49.TopSurface = Enum.SurfaceType.Smooth
  6079. o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6080. o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
  6081. o49.Orientation = Vector3.new(20.5400009, 124.739998, 167.899994)
  6082. o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6083. o50.Parent = o49
  6084. o50.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6085. o50.Offset = Vector3.new(2, 2, 2)
  6086. o50.Scale = Vector3.new(1000, 1000, 1000)
  6087. o50.VertexColor = Vector3.new(0.300000012, 4, 9)
  6088. o50.MeshType = Enum.MeshType.FileMesh
  6089. o50.Scale = Vector3.new(1000, 1000, 1000)
  6090. o51.Name = "Brick"
  6091. o51.Parent = o2
  6092. o51.Material = Enum.Material.Neon
  6093. o51.BrickColor = BrickColor.new("Royal purple")
  6094. o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
  6095. o51.Rotation = Vector3.new(175.460007, 46.1100006, -13.9099998)
  6096. o51.Anchored = true
  6097. o51.CanCollide = false
  6098. o51.Size = Vector3.new(1, 2.4000001, 1)
  6099. o51.CFrame = CFrame.new(4.77636719, 1.45922303, -1.92498803, 0.672873378, 0.16669859, 0.720732152, 0.295064241, -0.953904152, -0.0548422486, 0.678368092, 0.249565676, -0.691042304)
  6100. o51.BottomSurface = Enum.SurfaceType.Smooth
  6101. o51.TopSurface = Enum.SurfaceType.Smooth
  6102. o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6103. o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
  6104. o51.Orientation = Vector3.new(3.1400001, 133.800003, 162.809998)
  6105. o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6106. o52.Parent = o51
  6107. o52.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6108. o52.Offset = Vector3.new(2, 2, 2)
  6109. o52.Scale = Vector3.new(1000, 1000, 1000)
  6110. o52.VertexColor = Vector3.new(0.300000012, 4, 9)
  6111. o52.MeshType = Enum.MeshType.FileMesh
  6112. o52.Scale = Vector3.new(1000, 1000, 1000)
  6113. o53.Name = "Brick"
  6114. o53.Parent = o2
  6115. o53.Material = Enum.Material.Neon
  6116. o53.BrickColor = BrickColor.new("Royal purple")
  6117. o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
  6118. o53.Rotation = Vector3.new(-172.199997, 40.3600006, -26.1700001)
  6119. o53.Anchored = true
  6120. o53.CanCollide = false
  6121. o53.Size = Vector3.new(1, 2.4000001, 1)
  6122. o53.CFrame = CFrame.new(4.95245314, 1.56303596, -2.06259108, 0.68390286, 0.33614102, 0.64752382, 0.358143985, -0.927920341, 0.103433087, 0.635619402, 0.161170885, -0.754993856)
  6123. o53.BottomSurface = Enum.SurfaceType.Smooth
  6124. o53.TopSurface = Enum.SurfaceType.Smooth
  6125. o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6126. o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
  6127. o53.Orientation = Vector3.new(-5.94000006, 139.380005, 158.899994)
  6128. o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6129. o54.Parent = o53
  6130. o54.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6131. o54.Offset = Vector3.new(2, 2, 2)
  6132. o54.Scale = Vector3.new(1000, 1000, 1000)
  6133. o54.VertexColor = Vector3.new(0.300000012, 4, 9)
  6134. o54.MeshType = Enum.MeshType.FileMesh
  6135. o54.Scale = Vector3.new(1000, 1000, 1000)
  6136. o55.Name = "Brick"
  6137. o55.Parent = o2
  6138. o55.Material = Enum.Material.Neon
  6139. o55.BrickColor = BrickColor.new("Royal purple")
  6140. o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
  6141. o55.Rotation = Vector3.new(-162.550003, 33, -35.7400017)
  6142. o55.Anchored = true
  6143. o55.CanCollide = false
  6144. o55.Size = Vector3.new(1, 2.4000001, 1)
  6145. o55.CFrame = CFrame.new(5.09490919, 1.70155895, -2.20797706, 0.680727184, 0.489860028, 0.544654846, 0.424662501, -0.869728863, 0.251472116, 0.596890628, 0.0601115078, -0.80007118)
  6146. o55.BottomSurface = Enum.SurfaceType.Smooth
  6147. o55.TopSurface = Enum.SurfaceType.Smooth
  6148. o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6149. o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
  6150. o55.Orientation = Vector3.new(-14.5600004, 145.75, 153.979996)
  6151. o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6152. o56.Parent = o55
  6153. o56.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6154. o56.Offset = Vector3.new(2, 2, 2)
  6155. o56.Scale = Vector3.new(1000, 1000, 1000)
  6156. o56.VertexColor = Vector3.new(0.300000012, 4, 9)
  6157. o56.MeshType = Enum.MeshType.FileMesh
  6158. o56.Scale = Vector3.new(1000, 1000, 1000)
  6159. o57.Name = "Brick"
  6160. o57.Parent = o2
  6161. o57.Material = Enum.Material.Neon
  6162. o57.BrickColor = BrickColor.new("Royal purple")
  6163. o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
  6164. o57.Rotation = Vector3.new(-155.059998, 24.5900002, -43.1399994)
  6165. o57.Anchored = true
  6166. o57.CanCollide = false
  6167. o57.Size = Vector3.new(1, 2.4000001, 1)
  6168. o57.CFrame = CFrame.new(5.19952393, 1.86994803, -2.35424805, 0.663467348, 0.621792495, 0.416159749, 0.492012411, -0.781613827, 0.383423984, 0.563687682, -0.0496326238, -0.824503481)
  6169. o57.BottomSurface = Enum.SurfaceType.Smooth
  6170. o57.TopSurface = Enum.SurfaceType.Smooth
  6171. o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6172. o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
  6173. o57.Orientation = Vector3.new(-22.5499992, 153.220001, 147.809998)
  6174. o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6175. o58.Parent = o57
  6176. o58.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6177. o58.Offset = Vector3.new(2, 2, 2)
  6178. o58.Scale = Vector3.new(1000, 1000, 1000)
  6179. o58.VertexColor = Vector3.new(0.300000012, 4, 9)
  6180. o58.MeshType = Enum.MeshType.FileMesh
  6181. o58.Scale = Vector3.new(1000, 1000, 1000)
  6182. o59.Name = "Brick"
  6183. o59.Parent = o2
  6184. o59.Material = Enum.Material.Neon
  6185. o59.BrickColor = BrickColor.new("Royal purple")
  6186. o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
  6187. o59.Rotation = Vector3.new(-149.139999, 15.4899998, -48.9599991)
  6188. o59.Anchored = true
  6189. o59.CanCollide = false
  6190. o59.Size = Vector3.new(1, 2.4000001, 1)
  6191. o59.CFrame = CFrame.new(5.2615962, 2.06174994, -2.49609399, 0.632684767, 0.726892948, 0.267095983, 0.557561934, -0.666930854, 0.49429667, 0.53743577, -0.163808867, -0.827243149)
  6192. o59.BottomSurface = Enum.SurfaceType.Smooth
  6193. o59.TopSurface = Enum.SurfaceType.Smooth
  6194. o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6195. o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
  6196. o59.Orientation = Vector3.new(-29.6200008, 162.110001, 140.100006)
  6197. o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6198. o60.Parent = o59
  6199. o60.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6200. o60.Offset = Vector3.new(2, 2, 2)
  6201. o60.Scale = Vector3.new(1000, 1000, 1000)
  6202. o60.VertexColor = Vector3.new(0.300000012, 4, 9)
  6203. o60.MeshType = Enum.MeshType.FileMesh
  6204. o60.Scale = Vector3.new(1000, 1000, 1000)
  6205. o61.Name = "Brick"
  6206. o61.Parent = o2
  6207. o61.Material = Enum.Material.Neon
  6208. o61.BrickColor = BrickColor.new("Royal purple")
  6209. o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
  6210. o61.Rotation = Vector3.new(-144.360001, 5.92000008, -53.6399994)
  6211. o61.Anchored = true
  6212. o61.CanCollide = false
  6213. o61.Size = Vector3.new(1, 2.4000001, 1)
  6214. o61.CFrame = CFrame.new(5.27862501, 2.26872897, -2.62854004, 0.589739919, 0.800988555, 0.103097625, 0.618806839, -0.530213952, 0.579620779, 0.518933594, -0.278024584, -0.808341324)
  6215. o61.BottomSurface = Enum.SurfaceType.Smooth
  6216. o61.TopSurface = Enum.SurfaceType.Smooth
  6217. o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6218. o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
  6219. o61.Orientation = Vector3.new(-35.4199982, 172.729996, 130.589996)
  6220. o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6221. o62.Parent = o61
  6222. o62.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6223. o62.Offset = Vector3.new(2, 2, 2)
  6224. o62.Scale = Vector3.new(1000, 1000, 1000)
  6225. o62.VertexColor = Vector3.new(0.300000012, 4, 9)
  6226. o62.MeshType = Enum.MeshType.FileMesh
  6227. o62.Scale = Vector3.new(1000, 1000, 1000)
  6228. o63.Name = "Brick"
  6229. o63.Parent = o2
  6230. o63.Material = Enum.Material.Neon
  6231. o63.BrickColor = BrickColor.new("Royal purple")
  6232. o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
  6233. o63.Rotation = Vector3.new(-140.380005, -3.97000003, -57.4799995)
  6234. o63.Anchored = true
  6235. o63.CanCollide = false
  6236. o63.Size = Vector3.new(1, 2.4000001, 1)
  6237. o63.CFrame = CFrame.new(5.25003004, 2.4836719, -2.74575806, 0.536248684, 0.841212153, -0.0692981035, 0.673294485, -0.376801223, 0.636157036, 0.5090307, -0.387795955, -0.768441141)
  6238. o63.BottomSurface = Enum.SurfaceType.Smooth
  6239. o63.TopSurface = Enum.SurfaceType.Smooth
  6240. o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6241. o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
  6242. o63.Orientation = Vector3.new(-39.5099983, -174.850006, 119.230003)
  6243. o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6244. o64.Parent = o63
  6245. o64.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6246. o64.Offset = Vector3.new(2, 2, 2)
  6247. o64.Scale = Vector3.new(1000, 1000, 1000)
  6248. o64.VertexColor = Vector3.new(0.300000012, 4, 9)
  6249. o64.MeshType = Enum.MeshType.FileMesh
  6250. o64.Scale = Vector3.new(1000, 1000, 1000)
  6251. o65.Name = "Brick"
  6252. o65.Parent = o2
  6253. o65.Material = Enum.Material.Neon
  6254. o65.BrickColor = BrickColor.new("Royal purple")
  6255. o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
  6256. o65.Rotation = Vector3.new(-136.979996, -14.0900002, -60.7299995)
  6257. o65.Anchored = true
  6258. o65.CanCollide = false
  6259. o65.Size = Vector3.new(1, 2.4000001, 1)
  6260. o65.CFrame = CFrame.new(5.17730713, 2.697891, -2.84332299, 0.474191397, 0.846081197, -0.243520409, 0.718994558, -0.212507248, 0.661735475, 0.508131981, -0.488876581, -0.709092855)
  6261. o65.BottomSurface = Enum.SurfaceType.Smooth
  6262. o65.TopSurface = Enum.SurfaceType.Smooth
  6263. o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6264. o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
  6265. o65.Orientation = Vector3.new(-41.4300003, -161.050003, 106.470001)
  6266. o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6267. o66.Parent = o65
  6268. o66.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6269. o66.Offset = Vector3.new(2, 2, 2)
  6270. o66.Scale = Vector3.new(1000, 1000, 1000)
  6271. o66.VertexColor = Vector3.new(0.300000012, 4, 9)
  6272. o66.MeshType = Enum.MeshType.FileMesh
  6273. o66.Scale = Vector3.new(1000, 1000, 1000)
  6274. o67.Parent = o2
  6275. table.insert(cors,coroutine.create(function()
  6276. wait()
  6277. runDummyScript(function()
  6278. --Time
  6279. l = script.Parent
  6280. while true do
  6281. wait()
  6282. local h = l:GetChildren()
  6283. for i = 1, #h do
  6284. if h[i].Name == "Brick" then
  6285. h[i].CFrame = h[i].CFrame * CFrame.fromEulerAnglesXYZ(0.02,0.01,0.02)
  6286. end
  6287. end
  6288. end
  6289. end,o67)
  6290. end))
  6291. mas.Parent = workspace
  6292. mas:MakeJoints()
  6293. local mas1 = mas:GetChildren()
  6294. for i=1,#mas1 do
  6295. mas1[i].Parent = workspace
  6296. ypcall(function() mas1[i]:MakeJoints() end)
  6297. end
  6298. mas:Destroy()
  6299. for i=1,#cors do
  6300. coroutine.resume(cors[i])
  6301. end
  6302. --Wings
  6303. local Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  6304.  
  6305. local Num = 0.5
  6306.  
  6307. local Num2 = 4 -------------Wings Parameters-------------------------------------
  6308. local Size = 0.8
  6309. local Rate = 300
  6310. -------------------------------------------------------------------------------------
  6311. local Player = game:service'Players'.LocalPlayer
  6312. local Character = Player.Character
  6313. Torso = Character:WaitForChild'Torso'
  6314.  
  6315. local Wing1 = Instance.new("Part",Character)
  6316. Wing1.FormFactor = Enum.FormFactor.Custom
  6317. Wing1.Size = Vector3.new(.2, .2, .2)
  6318. Wing1.Name = "WIng_1"
  6319.  
  6320. local fire = Instance.new("ParticleEmitter", Wing1)
  6321. fire.VelocitySpread = 0
  6322. fire.Lifetime = NumberRange.new(2)
  6323. fire.Acceleration = Vector3.new(0, 2, 2)
  6324. fire.RotSpeed = NumberRange.new(10)
  6325. fire.Rate = Rate
  6326. fire.Rotation = NumberRange.new(151515)
  6327. fire.Name = "Fire"
  6328. fire.LightEmission = 0.78
  6329. fire.LockedToPart = true
  6330. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6331. fire.Color = Color
  6332. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6333.  
  6334. local Wing2 = Wing1:Clone()
  6335. Wing2.Parent = Torso
  6336. local x,y,z = 0,-1,-6
  6337.  
  6338. Wld = function(a,b,cf)
  6339. local Weld = Instance.new('Weld',a)
  6340. Weld.Part0 = a
  6341. Weld.Part1 = b
  6342. Weld.C1 = cf
  6343. return Weld
  6344. end
  6345.  
  6346. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  6347. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  6348.  
  6349.  
  6350. game:service'RunService'.Stepped:connect(function()
  6351. --z = 6+math.sin(tick()*2)
  6352. y = -1+math.sin(tick()*Num)*Num2
  6353. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6354. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6355. end)
  6356. ------------------------------------------------------------------------------------------------
  6357. local Player = game:service'Players'.LocalPlayer
  6358. local Character = Player.Character
  6359. Torso = Character:WaitForChild'Torso'
  6360.  
  6361. local Wing1 = Instance.new("Part",Character)
  6362. Wing1.FormFactor = Enum.FormFactor.Custom
  6363. Wing1.Size = Vector3.new(.2, .2, .2)
  6364. Wing1.Name = "WIng_1"
  6365.  
  6366. local fire = Instance.new("ParticleEmitter", Wing1)
  6367. fire.VelocitySpread = 0
  6368. fire.Lifetime = NumberRange.new(2.5)
  6369. fire.Acceleration = Vector3.new(0, 4, 4)
  6370. fire.RotSpeed = NumberRange.new(10)
  6371. fire.Rate = Rate
  6372. fire.Rotation = NumberRange.new(151515)
  6373. fire.Name = "Fire"
  6374. fire.LightEmission = 0.78
  6375. fire.LockedToPart = true
  6376. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6377. fire.Color = Color
  6378. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6379.  
  6380. local Wing2 = Wing1:Clone()
  6381. Wing2.Parent = Torso
  6382. local x,y,z = 0,-1,-6
  6383.  
  6384. Wld = function(a,b,cf)
  6385. local Weld = Instance.new('Weld',a)
  6386. Weld.Part0 = a
  6387. Weld.Part1 = b
  6388. Weld.C1 = cf
  6389. return Weld
  6390. end
  6391.  
  6392. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  6393. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  6394.  
  6395. print'Loaded'
  6396.  
  6397. game:service'RunService'.Stepped:connect(function()
  6398. --z = 6+math.sin(tick()*2)
  6399. y = -1+math.sin(tick()*Num)*Num2
  6400. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6401. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6402. end)
  6403.  
  6404. ------------------------------------------------------------------------------------------------
  6405. local Player = game:service'Players'.LocalPlayer
  6406. local Character = Player.Character
  6407. Torso = Character:WaitForChild'Torso'
  6408.  
  6409. local Wing1 = Instance.new("Part",Character)
  6410. Wing1.FormFactor = Enum.FormFactor.Custom
  6411. Wing1.Size = Vector3.new(.2, .2, .2)
  6412. Wing1.Name = "WIng_1"
  6413.  
  6414. local fire = Instance.new("ParticleEmitter", Wing1)
  6415. fire.VelocitySpread = 0
  6416. fire.Lifetime = NumberRange.new(2.8)
  6417. fire.Acceleration = Vector3.new(0, 4, 4)
  6418. fire.RotSpeed = NumberRange.new(10)
  6419. fire.Rate = Rate
  6420. fire.Rotation = NumberRange.new(151515)
  6421. fire.Name = "Fire"
  6422. fire.LightEmission = 0.78
  6423. fire.LockedToPart = true
  6424. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6425. fire.Color = Color
  6426. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6427.  
  6428. local Wing2 = Wing1:Clone()
  6429. Wing2.Parent = Torso
  6430. local x,y,z = 0,-1,-6
  6431.  
  6432. Wld = function(a,b,cf)
  6433. local Weld = Instance.new('Weld',a)
  6434. Weld.Part0 = a
  6435. Weld.Part1 = b
  6436. Weld.C1 = cf
  6437. return Weld
  6438. end
  6439.  
  6440. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  6441. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  6442.  
  6443. print'Loaded'
  6444.  
  6445. game:service'RunService'.Stepped:connect(function()
  6446. --z = 6+math.sin(tick()*2)
  6447. y = -1+math.sin(tick()*Num)*Num2
  6448. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6449. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6450. end)
  6451.  
  6452. ------------------------------------------------------------------------------------------------
  6453. local Player = game:service'Players'.LocalPlayer
  6454. local Character = Player.Character
  6455. Torso = Character:WaitForChild'Torso'
  6456.  
  6457. local Wing1 = Instance.new("Part",Character)
  6458. Wing1.FormFactor = Enum.FormFactor.Custom
  6459. Wing1.Size = Vector3.new(.2, .2, .2)
  6460. Wing1.Name = "WIng_1"
  6461.  
  6462. local fire = Instance.new("ParticleEmitter", Wing1)
  6463. fire.VelocitySpread = 0
  6464. fire.Lifetime = NumberRange.new(3)
  6465. fire.Acceleration = Vector3.new(0, 4, 4)
  6466. fire.RotSpeed = NumberRange.new(10)
  6467. fire.Rate = Rate
  6468. fire.Rotation = NumberRange.new(151515)
  6469. fire.Name = "Fire"
  6470. fire.LightEmission = 0.78
  6471. fire.LockedToPart = true
  6472. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6473. fire.Color = Color
  6474. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6475.  
  6476. local Wing2 = Wing1:Clone()
  6477. Wing2.Parent = Torso
  6478. local x,y,z = 0,-1,-6
  6479.  
  6480. Wld = function(a,b,cf)
  6481. local Weld = Instance.new('Weld',a)
  6482. Weld.Part0 = a
  6483. Weld.Part1 = b
  6484. Weld.C1 = cf
  6485. return Weld
  6486. end
  6487.  
  6488. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  6489. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  6490.  
  6491. print'Loaded'
  6492.  
  6493. game:service'RunService'.Stepped:connect(function()
  6494. --z = 6+math.sin(tick()*2)
  6495. y = -1+math.sin(tick()*Num)*Num2
  6496. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6497. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6498. end)
  6499.  
  6500. ------------------------------------------------------------------------------------------------
  6501. local Player = game:service'Players'.LocalPlayer
  6502. local Character = Player.Character
  6503. Torso = Character:WaitForChild'Torso'
  6504.  
  6505. local Wing1 = Instance.new("Part",Character)
  6506. Wing1.FormFactor = Enum.FormFactor.Custom
  6507. Wing1.Size = Vector3.new(.2, .2, .2)
  6508. Wing1.Name = "WIng_1"
  6509.  
  6510. local fire = Instance.new("ParticleEmitter", Wing1)
  6511. fire.VelocitySpread = 0
  6512. fire.Lifetime = NumberRange.new(3.1)
  6513. fire.Acceleration = Vector3.new(0, 4, 4)
  6514. fire.RotSpeed = NumberRange.new(10)
  6515. fire.Rate = Rate
  6516. fire.Rotation = NumberRange.new(151515)
  6517. fire.Name = "Fire"
  6518. fire.LightEmission = 0.78
  6519. fire.LockedToPart = true
  6520. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6521. fire.Color = Color
  6522. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6523.  
  6524. local Wing2 = Wing1:Clone()
  6525. Wing2.Parent = Torso
  6526. local x,y,z = 0,-1,-6
  6527.  
  6528. Wld = function(a,b,cf)
  6529. local Weld = Instance.new('Weld',a)
  6530. Weld.Part0 = a
  6531. Weld.Part1 = b
  6532. Weld.C1 = cf
  6533. return Weld
  6534. end
  6535.  
  6536. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  6537. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  6538.  
  6539. print'Loaded'
  6540.  
  6541. game:service'RunService'.Stepped:connect(function()
  6542. --z = 6+math.sin(tick()*2)
  6543. y = -1+math.sin(tick()*Num)*Num2
  6544. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6545. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6546. end)
  6547. --Teleport Sky to Player
  6548. o1:MakeJoints()
  6549. o1:MoveTo(game.Players.LocalPlayer.Character.Head.Position)
  6550. --Hat
  6551. hed.Mesh.MeshId="http://www.roblox.com/asset/?id=21057410"
  6552. hed.Mesh.Scale=Vector3.new(2,2,2)
  6553. hed.face:Destroy()
  6554. --Lighting Effect
  6555. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  6556. --[[Part0 = Vector3 (Start pos)
  6557. Part1 = Vector3 (End pos)
  6558. Times = number (Amount of lightning parts)
  6559. Offset = number (Offset)
  6560. Color = color (brickcolor value)
  6561. Thickness = number (thickness)
  6562. Trans = number (transparency)
  6563. ]]--
  6564. local magz = (Part0 - Part1).magnitude
  6565. local curpos = Part0
  6566. local trz = {-Offset,Offset}
  6567. for i=1,Times do
  6568. local li = Instance.new("Part", torso)
  6569. li.Name = "Lightning"
  6570. li.TopSurface =0
  6571. li.Material = "Neon"
  6572. li.BottomSurface = 0
  6573. li.Anchored = true
  6574. li.Locked = true
  6575. li.Transparency = Trans or 0.4
  6576. li.BrickColor = BrickColor.new(Color)
  6577. li.formFactor = "Custom"
  6578. li.CanCollide = false
  6579. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  6580. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  6581. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  6582. if Times == i then
  6583. local magz2 = (curpos - Part1).magnitude
  6584. li.Size = Vector3.new(Thickness,Thickness,magz2)
  6585. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  6586. else
  6587. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  6588. end
  6589. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  6590. game.Debris:AddItem(li,.1)
  6591. end
  6592. end
  6593.  
  6594. BodyParts = {} -- Parts to emit lightning effects from
  6595. for _, v in pairs(char:GetChildren()) do
  6596. if v:IsA("Part") then
  6597. table.insert(BodyParts, v)
  6598. end
  6599. end
  6600.  
  6601. Bounding = {} -- Calculate the bounding boxes
  6602. for _, v in pairs(BodyParts) do
  6603. local temp = {X=nil, Y=nil, Z=nil}
  6604. temp.X = v.Size.X/2 * 35
  6605. temp.Y = v.Size.Y/2 * 35
  6606. temp.Z = v.Size.Z/2 * 35
  6607. Bounding[v.Name] = temp
  6608. --table.insert(Bounding, v.Name, temp)
  6609. end
  6610.  
  6611. while wait(0) do -- Emit the Lightning effects randomly
  6612. local Body1 = BodyParts[math.random(#BodyParts)]
  6613. local Body2 = BodyParts[math.random(#BodyParts)]
  6614. local Pos1 = Vector3.new(
  6615. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/35,
  6616. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/35,
  6617. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/35
  6618. )
  6619. local Pos2 = Vector3.new(
  6620. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/35,
  6621. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/35,
  6622. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/35
  6623. )
  6624. local SPos1 = Body1.Position + Pos1
  6625. local SPos2 = Body2.Position + Pos2
  6626. Lightning(SPos1, SPos2, 4, 3, "Alder", .3, .56)
  6627.  
  6628. local ff = Instance.new("ForceField",char)
  6629.  
  6630. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement