Advertisement
Guest User

sanic

a guest
May 26th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 285.12 KB | None | 0 0
  1. --[[User: TheDarkRevenant
  2. Script: Absalom (Armored).lua
  3. Pass: cUpnjTnT]]
  4.  
  5. local p = game.Players.LocalPlayer
  6. local char = p.Character
  7. local mouse = p:GetMouse()
  8. local larm = char["Left Arm"]
  9. local rarm = char["Right Arm"]
  10. local lleg = char["Left Leg"]
  11. local rleg = char["Right Leg"]
  12. local hed = char.Head
  13. local torso = char.Torso
  14. local hum = char.Humanoid
  15. local cam = game.Workspace.CurrentCamera
  16. local root = char.HumanoidRootPart
  17. local deb = false
  18. local shot = 0
  19. local l = game:GetService("Lighting")
  20. local rs = game:GetService("RunService").RenderStepped
  21. local debris=game:service"Debris"
  22. local stanceToggle = "Normal"
  23. math.randomseed(os.time())
  24. hum.WalkSpeed = 7
  25. char.Health:Destroy()
  26. hum.MaxHealth = 999999999
  27. wait(0.1)
  28. hum.Health = 999999999
  29. ----------------------------------------------------
  30. ypcall(function()
  31. char.Shirt:Destroy()
  32. char.Pants:Destroy()
  33. shirt = Instance.new("Shirt", char)
  34. shirt.Name = "Shirt"
  35. pants = Instance.new("Pants", char)
  36. pants.Name = "Pants"
  37. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  38. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  39. end)
  40. ----------------------------------------------------
  41. Debounces = {
  42. on = false;
  43. ks = false;
  44. CanAttack = true;
  45. CanJoke = true;
  46. NoIdl = false;
  47. Slashing = false;
  48. Slashed = false;
  49. Grabbing = false;
  50. Grabbed = false;
  51. }
  52. local Touche = {char.Name, }
  53. ----------------------------------------------------
  54. function lerp(a, b, t) -- Linear interpolation
  55. return a + (b - a)*t
  56. end
  57.  
  58. function slerp(a, b, t) --Spherical interpolation
  59. dot = a:Dot(b)
  60. if dot > 0.99999 or dot < -0.99999 then
  61. return t <= 0.5 and a or b
  62. else
  63. r = math.acos(dot)
  64. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  65. end
  66. end
  67.  
  68. function matrixInterpolate(a, b, t)
  69. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  70. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  71. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  72. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  73. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  74. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  75. local t = v1:Dot(v2)
  76. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  77. return CFrame.new()
  78. end
  79. return CFrame.new(
  80. v0.x, v0.y, v0.z,
  81. v1.x, v1.y, v1.z,
  82. v2.x, v2.y, v2.z,
  83. v3.x, v3.y, v3.z)
  84. end
  85. ----------------------------------------------------
  86. function genWeld(a,b)
  87. local w = Instance.new("Weld",a)
  88. w.Part0 = a
  89. w.Part1 = b
  90. return w
  91. end
  92. function weld(a, b)
  93. local weld = Instance.new("Weld")
  94. weld.Name = "W"
  95. weld.Part0 = a
  96. weld.Part1 = b
  97. weld.C0 = a.CFrame:inverse() * b.CFrame
  98. weld.Parent = a
  99. return weld;
  100. end
  101. ----------------------------------------------------
  102. function Lerp(c1,c2,al)
  103. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  104. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  105. for i,v in pairs(com1) do
  106. com1[i] = v+(com2[i]-v)*al
  107. end
  108. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  109. end
  110. ----------------------------------------------------
  111. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  112. local wld = Instance.new("Weld", wp1)
  113. wld.Part0 = wp0
  114. wld.Part1 = wp1
  115. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  116. end
  117. ----------------------------------------------------
  118. function Tween(a,b,c)
  119. return a+(b-a)*c
  120. end
  121. ----------------------------------------------------
  122. function nwPrt(prnt,siz,cf,col)
  123. local prt=Instance.new("Part")
  124. prt.Parent=prnt
  125. prt.FormFactor=3
  126. prt.Name="Part"
  127. prt.Size=siz
  128. prt.CanCollide=false
  129. prt.Anchored=true
  130. prt.Locked=true
  131. prt.TopSurface=10
  132. prt.BottomSurface=10
  133. prt.FrontSurface=10
  134. prt.BackSurface=10
  135. prt.LeftSurface=10
  136. prt.RightSurface=10
  137. prt:BreakJoints()
  138. prt.CFrame=cf or CFrame.new(30,10,30)
  139. prt.Material="Neon"
  140. prt.BrickColor=BrickColor.new(col)
  141. m=Instance.new("SpecialMesh",prt)
  142. m.MeshType=6
  143. return prt
  144. end
  145. ----------------------------------------------------
  146. function nwSnd(prnt,pch,vol,id)
  147. local s=Instance.new("Sound",prnt)
  148. s.Pitch=pch
  149. s.Volume=vol
  150. s.SoundId="rbxassetid://"..id
  151. s.PlayOnRemove=true
  152. return s
  153. end
  154. ----------------------------------------------------
  155. function newRay(start,face,range,wat)
  156. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  157. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  158. return rey,hit,pos
  159. end
  160. ----------------------------------------------------
  161. for i,v in pairs(char:children()) do
  162. if v:IsA("Hat") then
  163. v:Destroy()
  164. end
  165. end
  166. for i,v in pairs(hed:children()) do
  167. if v:IsA("Sound") then
  168. v:Destroy()
  169. end
  170. end
  171. ----------------------------------------------------
  172. function HasntTouched(plrname)
  173. local ret = true
  174. for _, v in pairs(Touche) do
  175. if v == plrname then
  176. ret = false
  177. end
  178. end
  179. return ret
  180. end
  181. ----------------------------------------------------
  182. larm.Size = larm.Size * 2
  183. rarm.Size = rarm.Size * 2
  184. lleg.Size = lleg.Size * 2
  185. rleg.Size = rleg.Size * 2
  186. torso.Size = torso.Size * 2
  187. hed.Size = hed.Size * 2
  188. root.Size = root.Size * 2
  189. ----------------------------------------------------
  190. newWeld(torso, larm, -1.5, 0.5, 0)
  191. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  192. newWeld(torso, rarm, 1.5, 0.5, 0)
  193. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  194. newWeld(torso, hed, 0, 1.5, 0)
  195. newWeld(torso, lleg, -0.5, -1, 0)
  196. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  197. newWeld(torso, rleg, 0.5, -1, 0)
  198. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  199. newWeld(root, torso, 0, -1, 0)
  200. torso.Weld.C1 = CFrame.new(0, -1, 0)
  201. ----------------------------------------------------
  202. hed.face.Texture = "rbxassetid://272299908"
  203. z=Instance.new('Decal',hed)
  204. z.Face = 'Front'
  205. z.Texture='rbxassetid://99174105'
  206. z1=Instance.new('Decal',hed)
  207. z1.Face = 'Right'
  208. hed.BrickColor = BrickColor.new("Really black")
  209. lite = Instance.new("PointLight", torso)
  210. lite.Brightness = 14
  211. lite.Range = 10
  212. lite.Color = Color3.new(1, 0, 0)
  213. --[[local hed2 = hed:Clone()
  214. hed2.CanCollide = false
  215. hed2.Parent = char
  216. hed2:ClearAllChildren()
  217. hed2.Transparency = 1
  218. hed2.Name = "DARP"
  219. local w = Instance.new("Weld",hed2)
  220. w.Part0 = hed
  221. w.Part1 = hed2
  222. w.C0 = CFrame.new(0,0,-0.175)
  223. z=Instance.new("SurfaceGui",hed2)
  224. z.Enabled = true
  225. z.Face = "Front"
  226. z.Adornee = hed2
  227. z.CanvasSize = Vector2.new(100,100)
  228. local face = Instance.new("ImageLabel",z)
  229. face.Size = UDim2.new(1,-30,1,0)
  230. face.Position = UDim2.new(0,15,0,0)
  231. face.BackgroundTransparency = 1
  232. face.Image='rbxassetid://46282671']]--
  233. ----------------------------------------------------
  234. z = Instance.new("Sound", char)
  235. z.SoundId = "rbxassetid://303570180"--242463565
  236. z.Looped = true
  237. z.Pitch = .6
  238. z.Volume = 1
  239. wait(.01)
  240. z:Play()
  241. ----------------------------------------------------
  242. local l = game.Lighting
  243. local sky = Instance.new("Sky",l)
  244. sky.CelestialBodiesShown = false
  245. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  246. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  247. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  248. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  249. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  250. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  251. sky.StarCount = 0
  252. sky.Name = "GreenSpace"
  253. ----------------------------------------------------
  254. local m = Instance.new("Model")
  255. m.Name = "Absolution"
  256. p1 = Instance.new("Part", m)
  257. p1.BrickColor = BrickColor.new("Bright red")
  258. p1.Material = "Neon"
  259. p1.FormFactor = Enum.FormFactor.Custom
  260. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  261. 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)
  262. p1.CanCollide = false
  263. p1.Locked = true
  264. p1.Elasticity = 0
  265. p1.BottomSurface = Enum.SurfaceType.Smooth
  266. p1.TopSurface = Enum.SurfaceType.Smooth
  267. b1 = Instance.new("SpecialMesh", p1)
  268. b1.MeshType = Enum.MeshType.Wedge
  269. b1.Name = "Mesh"
  270. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  271. p2 = Instance.new("Part", m)
  272. p2.BrickColor = BrickColor.new("Institutional white")
  273. p2.FormFactor = Enum.FormFactor.Custom
  274. p2.Size = Vector3.new(1, 2.9000001, 1)
  275. 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)
  276. p2.CanCollide = false
  277. p2.Locked = true
  278. p2.Elasticity = 0
  279. p2.BottomSurface = Enum.SurfaceType.Smooth
  280. p2.TopSurface = Enum.SurfaceType.Smooth
  281. b2 = Instance.new("BlockMesh", p2)
  282. b2.Name = "Mesh"
  283. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  284. p3 = Instance.new("Part", m)
  285. p3.BrickColor = BrickColor.new("Bright red")
  286. p3.Material = "Neon"
  287. p3.FormFactor = Enum.FormFactor.Custom
  288. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  289. 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)
  290. p3.CanCollide = false
  291. p3.Locked = true
  292. p3.Elasticity = 0
  293. p3.BottomSurface = Enum.SurfaceType.Smooth
  294. p3.TopSurface = Enum.SurfaceType.Smooth
  295. b3 = Instance.new("SpecialMesh", p3)
  296. b3.MeshType = Enum.MeshType.Wedge
  297. b3.Name = "Mesh"
  298. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  299. p4 = Instance.new("Part", m)
  300. p4.BrickColor = BrickColor.new("Bright red")
  301. p4.Material = "Neon"
  302. p4.FormFactor = Enum.FormFactor.Custom
  303. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  304. 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)
  305. p4.CanCollide = false
  306. p4.Locked = true
  307. p4.Elasticity = 0
  308. p4.BottomSurface = Enum.SurfaceType.Smooth
  309. p4.TopSurface = Enum.SurfaceType.Smooth
  310. b4 = Instance.new("SpecialMesh", p4)
  311. b4.MeshType = Enum.MeshType.Wedge
  312. b4.Name = "Mesh"
  313. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  314. p5 = Instance.new("Part", m)
  315. p5.BrickColor = BrickColor.new("Bright red")
  316. p5.Material = "Neon"
  317. p5.FormFactor = Enum.FormFactor.Custom
  318. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  319. 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)
  320. p5.CanCollide = false
  321. p5.Locked = true
  322. p5.Elasticity = 0
  323. p5.BottomSurface = Enum.SurfaceType.Smooth
  324. p5.TopSurface = Enum.SurfaceType.Smooth
  325. b5 = Instance.new("SpecialMesh", p5)
  326. b5.MeshType = Enum.MeshType.Wedge
  327. b5.Name = "Mesh"
  328. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  329. p6 = Instance.new("Part", m)
  330. p6.Name = "Handle"
  331. p6.BrickColor = BrickColor.new("Institutional white")
  332. p6.FormFactor = Enum.FormFactor.Custom
  333. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  334. 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)
  335. p6.CanCollide = false
  336. p6.Locked = true
  337. p6.Elasticity = 0
  338. p6.BottomSurface = Enum.SurfaceType.Smooth
  339. p6.TopSurface = Enum.SurfaceType.Smooth
  340. b6 = Instance.new("BlockMesh", p6)
  341. b6.Name = "Mesh"
  342. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  343. p7 = Instance.new("Part", m)
  344. p7.BrickColor = BrickColor.new("Bright red")
  345. p7.Material = "Neon"
  346. p7.FormFactor = Enum.FormFactor.Custom
  347. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  348. 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)
  349. p7.CanCollide = false
  350. p7.Locked = true
  351. p7.Elasticity = 0
  352. p7.BottomSurface = Enum.SurfaceType.Smooth
  353. p7.TopSurface = Enum.SurfaceType.Smooth
  354. b7 = Instance.new("SpecialMesh", p7)
  355. b7.MeshType = Enum.MeshType.Wedge
  356. b7.Name = "Mesh"
  357. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  358. p8 = Instance.new("Part", m)
  359. p8.BrickColor = BrickColor.new("Bright red")
  360. p8.Material = "Neon"
  361. p8.FormFactor = Enum.FormFactor.Custom
  362. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  363. 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)
  364. p8.CanCollide = false
  365. p8.Locked = true
  366. p8.Elasticity = 0
  367. p8.BottomSurface = Enum.SurfaceType.Smooth
  368. p8.TopSurface = Enum.SurfaceType.Smooth
  369. b8 = Instance.new("SpecialMesh", p8)
  370. b8.MeshType = Enum.MeshType.Wedge
  371. b8.Name = "Mesh"
  372. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  373. p9 = Instance.new("Part", m)
  374. p9.BrickColor = BrickColor.new("Institutional white")
  375. p9.FormFactor = Enum.FormFactor.Custom
  376. p9.Size = Vector3.new(1, 1.07999957, 1)
  377. 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)
  378. p9.CanCollide = false
  379. p9.Locked = true
  380. p9.Elasticity = 0
  381. p9.BottomSurface = Enum.SurfaceType.Smooth
  382. p9.TopSurface = Enum.SurfaceType.Smooth
  383. b9 = Instance.new("BlockMesh", p9)
  384. b9.Name = "Mesh"
  385. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  386. p10 = Instance.new("Part", m)
  387. p10.BrickColor = BrickColor.new("Institutional white")
  388. p10.FormFactor = Enum.FormFactor.Custom
  389. p10.Size = Vector3.new(1, 1.41999948, 1)
  390. 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)
  391. p10.CanCollide = false
  392. p10.Locked = true
  393. p10.Elasticity = 0
  394. p10.BottomSurface = Enum.SurfaceType.Smooth
  395. p10.TopSurface = Enum.SurfaceType.Smooth
  396. b10 = Instance.new("BlockMesh", p10)
  397. b10.Name = "Mesh"
  398. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  399. p11 = Instance.new("Part", m)
  400. p11.BrickColor = BrickColor.new("Institutional white")
  401. p11.FormFactor = Enum.FormFactor.Custom
  402. p11.Size = Vector3.new(1, 1.50999951, 1)
  403. 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)
  404. p11.CanCollide = false
  405. p11.Locked = true
  406. p11.Elasticity = 0
  407. p11.BottomSurface = Enum.SurfaceType.Smooth
  408. p11.TopSurface = Enum.SurfaceType.Smooth
  409. b11 = Instance.new("BlockMesh", p11)
  410. b11.Name = "Mesh"
  411. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  412. p12 = Instance.new("Part", m)
  413. p12.Name = "BladeCenter"
  414. p12.BrickColor = BrickColor.new("Institutional white")
  415. p12.Material = Enum.Material.Concrete
  416. p12.FormFactor = Enum.FormFactor.Symmetric
  417. p12.Size = Vector3.new(1, 2, 2)
  418. 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)
  419. p12.CanCollide = false
  420. p12.Locked = true
  421. p12.BottomSurface = Enum.SurfaceType.Smooth
  422. p12.TopSurface = Enum.SurfaceType.Smooth
  423. b12 = Instance.new("SpecialMesh", p12)
  424. b12.MeshType = Enum.MeshType.Brick
  425. b12.Name = "Mesh"
  426. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  427. p13 = Instance.new("Part", m)
  428. p13.BrickColor = BrickColor.new("Institutional white")
  429. p13.FormFactor = Enum.FormFactor.Custom
  430. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  431. 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)
  432. p13.CanCollide = false
  433. p13.Locked = true
  434. p13.Elasticity = 0
  435. p13.BottomSurface = Enum.SurfaceType.Smooth
  436. p13.TopSurface = Enum.SurfaceType.Smooth
  437. b13 = Instance.new("BlockMesh", p13)
  438. b13.Name = "Mesh"
  439. b13.Scale = Vector3.new(1, 1, 0.400000006)
  440. p14 = Instance.new("Part", m)
  441. p14.BrickColor = BrickColor.new("Institutional white")
  442. p14.FormFactor = Enum.FormFactor.Custom
  443. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  444. 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)
  445. p14.CanCollide = false
  446. p14.Locked = true
  447. p14.Elasticity = 0
  448. p14.BottomSurface = Enum.SurfaceType.Smooth
  449. p14.TopSurface = Enum.SurfaceType.Smooth
  450. b14 = Instance.new("BlockMesh", p14)
  451. b14.Name = "Mesh"
  452. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  453. p15 = Instance.new("Part", m)
  454. p15.BrickColor = BrickColor.new("Institutional white")
  455. p15.FormFactor = Enum.FormFactor.Custom
  456. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  457. 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)
  458. p15.CanCollide = false
  459. p15.Locked = true
  460. p15.Elasticity = 0
  461. p15.BottomSurface = Enum.SurfaceType.Smooth
  462. p15.TopSurface = Enum.SurfaceType.Smooth
  463. b15 = Instance.new("BlockMesh", p15)
  464. b15.Name = "Mesh"
  465. b15.Scale = Vector3.new(1, 1, 0.400000006)
  466. p16 = Instance.new("Part", m)
  467. p16.BrickColor = BrickColor.new("Institutional white")
  468. p16.FormFactor = Enum.FormFactor.Custom
  469. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  470. 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)
  471. p16.CanCollide = false
  472. p16.Locked = true
  473. p16.Elasticity = 0
  474. p16.BottomSurface = Enum.SurfaceType.Smooth
  475. p16.TopSurface = Enum.SurfaceType.Smooth
  476. b16 = Instance.new("BlockMesh", p16)
  477. b16.Name = "Mesh"
  478. b16.Scale = Vector3.new(1, 1, 0.400000006)
  479. p17 = Instance.new("Part", m)
  480. p17.BrickColor = BrickColor.new("Institutional white")
  481. p17.FormFactor = Enum.FormFactor.Custom
  482. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  483. 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)
  484. p17.CanCollide = false
  485. p17.Locked = true
  486. p17.Elasticity = 0
  487. p17.BottomSurface = Enum.SurfaceType.Smooth
  488. p17.TopSurface = Enum.SurfaceType.Smooth
  489. b17 = Instance.new("BlockMesh", p17)
  490. b17.Name = "Mesh"
  491. b17.Scale = Vector3.new(1, 1, 0.400000006)
  492. p18 = Instance.new("WedgePart", m)
  493. p18.BrickColor = BrickColor.new("Institutional white")
  494. p18.Name = "BladePart1"
  495. p18.Material = Enum.Material.Concrete
  496. p18.Name = "Wedge"
  497. p18.FormFactor = Enum.FormFactor.Symmetric
  498. p18.Size = Vector3.new(1, 4, 2)
  499. 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)
  500. p18.CanCollide = false
  501. p18.Locked = true
  502. p18.BottomSurface = Enum.SurfaceType.Smooth
  503. p18.TopSurface = Enum.SurfaceType.Smooth
  504. b18 = Instance.new("SpecialMesh", p18)
  505. b18.MeshType = Enum.MeshType.Wedge
  506. b18.Name = "Mesh"
  507. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  508. p19 = Instance.new("WedgePart", m)
  509. p19.BrickColor = BrickColor.new("Institutional white")
  510. p19.Name = "BladePart2"
  511. p19.Material = Enum.Material.Concrete
  512. p19.Name = "Wedge"
  513. p19.FormFactor = Enum.FormFactor.Symmetric
  514. p19.Size = Vector3.new(1, 4, 2)
  515. 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)
  516. p19.CanCollide = false
  517. p19.Locked = true
  518. p19.BottomSurface = Enum.SurfaceType.Smooth
  519. p19.TopSurface = Enum.SurfaceType.Smooth
  520. b19 = Instance.new("SpecialMesh", p19)
  521. b19.MeshType = Enum.MeshType.Wedge
  522. b19.Name = "Mesh"
  523. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  524. p20 = Instance.new("Part", m)
  525. p20.BrickColor = BrickColor.new("Institutional white")
  526. p20.FormFactor = Enum.FormFactor.Custom
  527. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  528. 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)
  529. p20.CanCollide = false
  530. p20.Locked = true
  531. p20.Elasticity = 0
  532. p20.BottomSurface = Enum.SurfaceType.Smooth
  533. p20.TopSurface = Enum.SurfaceType.Smooth
  534. b20 = Instance.new("BlockMesh", p20)
  535. b20.Name = "Mesh"
  536. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  537. p21 = Instance.new("Part", m)
  538. p21.BrickColor = BrickColor.new("Bright red")
  539. p21.Material = "Neon"
  540. p21.FormFactor = Enum.FormFactor.Custom
  541. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  542. 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)
  543. p21.CanCollide = false
  544. p21.Locked = true
  545. p21.Elasticity = 0
  546. p21.BottomSurface = Enum.SurfaceType.Smooth
  547. p21.TopSurface = Enum.SurfaceType.Smooth
  548. b21 = Instance.new("SpecialMesh", p21)
  549. b21.MeshType = Enum.MeshType.Wedge
  550. b21.Name = "Mesh"
  551. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  552. w1 = Instance.new("Weld", p1)
  553. w1.Name = "Part_Weld"
  554. w1.Part0 = p1
  555. 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)
  556. w1.Part1 = p2
  557. 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)
  558. w2 = Instance.new("Weld", p2)
  559. w2.Name = "Part_Weld"
  560. w2.Part0 = p2
  561. 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)
  562. w2.Part1 = p3
  563. 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)
  564. w3 = Instance.new("Weld", p3)
  565. w3.Name = "Part_Weld"
  566. w3.Part0 = p3
  567. 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)
  568. w3.Part1 = p4
  569. 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)
  570. w4 = Instance.new("Weld", p4)
  571. w4.Name = "Part_Weld"
  572. w4.Part0 = p4
  573. 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)
  574. w4.Part1 = p5
  575. 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)
  576. w5 = Instance.new("Weld", p5)
  577. w5.Name = "Part_Weld"
  578. w5.Part0 = p5
  579. 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)
  580. w5.Part1 = p6
  581. 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)
  582. w6 = Instance.new("Weld", p6)
  583. w6.Name = "Part_Weld"
  584. w6.Part0 = p6
  585. 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)
  586. w6.Part1 = p7
  587. 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)
  588. w7 = Instance.new("Weld", p7)
  589. w7.Name = "Part_Weld"
  590. w7.Part0 = p7
  591. 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)
  592. w7.Part1 = p8
  593. 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)
  594. w8 = Instance.new("Weld", p8)
  595. w8.Name = "Part_Weld"
  596. w8.Part0 = p8
  597. 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)
  598. w8.Part1 = p9
  599. 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)
  600. w9 = Instance.new("Weld", p9)
  601. w9.Name = "Part_Weld"
  602. w9.Part0 = p9
  603. 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)
  604. w9.Part1 = p10
  605. 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)
  606. w10 = Instance.new("Weld", p10)
  607. w10.Name = "Part_Weld"
  608. w10.Part0 = p10
  609. 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)
  610. w10.Part1 = p11
  611. 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)
  612. w11 = Instance.new("Weld", p11)
  613. w11.Name = "Part_Weld"
  614. w11.Part0 = p11
  615. 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)
  616. w11.Part1 = p12
  617. 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)
  618. w12 = Instance.new("Weld", p12)
  619. w12.Name = "Part_Weld"
  620. w12.Part0 = p12
  621. 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)
  622. w12.Part1 = p13
  623. 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)
  624. w13 = Instance.new("Weld", p13)
  625. w13.Name = "Part_Weld"
  626. w13.Part0 = p13
  627. 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)
  628. w13.Part1 = p14
  629. 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)
  630. w14 = Instance.new("Weld", p14)
  631. w14.Name = "Part_Weld"
  632. w14.Part0 = p14
  633. 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)
  634. w14.Part1 = p15
  635. 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)
  636. w15 = Instance.new("Weld", p15)
  637. w15.Name = "Part_Weld"
  638. w15.Part0 = p15
  639. 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)
  640. w15.Part1 = p16
  641. 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)
  642. w16 = Instance.new("Weld", p16)
  643. w16.Name = "Part_Weld"
  644. w16.Part0 = p16
  645. 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)
  646. w16.Part1 = p17
  647. 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)
  648. w17 = Instance.new("Weld", p17)
  649. w17.Name = "Wedge_Weld"
  650. w17.Part0 = p17
  651. 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)
  652. w17.Part1 = p18
  653. 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)
  654. w18 = Instance.new("Weld", p18)
  655. w18.Name = "Wedge_Weld"
  656. w18.Part0 = p18
  657. 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)
  658. w18.Part1 = p19
  659. 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)
  660. w19 = Instance.new("Weld", p19)
  661. w19.Name = "Part_Weld"
  662. w19.Part0 = p19
  663. 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)
  664. w19.Part1 = p20
  665. 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)
  666. w20 = Instance.new("Weld", p20)
  667. w20.Name = "Part_Weld"
  668. w20.Part0 = p20
  669. 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)
  670. w20.Part1 = p21
  671. 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)
  672. m.Parent = char
  673. m:MakeJoints()
  674. ----------------------------------------------------
  675. CV="Institutional white"
  676.  
  677. local txt = Instance.new("BillboardGui", char)
  678. txt.Adornee = char .Orb
  679. txt.Name = "_status"
  680. txt.Size = UDim2.new(2, 0, 1.2, 0)
  681. txt.StudsOffset = Vector3.new(-2, 1.5, 0)
  682. local text = Instance.new("TextLabel", txt)
  683. text.Size = UDim2.new(3, 0, 0.5, 0)
  684. text.FontSize = "Size8"
  685. text.TextScaled = true
  686. text.TextTransparency = 0
  687. text.BackgroundTransparency = 1
  688. text.TextTransparency = 0
  689. text.TextStrokeTransparency = 0
  690. text.Font = "Arial"
  691. text.TextStrokeColor3 = Color3.new(0,0,0)
  692.  
  693. v=Instance.new("Part")
  694. v.Name = "ColorBrick"
  695. v.Parent=p.Character
  696. v.FormFactor="Symmetric"
  697. v.Anchored=true
  698. v.CanCollide=false
  699. v.BottomSurface="Smooth"
  700. v.TopSurface="Smooth"
  701. v.Size=Vector3.new(10,5,3)
  702. v.Transparency=0.7
  703. v.CFrame=char.Torso.CFrame
  704. v.BrickColor=BrickColor.new(CV)
  705. v.Transparency=1
  706. text.TextColor3 = v.BrickColor.Color
  707. v.Shape="Block"
  708. text.Text = "Phoenixox"
  709. ----------------------------------------------------
  710. local cor = Instance.new("Part", char.Absolution)
  711. cor.Name = "Thingy"
  712. cor.Locked = true
  713. cor.BottomSurface = 0
  714. cor.CanCollide = false
  715. cor.Size = Vector3.new(1, 13, 1)
  716. cor.Transparency = 1
  717. cor.TopSurface = 0
  718. corw = Instance.new("Weld", cor)
  719. corw.Part0 = rarm
  720. corw.Part1 = cor
  721. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  722. corw.C1 = CFrame.new(0, 0, 0)
  723. weld1 = Instance.new("Weld", char.Absolution)
  724. weld1.Part0 = cor
  725. weld1.Part1 = p6
  726. weld1.C0 = CFrame.new(0, 0, 0)
  727. ----------------------------------------------------
  728. hitb = Instance.new("Part", char.Absolution)
  729. hitb.Name = "Thingy2"
  730. hitb.Locked = true
  731. hitb.BottomSurface = 0
  732. hitb.CanCollide = false
  733. hitb.Size = Vector3.new(0, 8, 6)
  734. hitb.Transparency = 1
  735. hitb.TopSurface = 0
  736. weld2 = Instance.new("Weld", char.Absolution)
  737. weld2.Part0 = hitb
  738. weld2.Part1 = p12
  739. weld2.C0 = CFrame.new(0, .6, 1)
  740. ----------------------------------------------------
  741. local m = Instance.new("Model")
  742. m.Name = "Claw"
  743. p1 = Instance.new("Part", m)
  744. p1.BrickColor = BrickColor.new("")
  745. p1.FormFactor = Enum.FormFactor.Custom
  746. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  747. 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)
  748. p1.CanCollide = false
  749. p1.Locked = true
  750. p1.BottomSurface = Enum.SurfaceType.Smooth
  751. p1.TopSurface = Enum.SurfaceType.Smooth
  752. b1 = Instance.new("BlockMesh", p1)
  753. b1.Name = "Mesh"
  754. p2 = Instance.new("WedgePart", m)
  755. p2.BrickColor = BrickColor.new("Institutional white")
  756. p2.Name = "Wedge"
  757. p2.FormFactor = Enum.FormFactor.Custom
  758. p2.Size = Vector3.new(3, 1, 0.5)
  759. 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)
  760. p2.CanCollide = false
  761. p2.Locked = true
  762. p2.BottomSurface = Enum.SurfaceType.Smooth
  763. p2.TopSurface = Enum.SurfaceType.Smooth
  764. p3 = Instance.new("Part", m)
  765. p3.BrickColor = BrickColor.new("Institutional white")
  766. p3.FormFactor = Enum.FormFactor.Custom
  767. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  768. 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)
  769. p3.CanCollide = false
  770. p3.Locked = true
  771. p3.BottomSurface = Enum.SurfaceType.Smooth
  772. p3.TopSurface = Enum.SurfaceType.Smooth
  773. b2 = Instance.new("BlockMesh", p3)
  774. b2.Name = "Mesh"
  775. p4 = Instance.new("WedgePart", m)
  776. p4.BrickColor = BrickColor.new("Institutional white")
  777. p4.Name = "Wedge"
  778. p4.FormFactor = Enum.FormFactor.Custom
  779. p4.Size = Vector3.new(3, 1, 0.5)
  780. 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)
  781. p4.CanCollide = false
  782. p4.Locked = true
  783. p4.BottomSurface = Enum.SurfaceType.Smooth
  784. p4.TopSurface = Enum.SurfaceType.Smooth
  785. p5 = Instance.new("Part", m)
  786. p5.BrickColor = BrickColor.new("Institutional white")
  787. p5.FormFactor = Enum.FormFactor.Custom
  788. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  789. 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)
  790. p5.CanCollide = false
  791. p5.Locked = true
  792. p5.BottomSurface = Enum.SurfaceType.Smooth
  793. p5.TopSurface = Enum.SurfaceType.Smooth
  794. b3 = Instance.new("BlockMesh", p5)
  795. b3.Name = "Mesh"
  796. p6 = Instance.new("Part", m)
  797. p6.BrickColor = BrickColor.new("Institutional white")
  798. p6.FormFactor = Enum.FormFactor.Custom
  799. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  800. 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)
  801. p6.CanCollide = false
  802. p6.Locked = true
  803. p6.BottomSurface = Enum.SurfaceType.Smooth
  804. p6.TopSurface = Enum.SurfaceType.Smooth
  805. b4 = Instance.new("BlockMesh", p6)
  806. b4.Name = "Mesh"
  807. p7 = Instance.new("Part", m)
  808. p7.BrickColor = BrickColor.new("Institutional white")
  809. p7.FormFactor = Enum.FormFactor.Custom
  810. p7.Size = Vector3.new(3, 1, 1.20000005)
  811. 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)
  812. p7.CanCollide = false
  813. p7.Locked = true
  814. p7.BottomSurface = Enum.SurfaceType.Smooth
  815. p7.TopSurface = Enum.SurfaceType.Smooth
  816. b5 = Instance.new("BlockMesh", p7)
  817. b5.Name = "Mesh"
  818. p8 = Instance.new("Part", m)
  819. p8.BrickColor = BrickColor.new("Bright red")
  820. p8.Material = "Neon"
  821. p8.FormFactor = Enum.FormFactor.Symmetric
  822. p8.Size = Vector3.new(1, 1, 1)
  823. 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)
  824. p8.CanCollide = false
  825. p8.Locked = true
  826. b6 = Instance.new("SpecialMesh", p8)
  827. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  828. b6.TextureId = ""
  829. b6.MeshType = Enum.MeshType.FileMesh
  830. b6.Name = "Mesh"
  831. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  832. p9 = Instance.new("Part", m)
  833. p9.BrickColor = BrickColor.new("Institutional white")
  834. p9.FormFactor = Enum.FormFactor.Custom
  835. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  836. 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)
  837. p9.CanCollide = false
  838. p9.Locked = true
  839. p9.BottomSurface = Enum.SurfaceType.Smooth
  840. p9.TopSurface = Enum.SurfaceType.Smooth
  841. b7 = Instance.new("BlockMesh", p9)
  842. b7.Name = "Mesh"
  843. p10 = Instance.new("Part", m)
  844. p10.BrickColor = BrickColor.new("Bright red")
  845. p10.Material = "Neon"
  846. p10.FormFactor = Enum.FormFactor.Symmetric
  847. p10.Size = Vector3.new(1, 1, 1)
  848. 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)
  849. p10.CanCollide = false
  850. p10.Locked = true
  851. b8 = Instance.new("SpecialMesh", p10)
  852. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  853. b8.TextureId = ""
  854. b8.MeshType = Enum.MeshType.FileMesh
  855. b8.Name = "Mesh"
  856. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  857. p11 = Instance.new("Part", m)
  858. p11.BrickColor = BrickColor.new("Institutional white")
  859. p11.FormFactor = Enum.FormFactor.Custom
  860. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  861. 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)
  862. p11.CanCollide = false
  863. p11.Locked = true
  864. p11.BottomSurface = Enum.SurfaceType.Smooth
  865. p11.TopSurface = Enum.SurfaceType.Smooth
  866. b9 = Instance.new("BlockMesh", p11)
  867. b9.Name = "Mesh"
  868. p12 = Instance.new("Part", m)
  869. p12.BrickColor = BrickColor.new("Institutional white")
  870. p12.FormFactor = Enum.FormFactor.Custom
  871. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  872. 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)
  873. p12.CanCollide = false
  874. p12.Locked = true
  875. p12.BottomSurface = Enum.SurfaceType.Smooth
  876. p12.TopSurface = Enum.SurfaceType.Smooth
  877. b10 = Instance.new("BlockMesh", p12)
  878. b10.Name = "Mesh"
  879. p13 = Instance.new("Part", m)
  880. p13.BrickColor = BrickColor.new("Institutional white")
  881. p13.FormFactor = Enum.FormFactor.Custom
  882. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  883. 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)
  884. p13.CanCollide = false
  885. p13.Locked = true
  886. p13.BottomSurface = Enum.SurfaceType.Smooth
  887. p13.TopSurface = Enum.SurfaceType.Smooth
  888. b11 = Instance.new("BlockMesh", p13)
  889. b11.Name = "Mesh"
  890. p14 = Instance.new("Part", m)
  891. p14.BrickColor = BrickColor.new("Bright red")
  892. p14.Material = "Neon"
  893. p14.FormFactor = Enum.FormFactor.Symmetric
  894. p14.Size = Vector3.new(1, 1, 1)
  895. 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)
  896. p14.CanCollide = false
  897. p14.Locked = true
  898. b12 = Instance.new("SpecialMesh", p14)
  899. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  900. b12.TextureId = ""
  901. b12.MeshType = Enum.MeshType.FileMesh
  902. b12.Name = "Mesh"
  903. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  904. p15 = Instance.new("Part", m)
  905. p15.BrickColor = BrickColor.new("Institutional white")
  906. p15.Transparency = 1
  907. p15.Name = "ArmPart"
  908. p15.FormFactor = Enum.FormFactor.Custom
  909. p15.Size = Vector3.new(2, 1, 1)
  910. 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)
  911. p15.CanCollide = false
  912. p15.Locked = true
  913. p15.BottomSurface = Enum.SurfaceType.Smooth
  914. p15.TopSurface = Enum.SurfaceType.Smooth
  915. b13 = Instance.new("BlockMesh", p15)
  916. b13.Name = "Mesh"
  917. p16 = Instance.new("Part", m)
  918. p16.BrickColor = BrickColor.new("Institutional white")
  919. p16.FormFactor = Enum.FormFactor.Custom
  920. p16.Size = Vector3.new(3, 1, 2.4000001)
  921. 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)
  922. p16.CanCollide = false
  923. p16.Locked = true
  924. p16.BottomSurface = Enum.SurfaceType.Smooth
  925. p16.TopSurface = Enum.SurfaceType.Smooth
  926. b14 = Instance.new("BlockMesh", p16)
  927. b14.Name = "Mesh"
  928. p17 = Instance.new("Part", m)
  929. p17.BrickColor = BrickColor.new("Institutional white")
  930. p17.FormFactor = Enum.FormFactor.Custom
  931. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  932. 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)
  933. p17.CanCollide = false
  934. p17.Locked = true
  935. p17.BottomSurface = Enum.SurfaceType.Smooth
  936. p17.TopSurface = Enum.SurfaceType.Smooth
  937. b15 = Instance.new("BlockMesh", p17)
  938. b15.Name = "Mesh"
  939. p18 = Instance.new("Part", m)
  940. p18.BrickColor = BrickColor.new("Bright red")
  941. p18.Material = "Neon"
  942. p18.FormFactor = Enum.FormFactor.Symmetric
  943. p18.Size = Vector3.new(1, 1, 1)
  944. 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)
  945. p18.CanCollide = false
  946. p18.Locked = true
  947. b16 = Instance.new("SpecialMesh", p18)
  948. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  949. b16.TextureId = ""
  950. b16.MeshType = Enum.MeshType.FileMesh
  951. b16.Name = "Mesh"
  952. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  953. p19 = Instance.new("Part", m)
  954. p19.BrickColor = BrickColor.new("Bright red")
  955. p19.Material = "Neon"
  956. p19.FormFactor = Enum.FormFactor.Symmetric
  957. p19.Size = Vector3.new(1, 1, 1)
  958. 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)
  959. p19.CanCollide = false
  960. p19.Locked = true
  961. b17 = Instance.new("SpecialMesh", p19)
  962. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  963. b17.TextureId = ""
  964. b17.MeshType = Enum.MeshType.FileMesh
  965. b17.Name = "Mesh"
  966. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  967. p20 = Instance.new("Part", m)
  968. p20.BrickColor = BrickColor.new("Institutional white")
  969. p20.FormFactor = Enum.FormFactor.Custom
  970. p20.Size = Vector3.new(3, 1, 2.4000001)
  971. 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)
  972. p20.CanCollide = false
  973. p20.Locked = true
  974. p20.BottomSurface = Enum.SurfaceType.Smooth
  975. p20.TopSurface = Enum.SurfaceType.Smooth
  976. b18 = Instance.new("BlockMesh", p20)
  977. b18.Name = "Mesh"
  978. p21 = Instance.new("Part", m)
  979. p21.BrickColor = BrickColor.new("Institutional white")
  980. p21.FormFactor = Enum.FormFactor.Custom
  981. p21.Size = Vector3.new(3, 1, 1.19999993)
  982. 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)
  983. p21.CanCollide = false
  984. p21.Locked = true
  985. p21.BottomSurface = Enum.SurfaceType.Smooth
  986. p21.TopSurface = Enum.SurfaceType.Smooth
  987. b19 = Instance.new("BlockMesh", p21)
  988. b19.Name = "Mesh"
  989. p22 = Instance.new("WedgePart", m)
  990. p22.BrickColor = BrickColor.new("Institutional white")
  991. p22.Name = "Wedge"
  992. p22.FormFactor = Enum.FormFactor.Custom
  993. p22.Size = Vector3.new(3, 1, 0.5)
  994. 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)
  995. p22.CanCollide = false
  996. p22.Locked = true
  997. p22.BottomSurface = Enum.SurfaceType.Smooth
  998. p22.TopSurface = Enum.SurfaceType.Smooth
  999. p23 = Instance.new("Part", m)
  1000. p23.BrickColor = BrickColor.new("Institutional white")
  1001. p23.FormFactor = Enum.FormFactor.Custom
  1002. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1003. 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)
  1004. p23.CanCollide = false
  1005. p23.Locked = true
  1006. p23.BottomSurface = Enum.SurfaceType.Smooth
  1007. p23.TopSurface = Enum.SurfaceType.Smooth
  1008. b20 = Instance.new("BlockMesh", p23)
  1009. b20.Name = "Mesh"
  1010. p24 = Instance.new("WedgePart", m)
  1011. p24.BrickColor = BrickColor.new("Institutional white")
  1012. p24.Name = "Wedge"
  1013. p24.FormFactor = Enum.FormFactor.Custom
  1014. p24.Size = Vector3.new(3, 1, 0.5)
  1015. 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)
  1016. p24.CanCollide = false
  1017. p24.Locked = true
  1018. p24.BottomSurface = Enum.SurfaceType.Smooth
  1019. p24.TopSurface = Enum.SurfaceType.Smooth
  1020. p25 = Instance.new("Part", m)
  1021. p25.BrickColor = BrickColor.new("Bright red")
  1022. p25.Material = "Neon"
  1023. p25.FormFactor = Enum.FormFactor.Symmetric
  1024. p25.Size = Vector3.new(1, 1, 1)
  1025. 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)
  1026. p25.CanCollide = false
  1027. p25.Locked = true
  1028. p25.BottomSurface = Enum.SurfaceType.Smooth
  1029. p25.TopSurface = Enum.SurfaceType.Smooth
  1030. b21 = Instance.new("SpecialMesh", p25)
  1031. b21.MeshId = "http://www.roblox.com/asset/?id=363269577"
  1032. b21.TextureId = ""
  1033. b21.MeshType = Enum.MeshType.FileMesh
  1034. b21.Name = "Mesh"
  1035. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1036. p26 = Instance.new("Part", m)
  1037. p26.BrickColor = BrickColor.new("Institutional white")
  1038. p26.FormFactor = Enum.FormFactor.Symmetric
  1039. p26.Size = Vector3.new(1, 1, 1)
  1040. 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)
  1041. p26.CanCollide = false
  1042. p26.Locked = true
  1043. p26.BottomSurface = Enum.SurfaceType.Smooth
  1044. p26.TopSurface = Enum.SurfaceType.Smooth
  1045. b22 = Instance.new("SpecialMesh", p26)
  1046. b22.MeshType = Enum.MeshType.Brick
  1047. b22.Name = "Mesh"
  1048. w1 = Instance.new("Weld", p1)
  1049. w1.Name = "Wedge_Weld"
  1050. w1.Part0 = p1
  1051. 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)
  1052. w1.Part1 = p2
  1053. 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)
  1054. w2 = Instance.new("Weld", p2)
  1055. w2.Name = "Part_Weld"
  1056. w2.Part0 = p2
  1057. 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)
  1058. w2.Part1 = p3
  1059. 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)
  1060. w3 = Instance.new("Weld", p3)
  1061. w3.Name = "Wedge_Weld"
  1062. w3.Part0 = p3
  1063. 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)
  1064. w3.Part1 = p4
  1065. 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)
  1066. w4 = Instance.new("Weld", p4)
  1067. w4.Name = "Part_Weld"
  1068. w4.Part0 = p4
  1069. 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)
  1070. w4.Part1 = p5
  1071. 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)
  1072. w5 = Instance.new("Weld", p5)
  1073. w5.Name = "Part_Weld"
  1074. w5.Part0 = p5
  1075. 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)
  1076. w5.Part1 = p6
  1077. 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)
  1078. w6 = Instance.new("Weld", p6)
  1079. w6.Name = "Part_Weld"
  1080. w6.Part0 = p6
  1081. 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)
  1082. w6.Part1 = p7
  1083. 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)
  1084. w7 = Instance.new("Weld", p7)
  1085. w7.Name = "Part_Weld"
  1086. w7.Part0 = p7
  1087. 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)
  1088. w7.Part1 = p8
  1089. 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)
  1090. w8 = Instance.new("Weld", p8)
  1091. w8.Name = "Part_Weld"
  1092. w8.Part0 = p8
  1093. 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)
  1094. w8.Part1 = p9
  1095. 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)
  1096. w9 = Instance.new("Weld", p9)
  1097. w9.Name = "Part_Weld"
  1098. w9.Part0 = p9
  1099. 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)
  1100. w9.Part1 = p10
  1101. 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)
  1102. w10 = Instance.new("Weld", p10)
  1103. w10.Name = "Part_Weld"
  1104. w10.Part0 = p10
  1105. 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)
  1106. w10.Part1 = p11
  1107. 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)
  1108. w11 = Instance.new("Weld", p11)
  1109. w11.Name = "Part_Weld"
  1110. w11.Part0 = p11
  1111. 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)
  1112. w11.Part1 = p12
  1113. 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)
  1114. w12 = Instance.new("Weld", p12)
  1115. w12.Name = "Part_Weld"
  1116. w12.Part0 = p12
  1117. 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)
  1118. w12.Part1 = p13
  1119. 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)
  1120. w13 = Instance.new("Weld", p13)
  1121. w13.Name = "Part_Weld"
  1122. w13.Part0 = p13
  1123. 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)
  1124. w13.Part1 = p14
  1125. 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)
  1126. w14 = Instance.new("Weld", p14)
  1127. w14.Name = "ArmPart_Weld"
  1128. w14.Part0 = p14
  1129. 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)
  1130. w14.Part1 = p15
  1131. 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)
  1132. w15 = Instance.new("Weld", p15)
  1133. w15.Name = "Part_Weld"
  1134. w15.Part0 = p15
  1135. 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)
  1136. w15.Part1 = p16
  1137. 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)
  1138. w16 = Instance.new("Weld", p16)
  1139. w16.Name = "Part_Weld"
  1140. w16.Part0 = p16
  1141. 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)
  1142. w16.Part1 = p17
  1143. 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)
  1144. w17 = Instance.new("Weld", p17)
  1145. w17.Name = "Part_Weld"
  1146. w17.Part0 = p17
  1147. 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)
  1148. w17.Part1 = p18
  1149. 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)
  1150. w18 = Instance.new("Weld", p18)
  1151. w18.Name = "Part_Weld"
  1152. w18.Part0 = p18
  1153. 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)
  1154. w18.Part1 = p19
  1155. 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)
  1156. w19 = Instance.new("Weld", p19)
  1157. w19.Name = "Part_Weld"
  1158. w19.Part0 = p19
  1159. 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)
  1160. w19.Part1 = p20
  1161. 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)
  1162. w20 = Instance.new("Weld", p20)
  1163. w20.Name = "Part_Weld"
  1164. w20.Part0 = p20
  1165. 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)
  1166. w20.Part1 = p21
  1167. 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)
  1168. w21 = Instance.new("Weld", p21)
  1169. w21.Name = "Wedge_Weld"
  1170. w21.Part0 = p21
  1171. 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)
  1172. w21.Part1 = p22
  1173. 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)
  1174. w22 = Instance.new("Weld", p22)
  1175. w22.Name = "Part_Weld"
  1176. w22.Part0 = p22
  1177. 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)
  1178. w22.Part1 = p23
  1179. 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)
  1180. w23 = Instance.new("Weld", p23)
  1181. w23.Name = "Wedge_Weld"
  1182. w23.Part0 = p23
  1183. 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)
  1184. w23.Part1 = p24
  1185. 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)
  1186. w24 = Instance.new("Weld", p24)
  1187. w24.Name = "Part_Weld"
  1188. w24.Part0 = p24
  1189. 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)
  1190. w24.Part1 = p25
  1191. 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)
  1192. w25 = Instance.new("Weld", p25)
  1193. w25.Name = "Part_Weld"
  1194. w25.Part0 = p25
  1195. 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)
  1196. w25.Part1 = p26
  1197. 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)
  1198. m.Parent = char
  1199. m:MakeJoints()
  1200. ----------------------------------------------------
  1201. local cor2 = Instance.new("Part", char.Claw)
  1202. cor2.Name = "Thingy"
  1203. cor2.Locked = true
  1204. cor2.BottomSurface = 0
  1205. cor2.CanCollide = false
  1206. cor2.Size = Vector3.new(2, 1, 1)
  1207. cor2.Transparency = 1
  1208. cor2.TopSurface = 0
  1209. corw2 = Instance.new("Weld", cor2)
  1210. corw2.Part0 = larm
  1211. corw2.Part1 = cor2
  1212. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1213. corw2.C1 = CFrame.new(0, 0, 0)
  1214. weld2 = Instance.new("Weld", char.Claw)
  1215. weld2.Part0 = cor2
  1216. weld2.Part1 = char.Claw.ArmPart
  1217. weld2.C0 = CFrame.new(0, 0, 0)
  1218. ----------------------------------------------------
  1219. local m = Instance.new("Model")
  1220. m.Name = "LeftArm"
  1221. p1 = Instance.new("WedgePart", m)
  1222. p1.BrickColor = BrickColor.new("Bright red")
  1223. p1.Material = Enum.Material.Neon
  1224. p1.Name = "Wedge"
  1225. p1.FormFactor = Enum.FormFactor.Custom
  1226. p1.Size = Vector3.new(1, 1.19999981, 4)
  1227. 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)
  1228. p1.CanCollide = false
  1229. p1.Locked = true
  1230. p1.TopSurface = Enum.SurfaceType.Smooth
  1231. b1 = Instance.new("SpecialMesh", p1)
  1232. b1.MeshType = Enum.MeshType.Wedge
  1233. b1.Name = "Mesh"
  1234. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1235. p2 = Instance.new("WedgePart", m)
  1236. p2.BrickColor = BrickColor.new("Bright red")
  1237. p2.Material = Enum.Material.Neon
  1238. p2.Name = "Wedge"
  1239. p2.FormFactor = Enum.FormFactor.Custom
  1240. p2.Size = Vector3.new(1, 1.19999981, 4)
  1241. 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)
  1242. p2.CanCollide = false
  1243. p2.Locked = true
  1244. p2.TopSurface = Enum.SurfaceType.Smooth
  1245. b2 = Instance.new("SpecialMesh", p2)
  1246. b2.MeshType = Enum.MeshType.Wedge
  1247. b2.Name = "Mesh"
  1248. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1249. p3 = Instance.new("WedgePart", m)
  1250. p3.BrickColor = BrickColor.new("Bright red")
  1251. p3.Material = Enum.Material.Neon
  1252. p3.Name = "Wedge"
  1253. p3.FormFactor = Enum.FormFactor.Custom
  1254. p3.Size = Vector3.new(1, 1.19999981, 4)
  1255. 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)
  1256. p3.CanCollide = false
  1257. p3.Locked = true
  1258. p3.TopSurface = Enum.SurfaceType.Smooth
  1259. b3 = Instance.new("SpecialMesh", p3)
  1260. b3.MeshType = Enum.MeshType.Wedge
  1261. b3.Name = "Mesh"
  1262. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1263. p4 = Instance.new("WedgePart", m)
  1264. p4.BrickColor = BrickColor.new("Bright red")
  1265. p4.Material = Enum.Material.Neon
  1266. p4.Name = "Wedge"
  1267. p4.FormFactor = Enum.FormFactor.Custom
  1268. p4.Size = Vector3.new(1, 1.19999981, 4)
  1269. 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)
  1270. p4.CanCollide = false
  1271. p4.Locked = true
  1272. p4.TopSurface = Enum.SurfaceType.Smooth
  1273. b4 = Instance.new("SpecialMesh", p4)
  1274. b4.MeshType = Enum.MeshType.Wedge
  1275. b4.Name = "Mesh"
  1276. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1277. p5 = Instance.new("WedgePart", m)
  1278. p5.BrickColor = BrickColor.new("Bright red")
  1279. p5.Material = Enum.Material.Neon
  1280. p5.Name = "Wedge"
  1281. p5.FormFactor = Enum.FormFactor.Custom
  1282. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1283. 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)
  1284. p5.CanCollide = false
  1285. p5.Locked = true
  1286. p5.TopSurface = Enum.SurfaceType.Smooth
  1287. b5 = Instance.new("SpecialMesh", p5)
  1288. b5.MeshType = Enum.MeshType.Wedge
  1289. b5.Name = "Mesh"
  1290. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1291. p6 = Instance.new("WedgePart", m)
  1292. p6.BrickColor = BrickColor.new("Bright red")
  1293. p6.Material = Enum.Material.Neon
  1294. p6.Name = "Wedge"
  1295. p6.FormFactor = Enum.FormFactor.Custom
  1296. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1297. 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)
  1298. p6.CanCollide = false
  1299. p6.Locked = true
  1300. p6.TopSurface = Enum.SurfaceType.Smooth
  1301. b6 = Instance.new("SpecialMesh", p6)
  1302. b6.MeshType = Enum.MeshType.Wedge
  1303. b6.Name = "Mesh"
  1304. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1305. p7 = Instance.new("WedgePart", m)
  1306. p7.BrickColor = BrickColor.new("Bright red")
  1307. p7.Material = Enum.Material.Neon
  1308. p7.Name = "Wedge"
  1309. p7.FormFactor = Enum.FormFactor.Custom
  1310. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1311. 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)
  1312. p7.CanCollide = false
  1313. p7.Locked = true
  1314. p7.TopSurface = Enum.SurfaceType.Smooth
  1315. b7 = Instance.new("SpecialMesh", p7)
  1316. b7.MeshType = Enum.MeshType.Wedge
  1317. b7.Name = "Mesh"
  1318. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1319. p8 = Instance.new("Part", m)
  1320. p8.BrickColor = BrickColor.new("Institutional white")
  1321. p8.Material = Enum.Material.Neon
  1322. p8.FormFactor = Enum.FormFactor.Custom
  1323. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1324. 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)
  1325. p8.CanCollide = false
  1326. p8.Locked = true
  1327. p8.BottomSurface = Enum.SurfaceType.Smooth
  1328. p8.TopSurface = Enum.SurfaceType.Smooth
  1329. b8 = Instance.new("SpecialMesh", p8)
  1330. b8.MeshType = Enum.MeshType.Sphere
  1331. b8.Name = "Mesh"
  1332. p9 = Instance.new("Part", m)
  1333. p9.BrickColor = BrickColor.new("Institutional white")
  1334. p9.Material = Enum.Material.Neon
  1335. p9.FormFactor = Enum.FormFactor.Custom
  1336. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1337. 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)
  1338. p9.CanCollide = false
  1339. p9.Locked = true
  1340. p9.BottomSurface = Enum.SurfaceType.Smooth
  1341. p9.TopSurface = Enum.SurfaceType.Smooth
  1342. b9 = Instance.new("SpecialMesh", p9)
  1343. b9.MeshType = Enum.MeshType.Sphere
  1344. b9.Name = "Mesh"
  1345. p10 = Instance.new("Part", m)
  1346. p10.BrickColor = BrickColor.new("Bright red")
  1347. p10.Material = Enum.Material.Neon
  1348. p10.FormFactor = Enum.FormFactor.Custom
  1349. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1350. 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)
  1351. p10.CanCollide = false
  1352. p10.Locked = true
  1353. p10.BottomSurface = Enum.SurfaceType.Smooth
  1354. p10.TopSurface = Enum.SurfaceType.Smooth
  1355. p11 = Instance.new("Part", m)
  1356. p11.BrickColor = BrickColor.new("Bright red")
  1357. p11.Material = Enum.Material.Neon
  1358. p11.FormFactor = Enum.FormFactor.Custom
  1359. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1360. 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)
  1361. p11.CanCollide = false
  1362. p11.Locked = true
  1363. p11.BottomSurface = Enum.SurfaceType.Smooth
  1364. p11.TopSurface = Enum.SurfaceType.Smooth
  1365. p12 = Instance.new("Part", m)
  1366. p12.BrickColor = BrickColor.new("Institutional white")
  1367. p12.Material = Enum.Material.Neon
  1368. p12.FormFactor = Enum.FormFactor.Custom
  1369. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1370. 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)
  1371. p12.CanCollide = false
  1372. p12.Locked = true
  1373. p12.BottomSurface = Enum.SurfaceType.Smooth
  1374. p12.TopSurface = Enum.SurfaceType.Smooth
  1375. b10 = Instance.new("SpecialMesh", p12)
  1376. b10.MeshType = Enum.MeshType.Sphere
  1377. b10.Name = "Mesh"
  1378. p13 = Instance.new("Part", m)
  1379. p13.BrickColor = BrickColor.new("Bright red")
  1380. p13.Material = Enum.Material.Neon
  1381. p13.FormFactor = Enum.FormFactor.Custom
  1382. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1383. 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)
  1384. p13.CanCollide = false
  1385. p13.Locked = true
  1386. p13.BottomSurface = Enum.SurfaceType.Smooth
  1387. p13.TopSurface = Enum.SurfaceType.Smooth
  1388. b11 = Instance.new("SpecialMesh", p13)
  1389. b11.MeshType = Enum.MeshType.Sphere
  1390. b11.Name = "Mesh"
  1391. p14 = Instance.new("Part", m)
  1392. p14.BrickColor = BrickColor.new("Institutional white")
  1393. p14.Material = Enum.Material.Neon
  1394. p14.FormFactor = Enum.FormFactor.Custom
  1395. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1396. 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)
  1397. p14.CanCollide = false
  1398. p14.Locked = true
  1399. p14.BottomSurface = Enum.SurfaceType.Smooth
  1400. p14.TopSurface = Enum.SurfaceType.Smooth
  1401. b12 = Instance.new("SpecialMesh", p14)
  1402. b12.MeshType = Enum.MeshType.Sphere
  1403. b12.Name = "Mesh"
  1404. p15 = Instance.new("Part", m)
  1405. p15.BrickColor = BrickColor.new("Institutional white")
  1406. p15.Material = Enum.Material.Metal
  1407. p15.Name = "Main"
  1408. p15.FormFactor = Enum.FormFactor.Custom
  1409. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1410. 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)
  1411. p15.CanCollide = false
  1412. p15.Locked = true
  1413. p15.BottomSurface = Enum.SurfaceType.Smooth
  1414. p15.TopSurface = Enum.SurfaceType.Smooth
  1415. p16 = Instance.new("Part", m)
  1416. p16.BrickColor = BrickColor.new("Institutional white")
  1417. p16.Material = Enum.Material.Neon
  1418. p16.FormFactor = Enum.FormFactor.Custom
  1419. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1420. 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)
  1421. p16.CanCollide = false
  1422. p16.Locked = true
  1423. p16.BottomSurface = Enum.SurfaceType.Smooth
  1424. p16.TopSurface = Enum.SurfaceType.Smooth
  1425. b13 = Instance.new("SpecialMesh", p16)
  1426. b13.MeshType = Enum.MeshType.Sphere
  1427. b13.Name = "Mesh"
  1428. p17 = Instance.new("Part", m)
  1429. p17.BrickColor = BrickColor.new("Bright red")
  1430. p17.Material = Enum.Material.Neon
  1431. p17.FormFactor = Enum.FormFactor.Custom
  1432. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1433. 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)
  1434. p17.CanCollide = false
  1435. p17.Locked = true
  1436. p17.BottomSurface = Enum.SurfaceType.Smooth
  1437. p17.TopSurface = Enum.SurfaceType.Smooth
  1438. p18 = Instance.new("Part", m)
  1439. p18.BrickColor = BrickColor.new("Bright red")
  1440. p18.Material = Enum.Material.Neon
  1441. p18.FormFactor = Enum.FormFactor.Custom
  1442. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1443. 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)
  1444. p18.CanCollide = false
  1445. p18.Locked = true
  1446. p18.BottomSurface = Enum.SurfaceType.Smooth
  1447. p18.TopSurface = Enum.SurfaceType.Smooth
  1448. p19 = Instance.new("Part", m)
  1449. p19.BrickColor = BrickColor.new("Bright red")
  1450. p19.Material = Enum.Material.Neon
  1451. p19.FormFactor = Enum.FormFactor.Custom
  1452. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1453. 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)
  1454. p19.CanCollide = false
  1455. p19.Locked = true
  1456. p19.BottomSurface = Enum.SurfaceType.Smooth
  1457. p19.TopSurface = Enum.SurfaceType.Smooth
  1458. p20 = Instance.new("Part", m)
  1459. p20.BrickColor = BrickColor.new("Bright red")
  1460. p20.Material = Enum.Material.Neon
  1461. p20.FormFactor = Enum.FormFactor.Custom
  1462. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1463. 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)
  1464. p20.CanCollide = false
  1465. p20.Locked = true
  1466. p20.BottomSurface = Enum.SurfaceType.Smooth
  1467. p20.TopSurface = Enum.SurfaceType.Smooth
  1468. p21 = Instance.new("Part", m)
  1469. p21.BrickColor = BrickColor.new("Bright red")
  1470. p21.Material = Enum.Material.Neon
  1471. p21.FormFactor = Enum.FormFactor.Custom
  1472. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1473. 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)
  1474. p21.CanCollide = false
  1475. p21.Locked = true
  1476. p21.BottomSurface = Enum.SurfaceType.Smooth
  1477. p21.TopSurface = Enum.SurfaceType.Smooth
  1478. p22 = Instance.new("Part", m)
  1479. p22.BrickColor = BrickColor.new("Institutional white")
  1480. p22.Material = Enum.Material.Neon
  1481. p22.FormFactor = Enum.FormFactor.Custom
  1482. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1483. 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)
  1484. p22.CanCollide = false
  1485. p22.Locked = true
  1486. p22.BottomSurface = Enum.SurfaceType.Smooth
  1487. p22.TopSurface = Enum.SurfaceType.Smooth
  1488. b14 = Instance.new("SpecialMesh", p22)
  1489. b14.MeshType = Enum.MeshType.Sphere
  1490. b14.Name = "Mesh"
  1491. p23 = Instance.new("Part", m)
  1492. p23.BrickColor = BrickColor.new("Institutional white")
  1493. p23.Material = Enum.Material.Neon
  1494. p23.FormFactor = Enum.FormFactor.Custom
  1495. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1496. 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)
  1497. p23.CanCollide = false
  1498. p23.Locked = true
  1499. p23.BottomSurface = Enum.SurfaceType.Smooth
  1500. p23.TopSurface = Enum.SurfaceType.Smooth
  1501. b15 = Instance.new("SpecialMesh", p23)
  1502. b15.MeshType = Enum.MeshType.Sphere
  1503. b15.Name = "Mesh"
  1504. p24 = Instance.new("Part", m)
  1505. p24.BrickColor = BrickColor.new("Institutional white")
  1506. p24.Material = Enum.Material.Neon
  1507. p24.FormFactor = Enum.FormFactor.Custom
  1508. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1509. 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)
  1510. p24.CanCollide = false
  1511. p24.Locked = true
  1512. p24.BottomSurface = Enum.SurfaceType.Smooth
  1513. p24.TopSurface = Enum.SurfaceType.Smooth
  1514. b16 = Instance.new("SpecialMesh", p24)
  1515. b16.MeshType = Enum.MeshType.Sphere
  1516. b16.Name = "Mesh"
  1517. w1 = Instance.new("Weld", p1)
  1518. w1.Name = "Wedge_Weld"
  1519. w1.Part0 = p1
  1520. 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)
  1521. w1.Part1 = p2
  1522. 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)
  1523. w2 = Instance.new("Weld", p2)
  1524. w2.Name = "Wedge_Weld"
  1525. w2.Part0 = p2
  1526. 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)
  1527. w2.Part1 = p3
  1528. 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)
  1529. w3 = Instance.new("Weld", p3)
  1530. w3.Name = "Wedge_Weld"
  1531. w3.Part0 = p3
  1532. 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)
  1533. w3.Part1 = p4
  1534. 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)
  1535. w4 = Instance.new("Weld", p4)
  1536. w4.Name = "Wedge_Weld"
  1537. w4.Part0 = p4
  1538. 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)
  1539. w4.Part1 = p5
  1540. 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)
  1541. w5 = Instance.new("Weld", p5)
  1542. w5.Name = "Wedge_Weld"
  1543. w5.Part0 = p5
  1544. 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)
  1545. w5.Part1 = p6
  1546. 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)
  1547. w6 = Instance.new("Weld", p6)
  1548. w6.Name = "Wedge_Weld"
  1549. w6.Part0 = p6
  1550. 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)
  1551. w6.Part1 = p7
  1552. 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)
  1553. w7 = Instance.new("Weld", p7)
  1554. w7.Name = "Part_Weld"
  1555. w7.Part0 = p7
  1556. 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)
  1557. w7.Part1 = p8
  1558. 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)
  1559. w8 = Instance.new("Weld", p8)
  1560. w8.Name = "Part_Weld"
  1561. w8.Part0 = p8
  1562. 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)
  1563. w8.Part1 = p9
  1564. 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)
  1565. w9 = Instance.new("Weld", p9)
  1566. w9.Name = "Part_Weld"
  1567. w9.Part0 = p9
  1568. 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)
  1569. w9.Part1 = p10
  1570. 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)
  1571. w10 = Instance.new("Weld", p10)
  1572. w10.Name = "Part_Weld"
  1573. w10.Part0 = p10
  1574. 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)
  1575. w10.Part1 = p11
  1576. 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)
  1577. w11 = Instance.new("Weld", p11)
  1578. w11.Name = "Part_Weld"
  1579. w11.Part0 = p11
  1580. 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)
  1581. w11.Part1 = p12
  1582. 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)
  1583. w12 = Instance.new("Weld", p12)
  1584. w12.Name = "Part_Weld"
  1585. w12.Part0 = p12
  1586. 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)
  1587. w12.Part1 = p13
  1588. 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)
  1589. w13 = Instance.new("Weld", p13)
  1590. w13.Name = "Part_Weld"
  1591. w13.Part0 = p13
  1592. 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)
  1593. w13.Part1 = p14
  1594. 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)
  1595. w14 = Instance.new("Weld", p14)
  1596. w14.Name = "Part_Weld"
  1597. w14.Part0 = p14
  1598. 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)
  1599. w14.Part1 = p15
  1600. 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)
  1601. w15 = Instance.new("Weld", p15)
  1602. w15.Name = "Part_Weld"
  1603. w15.Part0 = p15
  1604. 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)
  1605. w15.Part1 = p16
  1606. 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)
  1607. w16 = Instance.new("Weld", p16)
  1608. w16.Name = "Part_Weld"
  1609. w16.Part0 = p16
  1610. 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)
  1611. w16.Part1 = p17
  1612. 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)
  1613. w17 = Instance.new("Weld", p17)
  1614. w17.Name = "Part_Weld"
  1615. w17.Part0 = p17
  1616. 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)
  1617. w17.Part1 = p18
  1618. 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)
  1619. w18 = Instance.new("Weld", p18)
  1620. w18.Name = "Part_Weld"
  1621. w18.Part0 = p18
  1622. 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)
  1623. w18.Part1 = p19
  1624. 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)
  1625. w19 = Instance.new("Weld", p19)
  1626. w19.Name = "Part_Weld"
  1627. w19.Part0 = p19
  1628. 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)
  1629. w19.Part1 = p20
  1630. 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)
  1631. w20 = Instance.new("Weld", p20)
  1632. w20.Name = "Part_Weld"
  1633. w20.Part0 = p20
  1634. 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)
  1635. w20.Part1 = p21
  1636. 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)
  1637. w21 = Instance.new("Weld", p21)
  1638. w21.Name = "Part_Weld"
  1639. w21.Part0 = p21
  1640. 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)
  1641. w21.Part1 = p22
  1642. 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)
  1643. w22 = Instance.new("Weld", p22)
  1644. w22.Name = "Part_Weld"
  1645. w22.Part0 = p22
  1646. 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)
  1647. w22.Part1 = p23
  1648. 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)
  1649. w23 = Instance.new("Weld", p23)
  1650. w23.Name = "Part_Weld"
  1651. w23.Part0 = p23
  1652. 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)
  1653. w23.Part1 = p24
  1654. 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)
  1655. w24 = Instance.new("Weld", p24)
  1656. w24.Name = "Part_Weld"
  1657. w24.Part0 = p24
  1658. 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)
  1659. m.Parent = larm
  1660. m:MakeJoints()
  1661. ----------------------------------------------------
  1662. local cor3 = Instance.new("Part", larm.LeftArm)
  1663. cor3.Name = "Thingy"
  1664. cor3.Locked = true
  1665. cor3.BottomSurface = 0
  1666. cor3.CanCollide = false
  1667. cor3.Size = Vector3.new(2, 1, 1)
  1668. cor3.Transparency = 1
  1669. cor3.TopSurface = 0
  1670. corw2 = Instance.new("Weld", cor3)
  1671. corw2.Part0 = larm
  1672. corw2.Part1 = cor3
  1673. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1674. corw2.C1 = CFrame.new(0, 0, 0)
  1675. weld2 = Instance.new("Weld", larm.LeftArm)
  1676. weld2.Part0 = cor3
  1677. weld2.Part1 = p15
  1678. weld2.C0 = CFrame.new(0, 0, 0)
  1679. ----------------------------------------------------
  1680. local m = Instance.new("Model")
  1681. m.Name = "RightArm"
  1682. p1 = Instance.new("WedgePart", m)
  1683. p1.BrickColor = BrickColor.new("Bright red")
  1684. p1.Material = Enum.Material.Neon
  1685. p1.Name = "Wedge"
  1686. p1.FormFactor = Enum.FormFactor.Custom
  1687. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1688. 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)
  1689. p1.CanCollide = false
  1690. p1.Locked = true
  1691. p1.TopSurface = Enum.SurfaceType.Smooth
  1692. b1 = Instance.new("SpecialMesh", p1)
  1693. b1.MeshType = Enum.MeshType.Wedge
  1694. b1.Name = "Mesh"
  1695. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1696. p2 = Instance.new("WedgePart", m)
  1697. p2.BrickColor = BrickColor.new("Bright red")
  1698. p2.Material = Enum.Material.Neon
  1699. p2.Name = "Wedge"
  1700. p2.FormFactor = Enum.FormFactor.Custom
  1701. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1702. 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)
  1703. p2.CanCollide = false
  1704. p2.Locked = true
  1705. p2.TopSurface = Enum.SurfaceType.Smooth
  1706. b2 = Instance.new("SpecialMesh", p2)
  1707. b2.MeshType = Enum.MeshType.Wedge
  1708. b2.Name = "Mesh"
  1709. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1710. p3 = Instance.new("WedgePart", m)
  1711. p3.BrickColor = BrickColor.new("Bright red")
  1712. p3.Material = Enum.Material.Neon
  1713. p3.Name = "Wedge"
  1714. p3.FormFactor = Enum.FormFactor.Custom
  1715. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1716. 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)
  1717. p3.CanCollide = false
  1718. p3.Locked = true
  1719. p3.TopSurface = Enum.SurfaceType.Smooth
  1720. b3 = Instance.new("SpecialMesh", p3)
  1721. b3.MeshType = Enum.MeshType.Wedge
  1722. b3.Name = "Mesh"
  1723. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1724. p4 = Instance.new("WedgePart", m)
  1725. p4.BrickColor = BrickColor.new("Bright red")
  1726. p4.Material = Enum.Material.Neon
  1727. p4.Name = "Wedge"
  1728. p4.FormFactor = Enum.FormFactor.Custom
  1729. p4.Size = Vector3.new(1, 1.19999981, 4)
  1730. 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)
  1731. p4.CanCollide = false
  1732. p4.Locked = true
  1733. p4.TopSurface = Enum.SurfaceType.Smooth
  1734. b4 = Instance.new("SpecialMesh", p4)
  1735. b4.MeshType = Enum.MeshType.Wedge
  1736. b4.Name = "Mesh"
  1737. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1738. p5 = Instance.new("WedgePart", m)
  1739. p5.BrickColor = BrickColor.new("Bright red")
  1740. p5.Material = Enum.Material.Neon
  1741. p5.Name = "Wedge"
  1742. p5.FormFactor = Enum.FormFactor.Custom
  1743. p5.Size = Vector3.new(1, 1.19999981, 4)
  1744. 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)
  1745. p5.CanCollide = false
  1746. p5.Locked = true
  1747. p5.TopSurface = Enum.SurfaceType.Smooth
  1748. b5 = Instance.new("SpecialMesh", p5)
  1749. b5.MeshType = Enum.MeshType.Wedge
  1750. b5.Name = "Mesh"
  1751. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1752. p6 = Instance.new("WedgePart", m)
  1753. p6.BrickColor = BrickColor.new("Bright red")
  1754. p6.Material = Enum.Material.Neon
  1755. p6.Name = "Wedge"
  1756. p6.FormFactor = Enum.FormFactor.Custom
  1757. p6.Size = Vector3.new(1, 1.19999981, 4)
  1758. 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)
  1759. p6.CanCollide = false
  1760. p6.Locked = true
  1761. p6.TopSurface = Enum.SurfaceType.Smooth
  1762. b6 = Instance.new("SpecialMesh", p6)
  1763. b6.MeshType = Enum.MeshType.Wedge
  1764. b6.Name = "Mesh"
  1765. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1766. p7 = Instance.new("Part", m)
  1767. p7.BrickColor = BrickColor.new("Institutional white")
  1768. p7.Material = Enum.Material.Neon
  1769. p7.FormFactor = Enum.FormFactor.Custom
  1770. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1771. 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)
  1772. p7.CanCollide = false
  1773. p7.Locked = true
  1774. p7.BottomSurface = Enum.SurfaceType.Smooth
  1775. p7.TopSurface = Enum.SurfaceType.Smooth
  1776. b7 = Instance.new("SpecialMesh", p7)
  1777. b7.MeshType = Enum.MeshType.Sphere
  1778. b7.Name = "Mesh"
  1779. p8 = Instance.new("Part", m)
  1780. p8.BrickColor = BrickColor.new("Bright red")
  1781. p8.Material = Enum.Material.Neon
  1782. p8.FormFactor = Enum.FormFactor.Custom
  1783. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1784. 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)
  1785. p8.CanCollide = false
  1786. p8.Locked = true
  1787. p8.BottomSurface = Enum.SurfaceType.Smooth
  1788. p8.TopSurface = Enum.SurfaceType.Smooth
  1789. p9 = Instance.new("Part", m)
  1790. p9.BrickColor = BrickColor.new("Institutional white")
  1791. p9.Material = Enum.Material.Neon
  1792. p9.FormFactor = Enum.FormFactor.Custom
  1793. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1794. 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)
  1795. p9.CanCollide = false
  1796. p9.Locked = true
  1797. p9.BottomSurface = Enum.SurfaceType.Smooth
  1798. p9.TopSurface = Enum.SurfaceType.Smooth
  1799. b8 = Instance.new("SpecialMesh", p9)
  1800. b8.MeshType = Enum.MeshType.Sphere
  1801. b8.Name = "Mesh"
  1802. p10 = Instance.new("Part", m)
  1803. p10.BrickColor = BrickColor.new("Institutional white")
  1804. p10.Material = Enum.Material.Neon
  1805. p10.FormFactor = Enum.FormFactor.Custom
  1806. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1807. 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)
  1808. p10.CanCollide = false
  1809. p10.Locked = true
  1810. p10.BottomSurface = Enum.SurfaceType.Smooth
  1811. p10.TopSurface = Enum.SurfaceType.Smooth
  1812. b9 = Instance.new("SpecialMesh", p10)
  1813. b9.MeshType = Enum.MeshType.Sphere
  1814. b9.Name = "Mesh"
  1815. p11 = Instance.new("Part", m)
  1816. p11.BrickColor = BrickColor.new("Bright red")
  1817. p11.Material = Enum.Material.Neon
  1818. p11.FormFactor = Enum.FormFactor.Custom
  1819. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1820. 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)
  1821. p11.CanCollide = false
  1822. p11.Locked = true
  1823. p11.BottomSurface = Enum.SurfaceType.Smooth
  1824. p11.TopSurface = Enum.SurfaceType.Smooth
  1825. p12 = Instance.new("Part", m)
  1826. p12.BrickColor = BrickColor.new("Bright red")
  1827. p12.Material = Enum.Material.Neon
  1828. p12.FormFactor = Enum.FormFactor.Custom
  1829. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1830. 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)
  1831. p12.CanCollide = false
  1832. p12.Locked = true
  1833. p12.BottomSurface = Enum.SurfaceType.Smooth
  1834. p12.TopSurface = Enum.SurfaceType.Smooth
  1835. p13 = Instance.new("Part", m)
  1836. p13.BrickColor = BrickColor.new("Bright red")
  1837. p13.Material = Enum.Material.Neon
  1838. p13.FormFactor = Enum.FormFactor.Custom
  1839. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1840. 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)
  1841. p13.CanCollide = false
  1842. p13.Locked = true
  1843. p13.BottomSurface = Enum.SurfaceType.Smooth
  1844. p13.TopSurface = Enum.SurfaceType.Smooth
  1845. b10 = Instance.new("SpecialMesh", p13)
  1846. b10.MeshType = Enum.MeshType.Sphere
  1847. b10.Name = "Mesh"
  1848. p14 = Instance.new("Part", m)
  1849. p14.BrickColor = BrickColor.new("Institutional white")
  1850. p14.Material = Enum.Material.Metal
  1851. p14.Name = "Main"
  1852. p14.FormFactor = Enum.FormFactor.Custom
  1853. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1854. 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)
  1855. p14.CanCollide = false
  1856. p14.Locked = true
  1857. p14.BottomSurface = Enum.SurfaceType.Smooth
  1858. p14.TopSurface = Enum.SurfaceType.Smooth
  1859. p15 = Instance.new("Part", m)
  1860. p15.BrickColor = BrickColor.new("Institutional white")
  1861. p15.Material = Enum.Material.Neon
  1862. p15.FormFactor = Enum.FormFactor.Custom
  1863. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1864. 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)
  1865. p15.CanCollide = false
  1866. p15.Locked = true
  1867. p15.BottomSurface = Enum.SurfaceType.Smooth
  1868. p15.TopSurface = Enum.SurfaceType.Smooth
  1869. b11 = Instance.new("SpecialMesh", p15)
  1870. b11.MeshType = Enum.MeshType.Sphere
  1871. b11.Name = "Mesh"
  1872. p16 = Instance.new("Part", m)
  1873. p16.BrickColor = BrickColor.new("Bright red")
  1874. p16.Material = Enum.Material.Neon
  1875. p16.FormFactor = Enum.FormFactor.Custom
  1876. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1877. 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)
  1878. p16.CanCollide = false
  1879. p16.Locked = true
  1880. p16.BottomSurface = Enum.SurfaceType.Smooth
  1881. p16.TopSurface = Enum.SurfaceType.Smooth
  1882. p17 = Instance.new("Part", m)
  1883. p17.BrickColor = BrickColor.new("Bright red")
  1884. p17.Material = Enum.Material.Neon
  1885. p17.FormFactor = Enum.FormFactor.Custom
  1886. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1887. 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)
  1888. p17.CanCollide = false
  1889. p17.Locked = true
  1890. p17.BottomSurface = Enum.SurfaceType.Smooth
  1891. p17.TopSurface = Enum.SurfaceType.Smooth
  1892. p18 = Instance.new("Part", m)
  1893. p18.BrickColor = BrickColor.new("Institutional white")
  1894. p18.Material = Enum.Material.Neon
  1895. p18.FormFactor = Enum.FormFactor.Custom
  1896. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1897. 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)
  1898. p18.CanCollide = false
  1899. p18.Locked = true
  1900. p18.BottomSurface = Enum.SurfaceType.Smooth
  1901. p18.TopSurface = Enum.SurfaceType.Smooth
  1902. b12 = Instance.new("SpecialMesh", p18)
  1903. b12.MeshType = Enum.MeshType.Sphere
  1904. b12.Name = "Mesh"
  1905. p19 = Instance.new("Part", m)
  1906. p19.BrickColor = BrickColor.new("Institutional white")
  1907. p19.Material = Enum.Material.Neon
  1908. p19.FormFactor = Enum.FormFactor.Custom
  1909. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1910. 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)
  1911. p19.CanCollide = false
  1912. p19.Locked = true
  1913. p19.BottomSurface = Enum.SurfaceType.Smooth
  1914. p19.TopSurface = Enum.SurfaceType.Smooth
  1915. b13 = Instance.new("SpecialMesh", p19)
  1916. b13.MeshType = Enum.MeshType.Sphere
  1917. b13.Name = "Mesh"
  1918. w1 = Instance.new("Weld", p1)
  1919. w1.Name = "Wedge_Weld"
  1920. w1.Part0 = p1
  1921. 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)
  1922. w1.Part1 = p2
  1923. 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)
  1924. w2 = Instance.new("Weld", p2)
  1925. w2.Name = "Wedge_Weld"
  1926. w2.Part0 = p2
  1927. 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)
  1928. w2.Part1 = p3
  1929. 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)
  1930. w3 = Instance.new("Weld", p3)
  1931. w3.Name = "Wedge_Weld"
  1932. w3.Part0 = p3
  1933. 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)
  1934. w3.Part1 = p4
  1935. 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)
  1936. w4 = Instance.new("Weld", p4)
  1937. w4.Name = "Wedge_Weld"
  1938. w4.Part0 = p4
  1939. 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)
  1940. w4.Part1 = p5
  1941. 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)
  1942. w5 = Instance.new("Weld", p5)
  1943. w5.Name = "Wedge_Weld"
  1944. w5.Part0 = p5
  1945. 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)
  1946. w5.Part1 = p6
  1947. 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)
  1948. w6 = Instance.new("Weld", p6)
  1949. w6.Name = "Part_Weld"
  1950. w6.Part0 = p6
  1951. 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)
  1952. w6.Part1 = p7
  1953. 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)
  1954. w7 = Instance.new("Weld", p7)
  1955. w7.Name = "Part_Weld"
  1956. w7.Part0 = p7
  1957. 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)
  1958. w7.Part1 = p8
  1959. 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)
  1960. w8 = Instance.new("Weld", p8)
  1961. w8.Name = "Part_Weld"
  1962. w8.Part0 = p8
  1963. 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)
  1964. w8.Part1 = p9
  1965. 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)
  1966. w9 = Instance.new("Weld", p9)
  1967. w9.Name = "Part_Weld"
  1968. w9.Part0 = p9
  1969. 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)
  1970. w9.Part1 = p10
  1971. 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)
  1972. w10 = Instance.new("Weld", p10)
  1973. w10.Name = "Part_Weld"
  1974. w10.Part0 = p10
  1975. 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)
  1976. w10.Part1 = p11
  1977. 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)
  1978. w11 = Instance.new("Weld", p11)
  1979. w11.Name = "Part_Weld"
  1980. w11.Part0 = p11
  1981. 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)
  1982. w11.Part1 = p12
  1983. 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)
  1984. w12 = Instance.new("Weld", p12)
  1985. w12.Name = "Part_Weld"
  1986. w12.Part0 = p12
  1987. 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)
  1988. w12.Part1 = p13
  1989. 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)
  1990. w13 = Instance.new("Weld", p13)
  1991. w13.Name = "Part_Weld"
  1992. w13.Part0 = p13
  1993. 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)
  1994. w13.Part1 = p14
  1995. 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)
  1996. w14 = Instance.new("Weld", p14)
  1997. w14.Name = "Part_Weld"
  1998. w14.Part0 = p14
  1999. 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)
  2000. w14.Part1 = p15
  2001. 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)
  2002. w15 = Instance.new("Weld", p15)
  2003. w15.Name = "Part_Weld"
  2004. w15.Part0 = p15
  2005. 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)
  2006. w15.Part1 = p16
  2007. 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)
  2008. w16 = Instance.new("Weld", p16)
  2009. w16.Name = "Part_Weld"
  2010. w16.Part0 = p16
  2011. 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)
  2012. w16.Part1 = p17
  2013. 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)
  2014. w17 = Instance.new("Weld", p17)
  2015. w17.Name = "Part_Weld"
  2016. w17.Part0 = p17
  2017. 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)
  2018. w17.Part1 = p18
  2019. 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)
  2020. w18 = Instance.new("Weld", p18)
  2021. w18.Name = "Part_Weld"
  2022. w18.Part0 = p18
  2023. 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)
  2024. w18.Part1 = p19
  2025. 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)
  2026. w19 = Instance.new("Weld", p19)
  2027. w19.Name = "Wedge_Weld"
  2028. w19.Part0 = p19
  2029. 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)
  2030. m.Parent = rarm
  2031. m:MakeJoints()
  2032. ----------------------------------------------------
  2033. local cor4 = Instance.new("Part", rarm.RightArm)
  2034. cor4.Name = "Thingy"
  2035. cor4.Locked = true
  2036. cor4.BottomSurface = 0
  2037. cor4.CanCollide = false
  2038. cor4.Size = Vector3.new(2, 1, 1)
  2039. cor4.Transparency = 1
  2040. cor4.TopSurface = 0
  2041. corw2 = Instance.new("Weld", cor4)
  2042. corw2.Part0 = rarm
  2043. corw2.Part1 = cor4
  2044. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2045. corw2.C1 = CFrame.new(0, 0, 0)
  2046. weld2 = Instance.new("Weld", rarm.RightArm)
  2047. weld2.Part0 = cor4
  2048. weld2.Part1 = p14
  2049. weld2.C0 = CFrame.new(0, 0, 0)
  2050. ----------------------------------------------------
  2051. local m = Instance.new("Model")
  2052. m.Name = "Torso"
  2053. p1 = Instance.new("Part", m)
  2054. p1.BrickColor = BrickColor.new("Institutional white")
  2055. p1.Material = Enum.Material.Neon
  2056. p1.FormFactor = Enum.FormFactor.Custom
  2057. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2058. 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)
  2059. p1.CanCollide = false
  2060. p1.Locked = true
  2061. p1.BottomSurface = Enum.SurfaceType.Smooth
  2062. p1.TopSurface = Enum.SurfaceType.Smooth
  2063. b1 = Instance.new("SpecialMesh", p1)
  2064. b1.MeshType = Enum.MeshType.Sphere
  2065. b1.Name = "Mesh"
  2066. p2 = Instance.new("Part", m)
  2067. p2.BrickColor = BrickColor.new("Institutional white")
  2068. p2.Material = Enum.Material.Neon
  2069. p2.FormFactor = Enum.FormFactor.Custom
  2070. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2071. 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)
  2072. p2.CanCollide = false
  2073. p2.Locked = true
  2074. p2.BottomSurface = Enum.SurfaceType.Smooth
  2075. p2.TopSurface = Enum.SurfaceType.Smooth
  2076. b2 = Instance.new("SpecialMesh", p2)
  2077. b2.MeshType = Enum.MeshType.Sphere
  2078. b2.Name = "Mesh"
  2079. p3 = Instance.new("Part", m)
  2080. p3.BrickColor = BrickColor.new("Institutional white")
  2081. p3.Material = Enum.Material.Neon
  2082. p3.FormFactor = Enum.FormFactor.Custom
  2083. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2084. 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)
  2085. p3.CanCollide = false
  2086. p3.Locked = true
  2087. p3.BottomSurface = Enum.SurfaceType.Smooth
  2088. p3.TopSurface = Enum.SurfaceType.Smooth
  2089. p4 = Instance.new("Part", m)
  2090. p4.BrickColor = BrickColor.new("Bright red")
  2091. p4.Material = Enum.Material.Neon
  2092. p4.FormFactor = Enum.FormFactor.Custom
  2093. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2094. 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)
  2095. p4.CanCollide = false
  2096. p4.Locked = true
  2097. p4.BottomSurface = Enum.SurfaceType.Smooth
  2098. p4.TopSurface = Enum.SurfaceType.Smooth
  2099. p5 = Instance.new("Part", m)
  2100. p5.BrickColor = BrickColor.new("Bright red")
  2101. p5.Material = Enum.Material.Neon
  2102. p5.FormFactor = Enum.FormFactor.Custom
  2103. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2104. 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)
  2105. p5.CanCollide = false
  2106. p5.Locked = true
  2107. p5.BottomSurface = Enum.SurfaceType.Smooth
  2108. p5.TopSurface = Enum.SurfaceType.Smooth
  2109. p6 = Instance.new("Part", m)
  2110. p6.BrickColor = BrickColor.new("Bright red")
  2111. p6.Material = Enum.Material.Neon
  2112. p6.FormFactor = Enum.FormFactor.Custom
  2113. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2114. 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)
  2115. p6.CanCollide = false
  2116. p6.Locked = true
  2117. p6.BottomSurface = Enum.SurfaceType.Smooth
  2118. p6.TopSurface = Enum.SurfaceType.Smooth
  2119. p7 = Instance.new("Part", m)
  2120. p7.BrickColor = BrickColor.new("Institutional white")
  2121. p7.Material = Enum.Material.Neon
  2122. p7.FormFactor = Enum.FormFactor.Custom
  2123. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2124. 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)
  2125. p7.CanCollide = false
  2126. p7.Locked = true
  2127. p7.BottomSurface = Enum.SurfaceType.Smooth
  2128. p7.TopSurface = Enum.SurfaceType.Smooth
  2129. b3 = Instance.new("SpecialMesh", p7)
  2130. b3.MeshType = Enum.MeshType.Sphere
  2131. b3.Name = "Mesh"
  2132. p8 = Instance.new("Part", m)
  2133. p8.BrickColor = BrickColor.new("Institutional white")
  2134. p8.Material = Enum.Material.Neon
  2135. p8.FormFactor = Enum.FormFactor.Custom
  2136. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2137. 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)
  2138. p8.CanCollide = false
  2139. p8.Locked = true
  2140. p8.BottomSurface = Enum.SurfaceType.Smooth
  2141. p8.TopSurface = Enum.SurfaceType.Smooth
  2142. b4 = Instance.new("SpecialMesh", p8)
  2143. b4.MeshType = Enum.MeshType.Sphere
  2144. b4.Name = "Mesh"
  2145. p9 = Instance.new("Part", m)
  2146. p9.BrickColor = BrickColor.new("Institutional white")
  2147. p9.Material = Enum.Material.Neon
  2148. p9.FormFactor = Enum.FormFactor.Custom
  2149. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2150. 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)
  2151. p9.CanCollide = false
  2152. p9.Locked = true
  2153. p9.BottomSurface = Enum.SurfaceType.Smooth
  2154. p9.TopSurface = Enum.SurfaceType.Smooth
  2155. b5 = Instance.new("SpecialMesh", p9)
  2156. b5.MeshType = Enum.MeshType.Sphere
  2157. b5.Name = "Mesh"
  2158. p10 = Instance.new("Part", m)
  2159. p10.BrickColor = BrickColor.new("Bright red")
  2160. p10.Material = Enum.Material.Neon
  2161. p10.FormFactor = Enum.FormFactor.Custom
  2162. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2163. 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)
  2164. p10.CanCollide = false
  2165. p10.Locked = true
  2166. p10.BottomSurface = Enum.SurfaceType.Smooth
  2167. p10.TopSurface = Enum.SurfaceType.Smooth
  2168. p11 = Instance.new("Part", m)
  2169. p11.BrickColor = BrickColor.new("Institutional white")
  2170. p11.Material = Enum.Material.Metal
  2171. p11.Name = "Main"
  2172. p11.FormFactor = Enum.FormFactor.Custom
  2173. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2174. 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)
  2175. p11.CanCollide = false
  2176. p11.Locked = true
  2177. p11.BottomSurface = Enum.SurfaceType.Smooth
  2178. p11.TopSurface = Enum.SurfaceType.Smooth
  2179. p12 = Instance.new("Part", m)
  2180. p12.BrickColor = BrickColor.new("Institutional white")
  2181. p12.Material = Enum.Material.Neon
  2182. p12.FormFactor = Enum.FormFactor.Custom
  2183. p12.Size = Vector3.new(3, 3, 2)
  2184. 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)
  2185. p12.CanCollide = false
  2186. p12.Locked = true
  2187. p12.BottomSurface = Enum.SurfaceType.Smooth
  2188. p12.TopSurface = Enum.SurfaceType.Smooth
  2189. b6 = Instance.new("SpecialMesh", p12)
  2190. b6.MeshType = Enum.MeshType.Sphere
  2191. b6.Name = "Mesh"
  2192. p13 = Instance.new("Part", m)
  2193. p13.BrickColor = BrickColor.new("Bright red")
  2194. p13.Material = Enum.Material.Neon
  2195. p13.FormFactor = Enum.FormFactor.Custom
  2196. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2197. 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)
  2198. p13.CanCollide = false
  2199. p13.Locked = true
  2200. p13.BottomSurface = Enum.SurfaceType.Smooth
  2201. p13.TopSurface = Enum.SurfaceType.Smooth
  2202. p14 = Instance.new("Part", m)
  2203. p14.BrickColor = BrickColor.new("Bright red")
  2204. p14.Material = Enum.Material.Neon
  2205. p14.FormFactor = Enum.FormFactor.Custom
  2206. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2207. 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)
  2208. p14.CanCollide = false
  2209. p14.Locked = true
  2210. p14.BottomSurface = Enum.SurfaceType.Smooth
  2211. p14.TopSurface = Enum.SurfaceType.Smooth
  2212. p15 = Instance.new("Part", m)
  2213. p15.BrickColor = BrickColor.new("Bright red")
  2214. p15.Material = Enum.Material.Neon
  2215. p15.FormFactor = Enum.FormFactor.Custom
  2216. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2217. 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)
  2218. p15.CanCollide = false
  2219. p15.Locked = true
  2220. p15.BottomSurface = Enum.SurfaceType.Smooth
  2221. p15.TopSurface = Enum.SurfaceType.Smooth
  2222. p16 = Instance.new("Part", m)
  2223. p16.BrickColor = BrickColor.new("Bright red")
  2224. p16.Material = Enum.Material.Neon
  2225. p16.FormFactor = Enum.FormFactor.Custom
  2226. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2227. 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)
  2228. p16.CanCollide = false
  2229. p16.Locked = true
  2230. p16.BottomSurface = Enum.SurfaceType.Smooth
  2231. p16.TopSurface = Enum.SurfaceType.Smooth
  2232. p17 = Instance.new("Part", m)
  2233. p17.BrickColor = BrickColor.new("Bright red")
  2234. p17.Material = Enum.Material.Neon
  2235. p17.FormFactor = Enum.FormFactor.Custom
  2236. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2237. 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)
  2238. p17.CanCollide = false
  2239. p17.Locked = true
  2240. p17.BottomSurface = Enum.SurfaceType.Smooth
  2241. p17.TopSurface = Enum.SurfaceType.Smooth
  2242. p18 = Instance.new("Part", m)
  2243. p18.BrickColor = BrickColor.new("Bright red")
  2244. p18.Material = Enum.Material.Neon
  2245. p18.FormFactor = Enum.FormFactor.Custom
  2246. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2247. 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)
  2248. p18.CanCollide = false
  2249. p18.Locked = true
  2250. p18.BottomSurface = Enum.SurfaceType.Smooth
  2251. p18.TopSurface = Enum.SurfaceType.Smooth
  2252. p19 = Instance.new("Part", m)
  2253. p19.BrickColor = BrickColor.new("Institutional white")
  2254. p19.Material = Enum.Material.Neon
  2255. p19.FormFactor = Enum.FormFactor.Custom
  2256. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2257. 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)
  2258. p19.CanCollide = false
  2259. p19.Locked = true
  2260. p19.BottomSurface = Enum.SurfaceType.Smooth
  2261. p19.TopSurface = Enum.SurfaceType.Smooth
  2262. b7 = Instance.new("SpecialMesh", p19)
  2263. b7.MeshType = Enum.MeshType.Sphere
  2264. b7.Name = "Mesh"
  2265. p20 = Instance.new("Part", m)
  2266. p20.BrickColor = BrickColor.new("Institutional white")
  2267. p20.Material = Enum.Material.Neon
  2268. p20.FormFactor = Enum.FormFactor.Custom
  2269. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2270. 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)
  2271. p20.CanCollide = false
  2272. p20.Locked = true
  2273. p20.BottomSurface = Enum.SurfaceType.Smooth
  2274. p20.TopSurface = Enum.SurfaceType.Smooth
  2275. b8 = Instance.new("SpecialMesh", p20)
  2276. b8.MeshType = Enum.MeshType.Sphere
  2277. b8.Name = "Mesh"
  2278. p21 = Instance.new("Part", m)
  2279. p21.BrickColor = BrickColor.new("Bright red")
  2280. p21.Material = Enum.Material.Neon
  2281. p21.FormFactor = Enum.FormFactor.Custom
  2282. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2283. 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)
  2284. p21.CanCollide = false
  2285. p21.Locked = true
  2286. p21.BottomSurface = Enum.SurfaceType.Smooth
  2287. p21.TopSurface = Enum.SurfaceType.Smooth
  2288. p22 = Instance.new("Part", m)
  2289. p22.BrickColor = BrickColor.new("Institutional white")
  2290. p22.Material = Enum.Material.Neon
  2291. p22.FormFactor = Enum.FormFactor.Custom
  2292. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2293. 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)
  2294. p22.CanCollide = false
  2295. p22.Locked = true
  2296. p22.BottomSurface = Enum.SurfaceType.Smooth
  2297. p22.TopSurface = Enum.SurfaceType.Smooth
  2298. b9 = Instance.new("SpecialMesh", p22)
  2299. b9.MeshType = Enum.MeshType.Sphere
  2300. b9.Name = "Mesh"
  2301. w1 = Instance.new("Weld", p1)
  2302. w1.Name = "Part_Weld"
  2303. w1.Part0 = p1
  2304. 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)
  2305. w1.Part1 = p2
  2306. 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)
  2307. w2 = Instance.new("Weld", p2)
  2308. w2.Name = "Part_Weld"
  2309. w2.Part0 = p2
  2310. 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)
  2311. w2.Part1 = p3
  2312. 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)
  2313. w3 = Instance.new("Weld", p3)
  2314. w3.Name = "Part_Weld"
  2315. w3.Part0 = p3
  2316. 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)
  2317. w3.Part1 = p4
  2318. 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)
  2319. w4 = Instance.new("Weld", p4)
  2320. w4.Name = "Part_Weld"
  2321. w4.Part0 = p4
  2322. 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)
  2323. w4.Part1 = p5
  2324. 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)
  2325. w5 = Instance.new("Weld", p5)
  2326. w5.Name = "Part_Weld"
  2327. w5.Part0 = p5
  2328. 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)
  2329. w5.Part1 = p6
  2330. 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)
  2331. w6 = Instance.new("Weld", p6)
  2332. w6.Name = "Part_Weld"
  2333. w6.Part0 = p6
  2334. 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)
  2335. w6.Part1 = p7
  2336. 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)
  2337. w7 = Instance.new("Weld", p7)
  2338. w7.Name = "Part_Weld"
  2339. w7.Part0 = p7
  2340. 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)
  2341. w7.Part1 = p8
  2342. 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)
  2343. w8 = Instance.new("Weld", p8)
  2344. w8.Name = "Part_Weld"
  2345. w8.Part0 = p8
  2346. 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)
  2347. w8.Part1 = p9
  2348. 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)
  2349. w9 = Instance.new("Weld", p9)
  2350. w9.Name = "Part_Weld"
  2351. w9.Part0 = p9
  2352. 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)
  2353. w9.Part1 = p10
  2354. 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)
  2355. w10 = Instance.new("Weld", p10)
  2356. w10.Name = "Main_Weld"
  2357. w10.Part0 = p10
  2358. 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)
  2359. w10.Part1 = p11
  2360. 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)
  2361. w11 = Instance.new("Weld", p11)
  2362. w11.Name = "Part_Weld"
  2363. w11.Part0 = p11
  2364. 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)
  2365. w11.Part1 = p12
  2366. 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)
  2367. w12 = Instance.new("Weld", p12)
  2368. w12.Name = "Part_Weld"
  2369. w12.Part0 = p12
  2370. 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)
  2371. w12.Part1 = p13
  2372. 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)
  2373. w13 = Instance.new("Weld", p13)
  2374. w13.Name = "Part_Weld"
  2375. w13.Part0 = p13
  2376. 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)
  2377. w13.Part1 = p14
  2378. 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)
  2379. w14 = Instance.new("Weld", p14)
  2380. w14.Name = "Part_Weld"
  2381. w14.Part0 = p14
  2382. 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)
  2383. w14.Part1 = p15
  2384. 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)
  2385. w15 = Instance.new("Weld", p15)
  2386. w15.Name = "Part_Weld"
  2387. w15.Part0 = p15
  2388. 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)
  2389. w15.Part1 = p16
  2390. 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)
  2391. w16 = Instance.new("Weld", p16)
  2392. w16.Name = "Part_Weld"
  2393. w16.Part0 = p16
  2394. 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)
  2395. w16.Part1 = p17
  2396. 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)
  2397. w17 = Instance.new("Weld", p17)
  2398. w17.Name = "Part_Weld"
  2399. w17.Part0 = p17
  2400. 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)
  2401. w17.Part1 = p18
  2402. 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)
  2403. w18 = Instance.new("Weld", p18)
  2404. w18.Name = "Part_Weld"
  2405. w18.Part0 = p18
  2406. 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)
  2407. w18.Part1 = p19
  2408. 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)
  2409. w19 = Instance.new("Weld", p19)
  2410. w19.Name = "Part_Weld"
  2411. w19.Part0 = p19
  2412. 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)
  2413. w19.Part1 = p20
  2414. 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)
  2415. w20 = Instance.new("Weld", p20)
  2416. w20.Name = "Part_Weld"
  2417. w20.Part0 = p20
  2418. 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)
  2419. w20.Part1 = p21
  2420. 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)
  2421. w21 = Instance.new("Weld", p21)
  2422. w21.Name = "Part_Weld"
  2423. w21.Part0 = p21
  2424. 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)
  2425. w21.Part1 = p22
  2426. 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)
  2427. w22 = Instance.new("Weld", p22)
  2428. w22.Name = "Wedge_Weld"
  2429. w22.Part0 = p22
  2430. 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)
  2431. m.Parent = torso
  2432. m:MakeJoints()
  2433. ----------------------------------------------------
  2434. local cor5 = Instance.new("Part", torso.Torso)
  2435. cor5.Name = "Thingy"
  2436. cor5.Locked = true
  2437. cor5.BottomSurface = 0
  2438. cor5.CanCollide = false
  2439. cor5.Size = Vector3.new(2, 1, 1)
  2440. cor5.Transparency = 1
  2441. cor5.TopSurface = 0
  2442. corw2 = Instance.new("Weld", cor5)
  2443. corw2.Part0 = torso
  2444. corw2.Part1 = cor5
  2445. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2446. corw2.C1 = CFrame.new(0, 0, 0)
  2447. weld2 = Instance.new("Weld", torso.Torso)
  2448. weld2.Part0 = cor5
  2449. weld2.Part1 = p11
  2450. weld2.C0 = CFrame.new(0, 0, 0)
  2451. ----------------------------------------------------
  2452. local m = Instance.new("Model")
  2453. m.Name = "RightLeg"
  2454. p1 = Instance.new("Part", m)
  2455. p1.BrickColor = BrickColor.new("Institutional white")
  2456. p1.Material = Enum.Material.Neon
  2457. p1.FormFactor = Enum.FormFactor.Custom
  2458. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2459. 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)
  2460. p1.CanCollide = false
  2461. p1.Locked = true
  2462. p1.BottomSurface = Enum.SurfaceType.Smooth
  2463. p1.TopSurface = Enum.SurfaceType.Smooth
  2464. b1 = Instance.new("SpecialMesh", p1)
  2465. b1.MeshType = Enum.MeshType.Sphere
  2466. b1.Name = "Mesh"
  2467. p2 = Instance.new("Part", m)
  2468. p2.BrickColor = BrickColor.new("Institutional white")
  2469. p2.Material = Enum.Material.Neon
  2470. p2.FormFactor = Enum.FormFactor.Custom
  2471. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2472. 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)
  2473. p2.CanCollide = false
  2474. p2.Locked = true
  2475. p2.BottomSurface = Enum.SurfaceType.Smooth
  2476. p2.TopSurface = Enum.SurfaceType.Smooth
  2477. b2 = Instance.new("SpecialMesh", p2)
  2478. b2.MeshType = Enum.MeshType.Sphere
  2479. b2.Name = "Mesh"
  2480. p3 = Instance.new("Part", m)
  2481. p3.BrickColor = BrickColor.new("Bright red")
  2482. p3.Material = Enum.Material.Neon
  2483. p3.FormFactor = Enum.FormFactor.Custom
  2484. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2485. 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)
  2486. p3.CanCollide = false
  2487. p3.Locked = true
  2488. p3.BottomSurface = Enum.SurfaceType.Smooth
  2489. p3.TopSurface = Enum.SurfaceType.Smooth
  2490. p4 = Instance.new("Part", m)
  2491. p4.BrickColor = BrickColor.new("Institutional white")
  2492. p4.Material = Enum.Material.Neon
  2493. p4.FormFactor = Enum.FormFactor.Custom
  2494. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2495. 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)
  2496. p4.CanCollide = false
  2497. p4.Locked = true
  2498. p4.BottomSurface = Enum.SurfaceType.Smooth
  2499. p4.TopSurface = Enum.SurfaceType.Smooth
  2500. b3 = Instance.new("SpecialMesh", p4)
  2501. b3.MeshType = Enum.MeshType.Sphere
  2502. b3.Name = "Mesh"
  2503. p5 = Instance.new("Part", m)
  2504. p5.BrickColor = BrickColor.new("Bright red")
  2505. p5.Material = Enum.Material.Neon
  2506. p5.FormFactor = Enum.FormFactor.Custom
  2507. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2508. 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)
  2509. p5.CanCollide = false
  2510. p5.Locked = true
  2511. p5.BottomSurface = Enum.SurfaceType.Smooth
  2512. p5.TopSurface = Enum.SurfaceType.Smooth
  2513. p6 = Instance.new("Part", m)
  2514. p6.BrickColor = BrickColor.new("Bright red")
  2515. p6.Material = Enum.Material.Neon
  2516. p6.FormFactor = Enum.FormFactor.Custom
  2517. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2518. 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)
  2519. p6.CanCollide = false
  2520. p6.Locked = true
  2521. p6.BottomSurface = Enum.SurfaceType.Smooth
  2522. p6.TopSurface = Enum.SurfaceType.Smooth
  2523. p7 = Instance.new("Part", m)
  2524. p7.BrickColor = BrickColor.new("Institutional white")
  2525. p7.Material = Enum.Material.Metal
  2526. p7.Name = "Main"
  2527. p7.FormFactor = Enum.FormFactor.Custom
  2528. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2529. 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)
  2530. p7.CanCollide = false
  2531. p7.Locked = true
  2532. p7.BottomSurface = Enum.SurfaceType.Smooth
  2533. p7.TopSurface = Enum.SurfaceType.Smooth
  2534. p8 = Instance.new("Part", m)
  2535. p8.BrickColor = BrickColor.new("Bright red")
  2536. p8.Material = Enum.Material.Neon
  2537. p8.FormFactor = Enum.FormFactor.Custom
  2538. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2539. 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)
  2540. p8.CanCollide = false
  2541. p8.Locked = true
  2542. p8.BottomSurface = Enum.SurfaceType.Smooth
  2543. p8.TopSurface = Enum.SurfaceType.Smooth
  2544. p9 = Instance.new("WedgePart", m)
  2545. p9.BrickColor = BrickColor.new("Bright red")
  2546. p9.Material = Enum.Material.Neon
  2547. p9.Name = "Wedge"
  2548. p9.FormFactor = Enum.FormFactor.Custom
  2549. p9.Size = Vector3.new(1, 1.19999981, 4)
  2550. 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)
  2551. p9.CanCollide = false
  2552. p9.Locked = true
  2553. p9.TopSurface = Enum.SurfaceType.Smooth
  2554. b4 = Instance.new("SpecialMesh", p9)
  2555. b4.MeshType = Enum.MeshType.Wedge
  2556. b4.Name = "Mesh"
  2557. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2558. p10 = Instance.new("Part", m)
  2559. p10.BrickColor = BrickColor.new("Institutional white")
  2560. p10.Material = Enum.Material.Neon
  2561. p10.FormFactor = Enum.FormFactor.Custom
  2562. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2563. 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)
  2564. p10.CanCollide = false
  2565. p10.Locked = true
  2566. p10.BottomSurface = Enum.SurfaceType.Smooth
  2567. p10.TopSurface = Enum.SurfaceType.Smooth
  2568. b5 = Instance.new("SpecialMesh", p10)
  2569. b5.MeshType = Enum.MeshType.Sphere
  2570. b5.Name = "Mesh"
  2571. p11 = Instance.new("Part", m)
  2572. p11.BrickColor = BrickColor.new("Institutional white")
  2573. p11.Material = Enum.Material.Neon
  2574. p11.FormFactor = Enum.FormFactor.Custom
  2575. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2576. 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)
  2577. p11.CanCollide = false
  2578. p11.Locked = true
  2579. p11.BottomSurface = Enum.SurfaceType.Smooth
  2580. p11.TopSurface = Enum.SurfaceType.Smooth
  2581. b6 = Instance.new("SpecialMesh", p11)
  2582. b6.MeshType = Enum.MeshType.Sphere
  2583. b6.Name = "Mesh"
  2584. p12 = Instance.new("Part", m)
  2585. p12.BrickColor = BrickColor.new("Bright red")
  2586. p12.Material = Enum.Material.Neon
  2587. p12.FormFactor = Enum.FormFactor.Custom
  2588. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2589. 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)
  2590. p12.CanCollide = false
  2591. p12.Locked = true
  2592. p12.BottomSurface = Enum.SurfaceType.Smooth
  2593. p12.TopSurface = Enum.SurfaceType.Smooth
  2594. p13 = Instance.new("Part", m)
  2595. p13.BrickColor = BrickColor.new("Institutional white")
  2596. p13.Material = Enum.Material.Neon
  2597. p13.FormFactor = Enum.FormFactor.Custom
  2598. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2599. 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)
  2600. p13.CanCollide = false
  2601. p13.Locked = true
  2602. p13.BottomSurface = Enum.SurfaceType.Smooth
  2603. p13.TopSurface = Enum.SurfaceType.Smooth
  2604. b7 = Instance.new("SpecialMesh", p13)
  2605. b7.MeshType = Enum.MeshType.Sphere
  2606. b7.Name = "Mesh"
  2607. p14 = Instance.new("WedgePart", m)
  2608. p14.BrickColor = BrickColor.new("Bright red")
  2609. p14.Material = Enum.Material.Neon
  2610. p14.Name = "Wedge"
  2611. p14.FormFactor = Enum.FormFactor.Custom
  2612. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2613. 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)
  2614. p14.CanCollide = false
  2615. p14.Locked = true
  2616. p14.TopSurface = Enum.SurfaceType.Smooth
  2617. b8 = Instance.new("SpecialMesh", p14)
  2618. b8.MeshType = Enum.MeshType.Wedge
  2619. b8.Name = "Mesh"
  2620. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2621. p15 = Instance.new("WedgePart", m)
  2622. p15.BrickColor = BrickColor.new("Bright red")
  2623. p15.Material = Enum.Material.Neon
  2624. p15.Name = "Wedge"
  2625. p15.FormFactor = Enum.FormFactor.Custom
  2626. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2627. 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)
  2628. p15.CanCollide = false
  2629. p15.Locked = true
  2630. p15.TopSurface = Enum.SurfaceType.Smooth
  2631. b9 = Instance.new("SpecialMesh", p15)
  2632. b9.MeshType = Enum.MeshType.Wedge
  2633. b9.Name = "Mesh"
  2634. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2635. p16 = Instance.new("WedgePart", m)
  2636. p16.BrickColor = BrickColor.new("Bright red")
  2637. p16.Material = Enum.Material.Neon
  2638. p16.Name = "Wedge"
  2639. p16.FormFactor = Enum.FormFactor.Custom
  2640. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2641. 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)
  2642. p16.CanCollide = false
  2643. p16.Locked = true
  2644. p16.TopSurface = Enum.SurfaceType.Smooth
  2645. b10 = Instance.new("SpecialMesh", p16)
  2646. b10.MeshType = Enum.MeshType.Wedge
  2647. b10.Name = "Mesh"
  2648. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2649. w1 = Instance.new("Weld", p1)
  2650. w1.Name = "Part_Weld"
  2651. w1.Part0 = p1
  2652. 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)
  2653. w1.Part1 = p2
  2654. 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)
  2655. w2 = Instance.new("Weld", p2)
  2656. w2.Name = "Part_Weld"
  2657. w2.Part0 = p2
  2658. 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)
  2659. w2.Part1 = p3
  2660. 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)
  2661. w3 = Instance.new("Weld", p3)
  2662. w3.Name = "Part_Weld"
  2663. w3.Part0 = p3
  2664. 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)
  2665. w3.Part1 = p4
  2666. 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)
  2667. w4 = Instance.new("Weld", p4)
  2668. w4.Name = "Part_Weld"
  2669. w4.Part0 = p4
  2670. 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)
  2671. w4.Part1 = p5
  2672. 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)
  2673. w5 = Instance.new("Weld", p5)
  2674. w5.Name = "Part_Weld"
  2675. w5.Part0 = p5
  2676. 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)
  2677. w5.Part1 = p6
  2678. 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)
  2679. w6 = Instance.new("Weld", p6)
  2680. w6.Name = "Part_Weld"
  2681. w6.Part0 = p6
  2682. 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)
  2683. w6.Part1 = p7
  2684. 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)
  2685. w7 = Instance.new("Weld", p7)
  2686. w7.Name = "Part_Weld"
  2687. w7.Part0 = p7
  2688. 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)
  2689. w7.Part1 = p8
  2690. 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)
  2691. w8 = Instance.new("Weld", p8)
  2692. w8.Name = "Wedge_Weld"
  2693. w8.Part0 = p8
  2694. 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)
  2695. w8.Part1 = p9
  2696. 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)
  2697. w9 = Instance.new("Weld", p9)
  2698. w9.Name = "Part_Weld"
  2699. w9.Part0 = p9
  2700. 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)
  2701. w9.Part1 = p10
  2702. 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)
  2703. w10 = Instance.new("Weld", p10)
  2704. w10.Name = "Part_Weld"
  2705. w10.Part0 = p10
  2706. 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)
  2707. w10.Part1 = p11
  2708. 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)
  2709. w11 = Instance.new("Weld", p11)
  2710. w11.Name = "Part_Weld"
  2711. w11.Part0 = p11
  2712. 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)
  2713. w11.Part1 = p12
  2714. 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)
  2715. w12 = Instance.new("Weld", p12)
  2716. w12.Name = "Part_Weld"
  2717. w12.Part0 = p12
  2718. 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)
  2719. w12.Part1 = p13
  2720. 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)
  2721. w13 = Instance.new("Weld", p13)
  2722. w13.Name = "Wedge_Weld"
  2723. w13.Part0 = p13
  2724. 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)
  2725. w13.Part1 = p14
  2726. 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)
  2727. w14 = Instance.new("Weld", p14)
  2728. w14.Name = "Wedge_Weld"
  2729. w14.Part0 = p14
  2730. 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)
  2731. w14.Part1 = p15
  2732. 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)
  2733. w15 = Instance.new("Weld", p15)
  2734. w15.Name = "Wedge_Weld"
  2735. w15.Part0 = p15
  2736. 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)
  2737. w15.Part1 = p16
  2738. 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)
  2739. m.Parent = rleg
  2740. m:MakeJoints()
  2741. ----------------------------------------------------
  2742. local cor6 = Instance.new("Part", rleg.RightLeg)
  2743. cor6.Name = "Thingy"
  2744. cor6.Locked = true
  2745. cor6.BottomSurface = 0
  2746. cor6.CanCollide = false
  2747. cor6.Size = Vector3.new(2, 1, 1)
  2748. cor6.Transparency = 1
  2749. cor6.TopSurface = 0
  2750. corw2 = Instance.new("Weld", cor6)
  2751. corw2.Part0 = rleg
  2752. corw2.Part1 = cor6
  2753. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2754. corw2.C1 = CFrame.new(0, 0, 0)
  2755. weld2 = Instance.new("Weld", rleg.RightLeg)
  2756. weld2.Part0 = cor6
  2757. weld2.Part1 = p7
  2758. weld2.C0 = CFrame.new(0, 0, 0)
  2759. ----------------------------------------------------
  2760. local m = Instance.new("Model")
  2761. m.Name = "LeftLeg"
  2762. p1 = Instance.new("WedgePart", m)
  2763. p1.BrickColor = BrickColor.new("Bright red")
  2764. p1.Material = Enum.Material.Neon
  2765. p1.Name = "Wedge"
  2766. p1.FormFactor = Enum.FormFactor.Custom
  2767. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2768. 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)
  2769. p1.CanCollide = false
  2770. p1.Locked = true
  2771. p1.TopSurface = Enum.SurfaceType.Smooth
  2772. b1 = Instance.new("SpecialMesh", p1)
  2773. b1.MeshType = Enum.MeshType.Wedge
  2774. b1.Name = "Mesh"
  2775. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2776. p2 = Instance.new("WedgePart", m)
  2777. p2.BrickColor = BrickColor.new("Bright red")
  2778. p2.Material = Enum.Material.Neon
  2779. p2.Name = "Wedge"
  2780. p2.FormFactor = Enum.FormFactor.Custom
  2781. p2.Size = Vector3.new(1, 1.19999981, 4)
  2782. 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)
  2783. p2.CanCollide = false
  2784. p2.Locked = true
  2785. p2.TopSurface = Enum.SurfaceType.Smooth
  2786. b2 = Instance.new("SpecialMesh", p2)
  2787. b2.MeshType = Enum.MeshType.Wedge
  2788. b2.Name = "Mesh"
  2789. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2790. p3 = Instance.new("Part", m)
  2791. p3.BrickColor = BrickColor.new("Institutional white")
  2792. p3.Material = Enum.Material.Metal
  2793. p3.Name = "Main"
  2794. p3.FormFactor = Enum.FormFactor.Custom
  2795. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2796. 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)
  2797. p3.CanCollide = false
  2798. p3.Locked = true
  2799. p3.BottomSurface = Enum.SurfaceType.Smooth
  2800. p3.TopSurface = Enum.SurfaceType.Smooth
  2801. p4 = Instance.new("Part", m)
  2802. p4.BrickColor = BrickColor.new("Institutional white")
  2803. p4.Material = Enum.Material.Neon
  2804. p4.FormFactor = Enum.FormFactor.Custom
  2805. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2806. 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)
  2807. p4.CanCollide = false
  2808. p4.Locked = true
  2809. p4.BottomSurface = Enum.SurfaceType.Smooth
  2810. p4.TopSurface = Enum.SurfaceType.Smooth
  2811. b3 = Instance.new("SpecialMesh", p4)
  2812. b3.MeshType = Enum.MeshType.Sphere
  2813. b3.Name = "Mesh"
  2814. p5 = Instance.new("WedgePart", m)
  2815. p5.BrickColor = BrickColor.new("Bright red")
  2816. p5.Material = Enum.Material.Neon
  2817. p5.Name = "Wedge"
  2818. p5.FormFactor = Enum.FormFactor.Custom
  2819. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2820. 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)
  2821. p5.CanCollide = false
  2822. p5.Locked = true
  2823. p5.TopSurface = Enum.SurfaceType.Smooth
  2824. b4 = Instance.new("SpecialMesh", p5)
  2825. b4.MeshType = Enum.MeshType.Wedge
  2826. b4.Name = "Mesh"
  2827. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2828. p6 = Instance.new("Part", m)
  2829. p6.BrickColor = BrickColor.new("Bright red")
  2830. p6.Material = Enum.Material.Neon
  2831. p6.FormFactor = Enum.FormFactor.Custom
  2832. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2833. 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)
  2834. p6.CanCollide = false
  2835. p6.Locked = true
  2836. p6.BottomSurface = Enum.SurfaceType.Smooth
  2837. p6.TopSurface = Enum.SurfaceType.Smooth
  2838. p7 = Instance.new("Part", m)
  2839. p7.BrickColor = BrickColor.new("Bright red")
  2840. p7.Material = Enum.Material.Neon
  2841. p7.FormFactor = Enum.FormFactor.Custom
  2842. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2843. 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)
  2844. p7.CanCollide = false
  2845. p7.Locked = true
  2846. p7.BottomSurface = Enum.SurfaceType.Smooth
  2847. p7.TopSurface = Enum.SurfaceType.Smooth
  2848. p8 = Instance.new("Part", m)
  2849. p8.BrickColor = BrickColor.new("Institutional white")
  2850. p8.Material = Enum.Material.Neon
  2851. p8.FormFactor = Enum.FormFactor.Custom
  2852. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2853. 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)
  2854. p8.CanCollide = false
  2855. p8.Locked = true
  2856. p8.BottomSurface = Enum.SurfaceType.Smooth
  2857. p8.TopSurface = Enum.SurfaceType.Smooth
  2858. b5 = Instance.new("SpecialMesh", p8)
  2859. b5.MeshType = Enum.MeshType.Sphere
  2860. b5.Name = "Mesh"
  2861. p9 = Instance.new("Part", m)
  2862. p9.BrickColor = BrickColor.new("Institutional white")
  2863. p9.Material = Enum.Material.Neon
  2864. p9.FormFactor = Enum.FormFactor.Custom
  2865. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2866. 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)
  2867. p9.CanCollide = false
  2868. p9.Locked = true
  2869. p9.BottomSurface = Enum.SurfaceType.Smooth
  2870. p9.TopSurface = Enum.SurfaceType.Smooth
  2871. b6 = Instance.new("SpecialMesh", p9)
  2872. b6.MeshType = Enum.MeshType.Sphere
  2873. b6.Name = "Mesh"
  2874. p10 = Instance.new("Part", m)
  2875. p10.BrickColor = BrickColor.new("Bright red")
  2876. p10.Material = Enum.Material.Neon
  2877. p10.FormFactor = Enum.FormFactor.Custom
  2878. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2879. 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)
  2880. p10.CanCollide = false
  2881. p10.Locked = true
  2882. p10.BottomSurface = Enum.SurfaceType.Smooth
  2883. p10.TopSurface = Enum.SurfaceType.Smooth
  2884. p11 = Instance.new("Part", m)
  2885. p11.BrickColor = BrickColor.new("Bright red")
  2886. p11.Material = Enum.Material.Neon
  2887. p11.FormFactor = Enum.FormFactor.Custom
  2888. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2889. 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)
  2890. p11.CanCollide = false
  2891. p11.Locked = true
  2892. p11.BottomSurface = Enum.SurfaceType.Smooth
  2893. p11.TopSurface = Enum.SurfaceType.Smooth
  2894. p12 = Instance.new("WedgePart", m)
  2895. p12.BrickColor = BrickColor.new("Bright red")
  2896. p12.Material = Enum.Material.Neon
  2897. p12.Name = "Wedge"
  2898. p12.FormFactor = Enum.FormFactor.Custom
  2899. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2900. 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)
  2901. p12.CanCollide = false
  2902. p12.Locked = true
  2903. p12.TopSurface = Enum.SurfaceType.Smooth
  2904. b7 = Instance.new("SpecialMesh", p12)
  2905. b7.MeshType = Enum.MeshType.Wedge
  2906. b7.Name = "Mesh"
  2907. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2908. p13 = Instance.new("Part", m)
  2909. p13.BrickColor = BrickColor.new("Institutional white")
  2910. p13.Material = Enum.Material.Neon
  2911. p13.FormFactor = Enum.FormFactor.Custom
  2912. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2913. 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)
  2914. p13.CanCollide = false
  2915. p13.Locked = true
  2916. p13.BottomSurface = Enum.SurfaceType.Smooth
  2917. p13.TopSurface = Enum.SurfaceType.Smooth
  2918. b8 = Instance.new("SpecialMesh", p13)
  2919. b8.MeshType = Enum.MeshType.Sphere
  2920. b8.Name = "Mesh"
  2921. p14 = Instance.new("Part", m)
  2922. p14.BrickColor = BrickColor.new("Institutional white")
  2923. p14.Material = Enum.Material.Neon
  2924. p14.FormFactor = Enum.FormFactor.Custom
  2925. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2926. 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)
  2927. p14.CanCollide = false
  2928. p14.Locked = true
  2929. p14.BottomSurface = Enum.SurfaceType.Smooth
  2930. p14.TopSurface = Enum.SurfaceType.Smooth
  2931. b9 = Instance.new("SpecialMesh", p14)
  2932. b9.MeshType = Enum.MeshType.Sphere
  2933. b9.Name = "Mesh"
  2934. w1 = Instance.new("Weld", p1)
  2935. w1.Name = "Wedge_Weld"
  2936. w1.Part0 = p1
  2937. 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)
  2938. w1.Part1 = p2
  2939. 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)
  2940. w2 = Instance.new("Weld", p2)
  2941. w2.Name = "Part_Weld"
  2942. w2.Part0 = p2
  2943. 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)
  2944. w2.Part1 = p3
  2945. 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)
  2946. w3 = Instance.new("Weld", p3)
  2947. w3.Name = "Part_Weld"
  2948. w3.Part0 = p3
  2949. 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)
  2950. w3.Part1 = p4
  2951. 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)
  2952. w4 = Instance.new("Weld", p4)
  2953. w4.Name = "Wedge_Weld"
  2954. w4.Part0 = p4
  2955. 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)
  2956. w4.Part1 = p5
  2957. 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)
  2958. w5 = Instance.new("Weld", p5)
  2959. w5.Name = "Part_Weld"
  2960. w5.Part0 = p5
  2961. 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)
  2962. w5.Part1 = p6
  2963. 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)
  2964. w6 = Instance.new("Weld", p6)
  2965. w6.Name = "Part_Weld"
  2966. w6.Part0 = p6
  2967. 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)
  2968. w6.Part1 = p7
  2969. 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)
  2970. w7 = Instance.new("Weld", p7)
  2971. w7.Name = "Part_Weld"
  2972. w7.Part0 = p7
  2973. 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)
  2974. w7.Part1 = p8
  2975. 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)
  2976. w8 = Instance.new("Weld", p8)
  2977. w8.Name = "Part_Weld"
  2978. w8.Part0 = p8
  2979. 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)
  2980. w8.Part1 = p9
  2981. 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)
  2982. w9 = Instance.new("Weld", p9)
  2983. w9.Name = "Part_Weld"
  2984. w9.Part0 = p9
  2985. 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)
  2986. w9.Part1 = p10
  2987. 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)
  2988. w10 = Instance.new("Weld", p10)
  2989. w10.Name = "Part_Weld"
  2990. w10.Part0 = p10
  2991. 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)
  2992. w10.Part1 = p11
  2993. 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)
  2994. w11 = Instance.new("Weld", p11)
  2995. w11.Name = "Wedge_Weld"
  2996. w11.Part0 = p11
  2997. 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)
  2998. w11.Part1 = p12
  2999. 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)
  3000. w12 = Instance.new("Weld", p12)
  3001. w12.Name = "Part_Weld"
  3002. w12.Part0 = p12
  3003. 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)
  3004. w12.Part1 = p13
  3005. 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)
  3006. w13 = Instance.new("Weld", p13)
  3007. w13.Name = "Part_Weld"
  3008. w13.Part0 = p13
  3009. 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)
  3010. w13.Part1 = p14
  3011. 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)
  3012. w14 = Instance.new("Weld", p14)
  3013. w14.Name = "Wedge_Weld"
  3014. w14.Part0 = p14
  3015. 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)
  3016. m.Parent = lleg
  3017. m:MakeJoints()
  3018. ----------------------------------------------------
  3019. local cor7 = Instance.new("Part", lleg.LeftLeg)
  3020. cor7.Name = "Thingy"
  3021. cor7.Locked = true
  3022. cor7.BottomSurface = 0
  3023. cor7.CanCollide = false
  3024. cor7.Size = Vector3.new(2, 1, 1)
  3025. cor7.Transparency = 1
  3026. cor7.TopSurface = 0
  3027. corw2 = Instance.new("Weld", cor7)
  3028. corw2.Part0 = lleg
  3029. corw2.Part1 = cor7
  3030. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3031. corw2.C1 = CFrame.new(0, 0, 0)
  3032. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3033. weld2.Part0 = cor7
  3034. weld2.Part1 = p3
  3035. weld2.C0 = CFrame.new(0, 0, 0)
  3036. ----------------------------------------------------
  3037. function weld5(part0, part1, c0, c1)
  3038. weeld=Instance.new("Weld", part0)
  3039. weeld.Part0=part0
  3040. weeld.Part1=part1
  3041. weeld.C0=c0
  3042. weeld.C1=c1
  3043. return weeld
  3044. end
  3045. ----------------------------------------------------
  3046. function newRay(start,face,range,wat)
  3047. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3048. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3049. return rey,hit,pos
  3050. end
  3051. ----------------------------------------------------
  3052. mod5 = Instance.new("Model",char)
  3053.  
  3054. function FindNearestTorso(Position,Distance,SinglePlayer)
  3055. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3056. local List = {}
  3057. for i,v in pairs(workspace:GetChildren())do
  3058. if v:IsA("Model")then
  3059. if v:findFirstChild("Torso")then
  3060. if v ~= char then
  3061. if(v.Torso.Position -Position).magnitude <= Distance then
  3062. table.insert(List,v)
  3063. end
  3064. end
  3065. end
  3066. end
  3067. end
  3068. return List
  3069. end
  3070.  
  3071. function Landing()
  3072. part=Instance.new('Part',mod5)
  3073. part.Anchored=true
  3074. part.CanCollide=false
  3075. part.FormFactor='Custom'
  3076. part.Size=Vector3.new(.2,.2,.2)
  3077. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3078. part.Transparency=.7
  3079. part.BrickColor=BrickColor.new('Institutional white')
  3080. part2=part:clone()
  3081. part2.Parent = mod5
  3082. part2.BrickColor=BrickColor.new('Bright red')
  3083. mesh=Instance.new('SpecialMesh',part)
  3084. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3085. mesh.Scale=Vector3.new(10,5,10)
  3086. mesh2=mesh:clone()
  3087. mesh2.Parent=part2
  3088. mesh2.Scale=Vector3.new(12, 6, 12)
  3089.  
  3090. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3091. if v:FindFirstChild('Humanoid') then
  3092. v.Humanoid:TakeDamage(math.random(20,30))
  3093. v.Humanoid.PlatformStand = true
  3094. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3095. end
  3096. end
  3097.  
  3098. coroutine.resume(coroutine.create(function()
  3099. for i=0,3.8,0.05 do
  3100. wait()
  3101. part.CFrame=part.CFrame
  3102. part.Transparency=i
  3103. part2.CFrame=part2.CFrame
  3104. part2.Transparency=i
  3105. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3106. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3107. end
  3108. part.Parent = nil
  3109. end))
  3110. end
  3111. ----------------------------------------------------
  3112. mod4 = Instance.new("Model",char)
  3113.  
  3114. ptez = {0.7, 0.8, 0.9, 1}
  3115.  
  3116. function FindNearestTorso(Position,Distance,SinglePlayer)
  3117. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3118. local List = {}
  3119. for i,v in pairs(workspace:GetChildren())do
  3120. if v:IsA("Model")then
  3121. if v:findFirstChild("Torso")then
  3122. if v ~= char then
  3123. if(v.Torso.Position -Position).magnitude <= Distance then
  3124. table.insert(List,v)
  3125. end
  3126. end
  3127. end
  3128. end
  3129. end
  3130. return List
  3131. end
  3132.  
  3133. function GroundPound()
  3134. part=Instance.new('Part',mod4)
  3135. part.Anchored=true
  3136. part.CanCollide=false
  3137. part.FormFactor='Custom'
  3138. part.Size=Vector3.new(.2,.2,.2)
  3139. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3140. part.Transparency=.7
  3141. part.BrickColor=BrickColor.new('Institutional white')
  3142. mesh=Instance.new('SpecialMesh',part)
  3143. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3144. mesh.Scale=Vector3.new(3,3,3)
  3145. part2=Instance.new('Part',mod4)
  3146. part2.Anchored=true
  3147. part2.CanCollide=false
  3148. part2.FormFactor='Custom'
  3149. part2.Size=Vector3.new(.2,.2,.2)
  3150. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3151. part2.Transparency=.7
  3152. part2.BrickColor=BrickColor.new('Really red')
  3153. mesh2=Instance.new('SpecialMesh',part2)
  3154. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3155. mesh2.Scale=Vector3.new(3,1.5,3)
  3156. x = Instance.new("Sound",char)
  3157. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3158. x.Pitch = ptez[math.random(1,#ptez)]
  3159. x.Volume = 1
  3160. wait(.1)
  3161. x:Play()
  3162. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3163. if v:FindFirstChild('Humanoid') then
  3164. v.Humanoid:TakeDamage(math.random(8,15))
  3165. end
  3166. end
  3167. coroutine.resume(coroutine.create(function()
  3168. for i=0,0.62,0.13 do
  3169. wait()
  3170. part.CFrame=part.CFrame
  3171. part.Transparency=i
  3172. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3173. part2.CFrame=part2.CFrame
  3174. part2.Transparency=i
  3175. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3176. end
  3177. part.Parent=nil
  3178. part2.Parent=nil
  3179. x:Destroy()
  3180. end))
  3181. end
  3182. ----------------------------------------------------
  3183. mod=Instance.new('Model',char)
  3184.  
  3185. function charge()
  3186. hed.Velocity=hed.CFrame.lookVector*200
  3187. part=Instance.new('Part',mod)
  3188. part.Anchored=true
  3189. part.CanCollide=false
  3190. part.FormFactor='Custom'
  3191. part.Size=Vector3.new(.2,.2,.2)
  3192. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3193. part.Transparency=.7
  3194. part.BrickColor=BrickColor.new('Black')
  3195. mesh=Instance.new('SpecialMesh',part)
  3196. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3197. mesh.Scale=Vector3.new(10,5,10)
  3198. part2=part:clone()
  3199. part2.Parent=mod
  3200. part2.BrickColor=BrickColor.new('Bright red')
  3201. mesh2=mesh:clone()
  3202. mesh2.Parent=part2
  3203. mesh2.Scale=Vector3.new(20,10,20)
  3204. part3=part2:clone()
  3205. part3.Parent = mod
  3206. part3.BrickColor=BrickColor.new('Institutional white')
  3207. mesh3=mesh2:clone()
  3208. mesh2.Parent=part3
  3209. mesh3.Scale=Vector3.new(30,15,30)
  3210. coroutine.resume(coroutine.create(function()
  3211. for i=0,1,0.1 do
  3212. wait()
  3213. part.CFrame=part.CFrame
  3214. part.Transparency=i
  3215. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3216. part2.CFrame=part2.CFrame
  3217. part2.Transparency=i
  3218. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3219. part3.CFrame=part3.CFrame
  3220. part3.Transparency=i
  3221. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3222. end
  3223. part.Parent=nil
  3224. part2.Parent=nil
  3225. part3.Parent = nil
  3226. end))
  3227. end
  3228. ----------------------------------------------------
  3229. function FindNearestTorso(Position,Distance,SinglePlayer)
  3230. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3231. local List = {}
  3232. for i,v in pairs(workspace:GetChildren())do
  3233. if v:IsA("Model")then
  3234. if v:findFirstChild("Torso")then
  3235. if v ~= char then
  3236. if(v.Torso.Position -Position).magnitude <= Distance then
  3237. table.insert(List,v)
  3238. end
  3239. end
  3240. end
  3241. end
  3242. end
  3243. return List
  3244. end
  3245.  
  3246. mod3 = Instance.new("Model",rleg)
  3247.  
  3248. function Stomp()
  3249. part=Instance.new('Part',mod3)
  3250. part.Anchored=true
  3251. part.CanCollide=false
  3252. part.FormFactor='Custom'
  3253. part.Size=Vector3.new(.2,.2,.2)
  3254. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3255. part.Transparency=.7
  3256. part.BrickColor=BrickColor.new('Institutional white')
  3257. mesh=Instance.new('SpecialMesh',part)
  3258. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3259. mesh.Scale=Vector3.new(25,25,25)
  3260. part2=part:clone()
  3261. part2.Parent=mod3
  3262. part2.BrickColor=BrickColor.new('Bright red')
  3263. mesh2=mesh:clone()
  3264. mesh2.Parent=part2
  3265. mesh2.Scale=Vector3.new(15,15,15)
  3266. part3=part:clone()
  3267. part3.Parent=mod3
  3268. part3.TopSurface=0
  3269. part3.BottomSurface=0
  3270. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3271. mesh3=Instance.new('SpecialMesh',part3)
  3272. mesh3.MeshType = 3
  3273. mesh3.Scale=Vector3.new(12,12,12)
  3274. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3275. if v:FindFirstChild('Humanoid') then
  3276. v.Humanoid:TakeDamage(math.random(20,60))
  3277. v.Humanoid.PlatformStand = true
  3278. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3279. end
  3280. end
  3281. coroutine.resume(coroutine.create(function()
  3282. for i=0,3.8,0.05 do
  3283. wait()
  3284. part.CFrame=part.CFrame
  3285. part.Transparency=i
  3286. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3287. part2.CFrame=part2.CFrame
  3288. part2.Transparency=i
  3289. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3290. part3.CFrame=part3.CFrame
  3291. part3.Transparency=i
  3292. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3293. end
  3294. end))
  3295. end
  3296. ----------------------------------------------------
  3297.  
  3298. local acos = math.acos
  3299. local sqrt = math.sqrt
  3300. local Vec3 = Vector3.new
  3301. local fromAxisAngle = CFrame.fromAxisAngle
  3302.  
  3303. local function toAxisAngle(CFr)
  3304. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3305. local Angle = math.acos((R00+R11+R22-1)/2)
  3306. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3307. A = A == 0 and 0.00001 or A
  3308. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3309. B = B == 0 and 0.00001 or B
  3310. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3311. C = C == 0 and 0.00001 or C
  3312. local x = (R21-R12)/sqrt(A)
  3313. local y = (R02-R20)/sqrt(B)
  3314. local z = (R10-R01)/sqrt(C)
  3315. return Vec3(x,y,z),Angle
  3316. end
  3317.  
  3318. function ApplyTrig(Num,Func)
  3319. local Min,Max = Func(0),Func(1)
  3320. local i = Func(Num)
  3321. return (i-Min)/(Max-Min)
  3322. --[[if Func == "sin" then
  3323. return (math.sin((1-Num)*math.pi)+1)/2
  3324. elseif Func == "cos" then
  3325. return (math.cos((1-Num)*math.pi)+1)/2
  3326. end]]
  3327. end
  3328.  
  3329. function LerpCFrame(CFrame1,CFrame2,Num)
  3330. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3331. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3332. end
  3333.  
  3334. function Crater(Torso,Radius)
  3335. Spawn(function()
  3336. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3337. local Ignore = {}
  3338. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3339. if v.Character ~= nil then
  3340. Ignore[#Ignore+1] = v.Character
  3341. end
  3342. end
  3343. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3344. if Hit == nil then return end
  3345. local Parts = {}
  3346. for i = 1,360,10 do
  3347. local P = Instance.new("Part",Torso.Parent)
  3348. P.Anchored = true
  3349. P.FormFactor = "Custom"
  3350. P.BrickColor = Hit.BrickColor
  3351. P.Material = Hit.Material
  3352. P.TopSurface = "Smooth"
  3353. P.BottomSurface = "Smooth"
  3354. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3355. 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)))
  3356. 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}
  3357. if math.random(0,5) == 0 then -- rubble
  3358. local P = Instance.new("Part",Torso.Parent)
  3359. P.Anchored = true
  3360. P.FormFactor = "Custom"
  3361. P.BrickColor = Hit.BrickColor
  3362. P.Material = Hit.Material
  3363. P.TopSurface = "Smooth"
  3364. P.BottomSurface = "Smooth"
  3365. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3366. 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)))
  3367. 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}
  3368. end
  3369. end
  3370. for i = 0,1,0.05 do
  3371. for i2,v in pairs(Parts) do
  3372. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3373. end
  3374. wait(0.02)
  3375. end
  3376. for i,v in pairs(Parts) do
  3377. if v[1].Size.X > 2.1 then
  3378. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3379. end
  3380. v[1].Anchored = false
  3381. end
  3382. for i = 0,1,0.05 do
  3383. for i2,v in pairs(Parts) do
  3384. v[1].Transparency = i
  3385. if i == 1 then
  3386. v[1]:Destroy()
  3387. elseif i >= 0.25 then
  3388. v[1].CanCollide = false
  3389. end
  3390. end
  3391. wait(0.02)
  3392. end
  3393. Parts = nil
  3394. end)
  3395. end
  3396.  
  3397. ----------------------------------------------------
  3398. mouse.KeyDown:connect(function(key)
  3399. if key == "r" then
  3400. larm.BrickColor = BrickColor.new("Bright red")
  3401. rarm.BrickColor = BrickColor.new("Bright red")
  3402. if Debounces.CanAttack == true then
  3403. Debounces.CanAttack = false
  3404. Debounces.on = true
  3405. Debounces.NoIdl = true
  3406. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3407. hit = ht.Parent
  3408. if ht and hit:IsA("Model") then
  3409. if hit:FindFirstChild("Humanoid") then
  3410. if hit.Name ~= p.Name then
  3411. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3412. Debounces.Slashed = true]]--
  3413. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3414. wait(1)
  3415. --Debounces.Slashed = false
  3416. --end
  3417. end
  3418. end
  3419. elseif ht and hit:IsA("Hat") then
  3420. if hit.Parent.Name ~= p.Name then
  3421. if hit.Parent:FindFirstChild("Humanoid") then
  3422. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3423. Debounces.Slashed = true]]--
  3424. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3425. wait(1)
  3426. --Debounces.Slashed = false
  3427. end
  3428. end
  3429. end
  3430. end)
  3431. q = Instance.new("Sound",hed)
  3432. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3433. q.Pitch = 0.85
  3434. q.Looped = false
  3435. q1 = Instance.new("Sound",hed)
  3436. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3437. q1.Pitch = 0.85
  3438. q1.Looped = false
  3439. q:Play()
  3440. q1:Play()
  3441. for i = 1,20 do
  3442. 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)
  3443. 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)
  3444. 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)
  3445. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3446. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3447. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3448. 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)
  3449. if Debounces.on == false then break end
  3450. rs:wait(.6)
  3451. end
  3452. n = Instance.new("Sound",hed)
  3453. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3454. n.Pitch = 0.94
  3455. n.Looped = false
  3456. n1 = Instance.new("Sound",hed)
  3457. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3458. n1.Pitch = 0.94
  3459. n1.Looped = false
  3460. n:Play()
  3461. n1:Play()
  3462. b = Instance.new("Sound",hed)
  3463. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3464. b.Pitch = 0.94
  3465. b.Looped = false
  3466. b1 = Instance.new("Sound",hed)
  3467. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3468. b1.Pitch = 0.94
  3469. b1.Looped = false
  3470. b:Play()
  3471. b1:Play()
  3472. for i = 1,26 do
  3473. 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)
  3474. 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)
  3475. 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)
  3476. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3477. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3478. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3479. 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)
  3480. if Debounces.on == false then break end
  3481. rs:wait(1)
  3482. end
  3483. wait(.5)
  3484. to:disconnect()
  3485. q:Destroy()
  3486. q1:Destroy()
  3487. n:Destroy()
  3488. n1:Destroy()
  3489. larm.BrickColor = BrickColor.new("Institutional white")
  3490. rarm.BrickColor = BrickColor.new("Institutional white")
  3491. if Debounces.CanAttack == false then
  3492. Debounces.CanAttack = true
  3493. Debounces.on = false
  3494. Debounces.NoIdl = false
  3495. end
  3496. end
  3497. end
  3498. end)
  3499. ----------------------------------------------------
  3500. mouse.KeyDown:connect(function(key)
  3501. if key == "q" then
  3502. larm.BrickColor = BrickColor.new("Bright red")
  3503. rarm.BrickColor = BrickColor.new("Bright red")
  3504. if Debounces.CanAttack == true then
  3505. Debounces.CanAttack = false
  3506. Debounces.on = true
  3507. Debounces.NoIdl = true
  3508. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3509. hit = ht.Parent
  3510. if ht and hit:IsA("Model") then
  3511. if hit:FindFirstChild("Humanoid") then
  3512. if hit.Name ~= p.Name then
  3513. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3514. Debounces.Slashed = true]]--
  3515. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3516. wait(1)
  3517. --Debounces.Slashed = false
  3518. --end
  3519. end
  3520. end
  3521. elseif ht and hit:IsA("Hat") then
  3522. if hit.Parent.Name ~= p.Name then
  3523. if hit.Parent:FindFirstChild("Humanoid") then
  3524. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3525. Debounces.Slashed = true]]--
  3526. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3527. wait(1)
  3528. --Debounces.Slashed = false
  3529. end
  3530. end
  3531. end
  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(21), math.rad(75), math.rad(50)), 0.2)
  3535. 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)
  3536. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3537. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 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://160069154"
  3546. z.Looped = false
  3547. z.Pitch = .9
  3548. z1 = Instance.new("Sound",hed)
  3549. z1.SoundId = "rbxassetid://160069154"
  3550. z1.Looped = false
  3551. z1.Pitch = .9
  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(0), math.rad(0), math.rad(50)), 0.2)
  3557. 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)
  3558. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3559. 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)
  3560. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3561. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3562. 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)
  3563. if Debounces.on == false then break end
  3564. rs:wait(2)
  3565. end
  3566. for i = 1, 20 do
  3567. 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)
  3568. 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)
  3569. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3570. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3571. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3572. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3573. 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)
  3574. if Debounces.on == false then break end
  3575. rs:wait(2)
  3576. end
  3577. z = Instance.new("Sound",hed)
  3578. z.SoundId = "rbxassetid://168586621"
  3579. z.Looped = false
  3580. z.Pitch = 1
  3581. z1 = Instance.new("Sound",hed)
  3582. z1.SoundId = "rbxassetid://168586621"
  3583. z1.Looped = false
  3584. z1.Pitch = 1
  3585. wait(0.01)
  3586. z:Play()
  3587. z1:Play()
  3588. for i = 1, 20 do
  3589. 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)
  3590. 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)
  3591. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3592. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3593. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3594. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3595. 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)
  3596. if Debounces.on == false then break end
  3597. rs:wait(2)
  3598. end
  3599. to:disconnect()
  3600. larm.BrickColor = BrickColor.new("Institutional white")
  3601. rarm.BrickColor = BrickColor.new("Institutional white")
  3602. if Debounces.CanAttack == false then
  3603. Debounces.CanAttack = true
  3604. Debounces.on = false
  3605. Debounces.NoIdl = false
  3606. end
  3607. end
  3608. end
  3609. end)
  3610. ----------------------------------------------------
  3611. Sit = false
  3612. mouse.KeyDown:connect(function(key)
  3613. if key == "v" then
  3614. if Sit == false then
  3615. Sit = true
  3616. hum.WalkSpeed = 0.001
  3617. stanceToggle = "Sitting"
  3618. elseif Sit == true then
  3619. Sit = false
  3620. hum.WalkSpeed = 7
  3621. stanceToggle = "Normal"
  3622. end
  3623. end
  3624. end)
  3625. ----------------------------------------------------
  3626. mouse.KeyDown:connect(function(key)
  3627. if key == "t" then
  3628. if Debounces.CanAttack == true then
  3629. Debounces.CanAttack = false
  3630. Debounces.on = true
  3631. Debounces.NoIdl = true
  3632. for i = 1, 20 do
  3633. 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)
  3634. 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)
  3635. 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)
  3636. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3637. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3638. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3639. 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)
  3640. if Debounces.on == false then break end
  3641. rs:wait(2.6)
  3642. end
  3643. Spawn(function()
  3644. local Parts = {}
  3645. for Y = -5,5 do
  3646. local P = Instance.new("Part",char)
  3647. P.Anchored = true
  3648. P.FormFactor = "Custom"
  3649. P.CanCollide = false
  3650. P.Size = Vector3.new(1,2,1)
  3651. P.TopSurface = "SmoothNoOutlines"
  3652. P.BottomSurface = "SmoothNoOutlines"
  3653. P.BrickColor = BrickColor.new("Institutional white")
  3654. P.Name = tostring(Y)
  3655. local i = (Y+5)/(10)
  3656. i = 1-math.cos(math.pi*i-(math.pi/2))
  3657. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3658. --[[P.Touched:connect(function(ht)
  3659. local hit = ht.Parent
  3660. if hit:FindFirstChild("Humanoid") then
  3661. hit.Humanoid:TakeDamage(math.random(20,50))
  3662. end
  3663. end)]]--
  3664. s = Instance.new("Sound",P)
  3665. s.SoundId = "rbxassetid://228343271"
  3666. s.Volume = .7
  3667. s.Pitch = 0.9
  3668. s:Play()
  3669. P.Touched:connect(function(ht)
  3670. hit = ht.Parent
  3671. if ht and hit:IsA("Model") then
  3672. if hit:FindFirstChild("Humanoid") then
  3673. if hit.Name ~= p.Name then
  3674. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3675. Debounces.Slashed = true]]--
  3676. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3677. hit:FindFirstChild("Humanoid").PlatformStand = true
  3678. wait(1)
  3679. --Debounces.Slashed = false
  3680. --end
  3681. end
  3682. end
  3683. elseif ht and hit:IsA("Hat") then
  3684. if hit.Parent.Name ~= p.Name then
  3685. if hit.Parent:FindFirstChild("Humanoid") then
  3686. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3687. Debounces.Slashed = true]]--
  3688. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3689. hit:FindFirstChild("Humanoid").PlatformStand = true
  3690. wait(1)
  3691. --Debounces.Slashed = false
  3692. --end
  3693. end
  3694. end
  3695. end
  3696. end)
  3697. Parts[#Parts+1] = P
  3698. end
  3699. local BREAKIT = false
  3700. local CParts = {}
  3701. local Rocks = {}
  3702. local LastPos = nil
  3703. for i = 1,70 do
  3704. for i2,v in pairs(Parts) do
  3705. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3706. local cf = v.CFrame
  3707. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3708. v.CFrame = cf
  3709. v.Transparency = v.Transparency+0.02
  3710. if v.Transparency >= 0.975 then BREAKIT = true end
  3711. if v.Name == "0" then
  3712. local Ignore = {}
  3713. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3714. if v.Character ~= nil then
  3715. Ignore[#Ignore+1] = v.Character
  3716. end
  3717. end
  3718. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3719. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3720. if Hit ~= nil then
  3721. if #Rocks == 0 then
  3722. for i = 1,5 do
  3723. local P = Instance.new("Part",char)
  3724. Rocks[#Rocks+1] = P
  3725. P.Anchored = true
  3726. P.FormFactor = "Custom"
  3727. P.BrickColor = Hit.BrickColor
  3728. P.Material = Hit.Material
  3729. P.TopSurface = "Smooth"
  3730. P.BottomSurface = "Smooth"
  3731. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3732. end
  3733. end
  3734. for i,P in pairs(Rocks) do
  3735. 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)))
  3736. end
  3737. local P = Instance.new("Part",char)
  3738. CParts[#CParts+1] = {P,tick()}
  3739. P.Anchored = true
  3740. P.FormFactor = "Custom"
  3741. P.BrickColor = Hit.BrickColor
  3742. P.Material = Hit.Material
  3743. P.TopSurface = "Smooth"
  3744. P.BottomSurface = "Smooth"
  3745. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3746. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3747. Pos = Pos.p
  3748. 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)))
  3749. local P = P:Clone()
  3750. CParts[#CParts+1] = {P,tick()}
  3751. P.Parent = char
  3752. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3753. Pos = Pos.p
  3754. 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)))
  3755. if LastPos ~= nil then
  3756. local P = P:Clone()
  3757. CParts[#CParts+1] = {P,tick()}
  3758. P.Parent = char
  3759. P.BrickColor = BrickColor.new("Really black")
  3760. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3761. Pos = Pos.p
  3762. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3763. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3764. --P.Velocity = Vector3.new(0,-1000,0)
  3765. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3766. end
  3767. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3768. end
  3769. end
  3770. end
  3771. if BREAKIT then break end
  3772. wait(0.002)
  3773. end
  3774. for i,v in pairs(Rocks) do
  3775. CParts[#CParts+1] = {v,tick()}
  3776. end
  3777. for i,v in pairs(Parts) do
  3778. v:Destroy()
  3779. end
  3780. Parts = nil
  3781. while true do
  3782. local t = tick()
  3783. local p = nil
  3784. for i,v in pairs(CParts) do
  3785. if t-v[2] > 4 then
  3786. v[1].Transparency = v[1].Transparency+0.05
  3787. if v[1].Transparency >= 1 then
  3788. v[1]:Destroy()
  3789. CParts[i] = nil
  3790. end
  3791. end
  3792. p = v
  3793. end
  3794. if p == nil then break end
  3795. wait(0.002)
  3796. end
  3797. for i,v in pairs(CParts) do
  3798. v:Destroy()
  3799. end
  3800. CParts = {}
  3801. end)
  3802. for i = 1, 20 do
  3803. 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)
  3804. 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)
  3805. 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)
  3806. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3807. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3808. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3809. 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)
  3810. if Debounces.on == false then break end
  3811. rs:wait(2)
  3812. end
  3813. if Debounces.CanAttack == false then
  3814. Debounces.CanAttack = true
  3815. Debounces.on = false
  3816. Debounces.NoIdl = false
  3817. end
  3818. end
  3819. end
  3820. end)
  3821. ----------------------------------------------------
  3822. mouse.KeyDown:connect(function(key)
  3823. if key == "e" then
  3824. larm.BrickColor = BrickColor.new("Bright red")
  3825. rarm.BrickColor = BrickColor.new("Bright red")
  3826. if Debounces.CanAttack == true then
  3827. Debounces.CanAttack = false
  3828. Debounces.on = true
  3829. Debounces.NoIdl = true
  3830. for i = 1, 18 do
  3831. 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)
  3832. 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)
  3833. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3834. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3835. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3836. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3837. 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)
  3838. if Debounces.on == false then break end
  3839. rs:wait(4)
  3840. end
  3841. 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))
  3842. local rng = Instance.new("Part", char.Absolution.Handle)
  3843. rng.Anchored = true
  3844. rng.BrickColor = BrickColor.new("Really black")
  3845. rng.CanCollide = true
  3846. rng.FormFactor = 3
  3847. rng.Name = "Ring"
  3848. rng.Size = Vector3.new(1, 1, 1)
  3849. rng.CanCollide = false
  3850. rng.Transparency = 0.35
  3851. rng.TopSurface = 0
  3852. rng.BottomSurface = 0
  3853. rng.CFrame = HandCF
  3854. local rngm = Instance.new("SpecialMesh", rng)
  3855. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3856. rngm.Scale = Vector3.new(1, 1, 2)
  3857. x = Instance.new("Sound", hed)
  3858. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3859. x.Looped = false
  3860. x.Pitch = .7
  3861. x.Volume = 1
  3862. x1 = Instance.new("Sound", hed)
  3863. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3864. x1.Looped = false
  3865. x1.Pitch = .7
  3866. x1.Volume = 1
  3867. x:Play()
  3868. x1:Play()
  3869. rngto = rng.Touched:connect(function(ht)
  3870. hit = ht.Parent
  3871. if ht and hit:IsA("Model") then
  3872. if hit:FindFirstChild("Humanoid") then
  3873. if hit.Name ~= p.Name then
  3874. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3875. Debounces.Slashed = true]]--
  3876. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3877. hit:FindFirstChild("Humanoid").PlatformStand = true
  3878. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3879. --Debounces.Slashed = false
  3880. --end
  3881. end
  3882. end
  3883. elseif ht and hit:IsA("Hat") then
  3884. if hit.Parent.Name ~= p.Name then
  3885. if hit.Parent:FindFirstChild("Humanoid") then
  3886. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3887. Debounces.Slashed = true]]--
  3888. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3889. hit:FindFirstChild("Humanoid").PlatformStand = true
  3890. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3891. --Debounces.Slashed = false
  3892. end
  3893. end
  3894. end
  3895. end)
  3896. coroutine.wrap(function()
  3897. for i = 1, 60, 2 do
  3898. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3899. rng.Size = rngm.Scale
  3900. rng.CFrame = HandCF
  3901. rng.Transparency = i/60
  3902. wait()
  3903. end
  3904. wait()
  3905. rng:Destroy()
  3906. end)()
  3907. for i = 1, 18 do
  3908. 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)
  3909. 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)
  3910. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3911. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3912. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3913. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3914. 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)
  3915. if Debounces.on == false then break end
  3916. rs:wait(2.4)
  3917. end
  3918. larm.BrickColor = BrickColor.new("Institutional white")
  3919. rarm.BrickColor = BrickColor.new("Institutional white")
  3920. x:Destroy()
  3921. x1:Destroy()
  3922. if Debounces.CanAttack == false then
  3923. Debounces.CanAttack = true
  3924. Debounces.on = false
  3925. Debounces.NoIdl = false
  3926. end
  3927. end
  3928. end
  3929. end)
  3930. ----------------------------------------------------
  3931. mouse.KeyDown:connect(function(key)
  3932. if key == "y" then
  3933. if Debounces.CanAttack == true then
  3934. Debounces.CanAttack = false
  3935. Debounces.on = true
  3936. Debounces.NoIdl = true
  3937. for i = 1, 15 do
  3938. 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)
  3939. 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)
  3940. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3941. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3942. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3943. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3944. 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)
  3945. if Debounces.on == false then break end
  3946. rs:wait(2.7)
  3947. end
  3948. x = Instance.new("Sound",char)
  3949. x.SoundId = "rbxassetid://228343271"
  3950. x.Pitch = 1
  3951. x.Volume = .8
  3952. wait(.1)
  3953. x:Play()
  3954. Debounces.on = false
  3955. Debounces.Here = false
  3956. shot = shot + 1
  3957. local rng = Instance.new("Part", char)
  3958. rng.Anchored = true
  3959. rng.BrickColor = BrickColor.new("Bright red")
  3960. rng.CanCollide = false
  3961. rng.FormFactor = 3
  3962. rng.Name = "Ring"
  3963. rng.Size = Vector3.new(1, 1, 1)
  3964. rng.Transparency = 0.35
  3965. rng.TopSurface = 0
  3966. rng.BottomSurface = 0
  3967. rng2 = rng:clone()
  3968. rng3 = rng2:clone()
  3969. rng4 = rng2:clone()
  3970. local rngm = Instance.new("SpecialMesh", rng)
  3971. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3972. rngm.Scale = Vector3.new(10, 10, 1)
  3973. rngm2 = rngm:clone()
  3974. rngm2.Scale = Vector3.new(5, 5, 3)
  3975. rngm3=rngm2:clone()
  3976. rngm3.Parent = rng3
  3977. rngm3.Scale = Vector3.new(8, 8, 1)
  3978. rngm4 = rngm2:clone()
  3979. rngm4.Parent = rng4
  3980. rngm4.Scale = Vector3.new(6, 6, 1)
  3981. local bem = Instance.new("Part", char)
  3982. bem.Anchored = true
  3983. bem.BrickColor = BrickColor.new("Institutional white")
  3984. bem.CanCollide = false
  3985. bem.FormFactor = 3
  3986. bem.Name = "Beam" .. shot
  3987. bem.Size = Vector3.new(1, 1, 1)
  3988. bem.Transparency = 0.35
  3989. bem.TopSurface = 0
  3990. bem.BottomSurface = 0
  3991. local bemm = Instance.new("SpecialMesh", bem)
  3992. bemm.MeshType = 4
  3993. bemm.Scale = Vector3.new(1, 4, 4)
  3994. local out = Instance.new("Part", char)
  3995. out.Anchored = true
  3996. out.BrickColor = BrickColor.new("Institutional white")
  3997. out.CanCollide = false
  3998. out.FormFactor = 3
  3999. out.Name = "Out"
  4000. out.Size = Vector3.new(4, 4, 4)
  4001. out.Transparency = 0.35
  4002. out.TopSurface = 0
  4003. out.BottomSurface = 0
  4004. local outm = Instance.new("SpecialMesh", out)
  4005. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  4006. outm.Scale = Vector3.new(4, 4, 4)
  4007. local bnd = Instance.new("Part", char)
  4008. bnd.Anchored = true
  4009. bnd.BrickColor = BrickColor.new("Bright red")
  4010. bnd.CanCollide = false
  4011. bnd.FormFactor = 3
  4012. bnd.Name = "Bend"
  4013. bnd.Size = Vector3.new(1, 1, 1)
  4014. bnd.Transparency = 1
  4015. bnd.TopSurface = 0
  4016. bnd.BottomSurface = 0
  4017. local bndm = Instance.new("SpecialMesh", bnd)
  4018. bndm.MeshType = 3
  4019. bndm.Scale = Vector3.new(8, 8, 8)
  4020. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4021. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  4022. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  4023. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  4024. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  4025. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  4026. Debounces.Shewt = true
  4027. coroutine.wrap(function()
  4028. for i = 1, 20, 0.2 do
  4029. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4030. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  4031. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  4032. rng.Transparency = i/20
  4033. rng3.Transparency = 1/24
  4034. rng4.Transparency = i/26
  4035. wait()
  4036. end
  4037. wait()
  4038. rng:Destroy()
  4039. end)()
  4040. if Debounces.Shewt == true then
  4041. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4042. hit = ht.Parent
  4043. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4044. if HasntTouched(hit.Name) == true and deb == false then
  4045. deb = true
  4046. coroutine.wrap(function()
  4047. hit:FindFirstChild("Humanoid").PlatformStand = true
  4048. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4049. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4050. end)()
  4051. table.insert(Touche, hit.Name)
  4052. deb = false
  4053. end
  4054. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4055. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4056. deb = true
  4057. coroutine.wrap(function()
  4058. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4059. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4060. wait(1)
  4061. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4062. end)()
  4063. table.insert(Touche, hit.Parent.Name)
  4064. deb = false
  4065. for i, v in pairs(Touche) do
  4066. print(v)
  4067. end
  4068. end
  4069. end
  4070. end)
  4071. end
  4072. for i = 0, 260, 8 do
  4073. bem.Size = Vector3.new(i, 2, 2)
  4074. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4075. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4076. bnd.Size = Vector3.new(1,1,1)
  4077. bndm.Scale = Vector3.new(8,8,8)
  4078. if i % 10 == 0 then
  4079. local newRng = rng2:Clone()
  4080. newRng.Parent = char
  4081. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4082. local newRngm = rngm2:clone()
  4083. newRngm.Parent=newRng
  4084. coroutine.wrap(function()
  4085. for i = 1, 10, 0.2 do
  4086. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4087. newRng.Transparency = i/10
  4088. wait()
  4089. end
  4090. wait()
  4091. newRng:Destroy()
  4092. end)()
  4093. end
  4094. wait()
  4095. end
  4096. wait()
  4097. Debounces.Shewt = false
  4098. bem:Destroy()
  4099. out:Destroy()
  4100. bnd:Destroy()
  4101. Debounces.Ready = false
  4102. for i, v in pairs(Touche) do
  4103. table.remove(Touche, i)
  4104. end
  4105. wait()
  4106. table.insert(Touche, char.Name)
  4107. Debounces.NoIdl = false
  4108. if Debounces.CanAttack == false then
  4109. Debounces.CanAttack = true
  4110. end
  4111. end
  4112. end
  4113. end)
  4114. ----------------------------------------------------
  4115. sidz = {"231917888", "231917845", "231917806"}
  4116. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4117. mouse.KeyDown:connect(function(key)
  4118. if key == "f" then
  4119. larm.BrickColor = BrickColor.new("Bright red")
  4120. rarm.BrickColor = BrickColor.new("Bright red")
  4121. if Debounces.CanAttack == true then
  4122. Debounces.CanAttack = false
  4123. Debounces.on = true
  4124. Debounces.NoIdl = true
  4125. for i = 1, 20 do
  4126. 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)
  4127. 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)
  4128. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4129. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4130. 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)
  4131. 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)
  4132. 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)
  4133. if Debounces.on == false then break end
  4134. rs:wait(6)
  4135. end
  4136. z = Instance.new("Sound",char)
  4137. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4138. z.Pitch = ptz[math.random(1,#ptz)]
  4139. z.Volume = 1
  4140. z1 = Instance.new("Sound",char)
  4141. z1.SoundId = z.SoundId
  4142. z1.Pitch = z.Pitch
  4143. z1.Volume = 1
  4144. z:Play()
  4145. z1:Play()
  4146. Stomp()
  4147. for i = 1, 20 do
  4148. 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)
  4149. 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)
  4150. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4151. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4152. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4153. 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)
  4154. 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)
  4155. if Debounces.on == false then break end
  4156. rs:wait(2.5)
  4157. end
  4158. if Debounces.CanAttack == false then
  4159. Debounces.CanAttack = true
  4160. Debounces.on = false
  4161. Debounces.NoIdl = false
  4162. larm.BrickColor = BrickColor.new("Institutional white")
  4163. rarm.BrickColor = BrickColor.new("Institutional white")
  4164. end
  4165. end
  4166. end
  4167. end)
  4168. ----------------------------------------------------
  4169. mouse.KeyDown:connect(function(key)
  4170. if key == "g" then
  4171. larm.BrickColor = BrickColor.new("Bright red")
  4172. rarm.BrickColor = BrickColor.new("Bright red")
  4173. if Debounces.CanAttack == true then
  4174. Debounces.CanAttack = false
  4175. Debounces.on = true
  4176. Debounces.NoIdl = true
  4177. chrg = lleg.Touched:connect(function(ht)
  4178. hit = ht.Parent
  4179. if ht and hit:IsA("Model") then
  4180. if hit:FindFirstChild("Humanoid") then
  4181. if hit.Name ~= p.Name then
  4182. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4183. Debounces.Slashed = true]]--
  4184. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4185. hit:FindFirstChild("Humanoid").PlatformStand = true
  4186. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4187. --Debounces.Slashed = false
  4188. --end
  4189. end
  4190. end
  4191. elseif ht and hit:IsA("Hat") then
  4192. if hit.Parent.Name ~= p.Name then
  4193. if hit.Parent:FindFirstChild("Humanoid") then
  4194. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4195. Debounces.Slashed = true]]--
  4196. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4197. hit:FindFirstChild("Humanoid").PlatformStand = true
  4198. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4199. --Debounces.Slashed = false
  4200. end
  4201. end
  4202. end
  4203. end)
  4204. for i = 1, 14 do
  4205. 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)
  4206. 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)
  4207. 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)
  4208. 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)
  4209. 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)
  4210. 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)
  4211. 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)
  4212. if Debounces.on == false then break end
  4213. rs:wait(3)
  4214. end
  4215. charge()
  4216. z = Instance.new("Sound",char)
  4217. z.SoundId = "rbxassetid://200632875"
  4218. z.Volume = 1
  4219. z.Pitch = .8
  4220. z1 = Instance.new("Sound",char)
  4221. z1.SoundId = "rbxassetid://200632875"
  4222. z1.Volume = 1
  4223. z1.Pitch = .9
  4224. z:Play()
  4225. z1:Play()
  4226. wait(1)
  4227. z:Destroy()
  4228. z1:Destroy()
  4229. chrg:disconnect()
  4230. if Debounces.CanAttack == false then
  4231. Debounces.CanAttack = true
  4232. Debounces.on = false
  4233. Debounces.NoIdl = false
  4234. larm.BrickColor = BrickColor.new("Institutional white")
  4235. rarm.BrickColor = BrickColor.new("Institutional white")
  4236. end
  4237. end
  4238. end
  4239. end)
  4240. ----------------------------------------------------
  4241. pt = {0.7, 0.8, 0.9}
  4242. mouse.KeyDown:connect(function(key)
  4243. if key == "h" then
  4244. if Debounces.CanJoke == true then
  4245. Debounces.CanJoke = false
  4246. u = Instance.new("Sound")
  4247. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4248. u.Parent = char
  4249. u.Looped = false
  4250. u.Pitch = pt[math.random(1,#pt)]
  4251. u.Volume = 1
  4252. u2 = Instance.new("Sound")
  4253. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4254. u2.Parent = char
  4255. u2.Looped = false
  4256. u2.Pitch = u.Pitch
  4257. u2.Volume = 1
  4258. wait(.01)
  4259. u:Play()
  4260. u2:Play()
  4261. wait(6)
  4262. u:Destroy()
  4263. u2:Destroy()
  4264. if Debounces.CanJoke == false then
  4265. Debounces.CanJoke = true
  4266. end
  4267. end
  4268. end
  4269. end)
  4270. ----------------------------------------------------
  4271. mouse.KeyDown:connect(function(key)
  4272. if key == "j" then
  4273. if Debounces.CanJoke == true then
  4274. Debounces.CanJoke = false
  4275. z = Instance.new("Sound",char)
  4276. z.SoundId = "rbxassetid://135017755"
  4277. z.Pitch = .76
  4278. z.Volume = 1
  4279. wait()
  4280. z:Play()
  4281. wait(6)
  4282. z:Destroy()
  4283. if Debounces.CanJoke == false then
  4284. Debounces.CanJoke = true
  4285. end
  4286. end
  4287. end
  4288. end)
  4289. ----------------------------------------------------
  4290. mouse.KeyDown:connect(function(key)
  4291. if key == "k" then
  4292. if Debounces.CanJoke == true then
  4293. Debounces.CanJoke = false
  4294. z = Instance.new("Sound",char)
  4295. z.SoundId = "rbxassetid://135017578"
  4296. z.Pitch = .76
  4297. z.Volume = 1
  4298. wait()
  4299. z:Play()
  4300. wait(4)
  4301. z:Destroy()
  4302. if Debounces.CanJoke == false then
  4303. Debounces.CanJoke = true
  4304. end
  4305. end
  4306. end
  4307. end)
  4308. ----------------------------------------------------
  4309. mouse.KeyDown:connect(function(key)
  4310. if key == "x" then
  4311. if Debounces.CanAttack == true then
  4312. Debounces.CanAttack = false
  4313. Debounces.NoIdl = true
  4314. Debounces.on = true
  4315. Debounces.ks = true
  4316. for i = 1, 10 do
  4317. 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)
  4318. 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)
  4319. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4320. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4321. 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)
  4322. 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)
  4323. 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)
  4324. if Debounces.on == false then break end
  4325. rs:wait(1)
  4326. end
  4327. z = Instance.new("Sound",hed)
  4328. z.SoundId = "rbxassetid://169445092"
  4329. z.Volume = 1
  4330. wait(0.1)
  4331. z:Play()
  4332. kik = rleg.Touched:connect(function(ht)
  4333. hit = ht.Parent
  4334. if ht and hit:IsA("Model") then
  4335. if hit:FindFirstChild("Humanoid") then
  4336. if hit.Name ~= p.Name then
  4337. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4338. Debounces.Slashed = true]]--
  4339. if Debounces.ks==true then
  4340. z = Instance.new("Sound",hed)
  4341. z.SoundId = "rbxassetid://169380525"
  4342. z.Volume = 1
  4343. z:Play()
  4344. Debounces.ks=false
  4345. end
  4346. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4347. hit:FindFirstChild("Humanoid").PlatformStand = true
  4348. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4349. --Debounces.Slashed = false
  4350. --end
  4351. end
  4352. end
  4353. elseif ht and hit:IsA("Hat") then
  4354. if hit.Parent.Name ~= p.Name then
  4355. if hit.Parent:FindFirstChild("Humanoid") then
  4356. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4357. Debounces.Slashed = true]]--
  4358. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4359. hit:FindFirstChild("Humanoid").PlatformStand = true
  4360. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4361. --Debounces.Slashed = false
  4362. --end
  4363. end
  4364. end
  4365. end
  4366. end)
  4367. for i = 1, 8 do
  4368. 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)
  4369. 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)
  4370. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4371. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4372. 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)
  4373. 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)
  4374. 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)
  4375. if Debounces.on == false then break end
  4376. rs:wait(.7)
  4377. end
  4378. kik:disconnect()
  4379. if Debounces.CanAttack == false then
  4380. Debounces.CanAttack = true
  4381. Debounces.on = false
  4382. Debounces.NoIdl = false
  4383. end
  4384. end
  4385. end
  4386. end)
  4387. ----------------------------------------------------
  4388. mouse.KeyDown:connect(function(key)
  4389. if key == "c" then
  4390. if Debounces.CanAttack == true then
  4391. Debounces.CanAttack = false
  4392. Debounces.NoIdl = true
  4393. Debounces.on = true
  4394. SIDZ = {"231917744", "231917742"}
  4395. PTZ = {0.7, 0.8, 0.9, 1}
  4396. for i = 1, 20 do
  4397. wait()
  4398. for i,v in pairs(char.Absolution:children()) do
  4399. if v:IsA("Part") or v:IsA("WedgePart") then
  4400. v.Transparency = v.Transparency + 0.05
  4401. end
  4402. end
  4403. end
  4404. function FindNearestTorso(Position,Distance,SinglePlayer)
  4405. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4406. local List = {}
  4407. for i,v in pairs(workspace:GetChildren())do
  4408. if v:IsA("Model")then
  4409. if v:findFirstChild("Torso")then
  4410. if v ~= char then
  4411. if(v.Torso.Position -Position).magnitude <= Distance then
  4412. table.insert(List,v)
  4413. end
  4414. end
  4415. end
  4416. end
  4417. end
  4418. return List
  4419. end
  4420. GroundPound()
  4421. for i = 1, 11 do
  4422. 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)
  4423. 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)
  4424. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4425. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4426. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4427. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4428. 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)
  4429. if Debounces.on == false then break end
  4430. rs:wait(1.4)
  4431. end
  4432. GroundPound()
  4433. for i = 1, 11 do
  4434. 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)
  4435. 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)
  4436. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4437. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4438. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4439. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4440. 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)
  4441. if Debounces.on == false then break end
  4442. rs:wait(1.4)
  4443. end
  4444. GroundPound()
  4445. for i = 1, 11 do
  4446. 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)
  4447. 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)
  4448. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4449. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4450. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4451. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4452. 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)
  4453. if Debounces.on == false then break end
  4454. rs:wait(1.4)
  4455. end
  4456. GroundPound()
  4457. for i = 1, 11 do
  4458. 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)
  4459. 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)
  4460. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4461. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4462. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4463. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4464. 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)
  4465. if Debounces.on == false then break end
  4466. rs:wait(1.4)
  4467. end
  4468. GroundPound()
  4469. for i = 1, 11 do
  4470. 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)
  4471. 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)
  4472. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4473. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4474. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4475. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4476. 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)
  4477. if Debounces.on == false then break end
  4478. rs:wait(1.4)
  4479. end
  4480. GroundPound()
  4481. for i = 1, 11 do
  4482. 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)
  4483. 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)
  4484. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4485. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4486. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4487. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4488. 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)
  4489. if Debounces.on == false then break end
  4490. rs:wait(1.4)
  4491. end
  4492. for i = 1, 24 do
  4493. 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)
  4494. 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)
  4495. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4496. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4497. 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)
  4498. 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)
  4499. 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)
  4500. if Debounces.on == false then break end
  4501. rs:wait(3)
  4502. end
  4503. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4504. if v:FindFirstChild('Humanoid') then
  4505. v.Humanoid:TakeDamage(math.random(20,60))
  4506. v.Humanoid.PlatformStand = true
  4507. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4508. end
  4509. end
  4510. x = Instance.new("Sound",char)
  4511. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4512. x.Pitch = PTZ[math.random(1,#PTZ)]
  4513. x.Volume = 1
  4514. wait(0.1)
  4515. x:Play()
  4516. Crater(hed,20)
  4517. for i = 1, 20 do
  4518. 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)
  4519. 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)
  4520. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4521. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4522. 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)
  4523. 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)
  4524. 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)
  4525. if Debounces.on == false then break end
  4526. rs:wait(2)
  4527. end
  4528. if Debounces.CanAttack == false then
  4529. Debounces.CanAttack = true
  4530. Debounces.on = false
  4531. Debounces.NoIdl = false
  4532. for i = 1, 20 do
  4533. wait()
  4534. for i,v in pairs(char.Absolution:children()) do
  4535. if v:IsA("Part") or v:IsA("WedgePart") then
  4536. v.Transparency = v.Transparency - 0.05
  4537. end
  4538. end
  4539. end
  4540. end
  4541. end
  4542. end
  4543. end)
  4544. ----------------------------------------------------176349813
  4545. mouse.KeyDown:connect(function(key)
  4546. if key == "b" then
  4547. hum.WalkSpeed = 0.01
  4548. if Debounces.CanAttack == true then
  4549. Debounces.CanAttack = false
  4550. Debounces.NoIdl = true
  4551. Debounces.on = true
  4552. for i = 1, 30 do
  4553. 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)
  4554. 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)
  4555. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4556. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4557. 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)
  4558. 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)
  4559. 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)
  4560. if Debounces.on == false then break end
  4561. rs:wait(6)
  4562. end
  4563. v = Instance.new("Sound")
  4564. v.SoundId = "rbxassetid://181384451"
  4565. v.Parent = char
  4566. v.Looped = false
  4567. v.Pitch = .94
  4568. v.Volume = 1
  4569. wait(.01)
  4570. v:Play()
  4571.  
  4572. if Daytime == true then
  4573. Daytime = false
  4574. l.TimeOfDay = 24
  4575. else
  4576. Daytime = true
  4577. l.TimeOfDay = 12
  4578. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4579. end
  4580.  
  4581. local Shockwave = function()
  4582. local rng1 = Instance.new("Part", char)
  4583. rng1.Anchored = true
  4584. rng1.BrickColor = BrickColor.new("Really black")
  4585. rng1.CanCollide = false
  4586. rng1.FormFactor = 3
  4587. rng1.Name = "Ring"
  4588. rng1.Size = Vector3.new(1, 1, 1)
  4589. rng1.Transparency = 0.35
  4590. rng1.TopSurface = 0
  4591. rng1.BottomSurface = 0
  4592. local rngm1 = Instance.new("SpecialMesh", rng)
  4593. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4594. rngm1.Scale = Vector3.new(10, 10, 1)
  4595. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4596. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4597. Wave.Name = "Shockwave"
  4598. Wave.BrickColor = BrickColor.new("Really black")
  4599. Wave.Size = Vector3.new(1, 1, 1)
  4600. Wave.Shape = "Ball"
  4601. Wave.CanCollide = false
  4602. Wave.Anchored = true
  4603. Wave.TopSurface = 0
  4604. Wave.BottomSurface = 0
  4605. Wave.Touched:connect(function(hit)
  4606. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4607. local Occlude = true
  4608. local NotOccludes = {
  4609. char.Name;
  4610. "Wings";
  4611. "Scythe";
  4612. "Thingy";
  4613. "Thingy2"; -- put all of the names in a table pls
  4614. }
  4615. for i,v in pairs(NotOccludes) do
  4616. if hit.Parent.Name == v then
  4617. Occlude = false
  4618. end
  4619. end
  4620. --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
  4621. if Occlude then
  4622. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4623. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4624. end
  4625. end
  4626. end)
  4627.  
  4628. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4629.  
  4630. coroutine.wrap(function()
  4631. for i = 1, 20, 0.2 do
  4632. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4633. rng1.Transparency = i/20
  4634. wait()
  4635. end
  4636. wait()
  4637. rng1:Destroy()
  4638. end)()
  4639.  
  4640. Delay(0, function()
  4641.  
  4642. if Daytime == false then
  4643. for i = 1, 50, 1 do
  4644. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4645. Wave.CFrame = char.Torso.CFrame
  4646. local t = i / 50
  4647. Wave.Transparency = t
  4648. wait()
  4649. end
  4650. else
  4651. for i = 1, 50, 1 do
  4652. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4653. Wave.CFrame = char.Torso.CFrame
  4654. local t = i / 50
  4655. Wave.Transparency = t
  4656. wait()
  4657. end
  4658. end
  4659. Wave:Destroy()
  4660. end)
  4661. Delay(0, function()
  4662. while wait() do
  4663. if Wave ~= nil then
  4664. Wave.CFrame = char.Torso.CFrame
  4665. else
  4666. break
  4667. end
  4668. end
  4669. end)
  4670. end
  4671. Shockwave()
  4672. for i = 1, 30 do
  4673. 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)
  4674. 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)
  4675. 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)
  4676. 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)
  4677. 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)
  4678. 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)
  4679. if Debounces.on == false then break end
  4680. rs:wait()
  4681. end
  4682. wait(2.4)
  4683. Debounces.NoIdl = false
  4684. hum.WalkSpeed = 5
  4685. Debounces.on = false
  4686. wait()
  4687. if Debounces.CanAttack == false then
  4688. Debounces.CanAttack = true
  4689. v:Destroy()
  4690. end
  4691. end
  4692. end
  4693. end)
  4694. ----------------------------------------------------
  4695. mouse.KeyDown:connect(function(key)
  4696. if key == "l" then
  4697. for i = 1, 20 do
  4698. wait()
  4699. for i,v in pairs(char.Absolution:children()) do
  4700. if v:IsA("Part") or v:IsA("WedgePart") then
  4701. v.Transparency = v.Transparency + 0.05
  4702. end
  4703. end
  4704. end
  4705. if Debounces.CanAttack == true then
  4706. Debounces.CanAttack = false
  4707. Debounces.NoIdl = true
  4708. Debounces.on = true
  4709. bv = Instance.new("BodyVelocity",torso)
  4710. bv.maxForce = Vector3.new(0,200000,0)
  4711. bv.P = 100000
  4712. bv.velocity = Vector3.new(0,500,0)
  4713. wait(2)
  4714. bv:Destroy()
  4715. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4716. for i = 1, 20 do
  4717. 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)
  4718. 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)
  4719. 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)
  4720. 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)
  4721. 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)
  4722. 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)
  4723. 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)
  4724. if Debounces.on == false then break end
  4725. wait()
  4726. end
  4727. for i = 1, 360, 20 do wait()
  4728. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4729. end
  4730. end
  4731. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4732. local ry,ht,ps=nil,nil,nil
  4733. while ht==nil do
  4734. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4735. wait()
  4736. end
  4737. z = Instance.new("Sound",char)
  4738. z.SoundId = "rbxassetid://245537790"
  4739. z.Pitch = 1
  4740. z.Volume = 1
  4741. wait(0.1)
  4742. z:Play()
  4743. local sp = Instance.new("Part", char)
  4744. sp.Name = "Energy"
  4745. sp.BrickColor = BrickColor.new("Really black")
  4746. sp.Size = Vector3.new(1, 1, 1)
  4747. sp.Shape = "Ball"
  4748. sp.CanCollide = false
  4749. sp.Anchored = true
  4750. sp.TopSurface = 0
  4751. sp.BottomSurface = 0
  4752. local spm = Instance.new("SpecialMesh",sp)
  4753. spm.MeshId = "rbxassetid://9982590"
  4754. spm.Scale = Vector3.new(3,3,3)
  4755. local sp2 = Instance.new("Part", char)
  4756. sp2.Name = "Energy2"
  4757. sp2.BrickColor = BrickColor.new("Really black")
  4758. sp2.Size = Vector3.new(1, 1, 1)
  4759. sp2.Shape = "Ball"
  4760. sp2.CanCollide = false
  4761. sp2.Anchored = true
  4762. sp2.TopSurface = 0
  4763. sp2.BottomSurface = 0
  4764. local spm2 = Instance.new("SpecialMesh",sp2)
  4765. spm2.MeshId = "rbxassetid://9982590"
  4766. spm2.Scale = Vector3.new(3,3,3)
  4767. sp.Touched:connect(function(hit)
  4768. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4769. local Occlude = true
  4770. local NotOccludes = {
  4771. char.Name;
  4772. "Wings";
  4773. "Scythe";
  4774. "Thingy";
  4775. "Thingy2"; -- put all of the names in a table pls
  4776. }
  4777. for i,v in pairs(NotOccludes) do
  4778. if hit.Parent.Name == v then
  4779. Occlude = false
  4780. end
  4781. end
  4782. --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
  4783. if Occlude then
  4784. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4785. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4786. end
  4787. end
  4788. end)
  4789. sp2.Touched:connect(function(hit)
  4790. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4791. local Occlude = true
  4792. local NotOccludes = {
  4793. char.Name;
  4794. "Wings";
  4795. "Scythe";
  4796. "Thingy";
  4797. "Thingy2"; -- put all of the names in a table pls
  4798. }
  4799. for i,v in pairs(NotOccludes) do
  4800. if hit.Parent.Name == v then
  4801. Occlude = false
  4802. end
  4803. end
  4804. --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
  4805. if Occlude then
  4806. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4807. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4808. end
  4809. end
  4810. end)
  4811. for i = 1, 100, 1 do
  4812. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4813. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4814. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4815. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4816. spm.Scale = sp.Size
  4817. spm2.Scale = sp2.Size
  4818. local t = i / 100
  4819. sp.Transparency = t
  4820. sp2.Transparency = t
  4821. wait()
  4822. end
  4823. sp:Destroy()
  4824. sp2:Destroy()
  4825. z:Destroy()
  4826. for i = 1, 20 do
  4827. wait()
  4828. for i,v in pairs(char.Absolution:children()) do
  4829. if v:IsA("Part") or v:IsA("WedgePart") then
  4830. v.Transparency = v.Transparency - 0.05
  4831. end
  4832. end
  4833. end
  4834. if Debounces.CanAttack == false then
  4835. Debounces.CanAttack = true
  4836. Debounces.NoIdl = false
  4837. Debounces.on = false
  4838. end
  4839. end
  4840. end
  4841. end)
  4842. ----------------------------------------------------
  4843. local orbt={}
  4844. local stlt={}
  4845. local chot={}
  4846. local cfxt={}
  4847. local pfxt={}
  4848. local cns=0
  4849. local cnOrb=nil
  4850. mouse.KeyDown:connect(function(key)
  4851. if key == "u" then
  4852. if Debounces.CanAttack == true then
  4853. Debounces.CanAttack = false
  4854. Debounces.NoIdl = true
  4855. Debounces.on = true
  4856. orbt={}
  4857. stlt={}
  4858. chot={}
  4859. cfxt={}
  4860. for i = 1, 20 do
  4861. 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)
  4862. 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)
  4863. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4864. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4865. 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)
  4866. 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)
  4867. 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)
  4868. if Debounces.on == false then end
  4869. rs:wait()
  4870. end
  4871. z = Instance.new("Sound",char)
  4872. z.SoundId = "rbxassetid://170053944"
  4873. z.Pitch = 1.07
  4874. z.Volume = 1
  4875. wait(0.1)
  4876. z:Play()
  4877. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4878. debris:AddItem(cnOrb,50)
  4879. cnOrb.Mesh.MeshType=3
  4880. table.insert(orbt,cnOrb)
  4881. table.insert(stlt,cnOrb)
  4882. local nt=0
  4883. for i=0,5,0.02 do
  4884. nt=nt+1
  4885. cns=i
  4886. if nt>=2 then
  4887. nt=0
  4888. 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")
  4889. debris:AddItem(cho,1)
  4890. cho.Mesh.MeshType=3
  4891. table.insert(chot,cho)
  4892. end
  4893. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4894. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4895. wait()
  4896. end
  4897. for i = 1, 14 do
  4898. 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)
  4899. if Debounces.on == false then end
  4900. rs:wait()
  4901. end
  4902. coroutine.wrap(function()
  4903. for i = 1, 20 do
  4904. 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)
  4905. 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)
  4906. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4907. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4908. 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)
  4909. 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)
  4910. if Debounces.on == false then end
  4911. rs:wait()
  4912. end
  4913. end)()
  4914. wait(0.1)
  4915. stlt={}
  4916. 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})
  4917. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4918. local nt=0
  4919. for i=0,160,3 do
  4920. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4921. nt=nt+1
  4922. if nt>=6 then
  4923. nt=0
  4924. 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")
  4925. cfx.Mesh.MeshId="rbxassetid://20329976"
  4926. cfx.Transparency=0.4
  4927. table.insert(cfxt,cfx)
  4928. debris:AddItem(cfx,1)
  4929. end
  4930. if (cnOrb.Position-ps).magnitude<6 then
  4931. break
  4932. end
  4933. wait()
  4934. end
  4935. orbt={}
  4936.  
  4937. for i=0,1,0.1 do
  4938. local cs=cnOrb.Mesh.Scale
  4939. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4940. wait()
  4941. end
  4942. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4943. ofx.Transparency=0.5
  4944. ofx.Mesh.MeshType=3
  4945. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4946. for _,v in pairs(game:service"Players":GetChildren()) do
  4947. pcall(function()
  4948. for _,c in pairs(v.Character:GetChildren()) do
  4949. 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
  4950. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4951. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4952. end
  4953. end
  4954. end)
  4955. end
  4956. for i=0,1,0.05 do
  4957. local cs=cnOrb.Mesh.Scale
  4958. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4959. local ofs=ofx.Mesh.Scale
  4960. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4961. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4962. wait()
  4963. end
  4964. ofx:Destroy()
  4965. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4966. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4967. cnfx.Mesh.MeshType=3
  4968. cnOrb.Transparency=0.05
  4969. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4970. cnr.Mesh.MeshType=3
  4971. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4972. rn1.Transparency=1
  4973. rn1.Mesh.MeshId="rbxassetid://3270017"
  4974. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4975. rn2.Transparency=1
  4976. rn2.Mesh.MeshId="rbxassetid://3270017"
  4977. local nt=0
  4978. local cs=nil
  4979. for i=0,1,0.05 do
  4980. cs=cnOrb.Mesh.Scale
  4981. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4982. local fs=cnfx.Mesh.Scale
  4983. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4984. cnfx.Transparency=cnfx.Transparency+0.05
  4985. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4986. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4987. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4988. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4989. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4990. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4991. local rs=cnr.Mesh.Scale
  4992. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4993. nt=nt+1
  4994. if nt>=6 then
  4995. local pls={}
  4996. for _,v in pairs(game.Players:GetChildren()) do
  4997. table.insert(pls,v)
  4998. end
  4999. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5000. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5001. pffx.Mesh.MeshId="rbxassetid://20329976"
  5002. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  5003. debris:AddItem(pffx,2)
  5004. table.insert(pfxt,pffx)
  5005. nt=0
  5006. end
  5007. wait()
  5008. end
  5009. local int=0
  5010. coroutine.wrap(function()
  5011. for i=1,500 do
  5012. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5013. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5014. nt=nt+1
  5015. int=int+1
  5016. local htd={p}
  5017. for _,v in pairs(game:service"Players":GetChildren()) do
  5018. pcall(function()
  5019. for _,c in pairs(v.Character:GetChildren()) do
  5020. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5021. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  5022. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  5023. table.insert(htd,v)
  5024. end
  5025. end
  5026. end)
  5027. end
  5028. htd={p}
  5029. if int>=6 then
  5030. for _,v in pairs(game:service"Players":GetChildren()) do
  5031. pcall(function()
  5032. for _,c in pairs(v.Character:GetChildren()) do
  5033. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5034. table.insert(htd,v)
  5035. 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")
  5036. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5037. hfx.Mesh.MeshType=3
  5038. debris:AddItem(hfx,2)
  5039. coroutine.wrap(function()
  5040. pcall(function()
  5041. for i=0,1,0.05 do
  5042. pcall(function()
  5043. local hs=hfx.Mesh.Scale
  5044. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5045. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5046. end)
  5047. wait()
  5048. end
  5049. hfx:Destroy()
  5050. end)
  5051. end)()
  5052. end
  5053. end
  5054. end)
  5055. end
  5056. int=0
  5057. end
  5058. if nt>=4 then
  5059. local pls={}
  5060. for _,v in pairs(game.Players:GetChildren()) do
  5061. table.insert(pls,v)
  5062. end
  5063. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5064. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5065. pffx.Transparency=0.4
  5066. pffx.Mesh.MeshId="rbxassetid://20329976"
  5067. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5068. debris:AddItem(pffx,2)
  5069. table.insert(pfxt,pffx)
  5070. nt=0
  5071. end
  5072. wait()
  5073. end
  5074. cnOrb:Destroy()
  5075. cnfx:Destroy()
  5076. for _,v in pairs(mod3:GetChildren()) do
  5077. v:Destroy()
  5078. end
  5079. orbt={}
  5080. stlt={}
  5081. chot={}
  5082. cfxt={}
  5083. pfxt={}
  5084. end)()
  5085. if Debounces.CanAttack == false then
  5086. Debounces.CanAttack = true
  5087. Debounces.NoIdl = false
  5088. Debounces.on = false
  5089. end
  5090. end
  5091. end
  5092. end)
  5093. ----------------------------------------------------
  5094. mouse.KeyDown:connect(function(key)
  5095. if key == "m" then
  5096. if Debounces.CanAttack == true then
  5097. Debounces.CanAttack = false
  5098. Debounces.on = true
  5099. Debounces.NoIdl = true
  5100. --[[x = Instance.new("Sound",char)
  5101. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5102. x.Looped = false
  5103. x.Pitch = 1.1
  5104. x.Volume = 1
  5105. x:Play()
  5106. x2 = Instance.new("Sound",char)
  5107. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5108. x2.Looped = false
  5109. x2.Pitch = .7
  5110. x2.Volume = 1
  5111. wait(.1)
  5112. x:Play()
  5113. x2:Play()
  5114. for i = 1, 20 do
  5115. 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)
  5116. 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)
  5117. 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)
  5118. 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)
  5119. 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)
  5120. 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)
  5121. 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)
  5122. if Debounces.on == false then break end
  5123. wait()
  5124. x:Destroy()
  5125. x2:Destroy()
  5126. end
  5127. wait(1)]]--
  5128. local rng = Instance.new("Part", char)
  5129. rng.Anchored = true
  5130. rng.BrickColor = BrickColor.new("Really black")
  5131. rng.CanCollide = false
  5132. rng.FormFactor = 3
  5133. rng.Name = "Ring"
  5134. rng.Size = Vector3.new(1, 1, 1)
  5135. rng.Transparency = 0.35
  5136. rng.TopSurface = 0
  5137. rng.BottomSurface = 0
  5138. rng.Position = torso.Position - Vector3.new(0,5,0)
  5139. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5140. local rngm = Instance.new("SpecialMesh", rng)
  5141. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5142. rngm.Scale = Vector3.new(1, 1, 2)
  5143. x = Instance.new("Sound",char)
  5144. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5145. x.Looped = false
  5146. x.Pitch = .7
  5147. x.Volume = 1
  5148. x:Play()
  5149. coroutine.wrap(function()
  5150. for i = 1, 60, 2 do
  5151. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5152. rng.Transparency = i/60
  5153. wait()
  5154. end
  5155. wait()
  5156. rng:Destroy()
  5157. end)()
  5158. hum.WalkSpeed = 100
  5159. BV = Instance.new("BodyVelocity", torso)
  5160. BV.maxForce = Vector3.new(0,200000,0)
  5161. BV.P = 240000
  5162. BV.velocity = Vector3.new(0,700,0)
  5163. for i = 1, 20 do
  5164. 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)
  5165. 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)
  5166. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5167. 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)
  5168. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5169. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5170. 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)
  5171. if Debounces.on == false then break end
  5172. wait()
  5173. end
  5174. x:Destroy()
  5175. BV:Destroy()
  5176. --[[for i = 1, 30 do
  5177. 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)
  5178. 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)
  5179. 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)
  5180. 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)
  5181. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5182. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5183. if Debounces.on == false then break end
  5184. wait()
  5185. end]]--
  5186. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5187. for i = 1, 30 do
  5188. 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)
  5189. 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)
  5190. 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)
  5191. 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)
  5192. 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)
  5193. 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)
  5194. 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)
  5195. if Debounces.on == false then break end
  5196. wait()
  5197. end
  5198. end
  5199. Debounces.on = false
  5200. Debounces.NoIdl = false
  5201. local ry,ht,ps=nil,nil,nil
  5202. while ht==nil do
  5203. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5204. wait()
  5205. end
  5206. z = Instance.new("Sound",char)
  5207. z.SoundId = "rbxassetid://142070127"
  5208. z.Volume = 1
  5209. wait(.1)
  5210. z:Play()
  5211. Landing()
  5212. hum.WalkSpeed = 8
  5213. if Debounces.CanAttack == false then
  5214. Debounces.CanAttack = true
  5215. end
  5216. end
  5217. end
  5218. end)
  5219. ----------------------------------------------------
  5220. Grab = false
  5221. mouse.KeyDown:connect(function(key)
  5222. if key == "z" then
  5223. Debounces.on = true
  5224. Debounces.NoIdl = true
  5225. if Grab == false then
  5226. gp = nil
  5227. con1=larm.Touched:connect(function(hit) -- this is grab
  5228. ht = hit.Parent
  5229. hum1=ht:FindFirstChild('Humanoid')
  5230. if hum1 ~= nil then
  5231. hum1.PlatformStand=true
  5232. gp = ht
  5233. Grab = true
  5234. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5235. asd.Parent = larm
  5236. asd.Name = "asd"
  5237. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5238. con1:disconnect()
  5239. elseif hum1 ~= nil then
  5240. con1:disconnect()
  5241. wait() return
  5242. end
  5243. end)
  5244. for i = 1, 18 do
  5245. 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)
  5246. 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)
  5247. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5248. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5249. 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)
  5250. 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)
  5251. 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)
  5252. if Debounces.on == false then break end
  5253. wait()
  5254. end
  5255. con1:disconnect()
  5256. Debounces.on = false
  5257. Debounces.NoIdl = false
  5258. elseif Grab == true then
  5259. Grab = false
  5260. for i = 1, 20 do
  5261. 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)
  5262. 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)
  5263. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5264. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5265. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5266. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5267. 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)
  5268. if Debounces.on == false then end
  5269. wait()
  5270. end
  5271. if gp ~= nil then
  5272. for i,v in pairs(larm:GetChildren()) do
  5273. if v.Name == "asd" and v:IsA("Weld") then
  5274. v:Remove()
  5275. end
  5276. end
  5277. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5278. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5279. bv.P = 125000
  5280. bv.velocity = char.Head.CFrame.lookVector * 200
  5281. for i = 1, 12 do
  5282. 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)
  5283. if Debounces.on == false then end
  5284. wait()
  5285. end--
  5286. ht=nil
  5287. Spawn(function()
  5288. wait(0.5)
  5289. bv:Destroy()
  5290. end)
  5291. Debounces.on = false
  5292. Debounces.NoIdl = false
  5293. elseif ht == nil then wait()
  5294. Grab = false
  5295. Debounces.on = false
  5296. Debounces.NoIdl = false
  5297. end
  5298. end
  5299. end
  5300. end)
  5301. ----------------------------------------------------
  5302. mouse.KeyDown:connect(function(key)
  5303. if string.byte(key) == 52 then
  5304. char.Humanoid.WalkSpeed = 21
  5305. end
  5306. end)
  5307. mouse.KeyUp:connect(function(key)
  5308. if string.byte(key) == 52 then
  5309. char.Humanoid.WalkSpeed = 5
  5310. end
  5311. end)
  5312. ----------------------------------------------------
  5313. Change = false
  5314. mouse.KeyDown:connect(function(key)
  5315. if key == "n" then
  5316. if Change == false then
  5317. Change = true
  5318. stanceToggle = "Normal2"
  5319. elseif Change == true then
  5320. Change = false
  5321. stanceToggle = "Normal"
  5322. end
  5323. end
  5324. end)
  5325. ----------------------------------------------------
  5326. local animpose = "Idle"
  5327. local lastanimpose = "Idle"
  5328. local sine = 0
  5329. local change = 1
  5330. local val = 0
  5331. local ffing = false
  5332. local och = 0
  5333. ----------------------------------------------------
  5334. game:GetService("RunService").RenderStepped:connect(function()
  5335. --[[if char.Humanoid.Jump == true then
  5336. jump = true
  5337. else
  5338. jump = false
  5339. end]]
  5340. char.Humanoid.FreeFalling:connect(function(f)
  5341. if f then
  5342. ffing = true
  5343. else
  5344. ffing = false
  5345. end
  5346. end)
  5347. sine = sine + change
  5348. if jumpn == true then
  5349. animpose = "Jumping"
  5350. elseif ffing == true then
  5351. animpose = "Freefalling"
  5352. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5353. animpose = "Idle"
  5354. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5355. animpose = "Walking"
  5356. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5357. animpose = "Running"
  5358. end
  5359. if animpose ~= lastanimpose then
  5360. sine = 0
  5361. if Debounces.NoIdl == false then
  5362. if animpose == "Idle" then
  5363. for i = 1, 2 do
  5364. 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)
  5365. 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)
  5366. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5367. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5368. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5369. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5370. 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)
  5371. end
  5372. elseif animpose == "Walking" then
  5373. for i = 1, 2 do
  5374. 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)
  5375. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5376. 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)
  5377. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5378. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5379. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5380. 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)
  5381. end
  5382. elseif animpose == "Running" then
  5383. for i = 1, 2 do
  5384. 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)
  5385. 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)
  5386. 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)
  5387. 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)
  5388. 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)
  5389. 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)
  5390. 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)
  5391. end
  5392. rs:wait(2)
  5393. end
  5394. else
  5395. end
  5396. end
  5397. lastanimpose = animpose
  5398. if Debounces.NoIdl == false then
  5399. if animpose == "Idle" then
  5400. if stanceToggle == "Normal" then
  5401. change = 0.5
  5402. 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)
  5403. 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)
  5404. 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)
  5405. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5406. 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)
  5407. 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)
  5408. 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)
  5409. elseif stanceToggle == "Sitting" then
  5410. 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)
  5411. 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)
  5412. 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)
  5413. 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)
  5414. 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)
  5415. 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)
  5416. 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)
  5417. elseif stanceToggle == "Normal2" then
  5418. 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)
  5419. 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)
  5420. 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)
  5421. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5422. 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)
  5423. 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)
  5424. 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)
  5425. end
  5426. elseif animpose == "Walking" then
  5427. if stanceToggle == "Normal" then
  5428. change = 1
  5429. 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)
  5430. 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)
  5431. 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)
  5432. 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)
  5433. 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)
  5434. 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)
  5435. 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)
  5436. elseif stanceToggle == "Normal2" then
  5437. 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)
  5438. 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)
  5439. 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)
  5440. 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)
  5441. 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)
  5442. 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)
  5443. 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)
  5444. end
  5445. elseif animpose == "Running" then
  5446. change = 1
  5447. 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)
  5448. 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)
  5449. 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)
  5450. 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)
  5451. 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)
  5452. 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)
  5453. 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)
  5454. end
  5455. end
  5456. och=och+1
  5457. for _,v in pairs(orbt) do
  5458. pcall(function()
  5459. 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)))
  5460. end)
  5461. end
  5462. for _,v in pairs(stlt) do
  5463. pcall(function()
  5464. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5465. end)
  5466. end
  5467. for _,v in pairs(chot) do
  5468. pcall(function()
  5469. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5470. 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))
  5471. end)
  5472. end
  5473. for _,v in pairs(cfxt) do
  5474. pcall(function()
  5475. local vs=v.Mesh.Scale
  5476. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5477. v.Transparency=v.Transparency+0.05
  5478. end)
  5479. end
  5480. for _,v in pairs(pfxt) do
  5481. pcall(function()
  5482. local vs=v.Mesh.Scale
  5483. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5484. v.Transparency=v.Transparency+0.025
  5485. end)
  5486. end
  5487. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement