Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 332.73 KB | None | 0 0
  1. -- [[Created by: TheDarkRevenant - Edited by N3xul.
  2.  
  3. -- Script: Celestial Titan
  4.  
  5. -- Last Updated: 15:42 2017-07-22
  6.  
  7. -------------------------------------------------------------------------------------
  8. local p = game.Players.LocalPlayer
  9. local char = p.Character
  10. local mouse = p:GetMouse()
  11. local larm = char["Left Arm"]
  12. local rarm = char["Right Arm"]
  13. local lleg = char["Left Leg"]
  14. local rleg = char["Right Leg"]
  15. local hed = char.Head
  16. local torso = char.Torso
  17. local hum = char.Humanoid
  18. local cam = game.Workspace.CurrentCamera
  19. local root = char.HumanoidRootPart
  20. local deb = false
  21. local shot = 0
  22. local l = game:GetService("Lighting")
  23. local rs = game:GetService("RunService").RenderStepped
  24. local debris=game:service"Debris"
  25. local stanceToggle = "Normal"
  26. math.randomseed(os.time())
  27. hum.WalkSpeed = 7
  28. hum.MaxHealth = 10000
  29. wait(0.1)
  30. hum.Health = 10000
  31. ----------------------------------------------------
  32. ypcall(function()
  33. char.Shirt:Destroy()
  34. char.Pants:Destroy()
  35. shirt = Instance.new("Shirt", char)
  36. shirt.Name = "Shirt"
  37. pants = Instance.new("Pants", char)
  38. pants.Name = "Pants"
  39. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=131708604"
  40. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=131708657"
  41. end)
  42. ----------------------------------------------------
  43. Debounces = {
  44. on = false;
  45. ks = false;
  46. CanAttack = true;
  47. CanJoke = true;
  48. NoIdl = false;
  49. Slashing = false;
  50. Slashed = false;
  51. Grabbing = false;
  52. Grabbed = false;
  53. }
  54. local Touche = {char.Name, }
  55. ----------------------------------------------------
  56. function lerp(a, b, t) -- Linear interpolation
  57. return a + (b - a)*t
  58. end
  59.  
  60. function slerp(a, b, t) --Spherical interpolation
  61. dot = a:Dot(b)
  62. if dot > 0.99999 or dot < -0.99999 then
  63. return t <= 0.5 and a or b
  64. else
  65. r = math.acos(dot)
  66. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  67. end
  68. end
  69.  
  70. function matrixInterpolate(a, b, t)
  71. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  72. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  73. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  74. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  75. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  76. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  77. local t = v1:Dot(v2)
  78. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  79. return CFrame.new()
  80. end
  81. return CFrame.new(
  82. v0.x, v0.y, v0.z,
  83. v1.x, v1.y, v1.z,
  84. v2.x, v2.y, v2.z,
  85. v3.x, v3.y, v3.z)
  86. end
  87. ----------------------------------------------------
  88. function genWeld(a,b)
  89. local w = Instance.new("Weld",a)
  90. w.Part0 = a
  91. w.Part1 = b
  92. return w
  93. end
  94. function weld(a, b)
  95. local weld = Instance.new("Weld")
  96. weld.Name = "W"
  97. weld.Part0 = a
  98. weld.Part1 = b
  99. weld.C0 = a.CFrame:inverse() * b.CFrame
  100. weld.Parent = a
  101. return weld;
  102. end
  103. ----------------------------------------------------
  104. function Lerp(c1,c2,al)
  105. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  106. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  107. for i,v in pairs(com1) do
  108. com1[i] = v+(com2[i]-v)*al
  109. end
  110. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  111. end
  112. ----------------------------------------------------
  113. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  114. local wld = Instance.new("Weld", wp1)
  115. wld.Part0 = wp0
  116. wld.Part1 = wp1
  117. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  118. end
  119. ----------------------------------------------------
  120. function Tween(a,b,c)
  121. return a+(b-a)*c
  122. end
  123. ----------------------------------------------------
  124. function nwPrt(prnt,siz,cf,col)
  125. local prt=Instance.new("Part")
  126. prt.Parent=prnt
  127. prt.FormFactor=3
  128. prt.Name="Part"
  129. prt.Size=siz
  130. prt.CanCollide=false
  131. prt.Anchored=true
  132. prt.Locked=true
  133. prt.TopSurface=10
  134. prt.BottomSurface=10
  135. prt.FrontSurface=10
  136. prt.BackSurface=10
  137. prt.LeftSurface=10
  138. prt.RightSurface=10
  139. prt:BreakJoints()
  140. prt.CFrame=cf or CFrame.new(30,10,30)
  141. prt.Material="Neon"
  142. prt.BrickColor=BrickColor.new(col)
  143. m=Instance.new("SpecialMesh",prt)
  144. m.MeshType=6
  145. return prt
  146. end
  147. ----------------------------------------------------
  148. function nwSnd(prnt,pch,vol,id)
  149. local s=Instance.new("Sound",prnt)
  150. s.Pitch=pch
  151. s.Volume=vol
  152. s.SoundId="rbxassetid://"..id
  153. s.PlayOnRemove=true
  154. return s
  155. end
  156. ----------------------------------------------------
  157. function newRay(start,face,range,wat)
  158. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  159. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  160. return rey,hit,pos
  161. end
  162. ----------------------------------------------------
  163. for i,v in pairs(char:children()) do
  164. if v:IsA("Hat") then
  165. v:Destroy()
  166. end
  167. end
  168. for i,v in pairs(hed:children()) do
  169. if v:IsA("Sound") then
  170. v:Destroy()
  171. end
  172. end
  173. ----------------------------------------------------
  174. function HasntTouched(plrname)
  175. local ret = true
  176. for _, v in pairs(Touche) do
  177. if v == plrname then
  178. ret = false
  179. end
  180. end
  181. return ret
  182. end
  183. ----------------------------------------------------
  184. larm.Size = larm.Size * 2
  185. rarm.Size = rarm.Size * 2
  186. lleg.Size = lleg.Size * 2
  187. rleg.Size = rleg.Size * 2
  188. torso.Size = torso.Size * 2
  189. hed.Size = hed.Size * 2
  190. root.Size = root.Size * 2
  191. ----------------------------------------------------
  192. newWeld(torso, larm, -1.5, 0.5, 0)
  193. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  194. newWeld(torso, rarm, 1.5, 0.5, 0)
  195. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  196. newWeld(torso, hed, 0, 1.5, 0)
  197. newWeld(torso, lleg, -0.5, -1, 0)
  198. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  199. newWeld(torso, rleg, 0.5, -1, 0)
  200. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  201. newWeld(root, torso, 0, -1, 0)
  202. torso.Weld.C1 = CFrame.new(0, -1, 0)
  203. ----------------------------------------------------
  204. hed.face.Texture = "rbxassetid://629947734"
  205. z=Instance.new('Decal',hed)
  206. z.Face = 'Front'
  207. z.Texture='rbxassetid://99174105'
  208. z1=Instance.new('Decal',hed)
  209. z1.Face = 'Right'
  210. hed.BrickColor = BrickColor.new("Really black")
  211. lite = Instance.new("PointLight", torso)
  212. lite.Brightness = 14
  213. lite.Range = 10
  214. lite.Color = Color3.new(170, 0, 255)
  215. --[[local hed2 = hed:Clone()
  216. hed2.CanCollide = false
  217. hed2.Parent = char
  218. hed2:ClearAllChildren()
  219. hed2.Transparency = 1
  220. hed2.Name = "DARP"
  221. local w = Instance.new("Weld",hed2)
  222. w.Part0 = hed
  223. w.Part1 = hed2
  224. w.C0 = CFrame.new(0,0,-0.175)
  225. z=Instance.new("SurfaceGui",hed2)
  226. z.Enabled = true
  227. z.Face = "Front"
  228. z.Adornee = hed2
  229. z.CanvasSize = Vector2.new(100,100)
  230. local face = Instance.new("ImageLabel",z)
  231. face.Size = UDim2.new(1,-30,1,0)
  232. face.Position = UDim2.new(0,15,0,0)
  233. face.BackgroundTransparency = 1
  234. face.Image='rbxassetid://46282671']]--
  235. ----------------------------------------------------
  236. z = Instance.new("Sound", char)
  237. z.SoundId = "rbxassetid://695312907"--242463565
  238. z.Looped = true
  239. z.Pitch = .6
  240. z.Volume = 1
  241. wait(.01)
  242. z:Play()
  243. ----------------------------------------------------
  244. local l = game.Lighting
  245. local sky = Instance.new("Sky",l)
  246. sky.CelestialBodiesShown = true
  247. sky.SkyboxBk = "http://www.roblox.com/asset/?id=159454299"
  248. sky.SkyboxDn = "http://www.roblox.com/asset/?id=159454296"
  249. sky.SkyboxFt = "http://www.roblox.com/asset/?id=159454293"
  250. sky.SkyboxLf = "http://www.roblox.com/asset/?id=159454286"
  251. sky.SkyboxRt = "http://www.roblox.com/asset/?id=159454300"
  252. sky.SkyboxUp = "http://www.roblox.com/asset/?id=159454288"
  253. sky.StarCount = 100
  254. sky.Name = "N3xul Sky"
  255. ----------------------------------------------------
  256. local m = Instance.new("Model")
  257. m.Name = "Absolution"
  258. p1 = Instance.new("Part", m)
  259. p1.BrickColor = BrickColor.new("Royal purple")
  260. p1.Material = "Neon"
  261. p1.FormFactor = Enum.FormFactor.Custom
  262. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  263. 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)
  264. p1.CanCollide = false
  265. p1.Locked = true
  266. p1.Elasticity = 0
  267. p1.BottomSurface = Enum.SurfaceType.Smooth
  268. p1.TopSurface = Enum.SurfaceType.Smooth
  269. b1 = Instance.new("SpecialMesh", p1)
  270. b1.MeshType = Enum.MeshType.Wedge
  271. b1.Name = "Mesh"
  272. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  273. p2 = Instance.new("Part", m)
  274. p2.BrickColor = BrickColor.new("Really black")
  275. p2.FormFactor = Enum.FormFactor.Custom
  276. p2.Size = Vector3.new(1, 2.9000001, 1)
  277. 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)
  278. p2.CanCollide = false
  279. p2.Locked = true
  280. p2.Elasticity = 0
  281. p2.BottomSurface = Enum.SurfaceType.Smooth
  282. p2.TopSurface = Enum.SurfaceType.Smooth
  283. b2 = Instance.new("BlockMesh", p2)
  284. b2.Name = "Mesh"
  285. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  286. p3 = Instance.new("Part", m)
  287. p3.BrickColor = BrickColor.new("Royal purple")
  288. p3.Material = "Neon"
  289. p3.FormFactor = Enum.FormFactor.Custom
  290. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  291. 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)
  292. p3.CanCollide = false
  293. p3.Locked = true
  294. p3.Elasticity = 0
  295. p3.BottomSurface = Enum.SurfaceType.Smooth
  296. p3.TopSurface = Enum.SurfaceType.Smooth
  297. b3 = Instance.new("SpecialMesh", p3)
  298. b3.MeshType = Enum.MeshType.Wedge
  299. b3.Name = "Mesh"
  300. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  301. p4 = Instance.new("Part", m)
  302. p4.BrickColor = BrickColor.new("Royal purple")
  303. p4.Material = "Neon"
  304. p4.FormFactor = Enum.FormFactor.Custom
  305. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  306. 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)
  307. p4.CanCollide = false
  308. p4.Locked = true
  309. p4.Elasticity = 0
  310. p4.BottomSurface = Enum.SurfaceType.Smooth
  311. p4.TopSurface = Enum.SurfaceType.Smooth
  312. b4 = Instance.new("SpecialMesh", p4)
  313. b4.MeshType = Enum.MeshType.Wedge
  314. b4.Name = "Mesh"
  315. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  316. p5 = Instance.new("Part", m)
  317. p5.BrickColor = BrickColor.new("Royal purple")
  318. p5.Material = "Neon"
  319. p5.FormFactor = Enum.FormFactor.Custom
  320. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  321. 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)
  322. p5.CanCollide = false
  323. p5.Locked = true
  324. p5.Elasticity = 0
  325. p5.BottomSurface = Enum.SurfaceType.Smooth
  326. p5.TopSurface = Enum.SurfaceType.Smooth
  327. b5 = Instance.new("SpecialMesh", p5)
  328. b5.MeshType = Enum.MeshType.Wedge
  329. b5.Name = "Mesh"
  330. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  331. p6 = Instance.new("Part", m)
  332. p6.Name = "Handle"
  333. p6.BrickColor = BrickColor.new("Really black")
  334. p6.FormFactor = Enum.FormFactor.Custom
  335. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  336. 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)
  337. p6.CanCollide = false
  338. p6.Locked = true
  339. p6.Elasticity = 0
  340. p6.BottomSurface = Enum.SurfaceType.Smooth
  341. p6.TopSurface = Enum.SurfaceType.Smooth
  342. b6 = Instance.new("BlockMesh", p6)
  343. b6.Name = "Mesh"
  344. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  345. p7 = Instance.new("Part", m)
  346. p7.BrickColor = BrickColor.new("Royal purple")
  347. p7.Material = "Neon"
  348. p7.FormFactor = Enum.FormFactor.Custom
  349. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  350. 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)
  351. p7.CanCollide = false
  352. p7.Locked = true
  353. p7.Elasticity = 0
  354. p7.BottomSurface = Enum.SurfaceType.Smooth
  355. p7.TopSurface = Enum.SurfaceType.Smooth
  356. b7 = Instance.new("SpecialMesh", p7)
  357. b7.MeshType = Enum.MeshType.Wedge
  358. b7.Name = "Mesh"
  359. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  360. p8 = Instance.new("Part", m)
  361. p8.BrickColor = BrickColor.new("Royal purple")
  362. p8.Material = "Neon"
  363. p8.FormFactor = Enum.FormFactor.Custom
  364. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  365. 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)
  366. p8.CanCollide = false
  367. p8.Locked = true
  368. p8.Elasticity = 0
  369. p8.BottomSurface = Enum.SurfaceType.Smooth
  370. p8.TopSurface = Enum.SurfaceType.Smooth
  371. b8 = Instance.new("SpecialMesh", p8)
  372. b8.MeshType = Enum.MeshType.Wedge
  373. b8.Name = "Mesh"
  374. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  375. p9 = Instance.new("Part", m)
  376. p9.BrickColor = BrickColor.new("Really black")
  377. p9.FormFactor = Enum.FormFactor.Custom
  378. p9.Size = Vector3.new(1, 1.07999957, 1)
  379. 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)
  380. p9.CanCollide = false
  381. p9.Locked = true
  382. p9.Elasticity = 0
  383. p9.BottomSurface = Enum.SurfaceType.Smooth
  384. p9.TopSurface = Enum.SurfaceType.Smooth
  385. b9 = Instance.new("BlockMesh", p9)
  386. b9.Name = "Mesh"
  387. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  388. p10 = Instance.new("Part", m)
  389. p10.BrickColor = BrickColor.new("Really black")
  390. p10.FormFactor = Enum.FormFactor.Custom
  391. p10.Size = Vector3.new(1, 1.41999948, 1)
  392. 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)
  393. p10.CanCollide = false
  394. p10.Locked = true
  395. p10.Elasticity = 0
  396. p10.BottomSurface = Enum.SurfaceType.Smooth
  397. p10.TopSurface = Enum.SurfaceType.Smooth
  398. b10 = Instance.new("BlockMesh", p10)
  399. b10.Name = "Mesh"
  400. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  401. p11 = Instance.new("Part", m)
  402. p11.BrickColor = BrickColor.new("Really black")
  403. p11.FormFactor = Enum.FormFactor.Custom
  404. p11.Size = Vector3.new(1, 1.50999951, 1)
  405. 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)
  406. p11.CanCollide = false
  407. p11.Locked = true
  408. p11.Elasticity = 0
  409. p11.BottomSurface = Enum.SurfaceType.Smooth
  410. p11.TopSurface = Enum.SurfaceType.Smooth
  411. b11 = Instance.new("BlockMesh", p11)
  412. b11.Name = "Mesh"
  413. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  414. p12 = Instance.new("Part", m)
  415. p12.Name = "BladeCenter"
  416. p12.BrickColor = BrickColor.new("Royal purple")
  417. p12.Material = Enum.Material.Neon
  418. p12.FormFactor = Enum.FormFactor.Symmetric
  419. p12.Size = Vector3.new(1, 2, 2)
  420. 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)
  421. p12.CanCollide = false
  422. p12.Locked = true
  423. p12.BottomSurface = Enum.SurfaceType.Smooth
  424. p12.TopSurface = Enum.SurfaceType.Smooth
  425. b12 = Instance.new("SpecialMesh", p12)
  426. b12.MeshType = Enum.MeshType.Brick
  427. b12.Name = "Mesh"
  428. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  429. p13 = Instance.new("Part", m)
  430. p13.BrickColor = BrickColor.new("Really black")
  431. p13.FormFactor = Enum.FormFactor.Custom
  432. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  433. 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)
  434. p13.CanCollide = false
  435. p13.Locked = true
  436. p13.Elasticity = 0
  437. p13.BottomSurface = Enum.SurfaceType.Smooth
  438. p13.TopSurface = Enum.SurfaceType.Smooth
  439. b13 = Instance.new("BlockMesh", p13)
  440. b13.Name = "Mesh"
  441. b13.Scale = Vector3.new(1, 1, 0.400000006)
  442. p14 = Instance.new("Part", m)
  443. p14.BrickColor = BrickColor.new("Really black")
  444. p14.FormFactor = Enum.FormFactor.Custom
  445. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  446. 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)
  447. p14.CanCollide = false
  448. p14.Locked = true
  449. p14.Elasticity = 0
  450. p14.BottomSurface = Enum.SurfaceType.Smooth
  451. p14.TopSurface = Enum.SurfaceType.Smooth
  452. b14 = Instance.new("BlockMesh", p14)
  453. b14.Name = "Mesh"
  454. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  455. p15 = Instance.new("Part", m)
  456. p15.BrickColor = BrickColor.new("Really black")
  457. p15.FormFactor = Enum.FormFactor.Custom
  458. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  459. 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)
  460. p15.CanCollide = false
  461. p15.Locked = true
  462. p15.Elasticity = 0
  463. p15.BottomSurface = Enum.SurfaceType.Smooth
  464. p15.TopSurface = Enum.SurfaceType.Smooth
  465. b15 = Instance.new("BlockMesh", p15)
  466. b15.Name = "Mesh"
  467. b15.Scale = Vector3.new(1, 1, 0.400000006)
  468. p16 = Instance.new("Part", m)
  469. p16.BrickColor = BrickColor.new("Really black")
  470. p16.FormFactor = Enum.FormFactor.Custom
  471. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  472. 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)
  473. p16.CanCollide = false
  474. p16.Locked = true
  475. p16.Elasticity = 0
  476. p16.BottomSurface = Enum.SurfaceType.Smooth
  477. p16.TopSurface = Enum.SurfaceType.Smooth
  478. b16 = Instance.new("BlockMesh", p16)
  479. b16.Name = "Mesh"
  480. b16.Scale = Vector3.new(1, 1, 0.400000006)
  481. p17 = Instance.new("Part", m)
  482. p17.BrickColor = BrickColor.new("Really black")
  483. p17.FormFactor = Enum.FormFactor.Custom
  484. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  485. 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)
  486. p17.CanCollide = false
  487. p17.Locked = true
  488. p17.Elasticity = 0
  489. p17.BottomSurface = Enum.SurfaceType.Smooth
  490. p17.TopSurface = Enum.SurfaceType.Smooth
  491. b17 = Instance.new("BlockMesh", p17)
  492. b17.Name = "Mesh"
  493. b17.Scale = Vector3.new(1, 1, 0.400000006)
  494. p18 = Instance.new("WedgePart", m)
  495. p18.BrickColor = BrickColor.new("Royal purple")
  496. p18.Name = "BladePart1"
  497. p18.Material = Enum.Material.Neon
  498. p18.Name = "Wedge"
  499. p18.FormFactor = Enum.FormFactor.Symmetric
  500. p18.Size = Vector3.new(1, 4, 2)
  501. 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)
  502. p18.CanCollide = false
  503. p18.Locked = true
  504. p18.BottomSurface = Enum.SurfaceType.Smooth
  505. p18.TopSurface = Enum.SurfaceType.Smooth
  506. b18 = Instance.new("SpecialMesh", p18)
  507. b18.MeshType = Enum.MeshType.Wedge
  508. b18.Name = "Mesh"
  509. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  510. p19 = Instance.new("WedgePart", m)
  511. p19.BrickColor = BrickColor.new("Royal purple")
  512. p19.Name = "BladePart2"
  513. p19.Material = Enum.Material.Neon
  514. p19.Name = "Wedge"
  515. p19.FormFactor = Enum.FormFactor.Symmetric
  516. p19.Size = Vector3.new(1, 4, 2)
  517. 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)
  518. p19.CanCollide = false
  519. p19.Locked = true
  520. p19.BottomSurface = Enum.SurfaceType.Smooth
  521. p19.TopSurface = Enum.SurfaceType.Smooth
  522. b19 = Instance.new("SpecialMesh", p19)
  523. b19.MeshType = Enum.MeshType.Wedge
  524. b19.Name = "Mesh"
  525. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  526. p20 = Instance.new("Part", m)
  527. p20.BrickColor = BrickColor.new("Really black")
  528. p20.FormFactor = Enum.FormFactor.Custom
  529. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  530. 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)
  531. p20.CanCollide = false
  532. p20.Locked = true
  533. p20.Elasticity = 0
  534. p20.BottomSurface = Enum.SurfaceType.Smooth
  535. p20.TopSurface = Enum.SurfaceType.Smooth
  536. b20 = Instance.new("BlockMesh", p20)
  537. b20.Name = "Mesh"
  538. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  539. p21 = Instance.new("Part", m)
  540. p21.BrickColor = BrickColor.new("Royal purple")
  541. p21.Material = "Neon"
  542. p21.FormFactor = Enum.FormFactor.Custom
  543. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  544. 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)
  545. p21.CanCollide = false
  546. p21.Locked = true
  547. p21.Elasticity = 0
  548. p21.BottomSurface = Enum.SurfaceType.Smooth
  549. p21.TopSurface = Enum.SurfaceType.Smooth
  550. b21 = Instance.new("SpecialMesh", p21)
  551. b21.MeshType = Enum.MeshType.Wedge
  552. b21.Name = "Mesh"
  553. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  554. w1 = Instance.new("Weld", p1)
  555. w1.Name = "Part_Weld"
  556. w1.Part0 = p1
  557. 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)
  558. w1.Part1 = p2
  559. 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)
  560. w2 = Instance.new("Weld", p2)
  561. w2.Name = "Part_Weld"
  562. w2.Part0 = p2
  563. 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)
  564. w2.Part1 = p3
  565. 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)
  566. w3 = Instance.new("Weld", p3)
  567. w3.Name = "Part_Weld"
  568. w3.Part0 = p3
  569. 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)
  570. w3.Part1 = p4
  571. 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)
  572. w4 = Instance.new("Weld", p4)
  573. w4.Name = "Part_Weld"
  574. w4.Part0 = p4
  575. 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)
  576. w4.Part1 = p5
  577. 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)
  578. w5 = Instance.new("Weld", p5)
  579. w5.Name = "Part_Weld"
  580. w5.Part0 = p5
  581. 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)
  582. w5.Part1 = p6
  583. 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)
  584. w6 = Instance.new("Weld", p6)
  585. w6.Name = "Part_Weld"
  586. w6.Part0 = p6
  587. 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)
  588. w6.Part1 = p7
  589. 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)
  590. w7 = Instance.new("Weld", p7)
  591. w7.Name = "Part_Weld"
  592. w7.Part0 = p7
  593. 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)
  594. w7.Part1 = p8
  595. 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)
  596. w8 = Instance.new("Weld", p8)
  597. w8.Name = "Part_Weld"
  598. w8.Part0 = p8
  599. 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)
  600. w8.Part1 = p9
  601. 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)
  602. w9 = Instance.new("Weld", p9)
  603. w9.Name = "Part_Weld"
  604. w9.Part0 = p9
  605. 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)
  606. w9.Part1 = p10
  607. 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)
  608. w10 = Instance.new("Weld", p10)
  609. w10.Name = "Part_Weld"
  610. w10.Part0 = p10
  611. 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)
  612. w10.Part1 = p11
  613. 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)
  614. w11 = Instance.new("Weld", p11)
  615. w11.Name = "Part_Weld"
  616. w11.Part0 = p11
  617. 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)
  618. w11.Part1 = p12
  619. 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)
  620. w12 = Instance.new("Weld", p12)
  621. w12.Name = "Part_Weld"
  622. w12.Part0 = p12
  623. 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)
  624. w12.Part1 = p13
  625. 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)
  626. w13 = Instance.new("Weld", p13)
  627. w13.Name = "Part_Weld"
  628. w13.Part0 = p13
  629. 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)
  630. w13.Part1 = p14
  631. 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)
  632. w14 = Instance.new("Weld", p14)
  633. w14.Name = "Part_Weld"
  634. w14.Part0 = p14
  635. 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)
  636. w14.Part1 = p15
  637. 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)
  638. w15 = Instance.new("Weld", p15)
  639. w15.Name = "Part_Weld"
  640. w15.Part0 = p15
  641. 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)
  642. w15.Part1 = p16
  643. 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)
  644. w16 = Instance.new("Weld", p16)
  645. w16.Name = "Part_Weld"
  646. w16.Part0 = p16
  647. 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)
  648. w16.Part1 = p17
  649. 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)
  650. w17 = Instance.new("Weld", p17)
  651. w17.Name = "Wedge_Weld"
  652. w17.Part0 = p17
  653. 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)
  654. w17.Part1 = p18
  655. 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)
  656. w18 = Instance.new("Weld", p18)
  657. w18.Name = "Wedge_Weld"
  658. w18.Part0 = p18
  659. 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)
  660. w18.Part1 = p19
  661. 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)
  662. w19 = Instance.new("Weld", p19)
  663. w19.Name = "Part_Weld"
  664. w19.Part0 = p19
  665. 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)
  666. w19.Part1 = p20
  667. 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)
  668. w20 = Instance.new("Weld", p20)
  669. w20.Name = "Part_Weld"
  670. w20.Part0 = p20
  671. 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)
  672. w20.Part1 = p21
  673. 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)
  674. m.Parent = char
  675. m:MakeJoints()
  676. ----------------------------------------------------
  677. local cor = Instance.new("Part", char.Absolution)
  678. cor.Name = "Thingy"
  679. cor.Locked = true
  680. cor.BottomSurface = 0
  681. cor.CanCollide = false
  682. cor.Size = Vector3.new(1, 13, 1)
  683. cor.Transparency = 1
  684. cor.TopSurface = 0
  685. corw = Instance.new("Weld", cor)
  686. corw.Part0 = rarm
  687. corw.Part1 = cor
  688. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  689. corw.C1 = CFrame.new(0, 0, 0)
  690. weld1 = Instance.new("Weld", char.Absolution)
  691. weld1.Part0 = cor
  692. weld1.Part1 = p6
  693. weld1.C0 = CFrame.new(0, 0, 0)
  694. ----------------------------------------------------
  695. hitb = Instance.new("Part", char.Absolution)
  696. hitb.Name = "Thingy2"
  697. hitb.Locked = true
  698. hitb.BottomSurface = 0
  699. hitb.CanCollide = false
  700. hitb.Size = Vector3.new(0, 8, 6)
  701. hitb.Transparency = 1
  702. hitb.TopSurface = 0
  703. weld2 = Instance.new("Weld", char.Absolution)
  704. weld2.Part0 = hitb
  705. weld2.Part1 = p12
  706. weld2.C0 = CFrame.new(0, .6, 1)
  707. ----------------------------------------------------
  708. local m = Instance.new("Model")
  709. m.Name = "Claw"
  710. p1 = Instance.new("Part", m)
  711. p1.BrickColor = BrickColor.new("Really black")
  712. p1.FormFactor = Enum.FormFactor.Custom
  713. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  714. 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)
  715. p1.CanCollide = false
  716. p1.Locked = true
  717. p1.BottomSurface = Enum.SurfaceType.Smooth
  718. p1.TopSurface = Enum.SurfaceType.Smooth
  719. b1 = Instance.new("BlockMesh", p1)
  720. b1.Name = "Mesh"
  721. p2 = Instance.new("WedgePart", m)
  722. p2.BrickColor = BrickColor.new("Really black")
  723. p2.Name = "Wedge"
  724. p2.FormFactor = Enum.FormFactor.Custom
  725. p2.Size = Vector3.new(3, 1, 0.5)
  726. 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)
  727. p2.CanCollide = false
  728. p2.Locked = true
  729. p2.BottomSurface = Enum.SurfaceType.Smooth
  730. p2.TopSurface = Enum.SurfaceType.Smooth
  731. p3 = Instance.new("Part", m)
  732. p3.BrickColor = BrickColor.new("Really black")
  733. p3.FormFactor = Enum.FormFactor.Custom
  734. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  735. 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)
  736. p3.CanCollide = false
  737. p3.Locked = true
  738. p3.BottomSurface = Enum.SurfaceType.Smooth
  739. p3.TopSurface = Enum.SurfaceType.Smooth
  740. b2 = Instance.new("BlockMesh", p3)
  741. b2.Name = "Mesh"
  742. p4 = Instance.new("WedgePart", m)
  743. p4.BrickColor = BrickColor.new("Really black")
  744. p4.Name = "Wedge"
  745. p4.FormFactor = Enum.FormFactor.Custom
  746. p4.Size = Vector3.new(3, 1, 0.5)
  747. 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)
  748. p4.CanCollide = false
  749. p4.Locked = true
  750. p4.BottomSurface = Enum.SurfaceType.Smooth
  751. p4.TopSurface = Enum.SurfaceType.Smooth
  752. p5 = Instance.new("Part", m)
  753. p5.BrickColor = BrickColor.new("Really black")
  754. p5.FormFactor = Enum.FormFactor.Custom
  755. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  756. 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)
  757. p5.CanCollide = false
  758. p5.Locked = true
  759. p5.BottomSurface = Enum.SurfaceType.Smooth
  760. p5.TopSurface = Enum.SurfaceType.Smooth
  761. b3 = Instance.new("BlockMesh", p5)
  762. b3.Name = "Mesh"
  763. p6 = Instance.new("Part", m)
  764. p6.BrickColor = BrickColor.new("Really black")
  765. p6.FormFactor = Enum.FormFactor.Custom
  766. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  767. 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)
  768. p6.CanCollide = false
  769. p6.Locked = true
  770. p6.BottomSurface = Enum.SurfaceType.Smooth
  771. p6.TopSurface = Enum.SurfaceType.Smooth
  772. b4 = Instance.new("BlockMesh", p6)
  773. b4.Name = "Mesh"
  774. p7 = Instance.new("Part", m)
  775. p7.BrickColor = BrickColor.new("Really black")
  776. p7.FormFactor = Enum.FormFactor.Custom
  777. p7.Size = Vector3.new(3, 1, 1.20000005)
  778. 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)
  779. p7.CanCollide = false
  780. p7.Locked = true
  781. p7.BottomSurface = Enum.SurfaceType.Smooth
  782. p7.TopSurface = Enum.SurfaceType.Smooth
  783. b5 = Instance.new("BlockMesh", p7)
  784. b5.Name = "Mesh"
  785. p8 = Instance.new("Part", m)
  786. p8.BrickColor = BrickColor.new("Royal purple")
  787. p8.Material = "Neon"
  788. p8.FormFactor = Enum.FormFactor.Symmetric
  789. p8.Size = Vector3.new(1, 1, 1)
  790. 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)
  791. p8.CanCollide = false
  792. p8.Locked = true
  793. b6 = Instance.new("SpecialMesh", p8)
  794. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  795. b6.TextureId = ""
  796. b6.MeshType = Enum.MeshType.FileMesh
  797. b6.Name = "Mesh"
  798. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  799. p9 = Instance.new("Part", m)
  800. p9.BrickColor = BrickColor.new("Really black")
  801. p9.FormFactor = Enum.FormFactor.Custom
  802. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  803. 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)
  804. p9.CanCollide = false
  805. p9.Locked = true
  806. p9.BottomSurface = Enum.SurfaceType.Smooth
  807. p9.TopSurface = Enum.SurfaceType.Smooth
  808. b7 = Instance.new("BlockMesh", p9)
  809. b7.Name = "Mesh"
  810. p10 = Instance.new("Part", m)
  811. p10.BrickColor = BrickColor.new("Royal purple")
  812. p10.Material = "Neon"
  813. p10.FormFactor = Enum.FormFactor.Symmetric
  814. p10.Size = Vector3.new(1, 1, 1)
  815. 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)
  816. p10.CanCollide = false
  817. p10.Locked = true
  818. b8 = Instance.new("SpecialMesh", p10)
  819. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  820. b8.TextureId = ""
  821. b8.MeshType = Enum.MeshType.FileMesh
  822. b8.Name = "Mesh"
  823. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  824. p11 = Instance.new("Part", m)
  825. p11.BrickColor = BrickColor.new("Really black")
  826. p11.FormFactor = Enum.FormFactor.Custom
  827. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  828. 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)
  829. p11.CanCollide = false
  830. p11.Locked = true
  831. p11.BottomSurface = Enum.SurfaceType.Smooth
  832. p11.TopSurface = Enum.SurfaceType.Smooth
  833. b9 = Instance.new("BlockMesh", p11)
  834. b9.Name = "Mesh"
  835. p12 = Instance.new("Part", m)
  836. p12.BrickColor = BrickColor.new("Really black")
  837. p12.FormFactor = Enum.FormFactor.Custom
  838. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  839. 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)
  840. p12.CanCollide = false
  841. p12.Locked = true
  842. p12.BottomSurface = Enum.SurfaceType.Smooth
  843. p12.TopSurface = Enum.SurfaceType.Smooth
  844. b10 = Instance.new("BlockMesh", p12)
  845. b10.Name = "Mesh"
  846. p13 = Instance.new("Part", m)
  847. p13.BrickColor = BrickColor.new("Really black")
  848. p13.FormFactor = Enum.FormFactor.Custom
  849. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  850. 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)
  851. p13.CanCollide = false
  852. p13.Locked = true
  853. p13.BottomSurface = Enum.SurfaceType.Smooth
  854. p13.TopSurface = Enum.SurfaceType.Smooth
  855. b11 = Instance.new("BlockMesh", p13)
  856. b11.Name = "Mesh"
  857. p14 = Instance.new("Part", m)
  858. p14.BrickColor = BrickColor.new("Royal purple")
  859. p14.Material = "Neon"
  860. p14.FormFactor = Enum.FormFactor.Symmetric
  861. p14.Size = Vector3.new(1, 1, 1)
  862. 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)
  863. p14.CanCollide = false
  864. p14.Locked = true
  865. b12 = Instance.new("SpecialMesh", p14)
  866. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  867. b12.TextureId = ""
  868. b12.MeshType = Enum.MeshType.FileMesh
  869. b12.Name = "Mesh"
  870. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  871. p15 = Instance.new("Part", m)
  872. p15.BrickColor = BrickColor.new("Royal purple")
  873. p15.Transparency = 1
  874. p15.Name = "ArmPart"
  875. p15.FormFactor = Enum.FormFactor.Custom
  876. p15.Size = Vector3.new(2, 1, 1)
  877. 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)
  878. p15.CanCollide = false
  879. p15.Locked = true
  880. p15.BottomSurface = Enum.SurfaceType.Smooth
  881. p15.TopSurface = Enum.SurfaceType.Smooth
  882. b13 = Instance.new("BlockMesh", p15)
  883. b13.Name = "Mesh"
  884. p16 = Instance.new("Part", m)
  885. p16.BrickColor = BrickColor.new("Really black")
  886. p16.FormFactor = Enum.FormFactor.Custom
  887. p16.Size = Vector3.new(3, 1, 2.4000001)
  888. 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)
  889. p16.CanCollide = false
  890. p16.Locked = true
  891. p16.BottomSurface = Enum.SurfaceType.Smooth
  892. p16.TopSurface = Enum.SurfaceType.Smooth
  893. b14 = Instance.new("BlockMesh", p16)
  894. b14.Name = "Mesh"
  895. p17 = Instance.new("Part", m)
  896. p17.BrickColor = BrickColor.new("Really black")
  897. p17.FormFactor = Enum.FormFactor.Custom
  898. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  899. 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)
  900. p17.CanCollide = false
  901. p17.Locked = true
  902. p17.BottomSurface = Enum.SurfaceType.Smooth
  903. p17.TopSurface = Enum.SurfaceType.Smooth
  904. b15 = Instance.new("BlockMesh", p17)
  905. b15.Name = "Mesh"
  906. p18 = Instance.new("Part", m)
  907. p18.BrickColor = BrickColor.new("Royal purple")
  908. p18.Material = "Neon"
  909. p18.FormFactor = Enum.FormFactor.Symmetric
  910. p18.Size = Vector3.new(1, 1, 1)
  911. 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)
  912. p18.CanCollide = false
  913. p18.Locked = true
  914. b16 = Instance.new("SpecialMesh", p18)
  915. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  916. b16.TextureId = ""
  917. b16.MeshType = Enum.MeshType.FileMesh
  918. b16.Name = "Mesh"
  919. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  920. p19 = Instance.new("Part", m)
  921. p19.BrickColor = BrickColor.new("Royal purple")
  922. p19.Material = "Neon"
  923. p19.FormFactor = Enum.FormFactor.Symmetric
  924. p19.Size = Vector3.new(1, 1, 1)
  925. 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)
  926. p19.CanCollide = false
  927. p19.Locked = true
  928. b17 = Instance.new("SpecialMesh", p19)
  929. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  930. b17.TextureId = ""
  931. b17.MeshType = Enum.MeshType.FileMesh
  932. b17.Name = "Mesh"
  933. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  934. p20 = Instance.new("Part", m)
  935. p20.BrickColor = BrickColor.new("Really black")
  936. p20.FormFactor = Enum.FormFactor.Custom
  937. p20.Size = Vector3.new(3, 1, 2.4000001)
  938. 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)
  939. p20.CanCollide = false
  940. p20.Locked = true
  941. p20.BottomSurface = Enum.SurfaceType.Smooth
  942. p20.TopSurface = Enum.SurfaceType.Smooth
  943. b18 = Instance.new("BlockMesh", p20)
  944. b18.Name = "Mesh"
  945. p21 = Instance.new("Part", m)
  946. p21.BrickColor = BrickColor.new("Really black")
  947. p21.FormFactor = Enum.FormFactor.Custom
  948. p21.Size = Vector3.new(3, 1, 1.19999993)
  949. 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)
  950. p21.CanCollide = false
  951. p21.Locked = true
  952. p21.BottomSurface = Enum.SurfaceType.Smooth
  953. p21.TopSurface = Enum.SurfaceType.Smooth
  954. b19 = Instance.new("BlockMesh", p21)
  955. b19.Name = "Mesh"
  956. p22 = Instance.new("WedgePart", m)
  957. p22.BrickColor = BrickColor.new("Really black")
  958. p22.Name = "Wedge"
  959. p22.FormFactor = Enum.FormFactor.Custom
  960. p22.Size = Vector3.new(3, 1, 0.5)
  961. 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)
  962. p22.CanCollide = false
  963. p22.Locked = true
  964. p22.BottomSurface = Enum.SurfaceType.Smooth
  965. p22.TopSurface = Enum.SurfaceType.Smooth
  966. p23 = Instance.new("Part", m)
  967. p23.BrickColor = BrickColor.new("Really black")
  968. p23.FormFactor = Enum.FormFactor.Custom
  969. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  970. 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)
  971. p23.CanCollide = false
  972. p23.Locked = true
  973. p23.BottomSurface = Enum.SurfaceType.Smooth
  974. p23.TopSurface = Enum.SurfaceType.Smooth
  975. b20 = Instance.new("BlockMesh", p23)
  976. b20.Name = "Mesh"
  977. p24 = Instance.new("WedgePart", m)
  978. p24.BrickColor = BrickColor.new("Really black")
  979. p24.Name = "Wedge"
  980. p24.FormFactor = Enum.FormFactor.Custom
  981. p24.Size = Vector3.new(3, 1, 0.5)
  982. 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)
  983. p24.CanCollide = false
  984. p24.Locked = true
  985. p24.BottomSurface = Enum.SurfaceType.Smooth
  986. p24.TopSurface = Enum.SurfaceType.Smooth
  987. p25 = Instance.new("Part", m)
  988. p25.BrickColor = BrickColor.new("Royal purple")
  989. p25.Material = "Neon"
  990. p25.FormFactor = Enum.FormFactor.Symmetric
  991. p25.Size = Vector3.new(1, 1, 1)
  992. 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)
  993. p25.CanCollide = false
  994. p25.Locked = true
  995. p25.BottomSurface = Enum.SurfaceType.Smooth
  996. p25.TopSurface = Enum.SurfaceType.Smooth
  997. b21 = Instance.new("SpecialMesh", p25)
  998. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  999. b21.TextureId = ""
  1000. b21.MeshType = Enum.MeshType.FileMesh
  1001. b21.Name = "Mesh"
  1002. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1003. p26 = Instance.new("Part", m)
  1004. p26.BrickColor = BrickColor.new("Really black")
  1005. p26.FormFactor = Enum.FormFactor.Symmetric
  1006. p26.Size = Vector3.new(1, 1, 1)
  1007. 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)
  1008. p26.CanCollide = false
  1009. p26.Locked = true
  1010. p26.BottomSurface = Enum.SurfaceType.Smooth
  1011. p26.TopSurface = Enum.SurfaceType.Smooth
  1012. b22 = Instance.new("SpecialMesh", p26)
  1013. b22.MeshType = Enum.MeshType.Brick
  1014. b22.Name = "Mesh"
  1015. w1 = Instance.new("Weld", p1)
  1016. w1.Name = "Wedge_Weld"
  1017. w1.Part0 = p1
  1018. 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)
  1019. w1.Part1 = p2
  1020. 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)
  1021. w2 = Instance.new("Weld", p2)
  1022. w2.Name = "Part_Weld"
  1023. w2.Part0 = p2
  1024. 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)
  1025. w2.Part1 = p3
  1026. 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)
  1027. w3 = Instance.new("Weld", p3)
  1028. w3.Name = "Wedge_Weld"
  1029. w3.Part0 = p3
  1030. 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)
  1031. w3.Part1 = p4
  1032. 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)
  1033. w4 = Instance.new("Weld", p4)
  1034. w4.Name = "Part_Weld"
  1035. w4.Part0 = p4
  1036. 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)
  1037. w4.Part1 = p5
  1038. 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)
  1039. w5 = Instance.new("Weld", p5)
  1040. w5.Name = "Part_Weld"
  1041. w5.Part0 = p5
  1042. 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)
  1043. w5.Part1 = p6
  1044. 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)
  1045. w6 = Instance.new("Weld", p6)
  1046. w6.Name = "Part_Weld"
  1047. w6.Part0 = p6
  1048. 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)
  1049. w6.Part1 = p7
  1050. 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)
  1051. w7 = Instance.new("Weld", p7)
  1052. w7.Name = "Part_Weld"
  1053. w7.Part0 = p7
  1054. 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)
  1055. w7.Part1 = p8
  1056. 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)
  1057. w8 = Instance.new("Weld", p8)
  1058. w8.Name = "Part_Weld"
  1059. w8.Part0 = p8
  1060. 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)
  1061. w8.Part1 = p9
  1062. 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)
  1063. w9 = Instance.new("Weld", p9)
  1064. w9.Name = "Part_Weld"
  1065. w9.Part0 = p9
  1066. 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)
  1067. w9.Part1 = p10
  1068. 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)
  1069. w10 = Instance.new("Weld", p10)
  1070. w10.Name = "Part_Weld"
  1071. w10.Part0 = p10
  1072. 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)
  1073. w10.Part1 = p11
  1074. 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)
  1075. w11 = Instance.new("Weld", p11)
  1076. w11.Name = "Part_Weld"
  1077. w11.Part0 = p11
  1078. 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)
  1079. w11.Part1 = p12
  1080. 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)
  1081. w12 = Instance.new("Weld", p12)
  1082. w12.Name = "Part_Weld"
  1083. w12.Part0 = p12
  1084. 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)
  1085. w12.Part1 = p13
  1086. 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)
  1087. w13 = Instance.new("Weld", p13)
  1088. w13.Name = "Part_Weld"
  1089. w13.Part0 = p13
  1090. 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)
  1091. w13.Part1 = p14
  1092. 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)
  1093. w14 = Instance.new("Weld", p14)
  1094. w14.Name = "ArmPart_Weld"
  1095. w14.Part0 = p14
  1096. 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)
  1097. w14.Part1 = p15
  1098. 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)
  1099. w15 = Instance.new("Weld", p15)
  1100. w15.Name = "Part_Weld"
  1101. w15.Part0 = p15
  1102. 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)
  1103. w15.Part1 = p16
  1104. 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)
  1105. w16 = Instance.new("Weld", p16)
  1106. w16.Name = "Part_Weld"
  1107. w16.Part0 = p16
  1108. 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)
  1109. w16.Part1 = p17
  1110. 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)
  1111. w17 = Instance.new("Weld", p17)
  1112. w17.Name = "Part_Weld"
  1113. w17.Part0 = p17
  1114. 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)
  1115. w17.Part1 = p18
  1116. 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)
  1117. w18 = Instance.new("Weld", p18)
  1118. w18.Name = "Part_Weld"
  1119. w18.Part0 = p18
  1120. 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)
  1121. w18.Part1 = p19
  1122. 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)
  1123. w19 = Instance.new("Weld", p19)
  1124. w19.Name = "Part_Weld"
  1125. w19.Part0 = p19
  1126. 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)
  1127. w19.Part1 = p20
  1128. 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)
  1129. w20 = Instance.new("Weld", p20)
  1130. w20.Name = "Part_Weld"
  1131. w20.Part0 = p20
  1132. 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)
  1133. w20.Part1 = p21
  1134. 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)
  1135. w21 = Instance.new("Weld", p21)
  1136. w21.Name = "Wedge_Weld"
  1137. w21.Part0 = p21
  1138. 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)
  1139. w21.Part1 = p22
  1140. 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)
  1141. w22 = Instance.new("Weld", p22)
  1142. w22.Name = "Part_Weld"
  1143. w22.Part0 = p22
  1144. 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)
  1145. w22.Part1 = p23
  1146. 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)
  1147. w23 = Instance.new("Weld", p23)
  1148. w23.Name = "Wedge_Weld"
  1149. w23.Part0 = p23
  1150. 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)
  1151. w23.Part1 = p24
  1152. 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)
  1153. w24 = Instance.new("Weld", p24)
  1154. w24.Name = "Part_Weld"
  1155. w24.Part0 = p24
  1156. 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)
  1157. w24.Part1 = p25
  1158. 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)
  1159. w25 = Instance.new("Weld", p25)
  1160. w25.Name = "Part_Weld"
  1161. w25.Part0 = p25
  1162. 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)
  1163. w25.Part1 = p26
  1164. 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)
  1165. m.Parent = char
  1166. m:MakeJoints()
  1167. ----------------------------------------------------
  1168. local cor2 = Instance.new("Part", char.Claw)
  1169. cor2.Name = "Thingy"
  1170. cor2.Locked = true
  1171. cor2.BottomSurface = 0
  1172. cor2.CanCollide = false
  1173. cor2.Size = Vector3.new(2, 1, 1)
  1174. cor2.Transparency = 1
  1175. cor2.TopSurface = 0
  1176. corw2 = Instance.new("Weld", cor2)
  1177. corw2.Part0 = larm
  1178. corw2.Part1 = cor2
  1179. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1180. corw2.C1 = CFrame.new(0, 0, 0)
  1181. weld2 = Instance.new("Weld", char.Claw)
  1182. weld2.Part0 = cor2
  1183. weld2.Part1 = char.Claw.ArmPart
  1184. weld2.C0 = CFrame.new(0, 0, 0)
  1185. ----------------------------------------------------
  1186. local m = Instance.new("Model")
  1187. m.Name = "LeftArm"
  1188. p1 = Instance.new("WedgePart", m)
  1189. p1.BrickColor = BrickColor.new("Royal purple")
  1190. p1.Material = Enum.Material.Neon
  1191. p1.Name = "Wedge"
  1192. p1.FormFactor = Enum.FormFactor.Custom
  1193. p1.Size = Vector3.new(1, 1.19999981, 4)
  1194. 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)
  1195. p1.CanCollide = false
  1196. p1.Locked = true
  1197. p1.TopSurface = Enum.SurfaceType.Smooth
  1198. b1 = Instance.new("SpecialMesh", p1)
  1199. b1.MeshType = Enum.MeshType.Wedge
  1200. b1.Name = "Mesh"
  1201. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1202. p2 = Instance.new("WedgePart", m)
  1203. p2.BrickColor = BrickColor.new("Royal purple")
  1204. p2.Material = Enum.Material.Neon
  1205. p2.Name = "Wedge"
  1206. p2.FormFactor = Enum.FormFactor.Custom
  1207. p2.Size = Vector3.new(1, 1.19999981, 4)
  1208. 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)
  1209. p2.CanCollide = false
  1210. p2.Locked = true
  1211. p2.TopSurface = Enum.SurfaceType.Smooth
  1212. b2 = Instance.new("SpecialMesh", p2)
  1213. b2.MeshType = Enum.MeshType.Wedge
  1214. b2.Name = "Mesh"
  1215. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1216. p3 = Instance.new("WedgePart", m)
  1217. p3.BrickColor = BrickColor.new("Royal purple")
  1218. p3.Material = Enum.Material.Neon
  1219. p3.Name = "Wedge"
  1220. p3.FormFactor = Enum.FormFactor.Custom
  1221. p3.Size = Vector3.new(1, 1.19999981, 4)
  1222. 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)
  1223. p3.CanCollide = false
  1224. p3.Locked = true
  1225. p3.TopSurface = Enum.SurfaceType.Smooth
  1226. b3 = Instance.new("SpecialMesh", p3)
  1227. b3.MeshType = Enum.MeshType.Wedge
  1228. b3.Name = "Mesh"
  1229. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1230. p4 = Instance.new("WedgePart", m)
  1231. p4.BrickColor = BrickColor.new("Royal purple")
  1232. p4.Material = Enum.Material.Neon
  1233. p4.Name = "Wedge"
  1234. p4.FormFactor = Enum.FormFactor.Custom
  1235. p4.Size = Vector3.new(1, 1.19999981, 4)
  1236. 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)
  1237. p4.CanCollide = false
  1238. p4.Locked = true
  1239. p4.TopSurface = Enum.SurfaceType.Smooth
  1240. b4 = Instance.new("SpecialMesh", p4)
  1241. b4.MeshType = Enum.MeshType.Wedge
  1242. b4.Name = "Mesh"
  1243. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1244. p5 = Instance.new("WedgePart", m)
  1245. p5.BrickColor = BrickColor.new("Royal purple")
  1246. p5.Material = Enum.Material.Neon
  1247. p5.Name = "Wedge"
  1248. p5.FormFactor = Enum.FormFactor.Custom
  1249. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1250. 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)
  1251. p5.CanCollide = false
  1252. p5.Locked = true
  1253. p5.TopSurface = Enum.SurfaceType.Smooth
  1254. b5 = Instance.new("SpecialMesh", p5)
  1255. b5.MeshType = Enum.MeshType.Wedge
  1256. b5.Name = "Mesh"
  1257. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1258. p6 = Instance.new("WedgePart", m)
  1259. p6.BrickColor = BrickColor.new("Royal purple")
  1260. p6.Material = Enum.Material.Neon
  1261. p6.Name = "Wedge"
  1262. p6.FormFactor = Enum.FormFactor.Custom
  1263. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1264. 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)
  1265. p6.CanCollide = false
  1266. p6.Locked = true
  1267. p6.TopSurface = Enum.SurfaceType.Smooth
  1268. b6 = Instance.new("SpecialMesh", p6)
  1269. b6.MeshType = Enum.MeshType.Wedge
  1270. b6.Name = "Mesh"
  1271. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1272. p7 = Instance.new("WedgePart", m)
  1273. p7.BrickColor = BrickColor.new("Royal purple")
  1274. p7.Material = Enum.Material.Neon
  1275. p7.Name = "Wedge"
  1276. p7.FormFactor = Enum.FormFactor.Custom
  1277. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1278. 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)
  1279. p7.CanCollide = false
  1280. p7.Locked = true
  1281. p7.TopSurface = Enum.SurfaceType.Smooth
  1282. b7 = Instance.new("SpecialMesh", p7)
  1283. b7.MeshType = Enum.MeshType.Wedge
  1284. b7.Name = "Mesh"
  1285. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1286. p8 = Instance.new("Part", m)
  1287. p8.BrickColor = BrickColor.new("Really black")
  1288. p8.Material = Enum.Material.Neon
  1289. p8.FormFactor = Enum.FormFactor.Custom
  1290. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1291. 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)
  1292. p8.CanCollide = false
  1293. p8.Locked = true
  1294. p8.BottomSurface = Enum.SurfaceType.Smooth
  1295. p8.TopSurface = Enum.SurfaceType.Smooth
  1296. b8 = Instance.new("SpecialMesh", p8)
  1297. b8.MeshType = Enum.MeshType.Sphere
  1298. b8.Name = "Mesh"
  1299. p9 = Instance.new("Part", m)
  1300. p9.BrickColor = BrickColor.new("Really black")
  1301. p9.Material = Enum.Material.Neon
  1302. p9.FormFactor = Enum.FormFactor.Custom
  1303. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1304. 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)
  1305. p9.CanCollide = false
  1306. p9.Locked = true
  1307. p9.BottomSurface = Enum.SurfaceType.Smooth
  1308. p9.TopSurface = Enum.SurfaceType.Smooth
  1309. b9 = Instance.new("SpecialMesh", p9)
  1310. b9.MeshType = Enum.MeshType.Sphere
  1311. b9.Name = "Mesh"
  1312. p10 = Instance.new("Part", m)
  1313. p10.BrickColor = BrickColor.new("Royal purple")
  1314. p10.Material = Enum.Material.Neon
  1315. p10.FormFactor = Enum.FormFactor.Custom
  1316. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1317. 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)
  1318. p10.CanCollide = false
  1319. p10.Locked = true
  1320. p10.BottomSurface = Enum.SurfaceType.Smooth
  1321. p10.TopSurface = Enum.SurfaceType.Smooth
  1322. p11 = Instance.new("Part", m)
  1323. p11.BrickColor = BrickColor.new("Royal purple")
  1324. p11.Material = Enum.Material.Neon
  1325. p11.FormFactor = Enum.FormFactor.Custom
  1326. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1327. 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)
  1328. p11.CanCollide = false
  1329. p11.Locked = true
  1330. p11.BottomSurface = Enum.SurfaceType.Smooth
  1331. p11.TopSurface = Enum.SurfaceType.Smooth
  1332. p12 = Instance.new("Part", m)
  1333. p12.BrickColor = BrickColor.new("Really black")
  1334. p12.Material = Enum.Material.Neon
  1335. p12.FormFactor = Enum.FormFactor.Custom
  1336. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1337. 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)
  1338. p12.CanCollide = false
  1339. p12.Locked = true
  1340. p12.BottomSurface = Enum.SurfaceType.Smooth
  1341. p12.TopSurface = Enum.SurfaceType.Smooth
  1342. b10 = Instance.new("SpecialMesh", p12)
  1343. b10.MeshType = Enum.MeshType.Sphere
  1344. b10.Name = "Mesh"
  1345. p13 = Instance.new("Part", m)
  1346. p13.BrickColor = BrickColor.new("Royal purple")
  1347. p13.Material = Enum.Material.Neon
  1348. p13.FormFactor = Enum.FormFactor.Custom
  1349. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1350. 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)
  1351. p13.CanCollide = false
  1352. p13.Locked = true
  1353. p13.BottomSurface = Enum.SurfaceType.Smooth
  1354. p13.TopSurface = Enum.SurfaceType.Smooth
  1355. b11 = Instance.new("SpecialMesh", p13)
  1356. b11.MeshType = Enum.MeshType.Sphere
  1357. b11.Name = "Mesh"
  1358. p14 = Instance.new("Part", m)
  1359. p14.BrickColor = BrickColor.new("Really black")
  1360. p14.Material = Enum.Material.Neon
  1361. p14.FormFactor = Enum.FormFactor.Custom
  1362. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1363. 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)
  1364. p14.CanCollide = false
  1365. p14.Locked = true
  1366. p14.BottomSurface = Enum.SurfaceType.Smooth
  1367. p14.TopSurface = Enum.SurfaceType.Smooth
  1368. b12 = Instance.new("SpecialMesh", p14)
  1369. b12.MeshType = Enum.MeshType.Sphere
  1370. b12.Name = "Mesh"
  1371. p15 = Instance.new("Part", m)
  1372. p15.BrickColor = BrickColor.new("Really black")
  1373. p15.Material = Enum.Material.Metal
  1374. p15.Name = "Main"
  1375. p15.FormFactor = Enum.FormFactor.Custom
  1376. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1377. 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)
  1378. p15.CanCollide = false
  1379. p15.Locked = true
  1380. p15.BottomSurface = Enum.SurfaceType.Smooth
  1381. p15.TopSurface = Enum.SurfaceType.Smooth
  1382. p16 = Instance.new("Part", m)
  1383. p16.BrickColor = BrickColor.new("Really black")
  1384. p16.Material = Enum.Material.Neon
  1385. p16.FormFactor = Enum.FormFactor.Custom
  1386. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1387. 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)
  1388. p16.CanCollide = false
  1389. p16.Locked = true
  1390. p16.BottomSurface = Enum.SurfaceType.Smooth
  1391. p16.TopSurface = Enum.SurfaceType.Smooth
  1392. b13 = Instance.new("SpecialMesh", p16)
  1393. b13.MeshType = Enum.MeshType.Sphere
  1394. b13.Name = "Mesh"
  1395. p17 = Instance.new("Part", m)
  1396. p17.BrickColor = BrickColor.new("Royal purple")
  1397. p17.Material = Enum.Material.Neon
  1398. p17.FormFactor = Enum.FormFactor.Custom
  1399. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1400. 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)
  1401. p17.CanCollide = false
  1402. p17.Locked = true
  1403. p17.BottomSurface = Enum.SurfaceType.Smooth
  1404. p17.TopSurface = Enum.SurfaceType.Smooth
  1405. p18 = Instance.new("Part", m)
  1406. p18.BrickColor = BrickColor.new("Royal purple")
  1407. p18.Material = Enum.Material.Neon
  1408. p18.FormFactor = Enum.FormFactor.Custom
  1409. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1410. 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)
  1411. p18.CanCollide = false
  1412. p18.Locked = true
  1413. p18.BottomSurface = Enum.SurfaceType.Smooth
  1414. p18.TopSurface = Enum.SurfaceType.Smooth
  1415. p19 = Instance.new("Part", m)
  1416. p19.BrickColor = BrickColor.new("Royal purple")
  1417. p19.Material = Enum.Material.Neon
  1418. p19.FormFactor = Enum.FormFactor.Custom
  1419. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1420. 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)
  1421. p19.CanCollide = false
  1422. p19.Locked = true
  1423. p19.BottomSurface = Enum.SurfaceType.Smooth
  1424. p19.TopSurface = Enum.SurfaceType.Smooth
  1425. p20 = Instance.new("Part", m)
  1426. p20.BrickColor = BrickColor.new("Royal purple")
  1427. p20.Material = Enum.Material.Neon
  1428. p20.FormFactor = Enum.FormFactor.Custom
  1429. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1430. 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)
  1431. p20.CanCollide = false
  1432. p20.Locked = true
  1433. p20.BottomSurface = Enum.SurfaceType.Smooth
  1434. p20.TopSurface = Enum.SurfaceType.Smooth
  1435. p21 = Instance.new("Part", m)
  1436. p21.BrickColor = BrickColor.new("Royal purple")
  1437. p21.Material = Enum.Material.Neon
  1438. p21.FormFactor = Enum.FormFactor.Custom
  1439. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1440. 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)
  1441. p21.CanCollide = false
  1442. p21.Locked = true
  1443. p21.BottomSurface = Enum.SurfaceType.Smooth
  1444. p21.TopSurface = Enum.SurfaceType.Smooth
  1445. p22 = Instance.new("Part", m)
  1446. p22.BrickColor = BrickColor.new("Really black")
  1447. p22.Material = Enum.Material.Neon
  1448. p22.FormFactor = Enum.FormFactor.Custom
  1449. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1450. 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)
  1451. p22.CanCollide = false
  1452. p22.Locked = true
  1453. p22.BottomSurface = Enum.SurfaceType.Smooth
  1454. p22.TopSurface = Enum.SurfaceType.Smooth
  1455. b14 = Instance.new("SpecialMesh", p22)
  1456. b14.MeshType = Enum.MeshType.Sphere
  1457. b14.Name = "Mesh"
  1458. p23 = Instance.new("Part", m)
  1459. p23.BrickColor = BrickColor.new("Really black")
  1460. p23.Material = Enum.Material.Neon
  1461. p23.FormFactor = Enum.FormFactor.Custom
  1462. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1463. 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)
  1464. p23.CanCollide = false
  1465. p23.Locked = true
  1466. p23.BottomSurface = Enum.SurfaceType.Smooth
  1467. p23.TopSurface = Enum.SurfaceType.Smooth
  1468. b15 = Instance.new("SpecialMesh", p23)
  1469. b15.MeshType = Enum.MeshType.Sphere
  1470. b15.Name = "Mesh"
  1471. p24 = Instance.new("Part", m)
  1472. p24.BrickColor = BrickColor.new("Really black")
  1473. p24.Material = Enum.Material.Neon
  1474. p24.FormFactor = Enum.FormFactor.Custom
  1475. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1476. 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)
  1477. p24.CanCollide = false
  1478. p24.Locked = true
  1479. p24.BottomSurface = Enum.SurfaceType.Smooth
  1480. p24.TopSurface = Enum.SurfaceType.Smooth
  1481. b16 = Instance.new("SpecialMesh", p24)
  1482. b16.MeshType = Enum.MeshType.Sphere
  1483. b16.Name = "Mesh"
  1484. w1 = Instance.new("Weld", p1)
  1485. w1.Name = "Wedge_Weld"
  1486. w1.Part0 = p1
  1487. 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)
  1488. w1.Part1 = p2
  1489. 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)
  1490. w2 = Instance.new("Weld", p2)
  1491. w2.Name = "Wedge_Weld"
  1492. w2.Part0 = p2
  1493. 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)
  1494. w2.Part1 = p3
  1495. 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)
  1496. w3 = Instance.new("Weld", p3)
  1497. w3.Name = "Wedge_Weld"
  1498. w3.Part0 = p3
  1499. 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)
  1500. w3.Part1 = p4
  1501. 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)
  1502. w4 = Instance.new("Weld", p4)
  1503. w4.Name = "Wedge_Weld"
  1504. w4.Part0 = p4
  1505. 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)
  1506. w4.Part1 = p5
  1507. 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)
  1508. w5 = Instance.new("Weld", p5)
  1509. w5.Name = "Wedge_Weld"
  1510. w5.Part0 = p5
  1511. 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)
  1512. w5.Part1 = p6
  1513. 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)
  1514. w6 = Instance.new("Weld", p6)
  1515. w6.Name = "Wedge_Weld"
  1516. w6.Part0 = p6
  1517. 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)
  1518. w6.Part1 = p7
  1519. 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)
  1520. w7 = Instance.new("Weld", p7)
  1521. w7.Name = "Part_Weld"
  1522. w7.Part0 = p7
  1523. 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)
  1524. w7.Part1 = p8
  1525. 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)
  1526. w8 = Instance.new("Weld", p8)
  1527. w8.Name = "Part_Weld"
  1528. w8.Part0 = p8
  1529. 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)
  1530. w8.Part1 = p9
  1531. 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)
  1532. w9 = Instance.new("Weld", p9)
  1533. w9.Name = "Part_Weld"
  1534. w9.Part0 = p9
  1535. 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)
  1536. w9.Part1 = p10
  1537. 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)
  1538. w10 = Instance.new("Weld", p10)
  1539. w10.Name = "Part_Weld"
  1540. w10.Part0 = p10
  1541. 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)
  1542. w10.Part1 = p11
  1543. 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)
  1544. w11 = Instance.new("Weld", p11)
  1545. w11.Name = "Part_Weld"
  1546. w11.Part0 = p11
  1547. 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)
  1548. w11.Part1 = p12
  1549. 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)
  1550. w12 = Instance.new("Weld", p12)
  1551. w12.Name = "Part_Weld"
  1552. w12.Part0 = p12
  1553. 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)
  1554. w12.Part1 = p13
  1555. 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)
  1556. w13 = Instance.new("Weld", p13)
  1557. w13.Name = "Part_Weld"
  1558. w13.Part0 = p13
  1559. 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)
  1560. w13.Part1 = p14
  1561. 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)
  1562. w14 = Instance.new("Weld", p14)
  1563. w14.Name = "Part_Weld"
  1564. w14.Part0 = p14
  1565. 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)
  1566. w14.Part1 = p15
  1567. 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)
  1568. w15 = Instance.new("Weld", p15)
  1569. w15.Name = "Part_Weld"
  1570. w15.Part0 = p15
  1571. 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)
  1572. w15.Part1 = p16
  1573. 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)
  1574. w16 = Instance.new("Weld", p16)
  1575. w16.Name = "Part_Weld"
  1576. w16.Part0 = p16
  1577. 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)
  1578. w16.Part1 = p17
  1579. 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)
  1580. w17 = Instance.new("Weld", p17)
  1581. w17.Name = "Part_Weld"
  1582. w17.Part0 = p17
  1583. 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)
  1584. w17.Part1 = p18
  1585. 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)
  1586. w18 = Instance.new("Weld", p18)
  1587. w18.Name = "Part_Weld"
  1588. w18.Part0 = p18
  1589. 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)
  1590. w18.Part1 = p19
  1591. 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)
  1592. w19 = Instance.new("Weld", p19)
  1593. w19.Name = "Part_Weld"
  1594. w19.Part0 = p19
  1595. 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)
  1596. w19.Part1 = p20
  1597. 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)
  1598. w20 = Instance.new("Weld", p20)
  1599. w20.Name = "Part_Weld"
  1600. w20.Part0 = p20
  1601. 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)
  1602. w20.Part1 = p21
  1603. 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)
  1604. w21 = Instance.new("Weld", p21)
  1605. w21.Name = "Part_Weld"
  1606. w21.Part0 = p21
  1607. 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)
  1608. w21.Part1 = p22
  1609. 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)
  1610. w22 = Instance.new("Weld", p22)
  1611. w22.Name = "Part_Weld"
  1612. w22.Part0 = p22
  1613. 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)
  1614. w22.Part1 = p23
  1615. 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)
  1616. w23 = Instance.new("Weld", p23)
  1617. w23.Name = "Part_Weld"
  1618. w23.Part0 = p23
  1619. 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)
  1620. w23.Part1 = p24
  1621. 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)
  1622. w24 = Instance.new("Weld", p24)
  1623. w24.Name = "Part_Weld"
  1624. w24.Part0 = p24
  1625. 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)
  1626. m.Parent = larm
  1627. m:MakeJoints()
  1628. ----------------------------------------------------
  1629. local cor3 = Instance.new("Part", larm.LeftArm)
  1630. cor3.Name = "Thingy"
  1631. cor3.Locked = true
  1632. cor3.BottomSurface = 0
  1633. cor3.CanCollide = false
  1634. cor3.Size = Vector3.new(2, 1, 1)
  1635. cor3.Transparency = 1
  1636. cor3.TopSurface = 0
  1637. corw2 = Instance.new("Weld", cor3)
  1638. corw2.Part0 = larm
  1639. corw2.Part1 = cor3
  1640. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1641. corw2.C1 = CFrame.new(0, 0, 0)
  1642. weld2 = Instance.new("Weld", larm.LeftArm)
  1643. weld2.Part0 = cor3
  1644. weld2.Part1 = p15
  1645. weld2.C0 = CFrame.new(0, 0, 0)
  1646. ----------------------------------------------------
  1647. local m = Instance.new("Model")
  1648. m.Name = "RightArm"
  1649. p1 = Instance.new("WedgePart", m)
  1650. p1.BrickColor = BrickColor.new("Royal purple")
  1651. p1.Material = Enum.Material.Neon
  1652. p1.Name = "Wedge"
  1653. p1.FormFactor = Enum.FormFactor.Custom
  1654. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1655. 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)
  1656. p1.CanCollide = false
  1657. p1.Locked = true
  1658. p1.TopSurface = Enum.SurfaceType.Smooth
  1659. b1 = Instance.new("SpecialMesh", p1)
  1660. b1.MeshType = Enum.MeshType.Wedge
  1661. b1.Name = "Mesh"
  1662. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1663. p2 = Instance.new("WedgePart", m)
  1664. p2.BrickColor = BrickColor.new("Royal purple")
  1665. p2.Material = Enum.Material.Neon
  1666. p2.Name = "Wedge"
  1667. p2.FormFactor = Enum.FormFactor.Custom
  1668. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1669. 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)
  1670. p2.CanCollide = false
  1671. p2.Locked = true
  1672. p2.TopSurface = Enum.SurfaceType.Smooth
  1673. b2 = Instance.new("SpecialMesh", p2)
  1674. b2.MeshType = Enum.MeshType.Wedge
  1675. b2.Name = "Mesh"
  1676. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1677. p3 = Instance.new("WedgePart", m)
  1678. p3.BrickColor = BrickColor.new("Royal purple")
  1679. p3.Material = Enum.Material.Neon
  1680. p3.Name = "Wedge"
  1681. p3.FormFactor = Enum.FormFactor.Custom
  1682. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1683. 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)
  1684. p3.CanCollide = false
  1685. p3.Locked = true
  1686. p3.TopSurface = Enum.SurfaceType.Smooth
  1687. b3 = Instance.new("SpecialMesh", p3)
  1688. b3.MeshType = Enum.MeshType.Wedge
  1689. b3.Name = "Mesh"
  1690. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1691. p4 = Instance.new("WedgePart", m)
  1692. p4.BrickColor = BrickColor.new("Royal purple")
  1693. p4.Material = Enum.Material.Neon
  1694. p4.Name = "Wedge"
  1695. p4.FormFactor = Enum.FormFactor.Custom
  1696. p4.Size = Vector3.new(1, 1.19999981, 4)
  1697. 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)
  1698. p4.CanCollide = false
  1699. p4.Locked = true
  1700. p4.TopSurface = Enum.SurfaceType.Smooth
  1701. b4 = Instance.new("SpecialMesh", p4)
  1702. b4.MeshType = Enum.MeshType.Wedge
  1703. b4.Name = "Mesh"
  1704. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1705. p5 = Instance.new("WedgePart", m)
  1706. p5.BrickColor = BrickColor.new("Royal purple")
  1707. p5.Material = Enum.Material.Neon
  1708. p5.Name = "Wedge"
  1709. p5.FormFactor = Enum.FormFactor.Custom
  1710. p5.Size = Vector3.new(1, 1.19999981, 4)
  1711. 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)
  1712. p5.CanCollide = false
  1713. p5.Locked = true
  1714. p5.TopSurface = Enum.SurfaceType.Smooth
  1715. b5 = Instance.new("SpecialMesh", p5)
  1716. b5.MeshType = Enum.MeshType.Wedge
  1717. b5.Name = "Mesh"
  1718. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1719. p6 = Instance.new("WedgePart", m)
  1720. p6.BrickColor = BrickColor.new("Royal purple")
  1721. p6.Material = Enum.Material.Neon
  1722. p6.Name = "Wedge"
  1723. p6.FormFactor = Enum.FormFactor.Custom
  1724. p6.Size = Vector3.new(1, 1.19999981, 4)
  1725. 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)
  1726. p6.CanCollide = false
  1727. p6.Locked = true
  1728. p6.TopSurface = Enum.SurfaceType.Smooth
  1729. b6 = Instance.new("SpecialMesh", p6)
  1730. b6.MeshType = Enum.MeshType.Wedge
  1731. b6.Name = "Mesh"
  1732. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1733. p7 = Instance.new("Part", m)
  1734. p7.BrickColor = BrickColor.new("Really black")
  1735. p7.Material = Enum.Material.Neon
  1736. p7.FormFactor = Enum.FormFactor.Custom
  1737. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1738. 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)
  1739. p7.CanCollide = false
  1740. p7.Locked = true
  1741. p7.BottomSurface = Enum.SurfaceType.Smooth
  1742. p7.TopSurface = Enum.SurfaceType.Smooth
  1743. b7 = Instance.new("SpecialMesh", p7)
  1744. b7.MeshType = Enum.MeshType.Sphere
  1745. b7.Name = "Mesh"
  1746. p8 = Instance.new("Part", m)
  1747. p8.BrickColor = BrickColor.new("Royal purple")
  1748. p8.Material = Enum.Material.Neon
  1749. p8.FormFactor = Enum.FormFactor.Custom
  1750. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1751. 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)
  1752. p8.CanCollide = false
  1753. p8.Locked = true
  1754. p8.BottomSurface = Enum.SurfaceType.Smooth
  1755. p8.TopSurface = Enum.SurfaceType.Smooth
  1756. p9 = Instance.new("Part", m)
  1757. p9.BrickColor = BrickColor.new("Really black")
  1758. p9.Material = Enum.Material.Neon
  1759. p9.FormFactor = Enum.FormFactor.Custom
  1760. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1761. 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)
  1762. p9.CanCollide = false
  1763. p9.Locked = true
  1764. p9.BottomSurface = Enum.SurfaceType.Smooth
  1765. p9.TopSurface = Enum.SurfaceType.Smooth
  1766. b8 = Instance.new("SpecialMesh", p9)
  1767. b8.MeshType = Enum.MeshType.Sphere
  1768. b8.Name = "Mesh"
  1769. p10 = Instance.new("Part", m)
  1770. p10.BrickColor = BrickColor.new("Really black")
  1771. p10.Material = Enum.Material.Neon
  1772. p10.FormFactor = Enum.FormFactor.Custom
  1773. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1774. 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)
  1775. p10.CanCollide = false
  1776. p10.Locked = true
  1777. p10.BottomSurface = Enum.SurfaceType.Smooth
  1778. p10.TopSurface = Enum.SurfaceType.Smooth
  1779. b9 = Instance.new("SpecialMesh", p10)
  1780. b9.MeshType = Enum.MeshType.Sphere
  1781. b9.Name = "Mesh"
  1782. p11 = Instance.new("Part", m)
  1783. p11.BrickColor = BrickColor.new("Royal purple")
  1784. p11.Material = Enum.Material.Neon
  1785. p11.FormFactor = Enum.FormFactor.Custom
  1786. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1787. 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)
  1788. p11.CanCollide = false
  1789. p11.Locked = true
  1790. p11.BottomSurface = Enum.SurfaceType.Smooth
  1791. p11.TopSurface = Enum.SurfaceType.Smooth
  1792. p12 = Instance.new("Part", m)
  1793. p12.BrickColor = BrickColor.new("Royal purple")
  1794. p12.Material = Enum.Material.Neon
  1795. p12.FormFactor = Enum.FormFactor.Custom
  1796. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1797. 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)
  1798. p12.CanCollide = false
  1799. p12.Locked = true
  1800. p12.BottomSurface = Enum.SurfaceType.Smooth
  1801. p12.TopSurface = Enum.SurfaceType.Smooth
  1802. p13 = Instance.new("Part", m)
  1803. p13.BrickColor = BrickColor.new("Royal purple")
  1804. p13.Material = Enum.Material.Neon
  1805. p13.FormFactor = Enum.FormFactor.Custom
  1806. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1807. 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)
  1808. p13.CanCollide = false
  1809. p13.Locked = true
  1810. p13.BottomSurface = Enum.SurfaceType.Smooth
  1811. p13.TopSurface = Enum.SurfaceType.Smooth
  1812. b10 = Instance.new("SpecialMesh", p13)
  1813. b10.MeshType = Enum.MeshType.Sphere
  1814. b10.Name = "Mesh"
  1815. p14 = Instance.new("Part", m)
  1816. p14.BrickColor = BrickColor.new("Really black")
  1817. p14.Material = Enum.Material.Metal
  1818. p14.Name = "Main"
  1819. p14.FormFactor = Enum.FormFactor.Custom
  1820. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1821. 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)
  1822. p14.CanCollide = false
  1823. p14.Locked = true
  1824. p14.BottomSurface = Enum.SurfaceType.Smooth
  1825. p14.TopSurface = Enum.SurfaceType.Smooth
  1826. p15 = Instance.new("Part", m)
  1827. p15.BrickColor = BrickColor.new("Really black")
  1828. p15.Material = Enum.Material.Neon
  1829. p15.FormFactor = Enum.FormFactor.Custom
  1830. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1831. 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)
  1832. p15.CanCollide = false
  1833. p15.Locked = true
  1834. p15.BottomSurface = Enum.SurfaceType.Smooth
  1835. p15.TopSurface = Enum.SurfaceType.Smooth
  1836. b11 = Instance.new("SpecialMesh", p15)
  1837. b11.MeshType = Enum.MeshType.Sphere
  1838. b11.Name = "Mesh"
  1839. p16 = Instance.new("Part", m)
  1840. p16.BrickColor = BrickColor.new("Royal purple")
  1841. p16.Material = Enum.Material.Neon
  1842. p16.FormFactor = Enum.FormFactor.Custom
  1843. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1844. 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)
  1845. p16.CanCollide = false
  1846. p16.Locked = true
  1847. p16.BottomSurface = Enum.SurfaceType.Smooth
  1848. p16.TopSurface = Enum.SurfaceType.Smooth
  1849. p17 = Instance.new("Part", m)
  1850. p17.BrickColor = BrickColor.new("Royal purple")
  1851. p17.Material = Enum.Material.Neon
  1852. p17.FormFactor = Enum.FormFactor.Custom
  1853. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1854. 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)
  1855. p17.CanCollide = false
  1856. p17.Locked = true
  1857. p17.BottomSurface = Enum.SurfaceType.Smooth
  1858. p17.TopSurface = Enum.SurfaceType.Smooth
  1859. p18 = Instance.new("Part", m)
  1860. p18.BrickColor = BrickColor.new("Really black")
  1861. p18.Material = Enum.Material.Neon
  1862. p18.FormFactor = Enum.FormFactor.Custom
  1863. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1864. 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)
  1865. p18.CanCollide = false
  1866. p18.Locked = true
  1867. p18.BottomSurface = Enum.SurfaceType.Smooth
  1868. p18.TopSurface = Enum.SurfaceType.Smooth
  1869. b12 = Instance.new("SpecialMesh", p18)
  1870. b12.MeshType = Enum.MeshType.Sphere
  1871. b12.Name = "Mesh"
  1872. p19 = Instance.new("Part", m)
  1873. p19.BrickColor = BrickColor.new("Really black")
  1874. p19.Material = Enum.Material.Neon
  1875. p19.FormFactor = Enum.FormFactor.Custom
  1876. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1877. 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)
  1878. p19.CanCollide = false
  1879. p19.Locked = true
  1880. p19.BottomSurface = Enum.SurfaceType.Smooth
  1881. p19.TopSurface = Enum.SurfaceType.Smooth
  1882. b13 = Instance.new("SpecialMesh", p19)
  1883. b13.MeshType = Enum.MeshType.Sphere
  1884. b13.Name = "Mesh"
  1885. w1 = Instance.new("Weld", p1)
  1886. w1.Name = "Wedge_Weld"
  1887. w1.Part0 = p1
  1888. 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)
  1889. w1.Part1 = p2
  1890. 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)
  1891. w2 = Instance.new("Weld", p2)
  1892. w2.Name = "Wedge_Weld"
  1893. w2.Part0 = p2
  1894. 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)
  1895. w2.Part1 = p3
  1896. 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)
  1897. w3 = Instance.new("Weld", p3)
  1898. w3.Name = "Wedge_Weld"
  1899. w3.Part0 = p3
  1900. 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)
  1901. w3.Part1 = p4
  1902. 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)
  1903. w4 = Instance.new("Weld", p4)
  1904. w4.Name = "Wedge_Weld"
  1905. w4.Part0 = p4
  1906. 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)
  1907. w4.Part1 = p5
  1908. 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)
  1909. w5 = Instance.new("Weld", p5)
  1910. w5.Name = "Wedge_Weld"
  1911. w5.Part0 = p5
  1912. 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)
  1913. w5.Part1 = p6
  1914. 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)
  1915. w6 = Instance.new("Weld", p6)
  1916. w6.Name = "Part_Weld"
  1917. w6.Part0 = p6
  1918. 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)
  1919. w6.Part1 = p7
  1920. 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)
  1921. w7 = Instance.new("Weld", p7)
  1922. w7.Name = "Part_Weld"
  1923. w7.Part0 = p7
  1924. 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)
  1925. w7.Part1 = p8
  1926. 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)
  1927. w8 = Instance.new("Weld", p8)
  1928. w8.Name = "Part_Weld"
  1929. w8.Part0 = p8
  1930. 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)
  1931. w8.Part1 = p9
  1932. 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)
  1933. w9 = Instance.new("Weld", p9)
  1934. w9.Name = "Part_Weld"
  1935. w9.Part0 = p9
  1936. 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)
  1937. w9.Part1 = p10
  1938. 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)
  1939. w10 = Instance.new("Weld", p10)
  1940. w10.Name = "Part_Weld"
  1941. w10.Part0 = p10
  1942. 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)
  1943. w10.Part1 = p11
  1944. 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)
  1945. w11 = Instance.new("Weld", p11)
  1946. w11.Name = "Part_Weld"
  1947. w11.Part0 = p11
  1948. 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)
  1949. w11.Part1 = p12
  1950. 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)
  1951. w12 = Instance.new("Weld", p12)
  1952. w12.Name = "Part_Weld"
  1953. w12.Part0 = p12
  1954. 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)
  1955. w12.Part1 = p13
  1956. 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)
  1957. w13 = Instance.new("Weld", p13)
  1958. w13.Name = "Part_Weld"
  1959. w13.Part0 = p13
  1960. 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)
  1961. w13.Part1 = p14
  1962. 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)
  1963. w14 = Instance.new("Weld", p14)
  1964. w14.Name = "Part_Weld"
  1965. w14.Part0 = p14
  1966. 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)
  1967. w14.Part1 = p15
  1968. 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)
  1969. w15 = Instance.new("Weld", p15)
  1970. w15.Name = "Part_Weld"
  1971. w15.Part0 = p15
  1972. 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)
  1973. w15.Part1 = p16
  1974. 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)
  1975. w16 = Instance.new("Weld", p16)
  1976. w16.Name = "Part_Weld"
  1977. w16.Part0 = p16
  1978. 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)
  1979. w16.Part1 = p17
  1980. 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)
  1981. w17 = Instance.new("Weld", p17)
  1982. w17.Name = "Part_Weld"
  1983. w17.Part0 = p17
  1984. 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)
  1985. w17.Part1 = p18
  1986. 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)
  1987. w18 = Instance.new("Weld", p18)
  1988. w18.Name = "Part_Weld"
  1989. w18.Part0 = p18
  1990. 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)
  1991. w18.Part1 = p19
  1992. 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)
  1993. w19 = Instance.new("Weld", p19)
  1994. w19.Name = "Wedge_Weld"
  1995. w19.Part0 = p19
  1996. 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)
  1997. m.Parent = rarm
  1998. m:MakeJoints()
  1999. ----------------------------------------------------
  2000. local cor4 = Instance.new("Part", rarm.RightArm)
  2001. cor4.Name = "Thingy"
  2002. cor4.Locked = true
  2003. cor4.BottomSurface = 0
  2004. cor4.CanCollide = false
  2005. cor4.Size = Vector3.new(2, 1, 1)
  2006. cor4.Transparency = 1
  2007. cor4.TopSurface = 0
  2008. corw2 = Instance.new("Weld", cor4)
  2009. corw2.Part0 = rarm
  2010. corw2.Part1 = cor4
  2011. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2012. corw2.C1 = CFrame.new(0, 0, 0)
  2013. weld2 = Instance.new("Weld", rarm.RightArm)
  2014. weld2.Part0 = cor4
  2015. weld2.Part1 = p14
  2016. weld2.C0 = CFrame.new(0, 0, 0)
  2017. ----------------------------------------------------
  2018. local m = Instance.new("Model")
  2019. m.Name = "Torso"
  2020. p1 = Instance.new("Part", m)
  2021. p1.BrickColor = BrickColor.new("Really black")
  2022. p1.Material = Enum.Material.Neon
  2023. p1.FormFactor = Enum.FormFactor.Custom
  2024. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2025. 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)
  2026. p1.CanCollide = false
  2027. p1.Locked = true
  2028. p1.BottomSurface = Enum.SurfaceType.Smooth
  2029. p1.TopSurface = Enum.SurfaceType.Smooth
  2030. b1 = Instance.new("SpecialMesh", p1)
  2031. b1.MeshType = Enum.MeshType.Sphere
  2032. b1.Name = "Mesh"
  2033. p2 = Instance.new("Part", m)
  2034. p2.BrickColor = BrickColor.new("Really black")
  2035. p2.Material = Enum.Material.Neon
  2036. p2.FormFactor = Enum.FormFactor.Custom
  2037. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2038. 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)
  2039. p2.CanCollide = false
  2040. p2.Locked = true
  2041. p2.BottomSurface = Enum.SurfaceType.Smooth
  2042. p2.TopSurface = Enum.SurfaceType.Smooth
  2043. b2 = Instance.new("SpecialMesh", p2)
  2044. b2.MeshType = Enum.MeshType.Sphere
  2045. b2.Name = "Mesh"
  2046. p3 = Instance.new("Part", m)
  2047. p3.BrickColor = BrickColor.new("Royal purple")
  2048. p3.Material = Enum.Material.Neon
  2049. p3.FormFactor = Enum.FormFactor.Custom
  2050. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2051. 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)
  2052. p3.CanCollide = false
  2053. p3.Locked = true
  2054. p3.BottomSurface = Enum.SurfaceType.Smooth
  2055. p3.TopSurface = Enum.SurfaceType.Smooth
  2056. p4 = Instance.new("Part", m)
  2057. p4.BrickColor = BrickColor.new("Royal purple")
  2058. p4.Material = Enum.Material.Neon
  2059. p4.FormFactor = Enum.FormFactor.Custom
  2060. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2061. 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)
  2062. p4.CanCollide = false
  2063. p4.Locked = true
  2064. p4.BottomSurface = Enum.SurfaceType.Smooth
  2065. p4.TopSurface = Enum.SurfaceType.Smooth
  2066. p5 = Instance.new("Part", m)
  2067. p5.BrickColor = BrickColor.new("Royal purple")
  2068. p5.Material = Enum.Material.Neon
  2069. p5.FormFactor = Enum.FormFactor.Custom
  2070. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2071. 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)
  2072. p5.CanCollide = false
  2073. p5.Locked = true
  2074. p5.BottomSurface = Enum.SurfaceType.Smooth
  2075. p5.TopSurface = Enum.SurfaceType.Smooth
  2076. p6 = Instance.new("Part", m)
  2077. p6.BrickColor = BrickColor.new("Royal purple")
  2078. p6.Material = Enum.Material.Neon
  2079. p6.FormFactor = Enum.FormFactor.Custom
  2080. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2081. 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)
  2082. p6.CanCollide = false
  2083. p6.Locked = true
  2084. p6.BottomSurface = Enum.SurfaceType.Smooth
  2085. p6.TopSurface = Enum.SurfaceType.Smooth
  2086. p7 = Instance.new("Part", m)
  2087. p7.BrickColor = BrickColor.new("Really black")
  2088. p7.Material = Enum.Material.Neon
  2089. p7.FormFactor = Enum.FormFactor.Custom
  2090. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2091. 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)
  2092. p7.CanCollide = false
  2093. p7.Locked = true
  2094. p7.BottomSurface = Enum.SurfaceType.Smooth
  2095. p7.TopSurface = Enum.SurfaceType.Smooth
  2096. b3 = Instance.new("SpecialMesh", p7)
  2097. b3.MeshType = Enum.MeshType.Sphere
  2098. b3.Name = "Mesh"
  2099. p8 = Instance.new("Part", m)
  2100. p8.BrickColor = BrickColor.new("Really black")
  2101. p8.Material = Enum.Material.Neon
  2102. p8.FormFactor = Enum.FormFactor.Custom
  2103. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2104. 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)
  2105. p8.CanCollide = false
  2106. p8.Locked = true
  2107. p8.BottomSurface = Enum.SurfaceType.Smooth
  2108. p8.TopSurface = Enum.SurfaceType.Smooth
  2109. b4 = Instance.new("SpecialMesh", p8)
  2110. b4.MeshType = Enum.MeshType.Sphere
  2111. b4.Name = "Mesh"
  2112. p9 = Instance.new("Part", m)
  2113. p9.BrickColor = BrickColor.new("Really black")
  2114. p9.Material = Enum.Material.Neon
  2115. p9.FormFactor = Enum.FormFactor.Custom
  2116. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2117. 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)
  2118. p9.CanCollide = false
  2119. p9.Locked = true
  2120. p9.BottomSurface = Enum.SurfaceType.Smooth
  2121. p9.TopSurface = Enum.SurfaceType.Smooth
  2122. b5 = Instance.new("SpecialMesh", p9)
  2123. b5.MeshType = Enum.MeshType.Sphere
  2124. b5.Name = "Mesh"
  2125. p10 = Instance.new("Part", m)
  2126. p10.BrickColor = BrickColor.new("Royal purple")
  2127. p10.Material = Enum.Material.Neon
  2128. p10.FormFactor = Enum.FormFactor.Custom
  2129. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2130. 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)
  2131. p10.CanCollide = false
  2132. p10.Locked = true
  2133. p10.BottomSurface = Enum.SurfaceType.Smooth
  2134. p10.TopSurface = Enum.SurfaceType.Smooth
  2135. p11 = Instance.new("Part", m)
  2136. p11.BrickColor = BrickColor.new("Really black")
  2137. p11.Material = Enum.Material.Metal
  2138. p11.Name = "Main"
  2139. p11.FormFactor = Enum.FormFactor.Custom
  2140. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2141. 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)
  2142. p11.CanCollide = false
  2143. p11.Locked = true
  2144. p11.BottomSurface = Enum.SurfaceType.Smooth
  2145. p11.TopSurface = Enum.SurfaceType.Smooth
  2146. p12 = Instance.new("Part", m)
  2147. p12.BrickColor = BrickColor.new("Really black")
  2148. p12.Material = Enum.Material.Neon
  2149. p12.FormFactor = Enum.FormFactor.Custom
  2150. p12.Size = Vector3.new(3, 3, 2)
  2151. 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)
  2152. p12.CanCollide = false
  2153. p12.Locked = true
  2154. p12.BottomSurface = Enum.SurfaceType.Smooth
  2155. p12.TopSurface = Enum.SurfaceType.Smooth
  2156. b6 = Instance.new("SpecialMesh", p12)
  2157. b6.MeshType = Enum.MeshType.Sphere
  2158. b6.Name = "Mesh"
  2159. p13 = Instance.new("Part", m)
  2160. p13.BrickColor = BrickColor.new("Royal purple")
  2161. p13.Material = Enum.Material.Neon
  2162. p13.FormFactor = Enum.FormFactor.Custom
  2163. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2164. 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)
  2165. p13.CanCollide = false
  2166. p13.Locked = true
  2167. p13.BottomSurface = Enum.SurfaceType.Smooth
  2168. p13.TopSurface = Enum.SurfaceType.Smooth
  2169. p14 = Instance.new("Part", m)
  2170. p14.BrickColor = BrickColor.new("Royal purple")
  2171. p14.Material = Enum.Material.Neon
  2172. p14.FormFactor = Enum.FormFactor.Custom
  2173. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2174. 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)
  2175. p14.CanCollide = false
  2176. p14.Locked = true
  2177. p14.BottomSurface = Enum.SurfaceType.Smooth
  2178. p14.TopSurface = Enum.SurfaceType.Smooth
  2179. p15 = Instance.new("Part", m)
  2180. p15.BrickColor = BrickColor.new("Royal purple")
  2181. p15.Material = Enum.Material.Neon
  2182. p15.FormFactor = Enum.FormFactor.Custom
  2183. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2184. 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)
  2185. p15.CanCollide = false
  2186. p15.Locked = true
  2187. p15.BottomSurface = Enum.SurfaceType.Smooth
  2188. p15.TopSurface = Enum.SurfaceType.Smooth
  2189. p16 = Instance.new("Part", m)
  2190. p16.BrickColor = BrickColor.new("Royal purple")
  2191. p16.Material = Enum.Material.Neon
  2192. p16.FormFactor = Enum.FormFactor.Custom
  2193. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2194. 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)
  2195. p16.CanCollide = false
  2196. p16.Locked = true
  2197. p16.BottomSurface = Enum.SurfaceType.Smooth
  2198. p16.TopSurface = Enum.SurfaceType.Smooth
  2199. p17 = Instance.new("Part", m)
  2200. p17.BrickColor = BrickColor.new("Royal purple")
  2201. p17.Material = Enum.Material.Neon
  2202. p17.FormFactor = Enum.FormFactor.Custom
  2203. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2204. 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)
  2205. p17.CanCollide = false
  2206. p17.Locked = true
  2207. p17.BottomSurface = Enum.SurfaceType.Smooth
  2208. p17.TopSurface = Enum.SurfaceType.Smooth
  2209. p18 = Instance.new("Part", m)
  2210. p18.BrickColor = BrickColor.new("Royal purple")
  2211. p18.Material = Enum.Material.Neon
  2212. p18.FormFactor = Enum.FormFactor.Custom
  2213. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2214. 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)
  2215. p18.CanCollide = false
  2216. p18.Locked = true
  2217. p18.BottomSurface = Enum.SurfaceType.Smooth
  2218. p18.TopSurface = Enum.SurfaceType.Smooth
  2219. p19 = Instance.new("Part", m)
  2220. p19.BrickColor = BrickColor.new("Really black")
  2221. p19.Material = Enum.Material.Neon
  2222. p19.FormFactor = Enum.FormFactor.Custom
  2223. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2224. 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)
  2225. p19.CanCollide = false
  2226. p19.Locked = true
  2227. p19.BottomSurface = Enum.SurfaceType.Smooth
  2228. p19.TopSurface = Enum.SurfaceType.Smooth
  2229. b7 = Instance.new("SpecialMesh", p19)
  2230. b7.MeshType = Enum.MeshType.Sphere
  2231. b7.Name = "Mesh"
  2232. p20 = Instance.new("Part", m)
  2233. p20.BrickColor = BrickColor.new("Really black")
  2234. p20.Material = Enum.Material.Neon
  2235. p20.FormFactor = Enum.FormFactor.Custom
  2236. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2237. 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)
  2238. p20.CanCollide = false
  2239. p20.Locked = true
  2240. p20.BottomSurface = Enum.SurfaceType.Smooth
  2241. p20.TopSurface = Enum.SurfaceType.Smooth
  2242. b8 = Instance.new("SpecialMesh", p20)
  2243. b8.MeshType = Enum.MeshType.Sphere
  2244. b8.Name = "Mesh"
  2245. p21 = Instance.new("Part", m)
  2246. p21.BrickColor = BrickColor.new("Royal purple")
  2247. p21.Material = Enum.Material.Neon
  2248. p21.FormFactor = Enum.FormFactor.Custom
  2249. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2250. 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)
  2251. p21.CanCollide = false
  2252. p21.Locked = true
  2253. p21.BottomSurface = Enum.SurfaceType.Smooth
  2254. p21.TopSurface = Enum.SurfaceType.Smooth
  2255. p22 = Instance.new("Part", m)
  2256. p22.BrickColor = BrickColor.new("Really black")
  2257. p22.Material = Enum.Material.Neon
  2258. p22.FormFactor = Enum.FormFactor.Custom
  2259. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2260. 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)
  2261. p22.CanCollide = false
  2262. p22.Locked = true
  2263. p22.BottomSurface = Enum.SurfaceType.Smooth
  2264. p22.TopSurface = Enum.SurfaceType.Smooth
  2265. b9 = Instance.new("SpecialMesh", p22)
  2266. b9.MeshType = Enum.MeshType.Sphere
  2267. b9.Name = "Mesh"
  2268. w1 = Instance.new("Weld", p1)
  2269. w1.Name = "Part_Weld"
  2270. w1.Part0 = p1
  2271. 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)
  2272. w1.Part1 = p2
  2273. 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)
  2274. w2 = Instance.new("Weld", p2)
  2275. w2.Name = "Part_Weld"
  2276. w2.Part0 = p2
  2277. 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)
  2278. w2.Part1 = p3
  2279. 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)
  2280. w3 = Instance.new("Weld", p3)
  2281. w3.Name = "Part_Weld"
  2282. w3.Part0 = p3
  2283. 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)
  2284. w3.Part1 = p4
  2285. 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)
  2286. w4 = Instance.new("Weld", p4)
  2287. w4.Name = "Part_Weld"
  2288. w4.Part0 = p4
  2289. 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)
  2290. w4.Part1 = p5
  2291. 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)
  2292. w5 = Instance.new("Weld", p5)
  2293. w5.Name = "Part_Weld"
  2294. w5.Part0 = p5
  2295. 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)
  2296. w5.Part1 = p6
  2297. 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)
  2298. w6 = Instance.new("Weld", p6)
  2299. w6.Name = "Part_Weld"
  2300. w6.Part0 = p6
  2301. 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)
  2302. w6.Part1 = p7
  2303. 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)
  2304. w7 = Instance.new("Weld", p7)
  2305. w7.Name = "Part_Weld"
  2306. w7.Part0 = p7
  2307. 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)
  2308. w7.Part1 = p8
  2309. 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)
  2310. w8 = Instance.new("Weld", p8)
  2311. w8.Name = "Part_Weld"
  2312. w8.Part0 = p8
  2313. 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)
  2314. w8.Part1 = p9
  2315. 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)
  2316. w9 = Instance.new("Weld", p9)
  2317. w9.Name = "Part_Weld"
  2318. w9.Part0 = p9
  2319. 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)
  2320. w9.Part1 = p10
  2321. 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)
  2322. w10 = Instance.new("Weld", p10)
  2323. w10.Name = "Main_Weld"
  2324. w10.Part0 = p10
  2325. 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)
  2326. w10.Part1 = p11
  2327. 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)
  2328. w11 = Instance.new("Weld", p11)
  2329. w11.Name = "Part_Weld"
  2330. w11.Part0 = p11
  2331. 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)
  2332. w11.Part1 = p12
  2333. 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)
  2334. w12 = Instance.new("Weld", p12)
  2335. w12.Name = "Part_Weld"
  2336. w12.Part0 = p12
  2337. 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)
  2338. w12.Part1 = p13
  2339. 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)
  2340. w13 = Instance.new("Weld", p13)
  2341. w13.Name = "Part_Weld"
  2342. w13.Part0 = p13
  2343. 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)
  2344. w13.Part1 = p14
  2345. 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)
  2346. w14 = Instance.new("Weld", p14)
  2347. w14.Name = "Part_Weld"
  2348. w14.Part0 = p14
  2349. 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)
  2350. w14.Part1 = p15
  2351. 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)
  2352. w15 = Instance.new("Weld", p15)
  2353. w15.Name = "Part_Weld"
  2354. w15.Part0 = p15
  2355. 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)
  2356. w15.Part1 = p16
  2357. 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)
  2358. w16 = Instance.new("Weld", p16)
  2359. w16.Name = "Part_Weld"
  2360. w16.Part0 = p16
  2361. 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)
  2362. w16.Part1 = p17
  2363. 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)
  2364. w17 = Instance.new("Weld", p17)
  2365. w17.Name = "Part_Weld"
  2366. w17.Part0 = p17
  2367. 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)
  2368. w17.Part1 = p18
  2369. 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)
  2370. w18 = Instance.new("Weld", p18)
  2371. w18.Name = "Part_Weld"
  2372. w18.Part0 = p18
  2373. 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)
  2374. w18.Part1 = p19
  2375. 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)
  2376. w19 = Instance.new("Weld", p19)
  2377. w19.Name = "Part_Weld"
  2378. w19.Part0 = p19
  2379. 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)
  2380. w19.Part1 = p20
  2381. 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)
  2382. w20 = Instance.new("Weld", p20)
  2383. w20.Name = "Part_Weld"
  2384. w20.Part0 = p20
  2385. 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)
  2386. w20.Part1 = p21
  2387. 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)
  2388. w21 = Instance.new("Weld", p21)
  2389. w21.Name = "Part_Weld"
  2390. w21.Part0 = p21
  2391. 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)
  2392. w21.Part1 = p22
  2393. 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)
  2394. w22 = Instance.new("Weld", p22)
  2395. w22.Name = "Wedge_Weld"
  2396. w22.Part0 = p22
  2397. 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)
  2398. m.Parent = torso
  2399. m:MakeJoints()
  2400. ----------------------------------------------------
  2401. local cor5 = Instance.new("Part", torso.Torso)
  2402. cor5.Name = "Thingy"
  2403. cor5.Locked = true
  2404. cor5.BottomSurface = 0
  2405. cor5.CanCollide = false
  2406. cor5.Size = Vector3.new(2, 1, 1)
  2407. cor5.Transparency = 1
  2408. cor5.TopSurface = 0
  2409. corw2 = Instance.new("Weld", cor5)
  2410. corw2.Part0 = torso
  2411. corw2.Part1 = cor5
  2412. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2413. corw2.C1 = CFrame.new(0, 0, 0)
  2414. weld2 = Instance.new("Weld", torso.Torso)
  2415. weld2.Part0 = cor5
  2416. weld2.Part1 = p11
  2417. weld2.C0 = CFrame.new(0, 0, 0)
  2418. ----------------------------------------------------
  2419. local m = Instance.new("Model")
  2420. m.Name = "RightLeg"
  2421. p1 = Instance.new("Part", m)
  2422. p1.BrickColor = BrickColor.new("Really black")
  2423. p1.Material = Enum.Material.Neon
  2424. p1.FormFactor = Enum.FormFactor.Custom
  2425. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2426. 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)
  2427. p1.CanCollide = false
  2428. p1.Locked = true
  2429. p1.BottomSurface = Enum.SurfaceType.Smooth
  2430. p1.TopSurface = Enum.SurfaceType.Smooth
  2431. b1 = Instance.new("SpecialMesh", p1)
  2432. b1.MeshType = Enum.MeshType.Sphere
  2433. b1.Name = "Mesh"
  2434. p2 = Instance.new("Part", m)
  2435. p2.BrickColor = BrickColor.new("Really black")
  2436. p2.Material = Enum.Material.Neon
  2437. p2.FormFactor = Enum.FormFactor.Custom
  2438. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2439. 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)
  2440. p2.CanCollide = false
  2441. p2.Locked = true
  2442. p2.BottomSurface = Enum.SurfaceType.Smooth
  2443. p2.TopSurface = Enum.SurfaceType.Smooth
  2444. b2 = Instance.new("SpecialMesh", p2)
  2445. b2.MeshType = Enum.MeshType.Sphere
  2446. b2.Name = "Mesh"
  2447. p3 = Instance.new("Part", m)
  2448. p3.BrickColor = BrickColor.new("Royal purple")
  2449. p3.Material = Enum.Material.Neon
  2450. p3.FormFactor = Enum.FormFactor.Custom
  2451. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2452. 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)
  2453. p3.CanCollide = false
  2454. p3.Locked = true
  2455. p3.BottomSurface = Enum.SurfaceType.Smooth
  2456. p3.TopSurface = Enum.SurfaceType.Smooth
  2457. p4 = Instance.new("Part", m)
  2458. p4.BrickColor = BrickColor.new("Really black")
  2459. p4.Material = Enum.Material.Neon
  2460. p4.FormFactor = Enum.FormFactor.Custom
  2461. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2462. 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)
  2463. p4.CanCollide = false
  2464. p4.Locked = true
  2465. p4.BottomSurface = Enum.SurfaceType.Smooth
  2466. p4.TopSurface = Enum.SurfaceType.Smooth
  2467. b3 = Instance.new("SpecialMesh", p4)
  2468. b3.MeshType = Enum.MeshType.Sphere
  2469. b3.Name = "Mesh"
  2470. p5 = Instance.new("Part", m)
  2471. p5.BrickColor = BrickColor.new("Royal purple")
  2472. p5.Material = Enum.Material.Neon
  2473. p5.FormFactor = Enum.FormFactor.Custom
  2474. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2475. 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)
  2476. p5.CanCollide = false
  2477. p5.Locked = true
  2478. p5.BottomSurface = Enum.SurfaceType.Smooth
  2479. p5.TopSurface = Enum.SurfaceType.Smooth
  2480. p6 = Instance.new("Part", m)
  2481. p6.BrickColor = BrickColor.new("Royal purple")
  2482. p6.Material = Enum.Material.Neon
  2483. p6.FormFactor = Enum.FormFactor.Custom
  2484. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2485. 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)
  2486. p6.CanCollide = false
  2487. p6.Locked = true
  2488. p6.BottomSurface = Enum.SurfaceType.Smooth
  2489. p6.TopSurface = Enum.SurfaceType.Smooth
  2490. p7 = Instance.new("Part", m)
  2491. p7.BrickColor = BrickColor.new("Really black")
  2492. p7.Material = Enum.Material.Metal
  2493. p7.Name = "Main"
  2494. p7.FormFactor = Enum.FormFactor.Custom
  2495. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2496. 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)
  2497. p7.CanCollide = false
  2498. p7.Locked = true
  2499. p7.BottomSurface = Enum.SurfaceType.Smooth
  2500. p7.TopSurface = Enum.SurfaceType.Smooth
  2501. p8 = Instance.new("Part", m)
  2502. p8.BrickColor = BrickColor.new("Royal purple")
  2503. p8.Material = Enum.Material.Neon
  2504. p8.FormFactor = Enum.FormFactor.Custom
  2505. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2506. 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)
  2507. p8.CanCollide = false
  2508. p8.Locked = true
  2509. p8.BottomSurface = Enum.SurfaceType.Smooth
  2510. p8.TopSurface = Enum.SurfaceType.Smooth
  2511. p9 = Instance.new("WedgePart", m)
  2512. p9.BrickColor = BrickColor.new("Royal purple")
  2513. p9.Material = Enum.Material.Neon
  2514. p9.Name = "Wedge"
  2515. p9.FormFactor = Enum.FormFactor.Custom
  2516. p9.Size = Vector3.new(1, 1.19999981, 4)
  2517. 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)
  2518. p9.CanCollide = false
  2519. p9.Locked = true
  2520. p9.TopSurface = Enum.SurfaceType.Smooth
  2521. b4 = Instance.new("SpecialMesh", p9)
  2522. b4.MeshType = Enum.MeshType.Wedge
  2523. b4.Name = "Mesh"
  2524. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2525. p10 = Instance.new("Part", m)
  2526. p10.BrickColor = BrickColor.new("Really black")
  2527. p10.Material = Enum.Material.Neon
  2528. p10.FormFactor = Enum.FormFactor.Custom
  2529. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2530. 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)
  2531. p10.CanCollide = false
  2532. p10.Locked = true
  2533. p10.BottomSurface = Enum.SurfaceType.Smooth
  2534. p10.TopSurface = Enum.SurfaceType.Smooth
  2535. b5 = Instance.new("SpecialMesh", p10)
  2536. b5.MeshType = Enum.MeshType.Sphere
  2537. b5.Name = "Mesh"
  2538. p11 = Instance.new("Part", m)
  2539. p11.BrickColor = BrickColor.new("Really black")
  2540. p11.Material = Enum.Material.Neon
  2541. p11.FormFactor = Enum.FormFactor.Custom
  2542. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2543. 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)
  2544. p11.CanCollide = false
  2545. p11.Locked = true
  2546. p11.BottomSurface = Enum.SurfaceType.Smooth
  2547. p11.TopSurface = Enum.SurfaceType.Smooth
  2548. b6 = Instance.new("SpecialMesh", p11)
  2549. b6.MeshType = Enum.MeshType.Sphere
  2550. b6.Name = "Mesh"
  2551. p12 = Instance.new("Part", m)
  2552. p12.BrickColor = BrickColor.new("Royal purple")
  2553. p12.Material = Enum.Material.Neon
  2554. p12.FormFactor = Enum.FormFactor.Custom
  2555. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2556. 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)
  2557. p12.CanCollide = false
  2558. p12.Locked = true
  2559. p12.BottomSurface = Enum.SurfaceType.Smooth
  2560. p12.TopSurface = Enum.SurfaceType.Smooth
  2561. p13 = Instance.new("Part", m)
  2562. p13.BrickColor = BrickColor.new("Really black")
  2563. p13.Material = Enum.Material.Neon
  2564. p13.FormFactor = Enum.FormFactor.Custom
  2565. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2566. 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)
  2567. p13.CanCollide = false
  2568. p13.Locked = true
  2569. p13.BottomSurface = Enum.SurfaceType.Smooth
  2570. p13.TopSurface = Enum.SurfaceType.Smooth
  2571. b7 = Instance.new("SpecialMesh", p13)
  2572. b7.MeshType = Enum.MeshType.Sphere
  2573. b7.Name = "Mesh"
  2574. p14 = Instance.new("WedgePart", m)
  2575. p14.BrickColor = BrickColor.new("Royal purple")
  2576. p14.Material = Enum.Material.Neon
  2577. p14.Name = "Wedge"
  2578. p14.FormFactor = Enum.FormFactor.Custom
  2579. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2580. 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)
  2581. p14.CanCollide = false
  2582. p14.Locked = true
  2583. p14.TopSurface = Enum.SurfaceType.Smooth
  2584. b8 = Instance.new("SpecialMesh", p14)
  2585. b8.MeshType = Enum.MeshType.Wedge
  2586. b8.Name = "Mesh"
  2587. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2588. p15 = Instance.new("WedgePart", m)
  2589. p15.BrickColor = BrickColor.new("Royal purple")
  2590. p15.Material = Enum.Material.Neon
  2591. p15.Name = "Wedge"
  2592. p15.FormFactor = Enum.FormFactor.Custom
  2593. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2594. 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)
  2595. p15.CanCollide = false
  2596. p15.Locked = true
  2597. p15.TopSurface = Enum.SurfaceType.Smooth
  2598. b9 = Instance.new("SpecialMesh", p15)
  2599. b9.MeshType = Enum.MeshType.Wedge
  2600. b9.Name = "Mesh"
  2601. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2602. p16 = Instance.new("WedgePart", m)
  2603. p16.BrickColor = BrickColor.new("Royal purple")
  2604. p16.Material = Enum.Material.Neon
  2605. p16.Name = "Wedge"
  2606. p16.FormFactor = Enum.FormFactor.Custom
  2607. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2608. 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)
  2609. p16.CanCollide = false
  2610. p16.Locked = true
  2611. p16.TopSurface = Enum.SurfaceType.Smooth
  2612. b10 = Instance.new("SpecialMesh", p16)
  2613. b10.MeshType = Enum.MeshType.Wedge
  2614. b10.Name = "Mesh"
  2615. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2616. w1 = Instance.new("Weld", p1)
  2617. w1.Name = "Part_Weld"
  2618. w1.Part0 = p1
  2619. 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)
  2620. w1.Part1 = p2
  2621. 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)
  2622. w2 = Instance.new("Weld", p2)
  2623. w2.Name = "Part_Weld"
  2624. w2.Part0 = p2
  2625. 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)
  2626. w2.Part1 = p3
  2627. 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)
  2628. w3 = Instance.new("Weld", p3)
  2629. w3.Name = "Part_Weld"
  2630. w3.Part0 = p3
  2631. 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)
  2632. w3.Part1 = p4
  2633. 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)
  2634. w4 = Instance.new("Weld", p4)
  2635. w4.Name = "Part_Weld"
  2636. w4.Part0 = p4
  2637. 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)
  2638. w4.Part1 = p5
  2639. 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)
  2640. w5 = Instance.new("Weld", p5)
  2641. w5.Name = "Part_Weld"
  2642. w5.Part0 = p5
  2643. 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)
  2644. w5.Part1 = p6
  2645. 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)
  2646. w6 = Instance.new("Weld", p6)
  2647. w6.Name = "Part_Weld"
  2648. w6.Part0 = p6
  2649. 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)
  2650. w6.Part1 = p7
  2651. 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)
  2652. w7 = Instance.new("Weld", p7)
  2653. w7.Name = "Part_Weld"
  2654. w7.Part0 = p7
  2655. 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)
  2656. w7.Part1 = p8
  2657. 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)
  2658. w8 = Instance.new("Weld", p8)
  2659. w8.Name = "Wedge_Weld"
  2660. w8.Part0 = p8
  2661. 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)
  2662. w8.Part1 = p9
  2663. 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)
  2664. w9 = Instance.new("Weld", p9)
  2665. w9.Name = "Part_Weld"
  2666. w9.Part0 = p9
  2667. 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)
  2668. w9.Part1 = p10
  2669. 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)
  2670. w10 = Instance.new("Weld", p10)
  2671. w10.Name = "Part_Weld"
  2672. w10.Part0 = p10
  2673. 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)
  2674. w10.Part1 = p11
  2675. 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)
  2676. w11 = Instance.new("Weld", p11)
  2677. w11.Name = "Part_Weld"
  2678. w11.Part0 = p11
  2679. 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)
  2680. w11.Part1 = p12
  2681. 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)
  2682. w12 = Instance.new("Weld", p12)
  2683. w12.Name = "Part_Weld"
  2684. w12.Part0 = p12
  2685. 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)
  2686. w12.Part1 = p13
  2687. 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)
  2688. w13 = Instance.new("Weld", p13)
  2689. w13.Name = "Wedge_Weld"
  2690. w13.Part0 = p13
  2691. 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)
  2692. w13.Part1 = p14
  2693. 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)
  2694. w14 = Instance.new("Weld", p14)
  2695. w14.Name = "Wedge_Weld"
  2696. w14.Part0 = p14
  2697. 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)
  2698. w14.Part1 = p15
  2699. 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)
  2700. w15 = Instance.new("Weld", p15)
  2701. w15.Name = "Wedge_Weld"
  2702. w15.Part0 = p15
  2703. 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)
  2704. w15.Part1 = p16
  2705. 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)
  2706. m.Parent = rleg
  2707. m:MakeJoints()
  2708. ----------------------------------------------------
  2709. local cor6 = Instance.new("Part", rleg.RightLeg)
  2710. cor6.Name = "Thingy"
  2711. cor6.Locked = true
  2712. cor6.BottomSurface = 0
  2713. cor6.CanCollide = false
  2714. cor6.Size = Vector3.new(2, 1, 1)
  2715. cor6.Transparency = 1
  2716. cor6.TopSurface = 0
  2717. corw2 = Instance.new("Weld", cor6)
  2718. corw2.Part0 = rleg
  2719. corw2.Part1 = cor6
  2720. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2721. corw2.C1 = CFrame.new(0, 0, 0)
  2722. weld2 = Instance.new("Weld", rleg.RightLeg)
  2723. weld2.Part0 = cor6
  2724. weld2.Part1 = p7
  2725. weld2.C0 = CFrame.new(0, 0, 0)
  2726. ----------------------------------------------------
  2727. local m = Instance.new("Model")
  2728. m.Name = "LeftLeg"
  2729. p1 = Instance.new("WedgePart", m)
  2730. p1.BrickColor = BrickColor.new("Royal purple")
  2731. p1.Material = Enum.Material.Neon
  2732. p1.Name = "Wedge"
  2733. p1.FormFactor = Enum.FormFactor.Custom
  2734. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2735. 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)
  2736. p1.CanCollide = false
  2737. p1.Locked = true
  2738. p1.TopSurface = Enum.SurfaceType.Smooth
  2739. b1 = Instance.new("SpecialMesh", p1)
  2740. b1.MeshType = Enum.MeshType.Wedge
  2741. b1.Name = "Mesh"
  2742. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2743. p2 = Instance.new("WedgePart", m)
  2744. p2.BrickColor = BrickColor.new("Royal purple")
  2745. p2.Material = Enum.Material.Neon
  2746. p2.Name = "Wedge"
  2747. p2.FormFactor = Enum.FormFactor.Custom
  2748. p2.Size = Vector3.new(1, 1.19999981, 4)
  2749. 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)
  2750. p2.CanCollide = false
  2751. p2.Locked = true
  2752. p2.TopSurface = Enum.SurfaceType.Smooth
  2753. b2 = Instance.new("SpecialMesh", p2)
  2754. b2.MeshType = Enum.MeshType.Wedge
  2755. b2.Name = "Mesh"
  2756. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2757. p3 = Instance.new("Part", m)
  2758. p3.BrickColor = BrickColor.new("Really black")
  2759. p3.Material = Enum.Material.Metal
  2760. p3.Name = "Main"
  2761. p3.FormFactor = Enum.FormFactor.Custom
  2762. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2763. 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)
  2764. p3.CanCollide = false
  2765. p3.Locked = true
  2766. p3.BottomSurface = Enum.SurfaceType.Smooth
  2767. p3.TopSurface = Enum.SurfaceType.Smooth
  2768. p4 = Instance.new("Part", m)
  2769. p4.BrickColor = BrickColor.new("Really black")
  2770. p4.Material = Enum.Material.Neon
  2771. p4.FormFactor = Enum.FormFactor.Custom
  2772. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2773. 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)
  2774. p4.CanCollide = false
  2775. p4.Locked = true
  2776. p4.BottomSurface = Enum.SurfaceType.Smooth
  2777. p4.TopSurface = Enum.SurfaceType.Smooth
  2778. b3 = Instance.new("SpecialMesh", p4)
  2779. b3.MeshType = Enum.MeshType.Sphere
  2780. b3.Name = "Mesh"
  2781. p5 = Instance.new("WedgePart", m)
  2782. p5.BrickColor = BrickColor.new("Royal purple")
  2783. p5.Material = Enum.Material.Neon
  2784. p5.Name = "Wedge"
  2785. p5.FormFactor = Enum.FormFactor.Custom
  2786. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2787. 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)
  2788. p5.CanCollide = false
  2789. p5.Locked = true
  2790. p5.TopSurface = Enum.SurfaceType.Smooth
  2791. b4 = Instance.new("SpecialMesh", p5)
  2792. b4.MeshType = Enum.MeshType.Wedge
  2793. b4.Name = "Mesh"
  2794. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2795. p6 = Instance.new("Part", m)
  2796. p6.BrickColor = BrickColor.new("Royal purple")
  2797. p6.Material = Enum.Material.Neon
  2798. p6.FormFactor = Enum.FormFactor.Custom
  2799. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2800. 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)
  2801. p6.CanCollide = false
  2802. p6.Locked = true
  2803. p6.BottomSurface = Enum.SurfaceType.Smooth
  2804. p6.TopSurface = Enum.SurfaceType.Smooth
  2805. p7 = Instance.new("Part", m)
  2806. p7.BrickColor = BrickColor.new("Royal purple")
  2807. p7.Material = Enum.Material.Neon
  2808. p7.FormFactor = Enum.FormFactor.Custom
  2809. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2810. 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)
  2811. p7.CanCollide = false
  2812. p7.Locked = true
  2813. p7.BottomSurface = Enum.SurfaceType.Smooth
  2814. p7.TopSurface = Enum.SurfaceType.Smooth
  2815. p8 = Instance.new("Part", m)
  2816. p8.BrickColor = BrickColor.new("Really black")
  2817. p8.Material = Enum.Material.Neon
  2818. p8.FormFactor = Enum.FormFactor.Custom
  2819. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2820. 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)
  2821. p8.CanCollide = false
  2822. p8.Locked = true
  2823. p8.BottomSurface = Enum.SurfaceType.Smooth
  2824. p8.TopSurface = Enum.SurfaceType.Smooth
  2825. b5 = Instance.new("SpecialMesh", p8)
  2826. b5.MeshType = Enum.MeshType.Sphere
  2827. b5.Name = "Mesh"
  2828. p9 = Instance.new("Part", m)
  2829. p9.BrickColor = BrickColor.new("Really black")
  2830. p9.Material = Enum.Material.Neon
  2831. p9.FormFactor = Enum.FormFactor.Custom
  2832. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2833. 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)
  2834. p9.CanCollide = false
  2835. p9.Locked = true
  2836. p9.BottomSurface = Enum.SurfaceType.Smooth
  2837. p9.TopSurface = Enum.SurfaceType.Smooth
  2838. b6 = Instance.new("SpecialMesh", p9)
  2839. b6.MeshType = Enum.MeshType.Sphere
  2840. b6.Name = "Mesh"
  2841. p10 = Instance.new("Part", m)
  2842. p10.BrickColor = BrickColor.new("Royal purple")
  2843. p10.Material = Enum.Material.Neon
  2844. p10.FormFactor = Enum.FormFactor.Custom
  2845. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2846. 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)
  2847. p10.CanCollide = false
  2848. p10.Locked = true
  2849. p10.BottomSurface = Enum.SurfaceType.Smooth
  2850. p10.TopSurface = Enum.SurfaceType.Smooth
  2851. p11 = Instance.new("Part", m)
  2852. p11.BrickColor = BrickColor.new("Royal purple")
  2853. p11.Material = Enum.Material.Neon
  2854. p11.FormFactor = Enum.FormFactor.Custom
  2855. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2856. 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)
  2857. p11.CanCollide = false
  2858. p11.Locked = true
  2859. p11.BottomSurface = Enum.SurfaceType.Smooth
  2860. p11.TopSurface = Enum.SurfaceType.Smooth
  2861. p12 = Instance.new("WedgePart", m)
  2862. p12.BrickColor = BrickColor.new("Royal purple")
  2863. p12.Material = Enum.Material.Neon
  2864. p12.Name = "Wedge"
  2865. p12.FormFactor = Enum.FormFactor.Custom
  2866. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2867. 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)
  2868. p12.CanCollide = false
  2869. p12.Locked = true
  2870. p12.TopSurface = Enum.SurfaceType.Smooth
  2871. b7 = Instance.new("SpecialMesh", p12)
  2872. b7.MeshType = Enum.MeshType.Wedge
  2873. b7.Name = "Mesh"
  2874. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2875. p13 = Instance.new("Part", m)
  2876. p13.BrickColor = BrickColor.new("Really black")
  2877. p13.Material = Enum.Material.Neon
  2878. p13.FormFactor = Enum.FormFactor.Custom
  2879. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2880. 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)
  2881. p13.CanCollide = false
  2882. p13.Locked = true
  2883. p13.BottomSurface = Enum.SurfaceType.Smooth
  2884. p13.TopSurface = Enum.SurfaceType.Smooth
  2885. b8 = Instance.new("SpecialMesh", p13)
  2886. b8.MeshType = Enum.MeshType.Sphere
  2887. b8.Name = "Mesh"
  2888. p14 = Instance.new("Part", m)
  2889. p14.BrickColor = BrickColor.new("Really black")
  2890. p14.Material = Enum.Material.Neon
  2891. p14.FormFactor = Enum.FormFactor.Custom
  2892. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2893. 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)
  2894. p14.CanCollide = false
  2895. p14.Locked = true
  2896. p14.BottomSurface = Enum.SurfaceType.Smooth
  2897. p14.TopSurface = Enum.SurfaceType.Smooth
  2898. b9 = Instance.new("SpecialMesh", p14)
  2899. b9.MeshType = Enum.MeshType.Sphere
  2900. b9.Name = "Mesh"
  2901. w1 = Instance.new("Weld", p1)
  2902. w1.Name = "Wedge_Weld"
  2903. w1.Part0 = p1
  2904. 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)
  2905. w1.Part1 = p2
  2906. 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)
  2907. w2 = Instance.new("Weld", p2)
  2908. w2.Name = "Part_Weld"
  2909. w2.Part0 = p2
  2910. 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)
  2911. w2.Part1 = p3
  2912. 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)
  2913. w3 = Instance.new("Weld", p3)
  2914. w3.Name = "Part_Weld"
  2915. w3.Part0 = p3
  2916. 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)
  2917. w3.Part1 = p4
  2918. 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)
  2919. w4 = Instance.new("Weld", p4)
  2920. w4.Name = "Wedge_Weld"
  2921. w4.Part0 = p4
  2922. 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)
  2923. w4.Part1 = p5
  2924. 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)
  2925. w5 = Instance.new("Weld", p5)
  2926. w5.Name = "Part_Weld"
  2927. w5.Part0 = p5
  2928. 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)
  2929. w5.Part1 = p6
  2930. 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)
  2931. w6 = Instance.new("Weld", p6)
  2932. w6.Name = "Part_Weld"
  2933. w6.Part0 = p6
  2934. 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)
  2935. w6.Part1 = p7
  2936. 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)
  2937. w7 = Instance.new("Weld", p7)
  2938. w7.Name = "Part_Weld"
  2939. w7.Part0 = p7
  2940. 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)
  2941. w7.Part1 = p8
  2942. 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)
  2943. w8 = Instance.new("Weld", p8)
  2944. w8.Name = "Part_Weld"
  2945. w8.Part0 = p8
  2946. 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)
  2947. w8.Part1 = p9
  2948. 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)
  2949. w9 = Instance.new("Weld", p9)
  2950. w9.Name = "Part_Weld"
  2951. w9.Part0 = p9
  2952. 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)
  2953. w9.Part1 = p10
  2954. 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)
  2955. w10 = Instance.new("Weld", p10)
  2956. w10.Name = "Part_Weld"
  2957. w10.Part0 = p10
  2958. 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)
  2959. w10.Part1 = p11
  2960. 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)
  2961. w11 = Instance.new("Weld", p11)
  2962. w11.Name = "Wedge_Weld"
  2963. w11.Part0 = p11
  2964. 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)
  2965. w11.Part1 = p12
  2966. 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)
  2967. w12 = Instance.new("Weld", p12)
  2968. w12.Name = "Part_Weld"
  2969. w12.Part0 = p12
  2970. 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)
  2971. w12.Part1 = p13
  2972. 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)
  2973. w13 = Instance.new("Weld", p13)
  2974. w13.Name = "Part_Weld"
  2975. w13.Part0 = p13
  2976. 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)
  2977. w13.Part1 = p14
  2978. 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)
  2979. w14 = Instance.new("Weld", p14)
  2980. w14.Name = "Wedge_Weld"
  2981. w14.Part0 = p14
  2982. 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)
  2983. m.Parent = lleg
  2984. m:MakeJoints()
  2985. ----------------------------------------------------
  2986. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2987. cor7.Name = "Thingy"
  2988. cor7.Locked = true
  2989. cor7.BottomSurface = 0
  2990. cor7.CanCollide = false
  2991. cor7.Size = Vector3.new(2, 1, 1)
  2992. cor7.Transparency = 1
  2993. cor7.TopSurface = 0
  2994. corw2 = Instance.new("Weld", cor7)
  2995. corw2.Part0 = lleg
  2996. corw2.Part1 = cor7
  2997. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2998. corw2.C1 = CFrame.new(0, 0, 0)
  2999. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3000. weld2.Part0 = cor7
  3001. weld2.Part1 = p3
  3002. weld2.C0 = CFrame.new(0, 0, 0)
  3003. ----------------------------------------------------
  3004. function weld5(part0, part1, c0, c1)
  3005. weeld=Instance.new("Weld", part0)
  3006. weeld.Part0=part0
  3007. weeld.Part1=part1
  3008. weeld.C0=c0
  3009. weeld.C1=c1
  3010. return weeld
  3011. end
  3012. ----------------------------------------------------
  3013. function newRay(start,face,range,wat)
  3014. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3015. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3016. return rey,hit,pos
  3017. end
  3018. ----------------------------------------------------
  3019. mod5 = Instance.new("Model",char)
  3020.  
  3021. function FindNearestTorso(Position,Distance,SinglePlayer)
  3022. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3023. local List = {}
  3024. for i,v in pairs(workspace:GetChildren())do
  3025. if v:IsA("Model")then
  3026. if v:findFirstChild("Torso")then
  3027. if v ~= char then
  3028. if(v.Torso.Position -Position).magnitude <= Distance then
  3029. table.insert(List,v)
  3030. end
  3031. end
  3032. end
  3033. end
  3034. end
  3035. return List
  3036. end
  3037.  
  3038. function Landing()
  3039. part=Instance.new('Part',mod5)
  3040. part.Anchored=true
  3041. part.CanCollide=false
  3042. part.FormFactor='Custom'
  3043. part.Size=Vector3.new(.2,.2,.2)
  3044. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3045. part.Transparency=.7
  3046. part.BrickColor=BrickColor.new('Really black')
  3047. part2=part:clone()
  3048. part2.Parent = mod5
  3049. part2.BrickColor=BrickColor.new('Royal purple')
  3050. mesh=Instance.new('SpecialMesh',part)
  3051. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3052. mesh.Scale=Vector3.new(10,5,10)
  3053. mesh2=mesh:clone()
  3054. mesh2.Parent=part2
  3055. mesh2.Scale=Vector3.new(12, 6, 12)
  3056.  
  3057. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3058. if v:FindFirstChild('Humanoid') then
  3059. v.Humanoid:TakeDamage(math.random(20,30))
  3060. v.Humanoid.PlatformStand = true
  3061. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3062. end
  3063. end
  3064.  
  3065. coroutine.resume(coroutine.create(function()
  3066. for i=0,3.8,0.05 do
  3067. wait()
  3068. part.CFrame=part.CFrame
  3069. part.Transparency=i
  3070. part2.CFrame=part2.CFrame
  3071. part2.Transparency=i
  3072. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3073. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3074. end
  3075. part.Parent = nil
  3076. end))
  3077. end
  3078. ----------------------------------------------------
  3079. mod4 = Instance.new("Model",char)
  3080.  
  3081. ptez = {0.7, 0.8, 0.9, 1}
  3082.  
  3083. function FindNearestTorso(Position,Distance,SinglePlayer)
  3084. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3085. local List = {}
  3086. for i,v in pairs(workspace:GetChildren())do
  3087. if v:IsA("Model")then
  3088. if v:findFirstChild("Torso")then
  3089. if v ~= char then
  3090. if(v.Torso.Position -Position).magnitude <= Distance then
  3091. table.insert(List,v)
  3092. end
  3093. end
  3094. end
  3095. end
  3096. end
  3097. return List
  3098. end
  3099.  
  3100. function GroundPound()
  3101. part=Instance.new('Part',mod4)
  3102. part.Anchored=true
  3103. part.CanCollide=false
  3104. part.FormFactor='Custom'
  3105. part.Size=Vector3.new(.2,.2,.2)
  3106. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3107. part.Transparency=.7
  3108. part.BrickColor=BrickColor.new('Really black')
  3109. mesh=Instance.new('SpecialMesh',part)
  3110. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3111. mesh.Scale=Vector3.new(3,3,3)
  3112. part2=Instance.new('Part',mod4)
  3113. part2.Anchored=true
  3114. part2.CanCollide=false
  3115. part2.FormFactor='Custom'
  3116. part2.Size=Vector3.new(.2,.2,.2)
  3117. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3118. part2.Transparency=.7
  3119. part2.BrickColor=BrickColor.new('Royal purple')
  3120. mesh2=Instance.new('SpecialMesh',part2)
  3121. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3122. mesh2.Scale=Vector3.new(3,1.5,3)
  3123. x = Instance.new("Sound",char)
  3124. x.SoundId = "http://www.roblox.com/asset/?id=157878578"
  3125. x.Pitch = ptez[math.random(1,#ptez)]
  3126. x.Volume = 1
  3127. wait(.1)
  3128. x:Play()
  3129. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3130. if v:FindFirstChild('Humanoid') then
  3131. v.Humanoid:TakeDamage(math.random(8,15))
  3132. end
  3133. end
  3134. coroutine.resume(coroutine.create(function()
  3135. for i=0,0.62,0.13 do
  3136. wait()
  3137. part.CFrame=part.CFrame
  3138. part.Transparency=i
  3139. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3140. part2.CFrame=part2.CFrame
  3141. part2.Transparency=i
  3142. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3143. end
  3144. part.Parent=nil
  3145. part2.Parent=nil
  3146. x:Destroy()
  3147. end))
  3148. end
  3149. ----------------------------------------------------
  3150. mod=Instance.new('Model',char)
  3151.  
  3152. function charge()
  3153. hed.Velocity=hed.CFrame.lookVector*200
  3154. part=Instance.new('Part',mod)
  3155. part.Anchored=true
  3156. part.CanCollide=false
  3157. part.FormFactor='Custom'
  3158. part.Size=Vector3.new(.2,.2,.2)
  3159. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3160. part.Transparency=.7
  3161. part.BrickColor=BrickColor.new('Black')
  3162. mesh=Instance.new('SpecialMesh',part)
  3163. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3164. mesh.Scale=Vector3.new(10,5,10)
  3165. part2=part:clone()
  3166. part2.Parent=mod
  3167. part2.BrickColor=BrickColor.new('Royal purple')
  3168. mesh2=mesh:clone()
  3169. mesh2.Parent=part2
  3170. mesh2.Scale=Vector3.new(20,10,20)
  3171. part3=part2:clone()
  3172. part3.Parent = mod
  3173. part3.BrickColor=BrickColor.new('Really black')
  3174. mesh3=mesh2:clone()
  3175. mesh2.Parent=part3
  3176. mesh3.Scale=Vector3.new(30,15,30)
  3177. coroutine.resume(coroutine.create(function()
  3178. for i=0,1,0.1 do
  3179. wait()
  3180. part.CFrame=part.CFrame
  3181. part.Transparency=i
  3182. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3183. part2.CFrame=part2.CFrame
  3184. part2.Transparency=i
  3185. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3186. part3.CFrame=part3.CFrame
  3187. part3.Transparency=i
  3188. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3189. end
  3190. part.Parent=nil
  3191. part2.Parent=nil
  3192. part3.Parent = nil
  3193. end))
  3194. end
  3195. ----------------------------------------------------
  3196. function FindNearestTorso(Position,Distance,SinglePlayer)
  3197. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3198. local List = {}
  3199. for i,v in pairs(workspace:GetChildren())do
  3200. if v:IsA("Model")then
  3201. if v:findFirstChild("Torso")then
  3202. if v ~= char then
  3203. if(v.Torso.Position -Position).magnitude <= Distance then
  3204. table.insert(List,v)
  3205. end
  3206. end
  3207. end
  3208. end
  3209. end
  3210. return List
  3211. end
  3212.  
  3213. mod3 = Instance.new("Model",rleg)
  3214.  
  3215. function Stomp()
  3216. part=Instance.new('Part',mod3)
  3217. part.Anchored=true
  3218. part.CanCollide=false
  3219. part.FormFactor='Custom'
  3220. part.Size=Vector3.new(.2,.2,.2)
  3221. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3222. part.Transparency=.7
  3223. part.BrickColor=BrickColor.new('Bright green')
  3224. mesh=Instance.new('SpecialMesh',part)
  3225. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3226. mesh.Scale=Vector3.new(25,25,25)
  3227. part2=part:clone()
  3228. part2.Parent=mod3
  3229. part2.BrickColor=BrickColor.new('Bright green')
  3230. mesh2=mesh:clone()
  3231. mesh2.Parent=part2
  3232. mesh2.Scale=Vector3.new(15,15,15)
  3233. part3=part:clone()
  3234. part3.Parent=mod3
  3235. part3.TopSurface=0
  3236. part3.BottomSurface=0
  3237. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3238. mesh3=Instance.new('SpecialMesh',part3)
  3239. mesh3.MeshType = 3
  3240. mesh3.Scale=Vector3.new(12,12,12)
  3241. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3242. if v:FindFirstChild('Humanoid') then
  3243. v.Humanoid:TakeDamage(math.random(20,60))
  3244. v.Humanoid.PlatformStand = true
  3245. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3246. end
  3247. end
  3248. coroutine.resume(coroutine.create(function()
  3249. for i=0,3.8,0.05 do
  3250. wait()
  3251. part.CFrame=part.CFrame
  3252. part.Transparency=i
  3253. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3254. part2.CFrame=part2.CFrame
  3255. part2.Transparency=i
  3256. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3257. part3.CFrame=part3.CFrame
  3258. part3.Transparency=i
  3259. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3260. end
  3261. end))
  3262. end
  3263. ----------------------------------------------------
  3264.  
  3265. local acos = math.acos
  3266. local sqrt = math.sqrt
  3267. local Vec3 = Vector3.new
  3268. local fromAxisAngle = CFrame.fromAxisAngle
  3269.  
  3270. local function toAxisAngle(CFr)
  3271. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3272. local Angle = math.acos((R00+R11+R22-1)/2)
  3273. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3274. A = A == 0 and 0.00001 or A
  3275. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3276. B = B == 0 and 0.00001 or B
  3277. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3278. C = C == 0 and 0.00001 or C
  3279. local x = (R21-R12)/sqrt(A)
  3280. local y = (R02-R20)/sqrt(B)
  3281. local z = (R10-R01)/sqrt(C)
  3282. return Vec3(x,y,z),Angle
  3283. end
  3284.  
  3285. function ApplyTrig(Num,Func)
  3286. local Min,Max = Func(0),Func(1)
  3287. local i = Func(Num)
  3288. return (i-Min)/(Max-Min)
  3289. --[[if Func == "sin" then
  3290. return (math.sin((1-Num)*math.pi)+1)/2
  3291. elseif Func == "cos" then
  3292. return (math.cos((1-Num)*math.pi)+1)/2
  3293. end]]
  3294. end
  3295.  
  3296. function LerpCFrame(CFrame1,CFrame2,Num)
  3297. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3298. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3299. end
  3300.  
  3301. function Crater(Torso,Radius)
  3302. Spawn(function()
  3303. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3304. local Ignore = {}
  3305. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3306. if v.Character ~= nil then
  3307. Ignore[#Ignore+1] = v.Character
  3308. end
  3309. end
  3310. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3311. if Hit == nil then return end
  3312. local Parts = {}
  3313. for i = 1,360,10 do
  3314. local P = Instance.new("Part",Torso.Parent)
  3315. P.Anchored = true
  3316. P.FormFactor = "Custom"
  3317. P.BrickColor = Hit.BrickColor
  3318. P.Material = Hit.Material
  3319. P.TopSurface = "Smooth"
  3320. P.BottomSurface = "Smooth"
  3321. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3322. 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)))
  3323. 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}
  3324. if math.random(0,5) == 0 then -- rubble
  3325. local P = Instance.new("Part",Torso.Parent)
  3326. P.Anchored = true
  3327. P.FormFactor = "Custom"
  3328. P.BrickColor = Hit.BrickColor
  3329. P.Material = Hit.Material
  3330. P.TopSurface = "Smooth"
  3331. P.BottomSurface = "Smooth"
  3332. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3333. 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)))
  3334. 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}
  3335. end
  3336. end
  3337. for i = 0,1,0.05 do
  3338. for i2,v in pairs(Parts) do
  3339. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3340. end
  3341. wait(0.02)
  3342. end
  3343. for i,v in pairs(Parts) do
  3344. if v[1].Size.X > 2.1 then
  3345. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3346. end
  3347. v[1].Anchored = false
  3348. end
  3349. for i = 0,1,0.05 do
  3350. for i2,v in pairs(Parts) do
  3351. v[1].Transparency = i
  3352. if i == 1 then
  3353. v[1]:Destroy()
  3354. elseif i >= 0.25 then
  3355. v[1].CanCollide = false
  3356. end
  3357. end
  3358. wait(0.02)
  3359. end
  3360. Parts = nil
  3361. end)
  3362. end
  3363.  
  3364. ----------------------------------------------------
  3365. mouse.KeyDown:connect(function(key)
  3366. if key == "r" then
  3367. larm.BrickColor = BrickColor.new("Royal purple")
  3368. rarm.BrickColor = BrickColor.new("Royal purple")
  3369. if Debounces.CanAttack == true then
  3370. Debounces.CanAttack = false
  3371. Debounces.on = true
  3372. Debounces.NoIdl = true
  3373. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3374. hit = ht.Parent
  3375. if ht and hit:IsA("Model") then
  3376. if hit:FindFirstChild("Humanoid") then
  3377. if hit.Name ~= p.Name then
  3378. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3379. Debounces.Slashed = true]]--
  3380. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3381. wait(1)
  3382. --Debounces.Slashed = false
  3383. --end
  3384. end
  3385. end
  3386. elseif ht and hit:IsA("Hat") then
  3387. if hit.Parent.Name ~= p.Name then
  3388. if hit.Parent:FindFirstChild("Humanoid") then
  3389. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3390. Debounces.Slashed = true]]--
  3391. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3392. wait(1)
  3393. --Debounces.Slashed = false
  3394. end
  3395. end
  3396. end
  3397. end)
  3398. q = Instance.new("Sound",hed)
  3399. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3400. q.Pitch = 0.85
  3401. q.Looped = false
  3402. q1 = Instance.new("Sound",hed)
  3403. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3404. q1.Pitch = 0.85
  3405. q1.Looped = false
  3406. q:Play()
  3407. q1:Play()
  3408. for i = 1,20 do
  3409. 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)
  3410. 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)
  3411. 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)
  3412. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3413. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3414. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3415. 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)
  3416. if Debounces.on == false then break end
  3417. rs:wait(.6)
  3418. end
  3419. n = Instance.new("Sound",hed)
  3420. n.SoundId = "http://www.roblox.com/asset/?id=165969964"
  3421. n.Pitch = 0.94
  3422. n.Looped = false
  3423. n1 = Instance.new("Sound",hed)
  3424. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3425. n1.Pitch = 0.94
  3426. n1.Looped = false
  3427. n:Play()
  3428. n1:Play()
  3429. b = Instance.new("Sound",hed)
  3430. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3431. b.Pitch = 0.94
  3432. b.Looped = false
  3433. b1 = Instance.new("Sound",hed)
  3434. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3435. b1.Pitch = 0.94
  3436. b1.Looped = false
  3437. b:Play()
  3438. b1:Play()
  3439. for i = 1,26 do
  3440. 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)
  3441. 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)
  3442. 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)
  3443. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3444. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3445. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3446. 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)
  3447. if Debounces.on == false then break end
  3448. rs:wait(1)
  3449. end
  3450. wait(.5)
  3451. to:disconnect()
  3452. q:Destroy()
  3453. q1:Destroy()
  3454. n:Destroy()
  3455. n1:Destroy()
  3456. larm.BrickColor = BrickColor.new("Really black")
  3457. rarm.BrickColor = BrickColor.new("Really black")
  3458. if Debounces.CanAttack == false then
  3459. Debounces.CanAttack = true
  3460. Debounces.on = false
  3461. Debounces.NoIdl = false
  3462. end
  3463. end
  3464. end
  3465. end)
  3466. ----------------------------------------------------
  3467. mouse.KeyDown:connect(function(key)
  3468. if key == "q" then
  3469. larm.BrickColor = BrickColor.new("Royal purple")
  3470. rarm.BrickColor = BrickColor.new("Royal purple")
  3471. if Debounces.CanAttack == true then
  3472. Debounces.CanAttack = false
  3473. Debounces.on = true
  3474. Debounces.NoIdl = true
  3475. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3476. hit = ht.Parent
  3477. if ht and hit:IsA("Model") then
  3478. if hit:FindFirstChild("Humanoid") then
  3479. if hit.Name ~= p.Name then
  3480. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3481. Debounces.Slashed = true]]--
  3482. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3483. wait(1)
  3484. --Debounces.Slashed = false
  3485. --end
  3486. end
  3487. end
  3488. elseif ht and hit:IsA("Hat") then
  3489. if hit.Parent.Name ~= p.Name then
  3490. if hit.Parent:FindFirstChild("Humanoid") then
  3491. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3492. Debounces.Slashed = true]]--
  3493. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3494. wait(1)
  3495. --Debounces.Slashed = false
  3496. end
  3497. end
  3498. end
  3499. end)
  3500. for i = 1, 20 do
  3501. 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)
  3502. 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)
  3503. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3504. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3505. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3506. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3507. 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)
  3508. if Debounces.on == false then break end
  3509. rs:wait(2)
  3510. end
  3511. z = Instance.new("Sound",hed)
  3512. z.SoundId = "rbxassetid://160069154"
  3513. z.Looped = false
  3514. z.Pitch = .9
  3515. z1 = Instance.new("Sound",hed)
  3516. z1.SoundId = "rbxassetid://160069154"
  3517. z1.Looped = false
  3518. z1.Pitch = .9
  3519. wait(0.01)
  3520. z:Play()
  3521. z1:Play()
  3522. for i = 1, 20 do
  3523. 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)
  3524. 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)
  3525. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3526. 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)
  3527. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3528. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3529. 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)
  3530. if Debounces.on == false then break end
  3531. rs:wait(2)
  3532. end
  3533. for i = 1, 20 do
  3534. 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)
  3535. 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)
  3536. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3537. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3538. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3539. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3540. 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)
  3541. if Debounces.on == false then break end
  3542. rs:wait(2)
  3543. end
  3544. z = Instance.new("Sound",hed)
  3545. z.SoundId = "rbxassetid://168586621"
  3546. z.Looped = false
  3547. z.Pitch = 1
  3548. z1 = Instance.new("Sound",hed)
  3549. z1.SoundId = "rbxassetid://168586621"
  3550. z1.Looped = false
  3551. z1.Pitch = 1
  3552. wait(0.01)
  3553. z:Play()
  3554. z1:Play()
  3555. for i = 1, 20 do
  3556. 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)
  3557. 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)
  3558. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3559. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3560. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3561. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3562. 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)
  3563. if Debounces.on == false then break end
  3564. rs:wait(2)
  3565. end
  3566. to:disconnect()
  3567. larm.BrickColor = BrickColor.new("Really black")
  3568. rarm.BrickColor = BrickColor.new("Really black")
  3569. if Debounces.CanAttack == false then
  3570. Debounces.CanAttack = true
  3571. Debounces.on = false
  3572. Debounces.NoIdl = false
  3573. end
  3574. end
  3575. end
  3576. end)
  3577. ----------------------------------------------------
  3578. Sit = false
  3579. mouse.KeyDown:connect(function(key)
  3580. if key == "v" then
  3581. if Sit == false then
  3582. Sit = true
  3583. hum.WalkSpeed = 0.001
  3584. stanceToggle = "Sitting"
  3585. elseif Sit == true then
  3586. Sit = false
  3587. hum.WalkSpeed = 7
  3588. stanceToggle = "Normal"
  3589. end
  3590. end
  3591. end)
  3592. ----------------------------------------------------
  3593. mouse.KeyDown:connect(function(key)
  3594. if key == "t" then
  3595. if Debounces.CanAttack == true then
  3596. Debounces.CanAttack = false
  3597. Debounces.on = true
  3598. Debounces.NoIdl = true
  3599. for i = 1, 20 do
  3600. 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)
  3601. 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)
  3602. 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)
  3603. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3604. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3605. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3606. 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)
  3607. if Debounces.on == false then break end
  3608. rs:wait(2.6)
  3609. end
  3610. Spawn(function()
  3611. local Parts = {}
  3612. for Y = -5,5 do
  3613. local P = Instance.new("Part",char)
  3614. P.Anchored = true
  3615. P.FormFactor = "Custom"
  3616. P.CanCollide = false
  3617. P.Size = Vector3.new(1,2,1)
  3618. P.TopSurface = "SmoothNoOutlines"
  3619. P.BottomSurface = "SmoothNoOutlines"
  3620. P.BrickColor = BrickColor.new("Really black")
  3621. P.Name = tostring(Y)
  3622. local i = (Y+5)/(10)
  3623. i = 1-math.cos(math.pi*i-(math.pi/2))
  3624. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3625. --[[P.Touched:connect(function(ht)
  3626. local hit = ht.Parent
  3627. if hit:FindFirstChild("Humanoid") then
  3628. hit.Humanoid:TakeDamage(math.random(20,50))
  3629. end
  3630. end)]]--
  3631. s = Instance.new("Sound",P)
  3632. s.SoundId = "rbxassetid://228343271"
  3633. s.Volume = .7
  3634. s.Pitch = 0.9
  3635. s:Play()
  3636. P.Touched:connect(function(ht)
  3637. hit = ht.Parent
  3638. if ht and hit:IsA("Model") then
  3639. if hit:FindFirstChild("Humanoid") then
  3640. if hit.Name ~= p.Name then
  3641. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3642. Debounces.Slashed = true]]--
  3643. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3644. hit:FindFirstChild("Humanoid").PlatformStand = true
  3645. wait(1)
  3646. --Debounces.Slashed = false
  3647. --end
  3648. end
  3649. end
  3650. elseif ht and hit:IsA("Hat") then
  3651. if hit.Parent.Name ~= p.Name then
  3652. if hit.Parent:FindFirstChild("Humanoid") then
  3653. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3654. Debounces.Slashed = true]]--
  3655. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3656. hit:FindFirstChild("Humanoid").PlatformStand = true
  3657. wait(1)
  3658. --Debounces.Slashed = false
  3659. --end
  3660. end
  3661. end
  3662. end
  3663. end)
  3664. Parts[#Parts+1] = P
  3665. end
  3666. local BREAKIT = false
  3667. local CParts = {}
  3668. local Rocks = {}
  3669. local LastPos = nil
  3670. for i = 1,70 do
  3671. for i2,v in pairs(Parts) do
  3672. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3673. local cf = v.CFrame
  3674. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3675. v.CFrame = cf
  3676. v.Transparency = v.Transparency+0.02
  3677. if v.Transparency >= 0.975 then BREAKIT = true end
  3678. if v.Name == "0" then
  3679. local Ignore = {}
  3680. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3681. if v.Character ~= nil then
  3682. Ignore[#Ignore+1] = v.Character
  3683. end
  3684. end
  3685. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3686. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3687. if Hit ~= nil then
  3688. if #Rocks == 0 then
  3689. for i = 1,5 do
  3690. local P = Instance.new("Part",char)
  3691. Rocks[#Rocks+1] = P
  3692. P.Anchored = true
  3693. P.FormFactor = "Custom"
  3694. P.BrickColor = Hit.BrickColor
  3695. P.Material = Hit.Material
  3696. P.TopSurface = "Smooth"
  3697. P.BottomSurface = "Smooth"
  3698. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3699. end
  3700. end
  3701. for i,P in pairs(Rocks) do
  3702. 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)))
  3703. end
  3704. local P = Instance.new("Part",char)
  3705. CParts[#CParts+1] = {P,tick()}
  3706. P.Anchored = true
  3707. P.FormFactor = "Custom"
  3708. P.BrickColor = Hit.BrickColor
  3709. P.Material = Hit.Material
  3710. P.TopSurface = "Smooth"
  3711. P.BottomSurface = "Smooth"
  3712. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3713. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,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(20,50)))
  3716. local P = P:Clone()
  3717. CParts[#CParts+1] = {P,tick()}
  3718. P.Parent = char
  3719. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3720. Pos = Pos.p
  3721. 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)))
  3722. if LastPos ~= nil then
  3723. local P = P:Clone()
  3724. CParts[#CParts+1] = {P,tick()}
  3725. P.Parent = char
  3726. P.BrickColor = BrickColor.new("Really black")
  3727. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3728. Pos = Pos.p
  3729. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3730. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3731. --P.Velocity = Vector3.new(0,-1000,0)
  3732. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3733. end
  3734. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3735. end
  3736. end
  3737. end
  3738. if BREAKIT then break end
  3739. wait(0.002)
  3740. end
  3741. for i,v in pairs(Rocks) do
  3742. CParts[#CParts+1] = {v,tick()}
  3743. end
  3744. for i,v in pairs(Parts) do
  3745. v:Destroy()
  3746. end
  3747. Parts = nil
  3748. while true do
  3749. local t = tick()
  3750. local p = nil
  3751. for i,v in pairs(CParts) do
  3752. if t-v[2] > 4 then
  3753. v[1].Transparency = v[1].Transparency+0.05
  3754. if v[1].Transparency >= 1 then
  3755. v[1]:Destroy()
  3756. CParts[i] = nil
  3757. end
  3758. end
  3759. p = v
  3760. end
  3761. if p == nil then break end
  3762. wait(0.002)
  3763. end
  3764. for i,v in pairs(CParts) do
  3765. v:Destroy()
  3766. end
  3767. CParts = {}
  3768. end)
  3769. for i = 1, 20 do
  3770. 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)
  3771. 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)
  3772. 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)
  3773. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3774. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3775. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3776. 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)
  3777. if Debounces.on == false then break end
  3778. rs:wait(2)
  3779. end
  3780. if Debounces.CanAttack == false then
  3781. Debounces.CanAttack = true
  3782. Debounces.on = false
  3783. Debounces.NoIdl = false
  3784. end
  3785. end
  3786. end
  3787. end)
  3788. ----------------------------------------------------
  3789. mouse.KeyDown:connect(function(key)
  3790. if key == "e" then
  3791. larm.BrickColor = BrickColor.new("Royal purple")
  3792. rarm.BrickColor = BrickColor.new("Royal purple")
  3793. if Debounces.CanAttack == true then
  3794. Debounces.CanAttack = false
  3795. Debounces.on = true
  3796. Debounces.NoIdl = true
  3797. for i = 1, 18 do
  3798. 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)
  3799. 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)
  3800. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3801. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3802. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3803. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3804. 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)
  3805. if Debounces.on == false then break end
  3806. rs:wait(4)
  3807. end
  3808. 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))
  3809. local rng = Instance.new("Part", char.Absolution.Handle)
  3810. rng.Anchored = true
  3811. rng.BrickColor = BrickColor.new("Really black")
  3812. rng.CanCollide = true
  3813. rng.FormFactor = 3
  3814. rng.Name = "Ring"
  3815. rng.Size = Vector3.new(1, 1, 1)
  3816. rng.CanCollide = false
  3817. rng.Transparency = 0.35
  3818. rng.TopSurface = 0
  3819. rng.BottomSurface = 0
  3820. rng.CFrame = HandCF
  3821. local rngm = Instance.new("SpecialMesh", rng)
  3822. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3823. rngm.Scale = Vector3.new(1, 1, 2)
  3824. x = Instance.new("Sound", hed)
  3825. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3826. x.Looped = false
  3827. x.Pitch = .7
  3828. x.Volume = 1
  3829. x1 = Instance.new("Sound", hed)
  3830. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3831. x1.Looped = false
  3832. x1.Pitch = .7
  3833. x1.Volume = 1
  3834. x:Play()
  3835. x1:Play()
  3836. rngto = rng.Touched:connect(function(ht)
  3837. hit = ht.Parent
  3838. if ht and hit:IsA("Model") then
  3839. if hit:FindFirstChild("Humanoid") then
  3840. if hit.Name ~= p.Name then
  3841. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3842. Debounces.Slashed = true]]--
  3843. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3844. hit:FindFirstChild("Humanoid").PlatformStand = true
  3845. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3846. --Debounces.Slashed = false
  3847. --end
  3848. end
  3849. end
  3850. elseif ht and hit:IsA("Hat") then
  3851. if hit.Parent.Name ~= p.Name then
  3852. if hit.Parent:FindFirstChild("Humanoid") then
  3853. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3854. Debounces.Slashed = true]]--
  3855. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3856. hit:FindFirstChild("Humanoid").PlatformStand = true
  3857. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3858. --Debounces.Slashed = false
  3859. end
  3860. end
  3861. end
  3862. end)
  3863. coroutine.wrap(function()
  3864. for i = 1, 60, 2 do
  3865. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3866. rng.Size = rngm.Scale
  3867. rng.CFrame = HandCF
  3868. rng.Transparency = i/60
  3869. wait()
  3870. end
  3871. wait()
  3872. rng:Destroy()
  3873. end)()
  3874. for i = 1, 18 do
  3875. 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)
  3876. 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)
  3877. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3878. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3879. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3880. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3881. 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)
  3882. if Debounces.on == false then break end
  3883. rs:wait(2.4)
  3884. end
  3885. larm.BrickColor = BrickColor.new("Really black")
  3886. rarm.BrickColor = BrickColor.new("Really black")
  3887. x:Destroy()
  3888. x1:Destroy()
  3889. if Debounces.CanAttack == false then
  3890. Debounces.CanAttack = true
  3891. Debounces.on = false
  3892. Debounces.NoIdl = false
  3893. end
  3894. end
  3895. end
  3896. end)
  3897. ----------------------------------------------------
  3898. mouse.KeyDown:connect(function(key)
  3899. if key == "y" then
  3900. if Debounces.CanAttack == true then
  3901. Debounces.CanAttack = false
  3902. Debounces.on = true
  3903. Debounces.NoIdl = true
  3904. for i = 1, 15 do
  3905. 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)
  3906. 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)
  3907. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3908. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3909. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3910. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3911. 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)
  3912. if Debounces.on == false then break end
  3913. rs:wait(2.7)
  3914. end
  3915. x = Instance.new("Sound",char)
  3916. x.SoundId = "rbxassetid://228343271"
  3917. x.Pitch = 1
  3918. x.Volume = .8
  3919. wait(.1)
  3920. x:Play()
  3921. Debounces.on = false
  3922. Debounces.Here = false
  3923. shot = shot + 1
  3924. local rng = Instance.new("Part", char)
  3925. rng.Anchored = true
  3926. rng.BrickColor = BrickColor.new("Royal purple")
  3927. rng.CanCollide = false
  3928. rng.FormFactor = 3
  3929. rng.Name = "Ring"
  3930. rng.Size = Vector3.new(1, 1, 1)
  3931. rng.Transparency = 0.35
  3932. rng.TopSurface = 0
  3933. rng.BottomSurface = 0
  3934. rng2 = rng:clone()
  3935. rng3 = rng2:clone()
  3936. rng4 = rng2:clone()
  3937. local rngm = Instance.new("SpecialMesh", rng)
  3938. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3939. rngm.Scale = Vector3.new(10, 10, 1)
  3940. rngm2 = rngm:clone()
  3941. rngm2.Scale = Vector3.new(5, 5, 3)
  3942. rngm3=rngm2:clone()
  3943. rngm3.Parent = rng3
  3944. rngm3.Scale = Vector3.new(8, 8, 1)
  3945. rngm4 = rngm2:clone()
  3946. rngm4.Parent = rng4
  3947. rngm4.Scale = Vector3.new(6, 6, 1)
  3948. local bem = Instance.new("Part", char)
  3949. bem.Anchored = true
  3950. bem.BrickColor = BrickColor.new("Really black")
  3951. bem.CanCollide = false
  3952. bem.FormFactor = 3
  3953. bem.Name = "Beam" .. shot
  3954. bem.Size = Vector3.new(1, 1, 1)
  3955. bem.Transparency = 0.35
  3956. bem.TopSurface = 0
  3957. bem.BottomSurface = 0
  3958. local bemm = Instance.new("SpecialMesh", bem)
  3959. bemm.MeshType = 4
  3960. bemm.Scale = Vector3.new(1, 4, 4)
  3961. local out = Instance.new("Part", char)
  3962. out.Anchored = true
  3963. out.BrickColor = BrickColor.new("Really black")
  3964. out.CanCollide = false
  3965. out.FormFactor = 3
  3966. out.Name = "Out"
  3967. out.Size = Vector3.new(4, 4, 4)
  3968. out.Transparency = 0.35
  3969. out.TopSurface = 0
  3970. out.BottomSurface = 0
  3971. local outm = Instance.new("SpecialMesh", out)
  3972. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3973. outm.Scale = Vector3.new(4, 4, 4)
  3974. local bnd = Instance.new("Part", char)
  3975. bnd.Anchored = true
  3976. bnd.BrickColor = BrickColor.new("Royal purple")
  3977. bnd.CanCollide = false
  3978. bnd.FormFactor = 3
  3979. bnd.Name = "Bend"
  3980. bnd.Size = Vector3.new(1, 1, 1)
  3981. bnd.Transparency = 1
  3982. bnd.TopSurface = 0
  3983. bnd.BottomSurface = 0
  3984. local bndm = Instance.new("SpecialMesh", bnd)
  3985. bndm.MeshType = 3
  3986. bndm.Scale = Vector3.new(8, 8, 8)
  3987. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3988. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3989. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3990. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3991. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3992. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3993. Debounces.Shewt = true
  3994. coroutine.wrap(function()
  3995. for i = 1, 20, 0.2 do
  3996. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3997. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3998. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3999. rng.Transparency = i/20
  4000. rng3.Transparency = 1/24
  4001. rng4.Transparency = i/26
  4002. wait()
  4003. end
  4004. wait()
  4005. rng:Destroy()
  4006. end)()
  4007. if Debounces.Shewt == true then
  4008. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4009. hit = ht.Parent
  4010. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4011. if HasntTouched(hit.Name) == true and deb == false then
  4012. deb = true
  4013. coroutine.wrap(function()
  4014. hit:FindFirstChild("Humanoid").PlatformStand = true
  4015. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4016. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4017. end)()
  4018. table.insert(Touche, hit.Name)
  4019. deb = false
  4020. end
  4021. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4022. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4023. deb = true
  4024. coroutine.wrap(function()
  4025. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4026. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4027. wait(1)
  4028. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4029. end)()
  4030. table.insert(Touche, hit.Parent.Name)
  4031. deb = false
  4032. for i, v in pairs(Touche) do
  4033. print(v)
  4034. end
  4035. end
  4036. end
  4037. end)
  4038. end
  4039. for i = 0, 260, 8 do
  4040. bem.Size = Vector3.new(i, 2, 2)
  4041. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4042. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4043. bnd.Size = Vector3.new(1,1,1)
  4044. bndm.Scale = Vector3.new(8,8,8)
  4045. if i % 10 == 0 then
  4046. local newRng = rng2:Clone()
  4047. newRng.Parent = char
  4048. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4049. local newRngm = rngm2:clone()
  4050. newRngm.Parent=newRng
  4051. coroutine.wrap(function()
  4052. for i = 1, 10, 0.2 do
  4053. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4054. newRng.Transparency = i/10
  4055. wait()
  4056. end
  4057. wait()
  4058. newRng:Destroy()
  4059. end)()
  4060. end
  4061. wait()
  4062. end
  4063. wait()
  4064. Debounces.Shewt = false
  4065. bem:Destroy()
  4066. out:Destroy()
  4067. bnd:Destroy()
  4068. Debounces.Ready = false
  4069. for i, v in pairs(Touche) do
  4070. table.remove(Touche, i)
  4071. end
  4072. wait()
  4073. table.insert(Touche, char.Name)
  4074. Debounces.NoIdl = false
  4075. if Debounces.CanAttack == false then
  4076. Debounces.CanAttack = true
  4077. end
  4078. end
  4079. end
  4080. end)
  4081. ----------------------------------------------------
  4082. sidz = {"231917888", "231917845", "231917806"}
  4083. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4084. mouse.KeyDown:connect(function(key)
  4085. if key == "f" then
  4086. larm.BrickColor = BrickColor.new("Royal purple")
  4087. rarm.BrickColor = BrickColor.new("Royal purple")
  4088. if Debounces.CanAttack == true then
  4089. Debounces.CanAttack = false
  4090. Debounces.on = true
  4091. Debounces.NoIdl = true
  4092. for i = 1, 20 do
  4093. 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)
  4094. 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)
  4095. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4096. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4097. 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)
  4098. 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)
  4099. 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)
  4100. if Debounces.on == false then break end
  4101. rs:wait(6)
  4102. end
  4103. z = Instance.new("Sound",char)
  4104. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4105. z.Pitch = ptz[math.random(1,#ptz)]
  4106. z.Volume = 1
  4107. z1 = Instance.new("Sound",char)
  4108. z1.SoundId = z.SoundId
  4109. z1.Pitch = z.Pitch
  4110. z1.Volume = 1
  4111. z:Play()
  4112. z1:Play()
  4113. Stomp()
  4114. for i = 1, 20 do
  4115. 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)
  4116. 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)
  4117. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4118. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4119. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4120. 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)
  4121. 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)
  4122. if Debounces.on == false then break end
  4123. rs:wait(2.5)
  4124. end
  4125. if Debounces.CanAttack == false then
  4126. Debounces.CanAttack = true
  4127. Debounces.on = false
  4128. Debounces.NoIdl = false
  4129. larm.BrickColor = BrickColor.new("Really black")
  4130. rarm.BrickColor = BrickColor.new("Really black")
  4131. end
  4132. end
  4133. end
  4134. end)
  4135. ----------------------------------------------------
  4136. mouse.KeyDown:connect(function(key)
  4137. if key == "g" then
  4138. larm.BrickColor = BrickColor.new("Royal purple")
  4139. rarm.BrickColor = BrickColor.new("Royal purple")
  4140. if Debounces.CanAttack == true then
  4141. Debounces.CanAttack = false
  4142. Debounces.on = true
  4143. Debounces.NoIdl = true
  4144. chrg = lleg.Touched:connect(function(ht)
  4145. hit = ht.Parent
  4146. if ht and hit:IsA("Model") then
  4147. if hit:FindFirstChild("Humanoid") then
  4148. if hit.Name ~= p.Name then
  4149. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4150. Debounces.Slashed = true]]--
  4151. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4152. hit:FindFirstChild("Humanoid").PlatformStand = true
  4153. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4154. --Debounces.Slashed = false
  4155. --end
  4156. end
  4157. end
  4158. elseif ht and hit:IsA("Hat") then
  4159. if hit.Parent.Name ~= p.Name then
  4160. if hit.Parent:FindFirstChild("Humanoid") then
  4161. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4162. Debounces.Slashed = true]]--
  4163. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4164. hit:FindFirstChild("Humanoid").PlatformStand = true
  4165. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4166. --Debounces.Slashed = false
  4167. end
  4168. end
  4169. end
  4170. end)
  4171. for i = 1, 14 do
  4172. 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)
  4173. 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)
  4174. 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)
  4175. 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)
  4176. 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)
  4177. 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)
  4178. 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)
  4179. if Debounces.on == false then break end
  4180. rs:wait(3)
  4181. end
  4182. charge()
  4183. z = Instance.new("Sound",char)
  4184. z.SoundId = "rbxassetid://200632875"
  4185. z.Volume = 1
  4186. z.Pitch = .8
  4187. z1 = Instance.new("Sound",char)
  4188. z1.SoundId = "rbxassetid://200632875"
  4189. z1.Volume = 1
  4190. z1.Pitch = .9
  4191. z:Play()
  4192. z1:Play()
  4193. wait(1)
  4194. z:Destroy()
  4195. z1:Destroy()
  4196. chrg:disconnect()
  4197. if Debounces.CanAttack == false then
  4198. Debounces.CanAttack = true
  4199. Debounces.on = false
  4200. Debounces.NoIdl = false
  4201. larm.BrickColor = BrickColor.new("Really black")
  4202. rarm.BrickColor = BrickColor.new("Really black")
  4203. end
  4204. end
  4205. end
  4206. end)
  4207. ----------------------------------------------------
  4208. pt = {0.7, 0.8, 0.9}
  4209. mouse.KeyDown:connect(function(key)
  4210. if key == "h" then
  4211. if Debounces.CanJoke == true then
  4212. Debounces.CanJoke = false
  4213. u = Instance.new("Sound")
  4214. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4215. u.Parent = char
  4216. u.Looped = false
  4217. u.Pitch = pt[math.random(1,#pt)]
  4218. u.Volume = 1
  4219. u2 = Instance.new("Sound")
  4220. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4221. u2.Parent = char
  4222. u2.Looped = false
  4223. u2.Pitch = u.Pitch
  4224. u2.Volume = 1
  4225. wait(.01)
  4226. u:Play()
  4227. u2:Play()
  4228. wait(6)
  4229. u:Destroy()
  4230. u2:Destroy()
  4231. if Debounces.CanJoke == false then
  4232. Debounces.CanJoke = true
  4233. end
  4234. end
  4235. end
  4236. end)
  4237. ----------------------------------------------------
  4238. mouse.KeyDown:connect(function(key)
  4239. if key == "j" then
  4240. if Debounces.CanJoke == true then
  4241. Debounces.CanJoke = false
  4242. z = Instance.new("Sound",char)
  4243. z.SoundId = "rbxassetid://135017755"
  4244. z.Pitch = .76
  4245. z.Volume = 1
  4246. wait()
  4247. z:Play()
  4248. wait(6)
  4249. z:Destroy()
  4250. if Debounces.CanJoke == false then
  4251. Debounces.CanJoke = true
  4252. end
  4253. end
  4254. end
  4255. end)
  4256. ----------------------------------------------------
  4257. mouse.KeyDown:connect(function(key)
  4258. if key == "k" then
  4259. if Debounces.CanJoke == true then
  4260. Debounces.CanJoke = false
  4261. z = Instance.new("Sound",char)
  4262. z.SoundId = "rbxassetid://135017578"
  4263. z.Pitch = .76
  4264. z.Volume = 1
  4265. wait()
  4266. z:Play()
  4267. wait(4)
  4268. z:Destroy()
  4269. if Debounces.CanJoke == false then
  4270. Debounces.CanJoke = true
  4271. end
  4272. end
  4273. end
  4274. end)
  4275. ----------------------------------------------------
  4276. mouse.KeyDown:connect(function(key)
  4277. if key == "x" then
  4278. if Debounces.CanAttack == true then
  4279. Debounces.CanAttack = false
  4280. Debounces.NoIdl = true
  4281. Debounces.on = true
  4282. Debounces.ks = true
  4283. for i = 1, 10 do
  4284. 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)
  4285. 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)
  4286. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4287. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4288. 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)
  4289. 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)
  4290. 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)
  4291. if Debounces.on == false then break end
  4292. rs:wait(1)
  4293. end
  4294. z = Instance.new("Sound",hed)
  4295. z.SoundId = "rbxassetid://169445092"
  4296. z.Volume = 1
  4297. wait(0.1)
  4298. z:Play()
  4299. kik = rleg.Touched:connect(function(ht)
  4300. hit = ht.Parent
  4301. if ht and hit:IsA("Model") then
  4302. if hit:FindFirstChild("Humanoid") then
  4303. if hit.Name ~= p.Name then
  4304. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4305. Debounces.Slashed = true]]--
  4306. if Debounces.ks==true then
  4307. z = Instance.new("Sound",hed)
  4308. z.SoundId = "rbxassetid://169380525"
  4309. z.Volume = 1
  4310. z:Play()
  4311. Debounces.ks=false
  4312. end
  4313. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4314. hit:FindFirstChild("Humanoid").PlatformStand = true
  4315. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4316. --Debounces.Slashed = false
  4317. --end
  4318. end
  4319. end
  4320. elseif ht and hit:IsA("Hat") then
  4321. if hit.Parent.Name ~= p.Name then
  4322. if hit.Parent:FindFirstChild("Humanoid") then
  4323. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4324. Debounces.Slashed = true]]--
  4325. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4326. hit:FindFirstChild("Humanoid").PlatformStand = true
  4327. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4328. --Debounces.Slashed = false
  4329. --end
  4330. end
  4331. end
  4332. end
  4333. end)
  4334. for i = 1, 8 do
  4335. 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)
  4336. 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)
  4337. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4338. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4339. 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)
  4340. 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)
  4341. 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)
  4342. if Debounces.on == false then break end
  4343. rs:wait(.7)
  4344. end
  4345. kik:disconnect()
  4346. if Debounces.CanAttack == false then
  4347. Debounces.CanAttack = true
  4348. Debounces.on = false
  4349. Debounces.NoIdl = false
  4350. end
  4351. end
  4352. end
  4353. end)
  4354. ----------------------------------------------------
  4355. mouse.KeyDown:connect(function(key)
  4356. if key == "c" then
  4357. if Debounces.CanAttack == true then
  4358. Debounces.CanAttack = false
  4359. Debounces.NoIdl = true
  4360. Debounces.on = true
  4361. SIDZ = {"231917744", "231917742"}
  4362. PTZ = {0.7, 0.8, 0.9, 1}
  4363. for i = 1, 20 do
  4364. wait()
  4365. for i,v in pairs(char.Absolution:children()) do
  4366. if v:IsA("Part") or v:IsA("WedgePart") then
  4367. v.Transparency = v.Transparency + 0.05
  4368. end
  4369. end
  4370. end
  4371. function FindNearestTorso(Position,Distance,SinglePlayer)
  4372. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4373. local List = {}
  4374. for i,v in pairs(workspace:GetChildren())do
  4375. if v:IsA("Model")then
  4376. if v:findFirstChild("Torso")then
  4377. if v ~= char then
  4378. if(v.Torso.Position -Position).magnitude <= Distance then
  4379. table.insert(List,v)
  4380. end
  4381. end
  4382. end
  4383. end
  4384. end
  4385. return List
  4386. end
  4387. GroundPound()
  4388. for i = 1, 11 do
  4389. 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)
  4390. 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)
  4391. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4392. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4393. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4394. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4395. 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)
  4396. if Debounces.on == false then break end
  4397. rs:wait(1.4)
  4398. end
  4399. GroundPound()
  4400. for i = 1, 11 do
  4401. 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)
  4402. 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)
  4403. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4404. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4405. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4406. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4407. 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)
  4408. if Debounces.on == false then break end
  4409. rs:wait(1.4)
  4410. end
  4411. GroundPound()
  4412. for i = 1, 11 do
  4413. 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)
  4414. 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)
  4415. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4416. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4417. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4418. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4419. 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)
  4420. if Debounces.on == false then break end
  4421. rs:wait(1.4)
  4422. end
  4423. GroundPound()
  4424. for i = 1, 11 do
  4425. 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)
  4426. 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)
  4427. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4428. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4429. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4430. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4431. 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)
  4432. if Debounces.on == false then break end
  4433. rs:wait(1.4)
  4434. end
  4435. GroundPound()
  4436. for i = 1, 11 do
  4437. 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)
  4438. 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)
  4439. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4440. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4443. 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)
  4444. if Debounces.on == false then break end
  4445. rs:wait(1.4)
  4446. end
  4447. GroundPound()
  4448. for i = 1, 11 do
  4449. 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)
  4450. 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)
  4451. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4452. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4453. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4454. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4455. 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)
  4456. if Debounces.on == false then break end
  4457. rs:wait(1.4)
  4458. end
  4459. for i = 1, 24 do
  4460. 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)
  4461. 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)
  4462. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4463. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4464. 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)
  4465. 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)
  4466. 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)
  4467. if Debounces.on == false then break end
  4468. rs:wait(3)
  4469. end
  4470. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4471. if v:FindFirstChild('Humanoid') then
  4472. v.Humanoid:TakeDamage(math.random(20,60))
  4473. v.Humanoid.PlatformStand = true
  4474. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4475. end
  4476. end
  4477. x = Instance.new("Sound",char)
  4478. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4479. x.Pitch = PTZ[math.random(1,#PTZ)]
  4480. x.Volume = 1
  4481. wait(0.1)
  4482. x:Play()
  4483. Crater(hed,20)
  4484. for i = 1, 20 do
  4485. 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)
  4486. 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)
  4487. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4488. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4489. 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)
  4490. 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)
  4491. 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)
  4492. if Debounces.on == false then break end
  4493. rs:wait(2)
  4494. end
  4495. if Debounces.CanAttack == false then
  4496. Debounces.CanAttack = true
  4497. Debounces.on = false
  4498. Debounces.NoIdl = false
  4499. for i = 1, 20 do
  4500. wait()
  4501. for i,v in pairs(char.Absolution:children()) do
  4502. if v:IsA("Part") or v:IsA("WedgePart") then
  4503. v.Transparency = v.Transparency - 0.05
  4504. end
  4505. end
  4506. end
  4507. end
  4508. end
  4509. end
  4510. end)
  4511. ----------------------------------------------------176349813
  4512. mouse.KeyDown:connect(function(key)
  4513. if key == "b" then
  4514. hum.WalkSpeed = 0.01
  4515. if Debounces.CanAttack == true then
  4516. Debounces.CanAttack = false
  4517. Debounces.NoIdl = true
  4518. Debounces.on = true
  4519. for i = 1, 30 do
  4520. 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)
  4521. 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)
  4522. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4523. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4524. 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)
  4525. 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)
  4526. 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)
  4527. if Debounces.on == false then break end
  4528. rs:wait(6)
  4529. end
  4530. v = Instance.new("Sound")
  4531. v.SoundId = "rbxassetid://181384451"
  4532. v.Parent = char
  4533. v.Looped = false
  4534. v.Pitch = .94
  4535. v.Volume = 1
  4536. wait(.01)
  4537. v:Play()
  4538.  
  4539. if Daytime == true then
  4540. Daytime = false
  4541. l.TimeOfDay = 24
  4542. else
  4543. Daytime = true
  4544. l.TimeOfDay = 12
  4545. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4546. end
  4547.  
  4548. local Shockwave = function()
  4549. local rng1 = Instance.new("Part", char)
  4550. rng1.Anchored = true
  4551. rng1.BrickColor = BrickColor.new("Really black")
  4552. rng1.CanCollide = false
  4553. rng1.FormFactor = 3
  4554. rng1.Name = "Ring"
  4555. rng1.Size = Vector3.new(1, 1, 1)
  4556. rng1.Transparency = 0.35
  4557. rng1.TopSurface = 0
  4558. rng1.BottomSurface = 0
  4559. local rngm1 = Instance.new("SpecialMesh", rng)
  4560. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4561. rngm1.Scale = Vector3.new(10, 10, 1)
  4562. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4563. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4564. Wave.Name = "Shockwave"
  4565. Wave.BrickColor = BrickColor.new("Really black")
  4566. Wave.Size = Vector3.new(1, 1, 1)
  4567. Wave.Shape = "Ball"
  4568. Wave.CanCollide = false
  4569. Wave.Anchored = true
  4570. Wave.TopSurface = 0
  4571. Wave.BottomSurface = 0
  4572. Wave.Touched:connect(function(hit)
  4573. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4574. local Occlude = true
  4575. local NotOccludes = {
  4576. char.Name;
  4577. "Wings";
  4578. "Scythe";
  4579. "Thingy";
  4580. "Thingy2"; -- put all of the names in a table pls
  4581. }
  4582. for i,v in pairs(NotOccludes) do
  4583. if hit.Parent.Name == v then
  4584. Occlude = false
  4585. end
  4586. end
  4587. --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
  4588. if Occlude then
  4589. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4590. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4591. end
  4592. end
  4593. end)
  4594.  
  4595. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4596.  
  4597. coroutine.wrap(function()
  4598. for i = 1, 20, 0.2 do
  4599. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4600. rng1.Transparency = i/20
  4601. wait()
  4602. end
  4603. wait()
  4604. rng1:Destroy()
  4605. end)()
  4606.  
  4607. Delay(0, function()
  4608.  
  4609. if Daytime == false then
  4610. for i = 1, 50, 1 do
  4611. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4612. Wave.CFrame = char.Torso.CFrame
  4613. local t = i / 50
  4614. Wave.Transparency = t
  4615. wait()
  4616. end
  4617. else
  4618. for i = 1, 50, 1 do
  4619. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4620. Wave.CFrame = char.Torso.CFrame
  4621. local t = i / 50
  4622. Wave.Transparency = t
  4623. wait()
  4624. end
  4625. end
  4626. Wave:Destroy()
  4627. end)
  4628. Delay(0, function()
  4629. while wait() do
  4630. if Wave ~= nil then
  4631. Wave.CFrame = char.Torso.CFrame
  4632. else
  4633. break
  4634. end
  4635. end
  4636. end)
  4637. end
  4638. Shockwave()
  4639. for i = 1, 30 do
  4640. 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)
  4641. 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)
  4642. 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)
  4643. 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)
  4644. 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)
  4645. 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)
  4646. if Debounces.on == false then break end
  4647. rs:wait()
  4648. end
  4649. wait(2.4)
  4650. Debounces.NoIdl = false
  4651. hum.WalkSpeed = 5
  4652. Debounces.on = false
  4653. wait()
  4654. if Debounces.CanAttack == false then
  4655. Debounces.CanAttack = true
  4656. v:Destroy()
  4657. end
  4658. end
  4659. end
  4660. end)
  4661. ----------------------------------------------------
  4662. mouse.KeyDown:connect(function(key)
  4663. if key == "l" then
  4664. for i = 1, 20 do
  4665. wait()
  4666. for i,v in pairs(char.Absolution:children()) do
  4667. if v:IsA("Part") or v:IsA("WedgePart") then
  4668. v.Transparency = v.Transparency + 0.05
  4669. end
  4670. end
  4671. end
  4672. if Debounces.CanAttack == true then
  4673. Debounces.CanAttack = false
  4674. Debounces.NoIdl = true
  4675. Debounces.on = true
  4676. bv = Instance.new("BodyVelocity",torso)
  4677. bv.maxForce = Vector3.new(0,200000,0)
  4678. bv.P = 100000
  4679. bv.velocity = Vector3.new(0,500,0)
  4680. wait(2)
  4681. bv:Destroy()
  4682. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4683. for i = 1, 20 do
  4684. 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)
  4685. 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)
  4686. 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)
  4687. 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)
  4688. 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)
  4689. 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)
  4690. 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)
  4691. if Debounces.on == false then break end
  4692. wait()
  4693. end
  4694. for i = 1, 360, 20 do wait()
  4695. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4696. end
  4697. end
  4698. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4699. local ry,ht,ps=nil,nil,nil
  4700. while ht==nil do
  4701. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4702. wait()
  4703. end
  4704. z = Instance.new("Sound",char)
  4705. z.SoundId = "rbxassetid://245537790"
  4706. z.Pitch = 1
  4707. z.Volume = 1
  4708. wait(0.1)
  4709. z:Play()
  4710. local sp = Instance.new("Part", char)
  4711. sp.Name = "Energy"
  4712. sp.BrickColor = BrickColor.new("Really black")
  4713. sp.Size = Vector3.new(1, 1, 1)
  4714. sp.Shape = "Ball"
  4715. sp.CanCollide = false
  4716. sp.Anchored = true
  4717. sp.TopSurface = 0
  4718. sp.BottomSurface = 0
  4719. local spm = Instance.new("SpecialMesh",sp)
  4720. spm.MeshId = "rbxassetid://9982590"
  4721. spm.Scale = Vector3.new(3,3,3)
  4722. local sp2 = Instance.new("Part", char)
  4723. sp2.Name = "Energy2"
  4724. sp2.BrickColor = BrickColor.new("Really black")
  4725. sp2.Size = Vector3.new(1, 1, 1)
  4726. sp2.Shape = "Ball"
  4727. sp2.CanCollide = false
  4728. sp2.Anchored = true
  4729. sp2.TopSurface = 0
  4730. sp2.BottomSurface = 0
  4731. local spm2 = Instance.new("SpecialMesh",sp2)
  4732. spm2.MeshId = "rbxassetid://9982590"
  4733. spm2.Scale = Vector3.new(3,3,3)
  4734. sp.Touched:connect(function(hit)
  4735. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4736. local Occlude = true
  4737. local NotOccludes = {
  4738. char.Name;
  4739. "Wings";
  4740. "Scythe";
  4741. "Thingy";
  4742. "Thingy2"; -- put all of the names in a table pls
  4743. }
  4744. for i,v in pairs(NotOccludes) do
  4745. if hit.Parent.Name == v then
  4746. Occlude = false
  4747. end
  4748. end
  4749. --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
  4750. if Occlude then
  4751. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4752. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4753. end
  4754. end
  4755. end)
  4756. sp2.Touched:connect(function(hit)
  4757. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4758. local Occlude = true
  4759. local NotOccludes = {
  4760. char.Name;
  4761. "Wings";
  4762. "Scythe";
  4763. "Thingy";
  4764. "Thingy2"; -- put all of the names in a table pls
  4765. }
  4766. for i,v in pairs(NotOccludes) do
  4767. if hit.Parent.Name == v then
  4768. Occlude = false
  4769. end
  4770. end
  4771. --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
  4772. if Occlude then
  4773. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4774. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4775. end
  4776. end
  4777. end)
  4778. for i = 1, 100, 1 do
  4779. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4780. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4781. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4782. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4783. spm.Scale = sp.Size
  4784. spm2.Scale = sp2.Size
  4785. local t = i / 100
  4786. sp.Transparency = t
  4787. sp2.Transparency = t
  4788. wait()
  4789. end
  4790. sp:Destroy()
  4791. sp2:Destroy()
  4792. z:Destroy()
  4793. for i = 1, 20 do
  4794. wait()
  4795. for i,v in pairs(char.Absolution:children()) do
  4796. if v:IsA("Part") or v:IsA("WedgePart") then
  4797. v.Transparency = v.Transparency - 0.05
  4798. end
  4799. end
  4800. end
  4801. if Debounces.CanAttack == false then
  4802. Debounces.CanAttack = true
  4803. Debounces.NoIdl = false
  4804. Debounces.on = false
  4805. end
  4806. end
  4807. end
  4808. end)
  4809. ----------------------------------------------------
  4810. local orbt={}
  4811. local stlt={}
  4812. local chot={}
  4813. local cfxt={}
  4814. local pfxt={}
  4815. local cns=0
  4816. local cnOrb=nil
  4817. mouse.KeyDown:connect(function(key)
  4818. if key == "u" then
  4819. if Debounces.CanAttack == true then
  4820. Debounces.CanAttack = false
  4821. Debounces.NoIdl = true
  4822. Debounces.on = true
  4823. orbt={}
  4824. stlt={}
  4825. chot={}
  4826. cfxt={}
  4827. for i = 1, 20 do
  4828. 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)
  4829. 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)
  4830. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4831. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4832. 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)
  4833. 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)
  4834. 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)
  4835. if Debounces.on == false then end
  4836. rs:wait()
  4837. end
  4838. z = Instance.new("Sound",char)
  4839. z.SoundId = "rbxassetid://170053944"
  4840. z.Pitch = 1.07
  4841. z.Volume = 1
  4842. wait(0.1)
  4843. z:Play()
  4844. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4845. debris:AddItem(cnOrb,50)
  4846. cnOrb.Mesh.MeshType=3
  4847. table.insert(orbt,cnOrb)
  4848. table.insert(stlt,cnOrb)
  4849. local nt=0
  4850. for i=0,5,0.02 do
  4851. nt=nt+1
  4852. cns=i
  4853. if nt>=2 then
  4854. nt=0
  4855. 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")
  4856. debris:AddItem(cho,1)
  4857. cho.Mesh.MeshType=3
  4858. table.insert(chot,cho)
  4859. end
  4860. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4861. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4862. wait()
  4863. end
  4864. for i = 1, 14 do
  4865. 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)
  4866. if Debounces.on == false then end
  4867. rs:wait()
  4868. end
  4869. coroutine.wrap(function()
  4870. for i = 1, 20 do
  4871. 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)
  4872. 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)
  4873. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4874. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4875. 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)
  4876. 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)
  4877. if Debounces.on == false then end
  4878. rs:wait()
  4879. end
  4880. end)()
  4881. wait(0.1)
  4882. stlt={}
  4883. 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})
  4884. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4885. local nt=0
  4886. for i=0,160,3 do
  4887. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4888. nt=nt+1
  4889. if nt>=6 then
  4890. nt=0
  4891. 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")
  4892. cfx.Mesh.MeshId="rbxassetid://20329976"
  4893. cfx.Transparency=0.4
  4894. table.insert(cfxt,cfx)
  4895. debris:AddItem(cfx,1)
  4896. end
  4897. if (cnOrb.Position-ps).magnitude<6 then
  4898. break
  4899. end
  4900. wait()
  4901. end
  4902. orbt={}
  4903.  
  4904. for i=0,1,0.1 do
  4905. local cs=cnOrb.Mesh.Scale
  4906. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4907. wait()
  4908. end
  4909. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4910. ofx.Transparency=0.5
  4911. ofx.Mesh.MeshType=3
  4912. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4913. for _,v in pairs(game:service"Players":GetChildren()) do
  4914. pcall(function()
  4915. for _,c in pairs(v.Character:GetChildren()) do
  4916. 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
  4917. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4918. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4919. end
  4920. end
  4921. end)
  4922. end
  4923. for i=0,1,0.05 do
  4924. local cs=cnOrb.Mesh.Scale
  4925. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4926. local ofs=ofx.Mesh.Scale
  4927. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4928. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4929. wait()
  4930. end
  4931. ofx:Destroy()
  4932. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4933. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4934. cnfx.Mesh.MeshType=3
  4935. cnOrb.Transparency=0.05
  4936. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4937. cnr.Mesh.MeshType=3
  4938. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4939. rn1.Transparency=1
  4940. rn1.Mesh.MeshId="rbxassetid://3270017"
  4941. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4942. rn2.Transparency=1
  4943. rn2.Mesh.MeshId="rbxassetid://3270017"
  4944. local nt=0
  4945. local cs=nil
  4946. for i=0,1,0.05 do
  4947. cs=cnOrb.Mesh.Scale
  4948. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4949. local fs=cnfx.Mesh.Scale
  4950. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4951. cnfx.Transparency=cnfx.Transparency+0.05
  4952. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4953. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4954. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4955. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4956. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4957. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4958. local rs=cnr.Mesh.Scale
  4959. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4960. nt=nt+1
  4961. if nt>=6 then
  4962. local pls={}
  4963. for _,v in pairs(game.Players:GetChildren()) do
  4964. table.insert(pls,v)
  4965. end
  4966. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4967. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4968. pffx.Mesh.MeshId="rbxassetid://20329976"
  4969. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  4970. debris:AddItem(pffx,2)
  4971. table.insert(pfxt,pffx)
  4972. nt=0
  4973. end
  4974. wait()
  4975. end
  4976. local int=0
  4977. coroutine.wrap(function()
  4978. for i=1,500 do
  4979. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4980. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4981. nt=nt+1
  4982. int=int+1
  4983. local htd={p}
  4984. for _,v in pairs(game:service"Players":GetChildren()) do
  4985. pcall(function()
  4986. for _,c in pairs(v.Character:GetChildren()) do
  4987. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4988. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  4989. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  4990. table.insert(htd,v)
  4991. end
  4992. end
  4993. end)
  4994. end
  4995. htd={p}
  4996. if int>=6 then
  4997. for _,v in pairs(game:service"Players":GetChildren()) do
  4998. pcall(function()
  4999. for _,c in pairs(v.Character:GetChildren()) do
  5000. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5001. table.insert(htd,v)
  5002. 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")
  5003. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5004. hfx.Mesh.MeshType=3
  5005. debris:AddItem(hfx,2)
  5006. coroutine.wrap(function()
  5007. pcall(function()
  5008. for i=0,1,0.05 do
  5009. pcall(function()
  5010. local hs=hfx.Mesh.Scale
  5011. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5012. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5013. end)
  5014. wait()
  5015. end
  5016. hfx:Destroy()
  5017. end)
  5018. end)()
  5019. end
  5020. end
  5021. end)
  5022. end
  5023. int=0
  5024. end
  5025. if nt>=4 then
  5026. local pls={}
  5027. for _,v in pairs(game.Players:GetChildren()) do
  5028. table.insert(pls,v)
  5029. end
  5030. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5031. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5032. pffx.Transparency=0.4
  5033. pffx.Mesh.MeshId="rbxassetid://20329976"
  5034. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5035. debris:AddItem(pffx,2)
  5036. table.insert(pfxt,pffx)
  5037. nt=0
  5038. end
  5039. wait()
  5040. end
  5041. cnOrb:Destroy()
  5042. cnfx:Destroy()
  5043. for _,v in pairs(mod3:GetChildren()) do
  5044. v:Destroy()
  5045. end
  5046. orbt={}
  5047. stlt={}
  5048. chot={}
  5049. cfxt={}
  5050. pfxt={}
  5051. end)()
  5052. if Debounces.CanAttack == false then
  5053. Debounces.CanAttack = true
  5054. Debounces.NoIdl = false
  5055. Debounces.on = false
  5056. end
  5057. end
  5058. end
  5059. end)
  5060. ----------------------------------------------------
  5061. mouse.KeyDown:connect(function(key)
  5062. if key == "m" then
  5063. if Debounces.CanAttack == true then
  5064. Debounces.CanAttack = false
  5065. Debounces.on = true
  5066. Debounces.NoIdl = true
  5067. --[[x = Instance.new("Sound",char)
  5068. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5069. x.Looped = false
  5070. x.Pitch = 1.1
  5071. x.Volume = 1
  5072. x:Play()
  5073. x2 = Instance.new("Sound",char)
  5074. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5075. x2.Looped = false
  5076. x2.Pitch = .7
  5077. x2.Volume = 1
  5078. wait(.1)
  5079. x:Play()
  5080. x2:Play()
  5081. for i = 1, 20 do
  5082. 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)
  5083. 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)
  5084. 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)
  5085. 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)
  5086. 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)
  5087. 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)
  5088. 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)
  5089. if Debounces.on == false then break end
  5090. wait()
  5091. x:Destroy()
  5092. x2:Destroy()
  5093. end
  5094. wait(1)]]--
  5095. local rng = Instance.new("Part", char)
  5096. rng.Anchored = true
  5097. rng.BrickColor = BrickColor.new("Really black")
  5098. rng.CanCollide = false
  5099. rng.FormFactor = 3
  5100. rng.Name = "Ring"
  5101. rng.Size = Vector3.new(1, 1, 1)
  5102. rng.Transparency = 0.35
  5103. rng.TopSurface = 0
  5104. rng.BottomSurface = 0
  5105. rng.Position = torso.Position - Vector3.new(0,5,0)
  5106. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5107. local rngm = Instance.new("SpecialMesh", rng)
  5108. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5109. rngm.Scale = Vector3.new(1, 1, 2)
  5110. x = Instance.new("Sound",char)
  5111. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5112. x.Looped = false
  5113. x.Pitch = .7
  5114. x.Volume = 1
  5115. x:Play()
  5116. coroutine.wrap(function()
  5117. for i = 1, 60, 2 do
  5118. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5119. rng.Transparency = i/60
  5120. wait()
  5121. end
  5122. wait()
  5123. rng:Destroy()
  5124. end)()
  5125. hum.WalkSpeed = 100
  5126. BV = Instance.new("BodyVelocity", torso)
  5127. BV.maxForce = Vector3.new(0,200000,0)
  5128. BV.P = 240000
  5129. BV.velocity = Vector3.new(0,700,0)
  5130. for i = 1, 20 do
  5131. 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)
  5132. 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)
  5133. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5134. 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)
  5135. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5136. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5137. 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)
  5138. if Debounces.on == false then break end
  5139. wait()
  5140. end
  5141. x:Destroy()
  5142. BV:Destroy()
  5143. --[[for i = 1, 30 doc
  5144. 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)
  5145. 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)
  5146. 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)
  5147. 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)
  5148. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5149. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5150. if Debounces.on == false then break end
  5151. wait()
  5152. end]]--
  5153. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5154. for i = 1, 30 do
  5155. 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)
  5156. 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)
  5157. 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)
  5158. 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)
  5159. 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)
  5160. 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)
  5161. 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)
  5162. if Debounces.on == false then break end
  5163. wait()
  5164. end
  5165. end
  5166. Debounces.on = false
  5167. Debounces.NoIdl = false
  5168. local ry,ht,ps=nil,nil,nil
  5169. while ht==nil do
  5170. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5171. wait()
  5172. end
  5173. z = Instance.new("Sound",char)
  5174. z.SoundId = "rbxassetid://142070127"
  5175. z.Volume = 1
  5176. wait(.1)
  5177. z:Play()
  5178. Landing()
  5179. hum.WalkSpeed = 8
  5180. if Debounces.CanAttack == false then
  5181. Debounces.CanAttack = true
  5182. end
  5183. end
  5184. end
  5185. end)
  5186. ----------------------------------------------------
  5187. Grab = false
  5188. mouse.KeyDown:connect(function(key)
  5189. if key == "z" then
  5190. Debounces.on = true
  5191. Debounces.NoIdl = true
  5192. if Grab == false then
  5193. gp = nil
  5194. con1=larm.Touched:connect(function(hit) -- this is grab
  5195. ht = hit.Parent
  5196. hum1=ht:FindFirstChild('Humanoid')
  5197. if hum1 ~= nil then
  5198. hum1.PlatformStand=true
  5199. gp = ht
  5200. Grab = true
  5201. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5202. asd.Parent = larm
  5203. asd.Name = "asd"
  5204. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5205. con1:disconnect()
  5206. elseif hum1 ~= nil then
  5207. con1:disconnect()
  5208. wait() return
  5209. end
  5210. end)
  5211. for i = 1, 18 do
  5212. 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)
  5213. 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)
  5214. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5215. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5216. 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)
  5217. 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)
  5218. 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)
  5219. if Debounces.on == false then break end
  5220. wait()
  5221. end
  5222. con1:disconnect()
  5223. Debounces.on = false
  5224. Debounces.NoIdl = false
  5225. elseif Grab == true then
  5226. Grab = false
  5227. for i = 1, 20 do
  5228. 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)
  5229. 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)
  5230. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5231. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5232. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5233. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5234. 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)
  5235. if Debounces.on == false then end
  5236. wait()
  5237. end
  5238. if gp ~= nil then
  5239. for i,v in pairs(larm:GetChildren()) do
  5240. if v.Name == "asd" and v:IsA("Weld") then
  5241. v:Remove()
  5242. end
  5243. end
  5244. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5245. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5246. bv.P = 125000
  5247. bv.velocity = char.Head.CFrame.lookVector * 200
  5248. for i = 1, 12 do
  5249. 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)
  5250. if Debounces.on == false then end
  5251. wait()
  5252. end--
  5253. ht=nil
  5254. Spawn(function()
  5255. wait(0.5)
  5256. bv:Destroy()
  5257. end)
  5258. Debounces.on = false
  5259. Debounces.NoIdl = false
  5260. elseif ht == nil then wait()
  5261. Grab = false
  5262. Debounces.on = false
  5263. Debounces.NoIdl = false
  5264. end
  5265. end
  5266. end
  5267. end)
  5268. ----------------------------------------------------
  5269. mouse.KeyDown:connect(function(key)
  5270. if string.byte(key) == 52 then
  5271. char.Humanoid.WalkSpeed = 21
  5272. end
  5273. end)
  5274. mouse.KeyUp:connect(function(key)
  5275. if string.byte(key) == 52 then
  5276. char.Humanoid.WalkSpeed = 5
  5277. end
  5278. end)
  5279. ----------------------------------------------------
  5280. Change = false
  5281. mouse.KeyDown:connect(function(key)
  5282. if key == "n" then
  5283. if Change == false then
  5284. Change = true
  5285. stanceToggle = "Normal2"
  5286. elseif Change == true then
  5287. Change = false
  5288. stanceToggle = "Normal"
  5289. end
  5290. end
  5291. end)
  5292. ----------------------------------------------------
  5293. local animpose = "Idle"
  5294. local lastanimpose = "Idle"
  5295. local sine = 0
  5296. local change = 1
  5297. local val = 0
  5298. local ffing = false
  5299. local och = 0
  5300. ----------------------------------------------------
  5301. game:GetService("RunService").RenderStepped:connect(function()
  5302. --[[if char.Humanoid.Jump == true then
  5303. jump = true
  5304. else
  5305. jump = false
  5306. end]]
  5307. char.Humanoid.FreeFalling:connect(function(f)
  5308. if f then
  5309. ffing = true
  5310. else
  5311. ffing = false
  5312. end
  5313. end)
  5314. sine = sine + change
  5315. if jumpn == true then
  5316. animpose = "Jumping"
  5317. elseif ffing == true then
  5318. animpose = "Freefalling"
  5319. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5320. animpose = "Idle"
  5321. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5322. animpose = "Walking"
  5323. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5324. animpose = "Running"
  5325. end
  5326. if animpose ~= lastanimpose then
  5327. sine = 0
  5328. if Debounces.NoIdl == false then
  5329. if animpose == "Idle" then
  5330. for i = 1, 2 do
  5331. 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)
  5332. 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)
  5333. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5334. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5335. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5336. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5337. 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)
  5338. end
  5339. elseif animpose == "Walking" then
  5340. for i = 1, 2 do
  5341. 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)
  5342. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5343. 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)
  5344. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5345. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5346. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5347. 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)
  5348. end
  5349. elseif animpose == "Running" then
  5350. for i = 1, 2 do
  5351. 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)
  5352. 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)
  5353. 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)
  5354. 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)
  5355. 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)
  5356. 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)
  5357. 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)
  5358. end
  5359. rs:wait(2)
  5360. end
  5361. else
  5362. end
  5363. end
  5364. lastanimpose = animpose
  5365. if Debounces.NoIdl == false then
  5366. if animpose == "Idle" then
  5367. if stanceToggle == "Normal" then
  5368. change = 0.5
  5369. 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)
  5370. 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)
  5371. 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)
  5372. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5373. 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)
  5374. 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)
  5375. 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)
  5376. elseif stanceToggle == "Sitting" then
  5377. 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)
  5378. 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)
  5379. 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)
  5380. 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)
  5381. 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)
  5382. 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)
  5383. 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)
  5384. elseif stanceToggle == "Normal2" then
  5385. 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)
  5386. 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)
  5387. 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)
  5388. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5389. 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)
  5390. 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)
  5391. 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)
  5392. end
  5393. elseif animpose == "Walking" then
  5394. if stanceToggle == "Normal" then
  5395. change = 1
  5396. 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)
  5397. 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)
  5398. 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)
  5399. 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)
  5400. 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)
  5401. 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)
  5402. 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)
  5403. elseif stanceToggle == "Normal2" then
  5404. 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)
  5405. 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)
  5406. 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)
  5407. 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)
  5408. 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)
  5409. 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)
  5410. 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)
  5411. end
  5412. elseif animpose == "Running" then
  5413. change = 1
  5414. 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)
  5415. 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)
  5416. 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)
  5417. 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)
  5418. 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)
  5419. 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)
  5420. 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)
  5421. end
  5422. end
  5423. och=och+1
  5424. for _,v in pairs(orbt) do
  5425. pcall(function()
  5426. 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)))
  5427. end)
  5428. end
  5429. for _,v in pairs(stlt) do
  5430. pcall(function()
  5431. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5432. end)
  5433. end
  5434. for _,v in pairs(chot) do
  5435. pcall(function()
  5436. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5437. 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))
  5438. end)
  5439. end
  5440. for _,v in pairs(cfxt) do
  5441. pcall(function()
  5442. local vs=v.Mesh.Scale
  5443. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5444. v.Transparency=v.Transparency+0.05
  5445. end)
  5446. end
  5447. for _,v in pairs(pfxt) do
  5448. pcall(function()
  5449. local vs=v.Mesh.Scale
  5450. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5451. v.Transparency=v.Transparency+0.025
  5452. end)
  5453. end
  5454. end)
  5455. --N3xul Animated Sky
  5456. local runDummyScript = function(f,scri)
  5457. local oldenv = getfenv(f)
  5458. local newenv = setmetatable({}, {
  5459. __index = function(_, k)
  5460. if k:lower() == 'script' then
  5461. return scri
  5462. else
  5463. return oldenv[k]
  5464. end
  5465. end
  5466. })
  5467. setfenv(f, newenv)
  5468. ypcall(function() f() end)
  5469. end
  5470. cors = {}
  5471. mas = Instance.new("Model",game:GetService("Lighting"))
  5472. mas.Name = "CompiledModel"
  5473. o1 = Instance.new("Model")
  5474. o2 = Instance.new("Model")
  5475. o3 = Instance.new("Part")
  5476. o4 = Instance.new("SpecialMesh")
  5477. o5 = Instance.new("Part")
  5478. o6 = Instance.new("SpecialMesh")
  5479. o7 = Instance.new("Part")
  5480. o8 = Instance.new("SpecialMesh")
  5481. o9 = Instance.new("Part")
  5482. o10 = Instance.new("SpecialMesh")
  5483. o11 = Instance.new("Part")
  5484. o12 = Instance.new("SpecialMesh")
  5485. o13 = Instance.new("Part")
  5486. o14 = Instance.new("SpecialMesh")
  5487. o15 = Instance.new("Part")
  5488. o16 = Instance.new("SpecialMesh")
  5489. o17 = Instance.new("Part")
  5490. o18 = Instance.new("SpecialMesh")
  5491. o19 = Instance.new("Part")
  5492. o20 = Instance.new("SpecialMesh")
  5493. o21 = Instance.new("Part")
  5494. o22 = Instance.new("SpecialMesh")
  5495. o23 = Instance.new("Part")
  5496. o24 = Instance.new("SpecialMesh")
  5497. o25 = Instance.new("Part")
  5498. o26 = Instance.new("SpecialMesh")
  5499. o27 = Instance.new("Part")
  5500. o28 = Instance.new("SpecialMesh")
  5501. o29 = Instance.new("Part")
  5502. o30 = Instance.new("SpecialMesh")
  5503. o31 = Instance.new("Part")
  5504. o32 = Instance.new("SpecialMesh")
  5505. o33 = Instance.new("Part")
  5506. o34 = Instance.new("SpecialMesh")
  5507. o35 = Instance.new("Part")
  5508. o36 = Instance.new("SpecialMesh")
  5509. o37 = Instance.new("Part")
  5510. o38 = Instance.new("SpecialMesh")
  5511. o39 = Instance.new("Part")
  5512. o40 = Instance.new("SpecialMesh")
  5513. o41 = Instance.new("Part")
  5514. o42 = Instance.new("SpecialMesh")
  5515. o43 = Instance.new("Part")
  5516. o44 = Instance.new("SpecialMesh")
  5517. o45 = Instance.new("Part")
  5518. o46 = Instance.new("SpecialMesh")
  5519. o47 = Instance.new("Part")
  5520. o48 = Instance.new("SpecialMesh")
  5521. o49 = Instance.new("Part")
  5522. o50 = Instance.new("SpecialMesh")
  5523. o51 = Instance.new("Part")
  5524. o52 = Instance.new("SpecialMesh")
  5525. o53 = Instance.new("Part")
  5526. o54 = Instance.new("SpecialMesh")
  5527. o55 = Instance.new("Part")
  5528. o56 = Instance.new("SpecialMesh")
  5529. o57 = Instance.new("Part")
  5530. o58 = Instance.new("SpecialMesh")
  5531. o59 = Instance.new("Part")
  5532. o60 = Instance.new("SpecialMesh")
  5533. o61 = Instance.new("Part")
  5534. o62 = Instance.new("SpecialMesh")
  5535. o63 = Instance.new("Part")
  5536. o64 = Instance.new("SpecialMesh")
  5537. o65 = Instance.new("Part")
  5538. o66 = Instance.new("SpecialMesh")
  5539. o67 = Instance.new("Script")
  5540. o1.Name = "$_N3xul Sky"
  5541. o1.Parent = mas
  5542. o2.Name = "SKY IS DA LIMIT"
  5543. o2.Parent = o1
  5544. o3.Name = "Brick"
  5545. o3.Parent = o2
  5546. o3.Material = Enum.Material.Neon
  5547. o3.BrickColor = BrickColor.new("Royal purple")
  5548. o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
  5549. o3.Rotation = Vector3.new(96.8799973, 29.4200001, 64.2200012)
  5550. o3.Anchored = true
  5551. o3.CanCollide = false
  5552. o3.Size = Vector3.new(1, 2.4000001, 1)
  5553. 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)
  5554. o3.BottomSurface = Enum.SurfaceType.Smooth
  5555. o3.TopSurface = Enum.SurfaceType.Smooth
  5556. o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5557. o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
  5558. o3.Orientation = Vector3.new(59.8600006, 101.989998, 168.020004)
  5559. o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5560. o4.Parent = o3
  5561. o4.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5562. o4.Offset = Vector3.new(2, 2, 2)
  5563. o4.Scale = Vector3.new(1000, 1000, 1000)
  5564. o4.VertexColor = Vector3.new(0.300000012, 4, 9)
  5565. o4.MeshType = Enum.MeshType.FileMesh
  5566. o4.Scale = Vector3.new(1000, 1000, 1000)
  5567. o5.Name = "Brick"
  5568. o5.Parent = o2
  5569. o5.Material = Enum.Material.Neon
  5570. o5.BrickColor = BrickColor.new("Royal purple")
  5571. o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
  5572. o5.Rotation = Vector3.new(55.5499992, -81.6699982, 96.1299973)
  5573. o5.Anchored = true
  5574. o5.CanCollide = false
  5575. o5.Size = Vector3.new(1, 2.4000001, 1)
  5576. 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)
  5577. o5.BottomSurface = Enum.SurfaceType.Smooth
  5578. o5.TopSurface = Enum.SurfaceType.Smooth
  5579. o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5580. o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
  5581. o5.Orientation = Vector3.new(6.86000013, -85.2600021, 40.8600006)
  5582. o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5583. o6.Parent = o5
  5584. o6.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5585. o6.Offset = Vector3.new(2, 2, 2)
  5586. o6.Scale = Vector3.new(1000, 1000, 1000)
  5587. o6.VertexColor = Vector3.new(0.300000012, 4, 9)
  5588. o6.MeshType = Enum.MeshType.FileMesh
  5589. o6.Scale = Vector3.new(1000, 1000, 1000)
  5590. o7.Name = "Brick"
  5591. o7.Parent = o2
  5592. o7.Material = Enum.Material.Neon
  5593. o7.BrickColor = BrickColor.new("Royal purple")
  5594. o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
  5595. o7.Rotation = Vector3.new(60.2599983, -71.0599976, 96.9499969)
  5596. o7.Anchored = true
  5597. o7.CanCollide = false
  5598. o7.Size = Vector3.new(1, 2.4000001, 1)
  5599. 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)
  5600. o7.BottomSurface = Enum.SurfaceType.Smooth
  5601. o7.TopSurface = Enum.SurfaceType.Smooth
  5602. o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5603. o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
  5604. o7.Orientation = Vector3.new(16.3700008, -80.3399963, 38.0800018)
  5605. o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5606. o8.Parent = o7
  5607. o8.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5608. o8.Offset = Vector3.new(2, 2, 2)
  5609. o8.Scale = Vector3.new(1000, 1000, 1000)
  5610. o8.VertexColor = Vector3.new(0.300000012, 4, 9)
  5611. o8.MeshType = Enum.MeshType.FileMesh
  5612. o8.Scale = Vector3.new(1000, 1000, 1000)
  5613. o9.Name = "Brick"
  5614. o9.Parent = o2
  5615. o9.Material = Enum.Material.Neon
  5616. o9.BrickColor = BrickColor.new("Royal purple")
  5617. o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
  5618. o9.Rotation = Vector3.new(63.0400009, -60.4500008, 95.7099991)
  5619. o9.Anchored = true
  5620. o9.CanCollide = false
  5621. o9.Size = Vector3.new(1, 2.4000001, 1)
  5622. 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)
  5623. o9.BottomSurface = Enum.SurfaceType.Smooth
  5624. o9.TopSurface = Enum.SurfaceType.Smooth
  5625. o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5626. o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
  5627. o9.Orientation = Vector3.new(26.0699997, -75.5899963, 36.0200005)
  5628. o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5629. o10.Parent = o9
  5630. o10.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5631. o10.Offset = Vector3.new(2, 2, 2)
  5632. o10.Scale = Vector3.new(1000, 1000, 1000)
  5633. o10.VertexColor = Vector3.new(0.300000012, 4, 9)
  5634. o10.MeshType = Enum.MeshType.FileMesh
  5635. o10.Scale = Vector3.new(1000, 1000, 1000)
  5636. o11.Name = "Brick"
  5637. o11.Parent = o2
  5638. o11.Material = Enum.Material.Neon
  5639. o11.BrickColor = BrickColor.new("Royal purple")
  5640. o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
  5641. o11.Rotation = Vector3.new(84.7699966, 11.3299999, 76.1299973)
  5642. o11.Anchored = true
  5643. o11.CanCollide = false
  5644. o11.Size = Vector3.new(1, 2.4000001, 1)
  5645. 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)
  5646. o11.BottomSurface = Enum.SurfaceType.Smooth
  5647. o11.TopSurface = Enum.SurfaceType.Smooth
  5648. o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5649. o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
  5650. o11.Orientation = Vector3.new(77.5299988, 65.5500031, 141.160004)
  5651. o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5652. o12.Parent = o11
  5653. o12.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5654. o12.Offset = Vector3.new(2, 2, 2)
  5655. o12.Scale = Vector3.new(1000, 1000, 1000)
  5656. o12.VertexColor = Vector3.new(0.300000012, 4, 9)
  5657. o12.MeshType = Enum.MeshType.FileMesh
  5658. o12.Scale = Vector3.new(1000, 1000, 1000)
  5659. o13.Name = "Brick"
  5660. o13.Parent = o2
  5661. o13.Material = Enum.Material.Neon
  5662. o13.BrickColor = BrickColor.new("Royal purple")
  5663. o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
  5664. o13.Rotation = Vector3.new(90.1399994, 20.6700001, 70.8600006)
  5665. o13.Anchored = true
  5666. o13.CanCollide = false
  5667. o13.Size = Vector3.new(1, 2.4000001, 1)
  5668. 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)
  5669. o13.BottomSurface = Enum.SurfaceType.Smooth
  5670. o13.TopSurface = Enum.SurfaceType.Smooth
  5671. o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5672. o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
  5673. o13.Orientation = Vector3.new(69.3300018, 90.3799973, 161.270004)
  5674. o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5675. o14.Parent = o13
  5676. o14.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5677. o14.Offset = Vector3.new(2, 2, 2)
  5678. o14.Scale = Vector3.new(1000, 1000, 1000)
  5679. o14.VertexColor = Vector3.new(0.300000012, 4, 9)
  5680. o14.MeshType = Enum.MeshType.FileMesh
  5681. o14.Scale = Vector3.new(1000, 1000, 1000)
  5682. o15.Name = "Brick"
  5683. o15.Parent = o2
  5684. o15.Material = Enum.Material.Neon
  5685. o15.BrickColor = BrickColor.new("Royal purple")
  5686. o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
  5687. o15.Rotation = Vector3.new(160.410004, 49.5999985, 1.05999994)
  5688. o15.Anchored = true
  5689. o15.CanCollide = false
  5690. o15.Size = Vector3.new(1, 2.4000001, 1)
  5691. 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)
  5692. o15.BottomSurface = Enum.SurfaceType.Smooth
  5693. o15.TopSurface = Enum.SurfaceType.Smooth
  5694. o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5695. o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
  5696. o15.Orientation = Vector3.new(12.5500002, 128.720001, 165.899994)
  5697. o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5698. o16.Parent = o15
  5699. o16.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5700. o16.Offset = Vector3.new(2, 2, 2)
  5701. o16.Scale = Vector3.new(1000, 1000, 1000)
  5702. o16.VertexColor = Vector3.new(0.300000012, 4, 9)
  5703. o16.MeshType = Enum.MeshType.FileMesh
  5704. o16.Scale = Vector3.new(1000, 1000, 1000)
  5705. o17.Name = "Brick"
  5706. o17.Parent = o2
  5707. o17.Material = Enum.Material.Neon
  5708. o17.BrickColor = BrickColor.new("Royal purple")
  5709. o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
  5710. o17.Rotation = Vector3.new(70.6100006, -28.9300003, 89.6299973)
  5711. o17.Anchored = true
  5712. o17.CanCollide = false
  5713. o17.Size = Vector3.new(1, 2.4000001, 1)
  5714. 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)
  5715. o17.BottomSurface = Enum.SurfaceType.Smooth
  5716. o17.TopSurface = Enum.SurfaceType.Smooth
  5717. o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5718. o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
  5719. o17.Orientation = Vector3.new(55.6500015, -59.0099983, 35.6699982)
  5720. o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5721. o18.Parent = o17
  5722. o18.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5723. o18.Offset = Vector3.new(2, 2, 2)
  5724. o18.Scale = Vector3.new(1000, 1000, 1000)
  5725. o18.VertexColor = Vector3.new(0.300000012, 4, 9)
  5726. o18.MeshType = Enum.MeshType.FileMesh
  5727. o18.Scale = Vector3.new(1000, 1000, 1000)
  5728. o19.Name = "Brick"
  5729. o19.Parent = o2
  5730. o19.Material = Enum.Material.Neon
  5731. o19.BrickColor = BrickColor.new("Royal purple")
  5732. o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
  5733. o19.Rotation = Vector3.new(68, -39.3699989, 91.9400024)
  5734. o19.Anchored = true
  5735. o19.CanCollide = false
  5736. o19.Size = Vector3.new(1, 2.4000001, 1)
  5737. 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)
  5738. o19.BottomSurface = Enum.SurfaceType.Smooth
  5739. o19.TopSurface = Enum.SurfaceType.Smooth
  5740. o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5741. o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
  5742. o19.Orientation = Vector3.new(45.7900009, -65.4599991, 34.4300003)
  5743. o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5744. o20.Parent = o19
  5745. o20.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5746. o20.Offset = Vector3.new(2, 2, 2)
  5747. o20.Scale = Vector3.new(1000, 1000, 1000)
  5748. o20.VertexColor = Vector3.new(0.300000012, 4, 9)
  5749. o20.MeshType = Enum.MeshType.FileMesh
  5750. o20.Scale = Vector3.new(1000, 1000, 1000)
  5751. o21.Name = "Brick"
  5752. o21.Parent = o2
  5753. o21.Material = Enum.Material.Neon
  5754. o21.BrickColor = BrickColor.new("Royal purple")
  5755. o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
  5756. o21.Rotation = Vector3.new(65.5299988, -49.8899994, 93.9800034)
  5757. o21.Anchored = true
  5758. o21.CanCollide = false
  5759. o21.Size = Vector3.new(1, 2.4000001, 1)
  5760. 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)
  5761. o21.BottomSurface = Enum.SurfaceType.Smooth
  5762. o21.TopSurface = Enum.SurfaceType.Smooth
  5763. o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5764. o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
  5765. o21.Orientation = Vector3.new(35.9000015, -70.7600021, 34.7400017)
  5766. o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5767. o22.Parent = o21
  5768. o22.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5769. o22.Offset = Vector3.new(2, 2, 2)
  5770. o22.Scale = Vector3.new(1000, 1000, 1000)
  5771. o22.VertexColor = Vector3.new(0.300000012, 4, 9)
  5772. o22.MeshType = Enum.MeshType.FileMesh
  5773. o22.Scale = Vector3.new(1000, 1000, 1000)
  5774. o23.Name = "Brick"
  5775. o23.Parent = o2
  5776. o23.Material = Enum.Material.Neon
  5777. o23.BrickColor = BrickColor.new("Royal purple")
  5778. o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
  5779. o23.Rotation = Vector3.new(73.4700012, -18.5900002, 87.0100021)
  5780. o23.Anchored = true
  5781. o23.CanCollide = false
  5782. o23.Size = Vector3.new(1, 2.4000001, 1)
  5783. 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)
  5784. o23.BottomSurface = Enum.SurfaceType.Smooth
  5785. o23.TopSurface = Enum.SurfaceType.Smooth
  5786. o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5787. o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
  5788. o23.Orientation = Vector3.new(65.3199997, -49.7700005, 39.9599991)
  5789. o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5790. o24.Parent = o23
  5791. o24.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5792. o24.Offset = Vector3.new(2, 2, 2)
  5793. o24.Scale = Vector3.new(1000, 1000, 1000)
  5794. o24.VertexColor = Vector3.new(0.300000012, 4, 9)
  5795. o24.MeshType = Enum.MeshType.FileMesh
  5796. o24.Scale = Vector3.new(1000, 1000, 1000)
  5797. o25.Name = "Brick"
  5798. o25.Parent = o2
  5799. o25.Material = Enum.Material.Neon
  5800. o25.BrickColor = BrickColor.new("Royal purple")
  5801. o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
  5802. o25.Rotation = Vector3.new(76.6699982, -8.39000034, 83.9700012)
  5803. o25.Anchored = true
  5804. o25.CanCollide = false
  5805. o25.Size = Vector3.new(1, 2.4000001, 1)
  5806. 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)
  5807. o25.BottomSurface = Enum.SurfaceType.Smooth
  5808. o25.TopSurface = Enum.SurfaceType.Smooth
  5809. o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5810. o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
  5811. o25.Orientation = Vector3.new(74.2900009, -32.6100006, 52.3400002)
  5812. o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5813. o26.Parent = o25
  5814. o26.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5815. o26.Offset = Vector3.new(2, 2, 2)
  5816. o26.Scale = Vector3.new(1000, 1000, 1000)
  5817. o26.VertexColor = Vector3.new(0.300000012, 4, 9)
  5818. o26.MeshType = Enum.MeshType.FileMesh
  5819. o26.Scale = Vector3.new(1000, 1000, 1000)
  5820. o27.Name = "Brick"
  5821. o27.Parent = o2
  5822. o27.Material = Enum.Material.Neon
  5823. o27.BrickColor = BrickColor.new("Royal purple")
  5824. o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
  5825. o27.Rotation = Vector3.new(80.3700027, 1.61000001, 80.4100037)
  5826. o27.Anchored = true
  5827. o27.CanCollide = false
  5828. o27.Size = Vector3.new(1, 2.4000001, 1)
  5829. 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)
  5830. o27.BottomSurface = Enum.SurfaceType.Smooth
  5831. o27.TopSurface = Enum.SurfaceType.Smooth
  5832. o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5833. o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
  5834. o27.Orientation = Vector3.new(80.2399979, 9.53999996, 89.8199997)
  5835. o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5836. o28.Parent = o27
  5837. o28.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5838. o28.Offset = Vector3.new(2, 2, 2)
  5839. o28.Scale = Vector3.new(1000, 1000, 1000)
  5840. o28.VertexColor = Vector3.new(0.300000012, 4, 9)
  5841. o28.MeshType = Enum.MeshType.FileMesh
  5842. o28.Scale = Vector3.new(1000, 1000, 1000)
  5843. o29.Name = "Brick"
  5844. o29.Parent = o2
  5845. o29.Material = Enum.Material.Neon
  5846. o29.BrickColor = BrickColor.new("Royal purple")
  5847. o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
  5848. o29.Rotation = Vector3.new(-133.990005, -24.3700008, -63.5200005)
  5849. o29.Anchored = true
  5850. o29.CanCollide = false
  5851. o29.Size = Vector3.new(1, 2.4000001, 1)
  5852. 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)
  5853. o29.BottomSurface = Enum.SurfaceType.Smooth
  5854. o29.TopSurface = Enum.SurfaceType.Smooth
  5855. o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5856. o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
  5857. o29.Orientation = Vector3.new(-40.9500008, -146.880005, 93.3300018)
  5858. o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5859. o30.Parent = o29
  5860. o30.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5861. o30.Offset = Vector3.new(2, 2, 2)
  5862. o30.Scale = Vector3.new(1000, 1000, 1000)
  5863. o30.VertexColor = Vector3.new(0.300000012, 4, 9)
  5864. o30.MeshType = Enum.MeshType.FileMesh
  5865. o30.Scale = Vector3.new(1000, 1000, 1000)
  5866. o31.Name = "Brick"
  5867. o31.Parent = o2
  5868. o31.Material = Enum.Material.Neon
  5869. o31.BrickColor = BrickColor.new("Royal purple")
  5870. o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
  5871. o31.Rotation = Vector3.new(-131.279999, -34.7700005, -65.9599991)
  5872. o31.Anchored = true
  5873. o31.CanCollide = false
  5874. o31.Size = Vector3.new(1, 2.4000001, 1)
  5875. 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)
  5876. o31.BottomSurface = Enum.SurfaceType.Smooth
  5877. o31.TopSurface = Enum.SurfaceType.Smooth
  5878. o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5879. o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
  5880. o31.Orientation = Vector3.new(-38.1100006, -133.539993, 81.0299988)
  5881. o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5882. o32.Parent = o31
  5883. o32.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5884. o32.Offset = Vector3.new(2, 2, 2)
  5885. o32.Scale = Vector3.new(1000, 1000, 1000)
  5886. o32.VertexColor = Vector3.new(0.300000012, 4, 9)
  5887. o32.MeshType = Enum.MeshType.FileMesh
  5888. o32.Scale = Vector3.new(1000, 1000, 1000)
  5889. o33.Name = "Brick"
  5890. o33.Parent = o2
  5891. o33.Material = Enum.Material.Neon
  5892. o33.BrickColor = BrickColor.new("Royal purple")
  5893. o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
  5894. o33.Rotation = Vector3.new(-128.759995, -45.2599983, -68.1200027)
  5895. o33.Anchored = true
  5896. o33.CanCollide = false
  5897. o33.Size = Vector3.new(1, 2.4000001, 1)
  5898. 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)
  5899. o33.BottomSurface = Enum.SurfaceType.Smooth
  5900. o33.TopSurface = Enum.SurfaceType.Smooth
  5901. o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5902. o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
  5903. o33.Orientation = Vector3.new(-33.2900009, -121.809998, 70.3799973)
  5904. o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5905. o34.Parent = o33
  5906. o34.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5907. o34.Offset = Vector3.new(2, 2, 2)
  5908. o34.Scale = Vector3.new(1000, 1000, 1000)
  5909. o34.VertexColor = Vector3.new(0.300000012, 4, 9)
  5910. o34.MeshType = Enum.MeshType.FileMesh
  5911. o34.Scale = Vector3.new(1000, 1000, 1000)
  5912. o35.Name = "Brick"
  5913. o35.Parent = o2
  5914. o35.Material = Enum.Material.Neon
  5915. o35.BrickColor = BrickColor.new("Royal purple")
  5916. o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
  5917. o35.Rotation = Vector3.new(-126.300003, -55.8100014, -69.9899979)
  5918. o35.Anchored = true
  5919. o35.CanCollide = false
  5920. o35.Size = Vector3.new(1, 2.4000001, 1)
  5921. 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)
  5922. o35.BottomSurface = Enum.SurfaceType.Smooth
  5923. o35.TopSurface = Enum.SurfaceType.Smooth
  5924. o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5925. o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
  5926. o35.Orientation = Vector3.new(-26.9300003, -111.910004, 61.6199989)
  5927. o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5928. o36.Parent = o35
  5929. o36.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5930. o36.Offset = Vector3.new(2, 2, 2)
  5931. o36.Scale = Vector3.new(1000, 1000, 1000)
  5932. o36.VertexColor = Vector3.new(0.300000012, 4, 9)
  5933. o36.MeshType = Enum.MeshType.FileMesh
  5934. o36.Scale = Vector3.new(1000, 1000, 1000)
  5935. o37.Name = "Brick"
  5936. o37.Parent = o2
  5937. o37.Material = Enum.Material.Neon
  5938. o37.BrickColor = BrickColor.new("Royal purple")
  5939. o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
  5940. o37.Rotation = Vector3.new(-123.709999, -66.4000015, -71.4899979)
  5941. o37.Anchored = true
  5942. o37.CanCollide = false
  5943. o37.Size = Vector3.new(1, 2.4000001, 1)
  5944. 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)
  5945. o37.BottomSurface = Enum.SurfaceType.Smooth
  5946. o37.TopSurface = Enum.SurfaceType.Smooth
  5947. o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5948. o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
  5949. o37.Orientation = Vector3.new(-19.4599991, -103.629997, 54.5600014)
  5950. o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5951. o38.Parent = o37
  5952. o38.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5953. o38.Offset = Vector3.new(2, 2, 2)
  5954. o38.Scale = Vector3.new(1000, 1000, 1000)
  5955. o38.VertexColor = Vector3.new(0.300000012, 4, 9)
  5956. o38.MeshType = Enum.MeshType.FileMesh
  5957. o38.Scale = Vector3.new(1000, 1000, 1000)
  5958. o39.Name = "Brick"
  5959. o39.Parent = o2
  5960. o39.Material = Enum.Material.Neon
  5961. o39.BrickColor = BrickColor.new("Royal purple")
  5962. o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
  5963. o39.Rotation = Vector3.new(-120.32, -77.0100021, -72.0400009)
  5964. o39.Anchored = true
  5965. o39.CanCollide = false
  5966. o39.Size = Vector3.new(1, 2.4000001, 1)
  5967. 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)
  5968. o39.BottomSurface = Enum.SurfaceType.Smooth
  5969. o39.TopSurface = Enum.SurfaceType.Smooth
  5970. o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5971. o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
  5972. o39.Orientation = Vector3.new(-11.1899996, -96.6399994, 48.9300003)
  5973. o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5974. o40.Parent = o39
  5975. o40.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5976. o40.Offset = Vector3.new(2, 2, 2)
  5977. o40.Scale = Vector3.new(1000, 1000, 1000)
  5978. o40.VertexColor = Vector3.new(0.300000012, 4, 9)
  5979. o40.MeshType = Enum.MeshType.FileMesh
  5980. o40.Scale = Vector3.new(1000, 1000, 1000)
  5981. o41.Name = "Brick"
  5982. o41.Parent = o2
  5983. o41.Material = Enum.Material.Neon
  5984. o41.BrickColor = BrickColor.new("Royal purple")
  5985. o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
  5986. o41.Rotation = Vector3.new(-104.620003, -87.5599976, -60.2000008)
  5987. o41.Anchored = true
  5988. o41.CanCollide = false
  5989. o41.Size = Vector3.new(1, 2.4000001, 1)
  5990. 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)
  5991. o41.BottomSurface = Enum.SurfaceType.Smooth
  5992. o41.TopSurface = Enum.SurfaceType.Smooth
  5993. o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5994. o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
  5995. o41.Orientation = Vector3.new(-2.3599999, -90.6200027, 44.4300003)
  5996. o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5997. o42.Parent = o41
  5998. o42.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5999. o42.Offset = Vector3.new(2, 2, 2)
  6000. o42.Scale = Vector3.new(1000, 1000, 1000)
  6001. o42.VertexColor = Vector3.new(0.300000012, 4, 9)
  6002. o42.MeshType = Enum.MeshType.FileMesh
  6003. o42.Scale = Vector3.new(1000, 1000, 1000)
  6004. o43.Name = "Brick"
  6005. o43.Parent = o2
  6006. o43.Material = Enum.Material.Neon
  6007. o43.BrickColor = BrickColor.new("Royal purple")
  6008. o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
  6009. o43.Rotation = Vector3.new(105.5, 37.2799988, 55.6800003)
  6010. o43.Anchored = true
  6011. o43.CanCollide = false
  6012. o43.Size = Vector3.new(1, 2.4000001, 1)
  6013. 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)
  6014. o43.BottomSurface = Enum.SurfaceType.Smooth
  6015. o43.TopSurface = Enum.SurfaceType.Smooth
  6016. o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6017. o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
  6018. o43.Orientation = Vector3.new(50.0600014, 109.339996, 170.279999)
  6019. o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6020. o44.Parent = o43
  6021. o44.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6022. o44.Offset = Vector3.new(2, 2, 2)
  6023. o44.Scale = Vector3.new(1000, 1000, 1000)
  6024. o44.VertexColor = Vector3.new(0.300000012, 4, 9)
  6025. o44.MeshType = Enum.MeshType.FileMesh
  6026. o44.Scale = Vector3.new(1000, 1000, 1000)
  6027. o45.Name = "Brick"
  6028. o45.Parent = o2
  6029. o45.Material = Enum.Material.Neon
  6030. o45.BrickColor = BrickColor.new("Royal purple")
  6031. o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
  6032. o45.Rotation = Vector3.new(116.610001, 43.8199997, 44.6500015)
  6033. o45.Anchored = true
  6034. o45.CanCollide = false
  6035. o45.Size = Vector3.new(1, 2.4000001, 1)
  6036. 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)
  6037. o45.BottomSurface = Enum.SurfaceType.Smooth
  6038. o45.TopSurface = Enum.SurfaceType.Smooth
  6039. o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6040. o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
  6041. o45.Orientation = Vector3.new(40.1699982, 115.019997, 170.539993)
  6042. o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6043. o46.Parent = o45
  6044. o46.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6045. o46.Offset = Vector3.new(2, 2, 2)
  6046. o46.Scale = Vector3.new(1000, 1000, 1000)
  6047. o46.VertexColor = Vector3.new(0.300000012, 4, 9)
  6048. o46.MeshType = Enum.MeshType.FileMesh
  6049. o46.Scale = Vector3.new(1000, 1000, 1000)
  6050. o47.Name = "Brick"
  6051. o47.Parent = o2
  6052. o47.Material = Enum.Material.Neon
  6053. o47.BrickColor = BrickColor.new("Royal purple")
  6054. o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
  6055. o47.Rotation = Vector3.new(130.539993, 48.4000015, 30.7999992)
  6056. o47.Anchored = true
  6057. o47.CanCollide = false
  6058. o47.Size = Vector3.new(1, 2.4000001, 1)
  6059. 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)
  6060. o47.BottomSurface = Enum.SurfaceType.Smooth
  6061. o47.TopSurface = Enum.SurfaceType.Smooth
  6062. o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6063. o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
  6064. o47.Orientation = Vector3.new(30.2999992, 119.989998, 169.639999)
  6065. o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6066. o48.Parent = o47
  6067. o48.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6068. o48.Offset = Vector3.new(2, 2, 2)
  6069. o48.Scale = Vector3.new(1000, 1000, 1000)
  6070. o48.VertexColor = Vector3.new(0.300000012, 4, 9)
  6071. o48.MeshType = Enum.MeshType.FileMesh
  6072. o48.Scale = Vector3.new(1000, 1000, 1000)
  6073. o49.Name = "Brick"
  6074. o49.Parent = o2
  6075. o49.Material = Enum.Material.Neon
  6076. o49.BrickColor = BrickColor.new("Royal purple")
  6077. o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
  6078. o49.Rotation = Vector3.new(146.669998, 50.3100014, 14.7399998)
  6079. o49.Anchored = true
  6080. o49.CanCollide = false
  6081. o49.Size = Vector3.new(1, 2.4000001, 1)
  6082. 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)
  6083. o49.BottomSurface = Enum.SurfaceType.Smooth
  6084. o49.TopSurface = Enum.SurfaceType.Smooth
  6085. o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6086. o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
  6087. o49.Orientation = Vector3.new(20.5400009, 124.739998, 167.899994)
  6088. o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6089. o50.Parent = o49
  6090. o50.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6091. o50.Offset = Vector3.new(2, 2, 2)
  6092. o50.Scale = Vector3.new(1000, 1000, 1000)
  6093. o50.VertexColor = Vector3.new(0.300000012, 4, 9)
  6094. o50.MeshType = Enum.MeshType.FileMesh
  6095. o50.Scale = Vector3.new(1000, 1000, 1000)
  6096. o51.Name = "Brick"
  6097. o51.Parent = o2
  6098. o51.Material = Enum.Material.Neon
  6099. o51.BrickColor = BrickColor.new("Royal purple")
  6100. o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
  6101. o51.Rotation = Vector3.new(175.460007, 46.1100006, -13.9099998)
  6102. o51.Anchored = true
  6103. o51.CanCollide = false
  6104. o51.Size = Vector3.new(1, 2.4000001, 1)
  6105. 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)
  6106. o51.BottomSurface = Enum.SurfaceType.Smooth
  6107. o51.TopSurface = Enum.SurfaceType.Smooth
  6108. o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6109. o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
  6110. o51.Orientation = Vector3.new(3.1400001, 133.800003, 162.809998)
  6111. o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6112. o52.Parent = o51
  6113. o52.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6114. o52.Offset = Vector3.new(2, 2, 2)
  6115. o52.Scale = Vector3.new(1000, 1000, 1000)
  6116. o52.VertexColor = Vector3.new(0.300000012, 4, 9)
  6117. o52.MeshType = Enum.MeshType.FileMesh
  6118. o52.Scale = Vector3.new(1000, 1000, 1000)
  6119. o53.Name = "Brick"
  6120. o53.Parent = o2
  6121. o53.Material = Enum.Material.Neon
  6122. o53.BrickColor = BrickColor.new("Royal purple")
  6123. o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
  6124. o53.Rotation = Vector3.new(-172.199997, 40.3600006, -26.1700001)
  6125. o53.Anchored = true
  6126. o53.CanCollide = false
  6127. o53.Size = Vector3.new(1, 2.4000001, 1)
  6128. 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)
  6129. o53.BottomSurface = Enum.SurfaceType.Smooth
  6130. o53.TopSurface = Enum.SurfaceType.Smooth
  6131. o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6132. o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
  6133. o53.Orientation = Vector3.new(-5.94000006, 139.380005, 158.899994)
  6134. o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6135. o54.Parent = o53
  6136. o54.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6137. o54.Offset = Vector3.new(2, 2, 2)
  6138. o54.Scale = Vector3.new(1000, 1000, 1000)
  6139. o54.VertexColor = Vector3.new(0.300000012, 4, 9)
  6140. o54.MeshType = Enum.MeshType.FileMesh
  6141. o54.Scale = Vector3.new(1000, 1000, 1000)
  6142. o55.Name = "Brick"
  6143. o55.Parent = o2
  6144. o55.Material = Enum.Material.Neon
  6145. o55.BrickColor = BrickColor.new("Royal purple")
  6146. o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
  6147. o55.Rotation = Vector3.new(-162.550003, 33, -35.7400017)
  6148. o55.Anchored = true
  6149. o55.CanCollide = false
  6150. o55.Size = Vector3.new(1, 2.4000001, 1)
  6151. 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)
  6152. o55.BottomSurface = Enum.SurfaceType.Smooth
  6153. o55.TopSurface = Enum.SurfaceType.Smooth
  6154. o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6155. o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
  6156. o55.Orientation = Vector3.new(-14.5600004, 145.75, 153.979996)
  6157. o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6158. o56.Parent = o55
  6159. o56.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6160. o56.Offset = Vector3.new(2, 2, 2)
  6161. o56.Scale = Vector3.new(1000, 1000, 1000)
  6162. o56.VertexColor = Vector3.new(0.300000012, 4, 9)
  6163. o56.MeshType = Enum.MeshType.FileMesh
  6164. o56.Scale = Vector3.new(1000, 1000, 1000)
  6165. o57.Name = "Brick"
  6166. o57.Parent = o2
  6167. o57.Material = Enum.Material.Neon
  6168. o57.BrickColor = BrickColor.new("Royal purple")
  6169. o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
  6170. o57.Rotation = Vector3.new(-155.059998, 24.5900002, -43.1399994)
  6171. o57.Anchored = true
  6172. o57.CanCollide = false
  6173. o57.Size = Vector3.new(1, 2.4000001, 1)
  6174. 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)
  6175. o57.BottomSurface = Enum.SurfaceType.Smooth
  6176. o57.TopSurface = Enum.SurfaceType.Smooth
  6177. o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6178. o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
  6179. o57.Orientation = Vector3.new(-22.5499992, 153.220001, 147.809998)
  6180. o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6181. o58.Parent = o57
  6182. o58.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6183. o58.Offset = Vector3.new(2, 2, 2)
  6184. o58.Scale = Vector3.new(1000, 1000, 1000)
  6185. o58.VertexColor = Vector3.new(0.300000012, 4, 9)
  6186. o58.MeshType = Enum.MeshType.FileMesh
  6187. o58.Scale = Vector3.new(1000, 1000, 1000)
  6188. o59.Name = "Brick"
  6189. o59.Parent = o2
  6190. o59.Material = Enum.Material.Neon
  6191. o59.BrickColor = BrickColor.new("Royal purple")
  6192. o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
  6193. o59.Rotation = Vector3.new(-149.139999, 15.4899998, -48.9599991)
  6194. o59.Anchored = true
  6195. o59.CanCollide = false
  6196. o59.Size = Vector3.new(1, 2.4000001, 1)
  6197. 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)
  6198. o59.BottomSurface = Enum.SurfaceType.Smooth
  6199. o59.TopSurface = Enum.SurfaceType.Smooth
  6200. o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6201. o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
  6202. o59.Orientation = Vector3.new(-29.6200008, 162.110001, 140.100006)
  6203. o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6204. o60.Parent = o59
  6205. o60.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6206. o60.Offset = Vector3.new(2, 2, 2)
  6207. o60.Scale = Vector3.new(1000, 1000, 1000)
  6208. o60.VertexColor = Vector3.new(0.300000012, 4, 9)
  6209. o60.MeshType = Enum.MeshType.FileMesh
  6210. o60.Scale = Vector3.new(1000, 1000, 1000)
  6211. o61.Name = "Brick"
  6212. o61.Parent = o2
  6213. o61.Material = Enum.Material.Neon
  6214. o61.BrickColor = BrickColor.new("Royal purple")
  6215. o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
  6216. o61.Rotation = Vector3.new(-144.360001, 5.92000008, -53.6399994)
  6217. o61.Anchored = true
  6218. o61.CanCollide = false
  6219. o61.Size = Vector3.new(1, 2.4000001, 1)
  6220. 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)
  6221. o61.BottomSurface = Enum.SurfaceType.Smooth
  6222. o61.TopSurface = Enum.SurfaceType.Smooth
  6223. o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6224. o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
  6225. o61.Orientation = Vector3.new(-35.4199982, 172.729996, 130.589996)
  6226. o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6227. o62.Parent = o61
  6228. o62.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6229. o62.Offset = Vector3.new(2, 2, 2)
  6230. o62.Scale = Vector3.new(1000, 1000, 1000)
  6231. o62.VertexColor = Vector3.new(0.300000012, 4, 9)
  6232. o62.MeshType = Enum.MeshType.FileMesh
  6233. o62.Scale = Vector3.new(1000, 1000, 1000)
  6234. o63.Name = "Brick"
  6235. o63.Parent = o2
  6236. o63.Material = Enum.Material.Neon
  6237. o63.BrickColor = BrickColor.new("Royal purple")
  6238. o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
  6239. o63.Rotation = Vector3.new(-140.380005, -3.97000003, -57.4799995)
  6240. o63.Anchored = true
  6241. o63.CanCollide = false
  6242. o63.Size = Vector3.new(1, 2.4000001, 1)
  6243. 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)
  6244. o63.BottomSurface = Enum.SurfaceType.Smooth
  6245. o63.TopSurface = Enum.SurfaceType.Smooth
  6246. o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6247. o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
  6248. o63.Orientation = Vector3.new(-39.5099983, -174.850006, 119.230003)
  6249. o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6250. o64.Parent = o63
  6251. o64.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6252. o64.Offset = Vector3.new(2, 2, 2)
  6253. o64.Scale = Vector3.new(1000, 1000, 1000)
  6254. o64.VertexColor = Vector3.new(0.300000012, 4, 9)
  6255. o64.MeshType = Enum.MeshType.FileMesh
  6256. o64.Scale = Vector3.new(1000, 1000, 1000)
  6257. o65.Name = "Brick"
  6258. o65.Parent = o2
  6259. o65.Material = Enum.Material.Neon
  6260. o65.BrickColor = BrickColor.new("Royal purple")
  6261. o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
  6262. o65.Rotation = Vector3.new(-136.979996, -14.0900002, -60.7299995)
  6263. o65.Anchored = true
  6264. o65.CanCollide = false
  6265. o65.Size = Vector3.new(1, 2.4000001, 1)
  6266. 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)
  6267. o65.BottomSurface = Enum.SurfaceType.Smooth
  6268. o65.TopSurface = Enum.SurfaceType.Smooth
  6269. o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6270. o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
  6271. o65.Orientation = Vector3.new(-41.4300003, -161.050003, 106.470001)
  6272. o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6273. o66.Parent = o65
  6274. o66.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6275. o66.Offset = Vector3.new(2, 2, 2)
  6276. o66.Scale = Vector3.new(1000, 1000, 1000)
  6277. o66.VertexColor = Vector3.new(0.300000012, 4, 9)
  6278. o66.MeshType = Enum.MeshType.FileMesh
  6279. o66.Scale = Vector3.new(1000, 1000, 1000)
  6280. o67.Parent = o2
  6281. table.insert(cors,coroutine.create(function()
  6282. wait()
  6283. runDummyScript(function()
  6284. --Time
  6285. l = script.Parent
  6286. while true do
  6287. wait()
  6288. local h = l:GetChildren()
  6289. for i = 1, #h do
  6290. if h[i].Name == "Brick" then
  6291. h[i].CFrame = h[i].CFrame * CFrame.fromEulerAnglesXYZ(0.02,0.01,0.02)
  6292. end
  6293. end
  6294. end
  6295. end,o67)
  6296. end))
  6297. mas.Parent = workspace
  6298. mas:MakeJoints()
  6299. local mas1 = mas:GetChildren()
  6300. for i=1,#mas1 do
  6301. mas1[i].Parent = workspace
  6302. ypcall(function() mas1[i]:MakeJoints() end)
  6303. end
  6304. mas:Destroy()
  6305. for i=1,#cors do
  6306. coroutine.resume(cors[i])
  6307. end
  6308. --Wings
  6309. local Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  6310.  
  6311. local Num = 0.5
  6312.  
  6313. local Num2 = 4 -------------Wings Parameters-------------------------------------
  6314. local Size = 0.8
  6315. local Rate = 300
  6316. -------------------------------------------------------------------------------------
  6317. local Player = game:service'Players'.LocalPlayer
  6318. local Character = Player.Character
  6319. Torso = Character:WaitForChild'Torso'
  6320.  
  6321. local Wing1 = Instance.new("Part",Character)
  6322. Wing1.FormFactor = Enum.FormFactor.Custom
  6323. Wing1.Size = Vector3.new(.2, .2, .2)
  6324. Wing1.Name = "WIng_1"
  6325.  
  6326. local fire = Instance.new("ParticleEmitter", Wing1)
  6327. fire.VelocitySpread = 0
  6328. fire.Lifetime = NumberRange.new(2)
  6329. fire.Acceleration = Vector3.new(0, 2, 2)
  6330. fire.RotSpeed = NumberRange.new(10)
  6331. fire.Rate = Rate
  6332. fire.Rotation = NumberRange.new(151515)
  6333. fire.Name = "Fire"
  6334. fire.LightEmission = 0.78
  6335. fire.LockedToPart = true
  6336. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6337. fire.Color = Color
  6338. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6339.  
  6340. local Wing2 = Wing1:Clone()
  6341. Wing2.Parent = Torso
  6342. local x,y,z = 0,-1,-6
  6343.  
  6344. Wld = function(a,b,cf)
  6345. local Weld = Instance.new('Weld',a)
  6346. Weld.Part0 = a
  6347. Weld.Part1 = b
  6348. Weld.C1 = cf
  6349. return Weld
  6350. end
  6351.  
  6352. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  6353. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  6354.  
  6355.  
  6356. game:service'RunService'.Stepped:connect(function()
  6357. --z = 6+math.sin(tick()*2)
  6358. y = -1+math.sin(tick()*Num)*Num2
  6359. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6360. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6361. end)
  6362. ------------------------------------------------------------------------------------------------
  6363. local Player = game:service'Players'.LocalPlayer
  6364. local Character = Player.Character
  6365. Torso = Character:WaitForChild'Torso'
  6366.  
  6367. local Wing1 = Instance.new("Part",Character)
  6368. Wing1.FormFactor = Enum.FormFactor.Custom
  6369. Wing1.Size = Vector3.new(.2, .2, .2)
  6370. Wing1.Name = "WIng_1"
  6371.  
  6372. local fire = Instance.new("ParticleEmitter", Wing1)
  6373. fire.VelocitySpread = 0
  6374. fire.Lifetime = NumberRange.new(2.5)
  6375. fire.Acceleration = Vector3.new(0, 4, 4)
  6376. fire.RotSpeed = NumberRange.new(10)
  6377. fire.Rate = Rate
  6378. fire.Rotation = NumberRange.new(151515)
  6379. fire.Name = "Fire"
  6380. fire.LightEmission = 0.78
  6381. fire.LockedToPart = true
  6382. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6383. fire.Color = Color
  6384. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6385.  
  6386. local Wing2 = Wing1:Clone()
  6387. Wing2.Parent = Torso
  6388. local x,y,z = 0,-1,-6
  6389.  
  6390. Wld = function(a,b,cf)
  6391. local Weld = Instance.new('Weld',a)
  6392. Weld.Part0 = a
  6393. Weld.Part1 = b
  6394. Weld.C1 = cf
  6395. return Weld
  6396. end
  6397.  
  6398. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  6399. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  6400.  
  6401. print'Loaded'
  6402.  
  6403. game:service'RunService'.Stepped:connect(function()
  6404. --z = 6+math.sin(tick()*2)
  6405. y = -1+math.sin(tick()*Num)*Num2
  6406. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6407. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6408. end)
  6409.  
  6410. ------------------------------------------------------------------------------------------------
  6411. local Player = game:service'Players'.LocalPlayer
  6412. local Character = Player.Character
  6413. Torso = Character:WaitForChild'Torso'
  6414.  
  6415. local Wing1 = Instance.new("Part",Character)
  6416. Wing1.FormFactor = Enum.FormFactor.Custom
  6417. Wing1.Size = Vector3.new(.2, .2, .2)
  6418. Wing1.Name = "WIng_1"
  6419.  
  6420. local fire = Instance.new("ParticleEmitter", Wing1)
  6421. fire.VelocitySpread = 0
  6422. fire.Lifetime = NumberRange.new(2.8)
  6423. fire.Acceleration = Vector3.new(0, 4, 4)
  6424. fire.RotSpeed = NumberRange.new(10)
  6425. fire.Rate = Rate
  6426. fire.Rotation = NumberRange.new(151515)
  6427. fire.Name = "Fire"
  6428. fire.LightEmission = 0.78
  6429. fire.LockedToPart = true
  6430. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6431. fire.Color = Color
  6432. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6433.  
  6434. local Wing2 = Wing1:Clone()
  6435. Wing2.Parent = Torso
  6436. local x,y,z = 0,-1,-6
  6437.  
  6438. Wld = function(a,b,cf)
  6439. local Weld = Instance.new('Weld',a)
  6440. Weld.Part0 = a
  6441. Weld.Part1 = b
  6442. Weld.C1 = cf
  6443. return Weld
  6444. end
  6445.  
  6446. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  6447. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  6448.  
  6449. print'Loaded'
  6450.  
  6451. game:service'RunService'.Stepped:connect(function()
  6452. --z = 6+math.sin(tick()*2)
  6453. y = -1+math.sin(tick()*Num)*Num2
  6454. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6455. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6456. end)
  6457.  
  6458. ------------------------------------------------------------------------------------------------
  6459. local Player = game:service'Players'.LocalPlayer
  6460. local Character = Player.Character
  6461. Torso = Character:WaitForChild'Torso'
  6462.  
  6463. local Wing1 = Instance.new("Part",Character)
  6464. Wing1.FormFactor = Enum.FormFactor.Custom
  6465. Wing1.Size = Vector3.new(.2, .2, .2)
  6466. Wing1.Name = "WIng_1"
  6467.  
  6468. local fire = Instance.new("ParticleEmitter", Wing1)
  6469. fire.VelocitySpread = 0
  6470. fire.Lifetime = NumberRange.new(3)
  6471. fire.Acceleration = Vector3.new(0, 4, 4)
  6472. fire.RotSpeed = NumberRange.new(10)
  6473. fire.Rate = Rate
  6474. fire.Rotation = NumberRange.new(151515)
  6475. fire.Name = "Fire"
  6476. fire.LightEmission = 0.78
  6477. fire.LockedToPart = true
  6478. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6479. fire.Color = Color
  6480. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6481.  
  6482. local Wing2 = Wing1:Clone()
  6483. Wing2.Parent = Torso
  6484. local x,y,z = 0,-1,-6
  6485.  
  6486. Wld = function(a,b,cf)
  6487. local Weld = Instance.new('Weld',a)
  6488. Weld.Part0 = a
  6489. Weld.Part1 = b
  6490. Weld.C1 = cf
  6491. return Weld
  6492. end
  6493.  
  6494. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  6495. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  6496.  
  6497. print'Loaded'
  6498.  
  6499. game:service'RunService'.Stepped:connect(function()
  6500. --z = 6+math.sin(tick()*2)
  6501. y = -1+math.sin(tick()*Num)*Num2
  6502. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6503. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6504. end)
  6505.  
  6506. ------------------------------------------------------------------------------------------------
  6507. local Player = game:service'Players'.LocalPlayer
  6508. local Character = Player.Character
  6509. Torso = Character:WaitForChild'Torso'
  6510.  
  6511. local Wing1 = Instance.new("Part",Character)
  6512. Wing1.FormFactor = Enum.FormFactor.Custom
  6513. Wing1.Size = Vector3.new(.2, .2, .2)
  6514. Wing1.Name = "WIng_1"
  6515.  
  6516. local fire = Instance.new("ParticleEmitter", Wing1)
  6517. fire.VelocitySpread = 0
  6518. fire.Lifetime = NumberRange.new(3.1)
  6519. fire.Acceleration = Vector3.new(0, 4, 4)
  6520. fire.RotSpeed = NumberRange.new(10)
  6521. fire.Rate = Rate
  6522. fire.Rotation = NumberRange.new(151515)
  6523. fire.Name = "Fire"
  6524. fire.LightEmission = 0.78
  6525. fire.LockedToPart = true
  6526. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6527. fire.Color = Color
  6528. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6529.  
  6530. local Wing2 = Wing1:Clone()
  6531. Wing2.Parent = Torso
  6532. local x,y,z = 0,-1,-6
  6533.  
  6534. Wld = function(a,b,cf)
  6535. local Weld = Instance.new('Weld',a)
  6536. Weld.Part0 = a
  6537. Weld.Part1 = b
  6538. Weld.C1 = cf
  6539. return Weld
  6540. end
  6541.  
  6542. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  6543. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  6544.  
  6545. print'Loaded'
  6546.  
  6547. game:service'RunService'.Stepped:connect(function()
  6548. --z = 6+math.sin(tick()*2)
  6549. y = -1+math.sin(tick()*Num)*Num2
  6550. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6551. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6552. end)
  6553. --Teleport Sky to Player
  6554. o1:MakeJoints()
  6555. o1:MoveTo(game.Players.LocalPlayer.Character.Head.Position)
  6556. --Hat
  6557. hed.Mesh.MeshId="http://www.roblox.com/asset/?id=21057410"
  6558. hed.Mesh.Scale=Vector3.new(2,2,2)
  6559. hed.face:Destroy()
  6560. --Lighting Effect
  6561. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  6562. --[[Part0 = Vector3 (Start pos)
  6563. Part1 = Vector3 (End pos)
  6564. Times = number (Amount of lightning parts)
  6565. Offset = number (Offset)
  6566. Color = color (brickcolor value)
  6567. Thickness = number (thickness)
  6568. Trans = number (transparency)
  6569. ]]--
  6570. local magz = (Part0 - Part1).magnitude
  6571. local curpos = Part0
  6572. local trz = {-Offset,Offset}
  6573. for i=1,Times do
  6574. local li = Instance.new("Part", torso)
  6575. li.Name = "Lightning"
  6576. li.TopSurface =0
  6577. li.Material = "Neon"
  6578. li.BottomSurface = 0
  6579. li.Anchored = true
  6580. li.Locked = true
  6581. li.Transparency = Trans or 0.4
  6582. li.BrickColor = BrickColor.new(Color)
  6583. li.formFactor = "Custom"
  6584. li.CanCollide = false
  6585. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  6586. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  6587. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  6588. if Times == i then
  6589. local magz2 = (curpos - Part1).magnitude
  6590. li.Size = Vector3.new(Thickness,Thickness,magz2)
  6591. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  6592. else
  6593. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  6594. end
  6595. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  6596. game.Debris:AddItem(li,.1)
  6597. end
  6598. end
  6599.  
  6600. BodyParts = {} -- Parts to emit lightning effects from
  6601. for _, v in pairs(char:GetChildren()) do
  6602. if v:IsA("Part") then
  6603. table.insert(BodyParts, v)
  6604. end
  6605. end
  6606.  
  6607. Bounding = {} -- Calculate the bounding boxes
  6608. for _, v in pairs(BodyParts) do
  6609. local temp = {X=nil, Y=nil, Z=nil}
  6610. temp.X = v.Size.X/2 * 35
  6611. temp.Y = v.Size.Y/2 * 35
  6612. temp.Z = v.Size.Z/2 * 35
  6613. Bounding[v.Name] = temp
  6614. --table.insert(Bounding, v.Name, temp)
  6615. end
  6616.  
  6617. while wait(0) do -- Emit the Lightning effects randomly
  6618. local Body1 = BodyParts[math.random(#BodyParts)]
  6619. local Body2 = BodyParts[math.random(#BodyParts)]
  6620. local Pos1 = Vector3.new(
  6621. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/35,
  6622. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/35,
  6623. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/35
  6624. )
  6625. local Pos2 = Vector3.new(
  6626. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/35,
  6627. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/35,
  6628. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/35
  6629. )
  6630. local SPos1 = Body1.Position + Pos1
  6631. local SPos2 = Body2.Position + Pos2
  6632. Lightning(SPos1, SPos2, 4, 3, "Alder", .3, .56)
  6633. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement