vextro

my gui

Nov 16th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 427.04 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextButton = Instance.new("TextButton")
  6. local TextButton_2 = Instance.new("TextButton")
  7. local TextButton_3 = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9.  
  10. -- Properties
  11.  
  12. ScreenGui.Parent = game.player.local.playergui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.Active = true
  16. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  17. Frame.ClipsDescendants = true
  18. Frame.Draggable = true
  19. Frame.Position = UDim2.new(0, 402, 0, 142)
  20. Frame.Selectable = true
  21. Frame.Size = UDim2.new(0, 403, 0, 185)
  22.  
  23. TextButton.Parent = Frame
  24. TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
  25. TextButton.Position = UDim2.new(0, 0, 0, 72)
  26. TextButton.Size = UDim2.new(0, 118, 0, 76)
  27. TextButton.Font = Enum.Font.SourceSans
  28. TextButton.FontSize = Enum.FontSize.Size14
  29. TextButton.Text = "Anothot Titan"
  30. TextButton.TextSize = 14
  31.  
  32. textButton.MouseButton1Down:connect(function()
  33. --[[User: TheDarkRevenant
  34. Script: Absalom (Armored).lua
  35. Pass: cUpnjTnT]]
  36.  
  37. local p = game.Players.LocalPlayer
  38. local char = p.Character
  39. local mouse = p:GetMouse()
  40. local larm = char["Left Arm"]
  41. local rarm = char["Right Arm"]
  42. local lleg = char["Left Leg"]
  43. local rleg = char["Right Leg"]
  44. local hed = char.Head
  45. local torso = char.Torso
  46. local hum = char.Humanoid
  47. local cam = game.Workspace.CurrentCamera
  48. local root = char.HumanoidRootPart
  49. local deb = false
  50. local shot = 0
  51. local l = game:GetService("Lighting")
  52. local rs = game:GetService("RunService").RenderStepped
  53. local debris=game:service"Debris"
  54. local stanceToggle = "Normal"
  55. math.randomseed(os.time())
  56. hum.WalkSpeed = 7
  57. char.Health:Destroy()
  58. hum.MaxHealth = 50000
  59. wait(0.1)
  60. hum.Health = 50000
  61. ----------------------------------------------------
  62. ypcall(function()
  63. char.Shirt:Destroy()
  64. char.Pants:Destroy()
  65. shirt = Instance.new("Shirt", char)
  66. shirt.Name = "Shirt"
  67. pants = Instance.new("Pants", char)
  68. pants.Name = "Pants"
  69. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  70. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  71. end)
  72. ----------------------------------------------------
  73. Debounces = {
  74. on = false;
  75. ks = false;
  76. CanAttack = true;
  77. CanJoke = true;
  78. NoIdl = false;
  79. Slashing = false;
  80. Slashed = false;
  81. Grabbing = false;
  82. Grabbed = false;
  83. }
  84. local Touche = {char.Name, }
  85. ----------------------------------------------------
  86. function lerp(a, b, t) -- Linear interpolation
  87. return a + (b - a)*t
  88. end
  89.  
  90. function slerp(a, b, t) --Spherical interpolation
  91. dot = a:Dot(b)
  92. if dot > 0.99999 or dot < -0.99999 then
  93. return t <= 0.5 and a or b
  94. else
  95. r = math.acos(dot)
  96. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  97. end
  98. end
  99.  
  100. function matrixInterpolate(a, b, t)
  101. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  102. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  103. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  104. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  105. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  106. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  107. local t = v1:Dot(v2)
  108. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  109. return CFrame.new()
  110. end
  111. return CFrame.new(
  112. v0.x, v0.y, v0.z,
  113. v1.x, v1.y, v1.z,
  114. v2.x, v2.y, v2.z,
  115. v3.x, v3.y, v3.z)
  116. end
  117. ----------------------------------------------------
  118. function genWeld(a,b)
  119. local w = Instance.new("Weld",a)
  120. w.Part0 = a
  121. w.Part1 = b
  122. return w
  123. end
  124. function weld(a, b)
  125. local weld = Instance.new("Weld")
  126. weld.Name = "W"
  127. weld.Part0 = a
  128. weld.Part1 = b
  129. weld.C0 = a.CFrame:inverse() * b.CFrame
  130. weld.Parent = a
  131. return weld;
  132. end
  133. ----------------------------------------------------
  134. function Lerp(c1,c2,al)
  135. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  136. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  137. for i,v in pairs(com1) do
  138. com1[i] = v+(com2[i]-v)*al
  139. end
  140. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  141. end
  142. ----------------------------------------------------
  143. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  144. local wld = Instance.new("Weld", wp1)
  145. wld.Part0 = wp0
  146. wld.Part1 = wp1
  147. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  148. end
  149. ----------------------------------------------------
  150. function Tween(a,b,c)
  151. return a+(b-a)*c
  152. end
  153. ----------------------------------------------------
  154. function nwPrt(prnt,siz,cf,col)
  155. local prt=Instance.new("Part")
  156. prt.Parent=prnt
  157. prt.FormFactor=3
  158. prt.Name="Part"
  159. prt.Size=siz
  160. prt.CanCollide=false
  161. prt.Anchored=true
  162. prt.Locked=true
  163. prt.TopSurface=10
  164. prt.BottomSurface=10
  165. prt.FrontSurface=10
  166. prt.BackSurface=10
  167. prt.LeftSurface=10
  168. prt.RightSurface=10
  169. prt:BreakJoints()
  170. prt.CFrame=cf or CFrame.new(30,10,30)
  171. prt.Material="Neon"
  172. prt.BrickColor=BrickColor.new(col)
  173. m=Instance.new("SpecialMesh",prt)
  174. m.MeshType=6
  175. return prt
  176. end
  177. ----------------------------------------------------
  178. function nwSnd(prnt,pch,vol,id)
  179. local s=Instance.new("Sound",prnt)
  180. s.Pitch=pch
  181. s.Volume=vol
  182. s.SoundId="rbxassetid://"..id
  183. s.PlayOnRemove=true
  184. return s
  185. end
  186. ----------------------------------------------------
  187. function newRay(start,face,range,wat)
  188. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  189. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  190. return rey,hit,pos
  191. end
  192. ----------------------------------------------------
  193. for i,v in pairs(char:children()) do
  194. if v:IsA("Hat") then
  195. v:Destroy()
  196. end
  197. end
  198. for i,v in pairs(hed:children()) do
  199. if v:IsA("Sound") then
  200. v:Destroy()
  201. end
  202. end
  203. ----------------------------------------------------
  204. function HasntTouched(plrname)
  205. local ret = true
  206. for _, v in pairs(Touche) do
  207. if v == plrname then
  208. ret = false
  209. end
  210. end
  211. return ret
  212. end
  213. ----------------------------------------------------
  214. larm.Size = larm.Size * 2
  215. rarm.Size = rarm.Size * 2
  216. lleg.Size = lleg.Size * 2
  217. rleg.Size = rleg.Size * 2
  218. torso.Size = torso.Size * 2
  219. hed.Size = hed.Size * 2
  220. root.Size = root.Size * 2
  221. ----------------------------------------------------
  222. newWeld(torso, larm, -1.5, 0.5, 0)
  223. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  224. newWeld(torso, rarm, 1.5, 0.5, 0)
  225. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  226. newWeld(torso, hed, 0, 1.5, 0)
  227. newWeld(torso, lleg, -0.5, -1, 0)
  228. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  229. newWeld(torso, rleg, 0.5, -1, 0)
  230. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  231. newWeld(root, torso, 0, -1, 0)
  232. torso.Weld.C1 = CFrame.new(0, -1, 0)
  233. ----------------------------------------------------
  234. hed.face.Texture = "rbxassetid://272299908"
  235. z=Instance.new('Decal',hed)
  236. z.Face = 'Front'
  237. z.Texture='rbxassetid://99174105'
  238. z1=Instance.new('Decal',hed)
  239. z1.Face = 'Right'
  240. hed.BrickColor = BrickColor.new("Really black")
  241. lite = Instance.new("PointLight", torso)
  242. lite.Brightness = 14
  243. lite.Range = 10
  244. lite.Color = Color3.new(1, 0, 0)
  245. --[[local hed2 = hed:Clone()
  246. hed2.CanCollide = false
  247. hed2.Parent = char
  248. hed2:ClearAllChildren()
  249. hed2.Transparency = 1
  250. hed2.Name = "DARP"
  251. local w = Instance.new("Weld",hed2)
  252. w.Part0 = hed
  253. w.Part1 = hed2
  254. w.C0 = CFrame.new(0,0,-0.175)
  255. z=Instance.new("SurfaceGui",hed2)
  256. z.Enabled = true
  257. z.Face = "Front"
  258. z.Adornee = hed2
  259. z.CanvasSize = Vector2.new(100,100)
  260. local face = Instance.new("ImageLabel",z)
  261. face.Size = UDim2.new(1,-30,1,0)
  262. face.Position = UDim2.new(0,15,0,0)
  263. face.BackgroundTransparency = 1
  264. face.Image='rbxassetid://46282671']]--
  265. ----------------------------------------------------
  266. z = Instance.new("Sound", char)
  267. z.SoundId = "rbxassetid://303570180"--242463565
  268. z.Looped = true
  269. z.Pitch = .6
  270. z.Volume = 1
  271. wait(.01)
  272. z:Play()
  273. ----------------------------------------------------
  274. local l = game.Lighting
  275. local sky = Instance.new("Sky",l)
  276. sky.CelestialBodiesShown = false
  277. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  278. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  279. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  280. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  281. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  282. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  283. sky.StarCount = 0
  284. sky.Name = "GreenSpace"
  285. ----------------------------------------------------
  286. local m = Instance.new("Model")
  287. m.Name = "Absolution"
  288. p1 = Instance.new("Part", m)
  289. p1.BrickColor = BrickColor.new("Bright blue")
  290. p1.Material = "Neon"
  291. p1.FormFactor = Enum.FormFactor.Custom
  292. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  293. 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)
  294. p1.CanCollide = false
  295. p1.Locked = true
  296. p1.Elasticity = 0
  297. p1.BottomSurface = Enum.SurfaceType.Smooth
  298. p1.TopSurface = Enum.SurfaceType.Smooth
  299. b1 = Instance.new("SpecialMesh", p1)
  300. b1.MeshType = Enum.MeshType.Wedge
  301. b1.Name = "Mesh"
  302. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  303. p2 = Instance.new("Part", m)
  304. p2.BrickColor = BrickColor.new("Really black")
  305. p2.FormFactor = Enum.FormFactor.Custom
  306. p2.Size = Vector3.new(1, 2.9000001, 1)
  307. 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)
  308. p2.CanCollide = false
  309. p2.Locked = true
  310. p2.Elasticity = 0
  311. p2.BottomSurface = Enum.SurfaceType.Smooth
  312. p2.TopSurface = Enum.SurfaceType.Smooth
  313. b2 = Instance.new("BlockMesh", p2)
  314. b2.Name = "Mesh"
  315. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  316. p3 = Instance.new("Part", m)
  317. p3.BrickColor = BrickColor.new("Bright blue")
  318. p3.Material = "Neon"
  319. p3.FormFactor = Enum.FormFactor.Custom
  320. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  321. 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)
  322. p3.CanCollide = false
  323. p3.Locked = true
  324. p3.Elasticity = 0
  325. p3.BottomSurface = Enum.SurfaceType.Smooth
  326. p3.TopSurface = Enum.SurfaceType.Smooth
  327. b3 = Instance.new("SpecialMesh", p3)
  328. b3.MeshType = Enum.MeshType.Wedge
  329. b3.Name = "Mesh"
  330. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  331. p4 = Instance.new("Part", m)
  332. p4.BrickColor = BrickColor.new("Bright blue")
  333. p4.Material = "Neon"
  334. p4.FormFactor = Enum.FormFactor.Custom
  335. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  336. 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)
  337. p4.CanCollide = false
  338. p4.Locked = true
  339. p4.Elasticity = 0
  340. p4.BottomSurface = Enum.SurfaceType.Smooth
  341. p4.TopSurface = Enum.SurfaceType.Smooth
  342. b4 = Instance.new("SpecialMesh", p4)
  343. b4.MeshType = Enum.MeshType.Wedge
  344. b4.Name = "Mesh"
  345. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  346. p5 = Instance.new("Part", m)
  347. p5.BrickColor = BrickColor.new("Bright blue")
  348. p5.Material = "Neon"
  349. p5.FormFactor = Enum.FormFactor.Custom
  350. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  351. 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)
  352. p5.CanCollide = false
  353. p5.Locked = true
  354. p5.Elasticity = 0
  355. p5.BottomSurface = Enum.SurfaceType.Smooth
  356. p5.TopSurface = Enum.SurfaceType.Smooth
  357. b5 = Instance.new("SpecialMesh", p5)
  358. b5.MeshType = Enum.MeshType.Wedge
  359. b5.Name = "Mesh"
  360. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  361. p6 = Instance.new("Part", m)
  362. p6.Name = "Handle"
  363. p6.BrickColor = BrickColor.new("Really black")
  364. p6.FormFactor = Enum.FormFactor.Custom
  365. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  366. 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)
  367. p6.CanCollide = false
  368. p6.Locked = true
  369. p6.Elasticity = 0
  370. p6.BottomSurface = Enum.SurfaceType.Smooth
  371. p6.TopSurface = Enum.SurfaceType.Smooth
  372. b6 = Instance.new("BlockMesh", p6)
  373. b6.Name = "Mesh"
  374. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  375. p7 = Instance.new("Part", m)
  376. p7.BrickColor = BrickColor.new("Bright blue")
  377. p7.Material = "Neon"
  378. p7.FormFactor = Enum.FormFactor.Custom
  379. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  380. 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)
  381. p7.CanCollide = false
  382. p7.Locked = true
  383. p7.Elasticity = 0
  384. p7.BottomSurface = Enum.SurfaceType.Smooth
  385. p7.TopSurface = Enum.SurfaceType.Smooth
  386. b7 = Instance.new("SpecialMesh", p7)
  387. b7.MeshType = Enum.MeshType.Wedge
  388. b7.Name = "Mesh"
  389. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  390. p8 = Instance.new("Part", m)
  391. p8.BrickColor = BrickColor.new("Bright blue")
  392. p8.Material = "Neon"
  393. p8.FormFactor = Enum.FormFactor.Custom
  394. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  395. 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)
  396. p8.CanCollide = false
  397. p8.Locked = true
  398. p8.Elasticity = 0
  399. p8.BottomSurface = Enum.SurfaceType.Smooth
  400. p8.TopSurface = Enum.SurfaceType.Smooth
  401. b8 = Instance.new("SpecialMesh", p8)
  402. b8.MeshType = Enum.MeshType.Wedge
  403. b8.Name = "Mesh"
  404. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  405. p9 = Instance.new("Part", m)
  406. p9.BrickColor = BrickColor.new("Really black")
  407. p9.FormFactor = Enum.FormFactor.Custom
  408. p9.Size = Vector3.new(1, 1.07999957, 1)
  409. 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)
  410. p9.CanCollide = false
  411. p9.Locked = true
  412. p9.Elasticity = 0
  413. p9.BottomSurface = Enum.SurfaceType.Smooth
  414. p9.TopSurface = Enum.SurfaceType.Smooth
  415. b9 = Instance.new("BlockMesh", p9)
  416. b9.Name = "Mesh"
  417. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  418. p10 = Instance.new("Part", m)
  419. p10.BrickColor = BrickColor.new("Really black")
  420. p10.FormFactor = Enum.FormFactor.Custom
  421. p10.Size = Vector3.new(1, 1.41999948, 1)
  422. 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)
  423. p10.CanCollide = false
  424. p10.Locked = true
  425. p10.Elasticity = 0
  426. p10.BottomSurface = Enum.SurfaceType.Smooth
  427. p10.TopSurface = Enum.SurfaceType.Smooth
  428. b10 = Instance.new("BlockMesh", p10)
  429. b10.Name = "Mesh"
  430. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  431. p11 = Instance.new("Part", m)
  432. p11.BrickColor = BrickColor.new("Really black")
  433. p11.FormFactor = Enum.FormFactor.Custom
  434. p11.Size = Vector3.new(1, 1.50999951, 1)
  435. 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)
  436. p11.CanCollide = false
  437. p11.Locked = true
  438. p11.Elasticity = 0
  439. p11.BottomSurface = Enum.SurfaceType.Smooth
  440. p11.TopSurface = Enum.SurfaceType.Smooth
  441. b11 = Instance.new("BlockMesh", p11)
  442. b11.Name = "Mesh"
  443. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  444. p12 = Instance.new("Part", m)
  445. p12.Name = "BladeCenter"
  446. p12.BrickColor = BrickColor.new("Dark stone grey")
  447. p12.Material = Enum.Material.Concrete
  448. p12.FormFactor = Enum.FormFactor.Symmetric
  449. p12.Size = Vector3.new(1, 2, 2)
  450. 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)
  451. p12.CanCollide = false
  452. p12.Locked = true
  453. p12.BottomSurface = Enum.SurfaceType.Smooth
  454. p12.TopSurface = Enum.SurfaceType.Smooth
  455. b12 = Instance.new("SpecialMesh", p12)
  456. b12.MeshType = Enum.MeshType.Brick
  457. b12.Name = "Mesh"
  458. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  459. p13 = Instance.new("Part", m)
  460. p13.BrickColor = BrickColor.new("Really black")
  461. p13.FormFactor = Enum.FormFactor.Custom
  462. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  463. 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)
  464. p13.CanCollide = false
  465. p13.Locked = true
  466. p13.Elasticity = 0
  467. p13.BottomSurface = Enum.SurfaceType.Smooth
  468. p13.TopSurface = Enum.SurfaceType.Smooth
  469. b13 = Instance.new("BlockMesh", p13)
  470. b13.Name = "Mesh"
  471. b13.Scale = Vector3.new(1, 1, 0.400000006)
  472. p14 = Instance.new("Part", m)
  473. p14.BrickColor = BrickColor.new("Really black")
  474. p14.FormFactor = Enum.FormFactor.Custom
  475. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  476. 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)
  477. p14.CanCollide = false
  478. p14.Locked = true
  479. p14.Elasticity = 0
  480. p14.BottomSurface = Enum.SurfaceType.Smooth
  481. p14.TopSurface = Enum.SurfaceType.Smooth
  482. b14 = Instance.new("BlockMesh", p14)
  483. b14.Name = "Mesh"
  484. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  485. p15 = Instance.new("Part", m)
  486. p15.BrickColor = BrickColor.new("Really black")
  487. p15.FormFactor = Enum.FormFactor.Custom
  488. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  489. 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)
  490. p15.CanCollide = false
  491. p15.Locked = true
  492. p15.Elasticity = 0
  493. p15.BottomSurface = Enum.SurfaceType.Smooth
  494. p15.TopSurface = Enum.SurfaceType.Smooth
  495. b15 = Instance.new("BlockMesh", p15)
  496. b15.Name = "Mesh"
  497. b15.Scale = Vector3.new(1, 1, 0.400000006)
  498. p16 = Instance.new("Part", m)
  499. p16.BrickColor = BrickColor.new("Really black")
  500. p16.FormFactor = Enum.FormFactor.Custom
  501. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  502. 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)
  503. p16.CanCollide = false
  504. p16.Locked = true
  505. p16.Elasticity = 0
  506. p16.BottomSurface = Enum.SurfaceType.Smooth
  507. p16.TopSurface = Enum.SurfaceType.Smooth
  508. b16 = Instance.new("BlockMesh", p16)
  509. b16.Name = "Mesh"
  510. b16.Scale = Vector3.new(1, 1, 0.400000006)
  511. p17 = Instance.new("Part", m)
  512. p17.BrickColor = BrickColor.new("Really black")
  513. p17.FormFactor = Enum.FormFactor.Custom
  514. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  515. 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)
  516. p17.CanCollide = false
  517. p17.Locked = true
  518. p17.Elasticity = 0
  519. p17.BottomSurface = Enum.SurfaceType.Smooth
  520. p17.TopSurface = Enum.SurfaceType.Smooth
  521. b17 = Instance.new("BlockMesh", p17)
  522. b17.Name = "Mesh"
  523. b17.Scale = Vector3.new(1, 1, 0.400000006)
  524. p18 = Instance.new("WedgePart", m)
  525. p18.BrickColor = BrickColor.new("Dark stone grey")
  526. p18.Name = "BladePart1"
  527. p18.Material = Enum.Material.Concrete
  528. p18.Name = "Wedge"
  529. p18.FormFactor = Enum.FormFactor.Symmetric
  530. p18.Size = Vector3.new(1, 4, 2)
  531. 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)
  532. p18.CanCollide = false
  533. p18.Locked = true
  534. p18.BottomSurface = Enum.SurfaceType.Smooth
  535. p18.TopSurface = Enum.SurfaceType.Smooth
  536. b18 = Instance.new("SpecialMesh", p18)
  537. b18.MeshType = Enum.MeshType.Wedge
  538. b18.Name = "Mesh"
  539. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  540. p19 = Instance.new("WedgePart", m)
  541. p19.BrickColor = BrickColor.new("Dark stone grey")
  542. p19.Name = "BladePart2"
  543. p19.Material = Enum.Material.Concrete
  544. p19.Name = "Wedge"
  545. p19.FormFactor = Enum.FormFactor.Symmetric
  546. p19.Size = Vector3.new(1, 4, 2)
  547. 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)
  548. p19.CanCollide = false
  549. p19.Locked = true
  550. p19.BottomSurface = Enum.SurfaceType.Smooth
  551. p19.TopSurface = Enum.SurfaceType.Smooth
  552. b19 = Instance.new("SpecialMesh", p19)
  553. b19.MeshType = Enum.MeshType.Wedge
  554. b19.Name = "Mesh"
  555. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  556. p20 = Instance.new("Part", m)
  557. p20.BrickColor = BrickColor.new("Really black")
  558. p20.FormFactor = Enum.FormFactor.Custom
  559. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  560. 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)
  561. p20.CanCollide = false
  562. p20.Locked = true
  563. p20.Elasticity = 0
  564. p20.BottomSurface = Enum.SurfaceType.Smooth
  565. p20.TopSurface = Enum.SurfaceType.Smooth
  566. b20 = Instance.new("BlockMesh", p20)
  567. b20.Name = "Mesh"
  568. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  569. p21 = Instance.new("Part", m)
  570. p21.BrickColor = BrickColor.new("Bright blue")
  571. p21.Material = "Neon"
  572. p21.FormFactor = Enum.FormFactor.Custom
  573. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  574. 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)
  575. p21.CanCollide = false
  576. p21.Locked = true
  577. p21.Elasticity = 0
  578. p21.BottomSurface = Enum.SurfaceType.Smooth
  579. p21.TopSurface = Enum.SurfaceType.Smooth
  580. b21 = Instance.new("SpecialMesh", p21)
  581. b21.MeshType = Enum.MeshType.Wedge
  582. b21.Name = "Mesh"
  583. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  584. w1 = Instance.new("Weld", p1)
  585. w1.Name = "Part_Weld"
  586. w1.Part0 = p1
  587. 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)
  588. w1.Part1 = p2
  589. 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)
  590. w2 = Instance.new("Weld", p2)
  591. w2.Name = "Part_Weld"
  592. w2.Part0 = p2
  593. 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)
  594. w2.Part1 = p3
  595. 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)
  596. w3 = Instance.new("Weld", p3)
  597. w3.Name = "Part_Weld"
  598. w3.Part0 = p3
  599. 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)
  600. w3.Part1 = p4
  601. 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)
  602. w4 = Instance.new("Weld", p4)
  603. w4.Name = "Part_Weld"
  604. w4.Part0 = p4
  605. 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)
  606. w4.Part1 = p5
  607. 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)
  608. w5 = Instance.new("Weld", p5)
  609. w5.Name = "Part_Weld"
  610. w5.Part0 = p5
  611. 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)
  612. w5.Part1 = p6
  613. 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)
  614. w6 = Instance.new("Weld", p6)
  615. w6.Name = "Part_Weld"
  616. w6.Part0 = p6
  617. 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)
  618. w6.Part1 = p7
  619. 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)
  620. w7 = Instance.new("Weld", p7)
  621. w7.Name = "Part_Weld"
  622. w7.Part0 = p7
  623. 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)
  624. w7.Part1 = p8
  625. 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)
  626. w8 = Instance.new("Weld", p8)
  627. w8.Name = "Part_Weld"
  628. w8.Part0 = p8
  629. 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)
  630. w8.Part1 = p9
  631. 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)
  632. w9 = Instance.new("Weld", p9)
  633. w9.Name = "Part_Weld"
  634. w9.Part0 = p9
  635. 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)
  636. w9.Part1 = p10
  637. 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)
  638. w10 = Instance.new("Weld", p10)
  639. w10.Name = "Part_Weld"
  640. w10.Part0 = p10
  641. 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)
  642. w10.Part1 = p11
  643. 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)
  644. w11 = Instance.new("Weld", p11)
  645. w11.Name = "Part_Weld"
  646. w11.Part0 = p11
  647. 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)
  648. w11.Part1 = p12
  649. 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)
  650. w12 = Instance.new("Weld", p12)
  651. w12.Name = "Part_Weld"
  652. w12.Part0 = p12
  653. 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)
  654. w12.Part1 = p13
  655. 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)
  656. w13 = Instance.new("Weld", p13)
  657. w13.Name = "Part_Weld"
  658. w13.Part0 = p13
  659. 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)
  660. w13.Part1 = p14
  661. 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)
  662. w14 = Instance.new("Weld", p14)
  663. w14.Name = "Part_Weld"
  664. w14.Part0 = p14
  665. 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)
  666. w14.Part1 = p15
  667. 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)
  668. w15 = Instance.new("Weld", p15)
  669. w15.Name = "Part_Weld"
  670. w15.Part0 = p15
  671. 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)
  672. w15.Part1 = p16
  673. 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)
  674. w16 = Instance.new("Weld", p16)
  675. w16.Name = "Part_Weld"
  676. w16.Part0 = p16
  677. 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)
  678. w16.Part1 = p17
  679. 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)
  680. w17 = Instance.new("Weld", p17)
  681. w17.Name = "Wedge_Weld"
  682. w17.Part0 = p17
  683. 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)
  684. w17.Part1 = p18
  685. 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)
  686. w18 = Instance.new("Weld", p18)
  687. w18.Name = "Wedge_Weld"
  688. w18.Part0 = p18
  689. 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)
  690. w18.Part1 = p19
  691. 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)
  692. w19 = Instance.new("Weld", p19)
  693. w19.Name = "Part_Weld"
  694. w19.Part0 = p19
  695. 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)
  696. w19.Part1 = p20
  697. 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)
  698. w20 = Instance.new("Weld", p20)
  699. w20.Name = "Part_Weld"
  700. w20.Part0 = p20
  701. 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)
  702. w20.Part1 = p21
  703. 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)
  704. m.Parent = char
  705. m:MakeJoints()
  706. ----------------------------------------------------
  707. local cor = Instance.new("Part", char.Absolution)
  708. cor.Name = "Thingy"
  709. cor.Locked = true
  710. cor.BottomSurface = 0
  711. cor.CanCollide = false
  712. cor.Size = Vector3.new(1, 13, 1)
  713. cor.Transparency = 1
  714. cor.TopSurface = 0
  715. corw = Instance.new("Weld", cor)
  716. corw.Part0 = rarm
  717. corw.Part1 = cor
  718. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  719. corw.C1 = CFrame.new(0, 0, 0)
  720. weld1 = Instance.new("Weld", char.Absolution)
  721. weld1.Part0 = cor
  722. weld1.Part1 = p6
  723. weld1.C0 = CFrame.new(0, 0, 0)
  724. ----------------------------------------------------
  725. hitb = Instance.new("Part", char.Absolution)
  726. hitb.Name = "Thingy2"
  727. hitb.Locked = true
  728. hitb.BottomSurface = 0
  729. hitb.CanCollide = false
  730. hitb.Size = Vector3.new(0, 8, 6)
  731. hitb.Transparency = 1
  732. hitb.TopSurface = 0
  733. weld2 = Instance.new("Weld", char.Absolution)
  734. weld2.Part0 = hitb
  735. weld2.Part1 = p12
  736. weld2.C0 = CFrame.new(0, .6, 1)
  737. ----------------------------------------------------
  738. local m = Instance.new("Model")
  739. m.Name = "Claw"
  740. p1 = Instance.new("Part", m)
  741. p1.BrickColor = BrickColor.new("Really black")
  742. p1.FormFactor = Enum.FormFactor.Custom
  743. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  744. 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)
  745. p1.CanCollide = false
  746. p1.Locked = true
  747. p1.BottomSurface = Enum.SurfaceType.Smooth
  748. p1.TopSurface = Enum.SurfaceType.Smooth
  749. b1 = Instance.new("BlockMesh", p1)
  750. b1.Name = "Mesh"
  751. p2 = Instance.new("WedgePart", m)
  752. p2.BrickColor = BrickColor.new("Really black")
  753. p2.Name = "Wedge"
  754. p2.FormFactor = Enum.FormFactor.Custom
  755. p2.Size = Vector3.new(3, 1, 0.5)
  756. 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)
  757. p2.CanCollide = false
  758. p2.Locked = true
  759. p2.BottomSurface = Enum.SurfaceType.Smooth
  760. p2.TopSurface = Enum.SurfaceType.Smooth
  761. p3 = Instance.new("Part", m)
  762. p3.BrickColor = BrickColor.new("Really black")
  763. p3.FormFactor = Enum.FormFactor.Custom
  764. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  765. 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)
  766. p3.CanCollide = false
  767. p3.Locked = true
  768. p3.BottomSurface = Enum.SurfaceType.Smooth
  769. p3.TopSurface = Enum.SurfaceType.Smooth
  770. b2 = Instance.new("BlockMesh", p3)
  771. b2.Name = "Mesh"
  772. p4 = Instance.new("WedgePart", m)
  773. p4.BrickColor = BrickColor.new("Really black")
  774. p4.Name = "Wedge"
  775. p4.FormFactor = Enum.FormFactor.Custom
  776. p4.Size = Vector3.new(3, 1, 0.5)
  777. 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)
  778. p4.CanCollide = false
  779. p4.Locked = true
  780. p4.BottomSurface = Enum.SurfaceType.Smooth
  781. p4.TopSurface = Enum.SurfaceType.Smooth
  782. p5 = Instance.new("Part", m)
  783. p5.BrickColor = BrickColor.new("Really black")
  784. p5.FormFactor = Enum.FormFactor.Custom
  785. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  786. 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)
  787. p5.CanCollide = false
  788. p5.Locked = true
  789. p5.BottomSurface = Enum.SurfaceType.Smooth
  790. p5.TopSurface = Enum.SurfaceType.Smooth
  791. b3 = Instance.new("BlockMesh", p5)
  792. b3.Name = "Mesh"
  793. p6 = Instance.new("Part", m)
  794. p6.BrickColor = BrickColor.new("Really black")
  795. p6.FormFactor = Enum.FormFactor.Custom
  796. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  797. 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)
  798. p6.CanCollide = false
  799. p6.Locked = true
  800. p6.BottomSurface = Enum.SurfaceType.Smooth
  801. p6.TopSurface = Enum.SurfaceType.Smooth
  802. b4 = Instance.new("BlockMesh", p6)
  803. b4.Name = "Mesh"
  804. p7 = Instance.new("Part", m)
  805. p7.BrickColor = BrickColor.new("Really black")
  806. p7.FormFactor = Enum.FormFactor.Custom
  807. p7.Size = Vector3.new(3, 1, 1.20000005)
  808. 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)
  809. p7.CanCollide = false
  810. p7.Locked = true
  811. p7.BottomSurface = Enum.SurfaceType.Smooth
  812. p7.TopSurface = Enum.SurfaceType.Smooth
  813. b5 = Instance.new("BlockMesh", p7)
  814. b5.Name = "Mesh"
  815. p8 = Instance.new("Part", m)
  816. p8.BrickColor = BrickColor.new("Bright blue")
  817. p8.Material = "Neon"
  818. p8.FormFactor = Enum.FormFactor.Symmetric
  819. p8.Size = Vector3.new(1, 1, 1)
  820. 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)
  821. p8.CanCollide = false
  822. p8.Locked = true
  823. b6 = Instance.new("SpecialMesh", p8)
  824. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  825. b6.TextureId = ""
  826. b6.MeshType = Enum.MeshType.FileMesh
  827. b6.Name = "Mesh"
  828. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  829. p9 = Instance.new("Part", m)
  830. p9.BrickColor = BrickColor.new("Really black")
  831. p9.FormFactor = Enum.FormFactor.Custom
  832. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  833. 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)
  834. p9.CanCollide = false
  835. p9.Locked = true
  836. p9.BottomSurface = Enum.SurfaceType.Smooth
  837. p9.TopSurface = Enum.SurfaceType.Smooth
  838. b7 = Instance.new("BlockMesh", p9)
  839. b7.Name = "Mesh"
  840. p10 = Instance.new("Part", m)
  841. p10.BrickColor = BrickColor.new("Bright blue")
  842. p10.Material = "Neon"
  843. p10.FormFactor = Enum.FormFactor.Symmetric
  844. p10.Size = Vector3.new(1, 1, 1)
  845. 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)
  846. p10.CanCollide = false
  847. p10.Locked = true
  848. b8 = Instance.new("SpecialMesh", p10)
  849. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  850. b8.TextureId = ""
  851. b8.MeshType = Enum.MeshType.FileMesh
  852. b8.Name = "Mesh"
  853. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  854. p11 = Instance.new("Part", m)
  855. p11.BrickColor = BrickColor.new("Really black")
  856. p11.FormFactor = Enum.FormFactor.Custom
  857. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  858. 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)
  859. p11.CanCollide = false
  860. p11.Locked = true
  861. p11.BottomSurface = Enum.SurfaceType.Smooth
  862. p11.TopSurface = Enum.SurfaceType.Smooth
  863. b9 = Instance.new("BlockMesh", p11)
  864. b9.Name = "Mesh"
  865. p12 = Instance.new("Part", m)
  866. p12.BrickColor = BrickColor.new("Really black")
  867. p12.FormFactor = Enum.FormFactor.Custom
  868. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  869. 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)
  870. p12.CanCollide = false
  871. p12.Locked = true
  872. p12.BottomSurface = Enum.SurfaceType.Smooth
  873. p12.TopSurface = Enum.SurfaceType.Smooth
  874. b10 = Instance.new("BlockMesh", p12)
  875. b10.Name = "Mesh"
  876. p13 = Instance.new("Part", m)
  877. p13.BrickColor = BrickColor.new("Really black")
  878. p13.FormFactor = Enum.FormFactor.Custom
  879. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  880. 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)
  881. p13.CanCollide = false
  882. p13.Locked = true
  883. p13.BottomSurface = Enum.SurfaceType.Smooth
  884. p13.TopSurface = Enum.SurfaceType.Smooth
  885. b11 = Instance.new("BlockMesh", p13)
  886. b11.Name = "Mesh"
  887. p14 = Instance.new("Part", m)
  888. p14.BrickColor = BrickColor.new("Bright blue")
  889. p14.Material = "Neon"
  890. p14.FormFactor = Enum.FormFactor.Symmetric
  891. p14.Size = Vector3.new(1, 1, 1)
  892. 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)
  893. p14.CanCollide = false
  894. p14.Locked = true
  895. b12 = Instance.new("SpecialMesh", p14)
  896. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  897. b12.TextureId = ""
  898. b12.MeshType = Enum.MeshType.FileMesh
  899. b12.Name = "Mesh"
  900. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  901. p15 = Instance.new("Part", m)
  902. p15.BrickColor = BrickColor.new("Medium stone grey")
  903. p15.Transparency = 1
  904. p15.Name = "ArmPart"
  905. p15.FormFactor = Enum.FormFactor.Custom
  906. p15.Size = Vector3.new(2, 1, 1)
  907. 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)
  908. p15.CanCollide = false
  909. p15.Locked = true
  910. p15.BottomSurface = Enum.SurfaceType.Smooth
  911. p15.TopSurface = Enum.SurfaceType.Smooth
  912. b13 = Instance.new("BlockMesh", p15)
  913. b13.Name = "Mesh"
  914. p16 = Instance.new("Part", m)
  915. p16.BrickColor = BrickColor.new("Really black")
  916. p16.FormFactor = Enum.FormFactor.Custom
  917. p16.Size = Vector3.new(3, 1, 2.4000001)
  918. 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)
  919. p16.CanCollide = false
  920. p16.Locked = true
  921. p16.BottomSurface = Enum.SurfaceType.Smooth
  922. p16.TopSurface = Enum.SurfaceType.Smooth
  923. b14 = Instance.new("BlockMesh", p16)
  924. b14.Name = "Mesh"
  925. p17 = Instance.new("Part", m)
  926. p17.BrickColor = BrickColor.new("Really black")
  927. p17.FormFactor = Enum.FormFactor.Custom
  928. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  929. 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)
  930. p17.CanCollide = false
  931. p17.Locked = true
  932. p17.BottomSurface = Enum.SurfaceType.Smooth
  933. p17.TopSurface = Enum.SurfaceType.Smooth
  934. b15 = Instance.new("BlockMesh", p17)
  935. b15.Name = "Mesh"
  936. p18 = Instance.new("Part", m)
  937. p18.BrickColor = BrickColor.new("Bright blue")
  938. p18.Material = "Neon"
  939. p18.FormFactor = Enum.FormFactor.Symmetric
  940. p18.Size = Vector3.new(1, 1, 1)
  941. 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)
  942. p18.CanCollide = false
  943. p18.Locked = true
  944. b16 = Instance.new("SpecialMesh", p18)
  945. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  946. b16.TextureId = ""
  947. b16.MeshType = Enum.MeshType.FileMesh
  948. b16.Name = "Mesh"
  949. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  950. p19 = Instance.new("Part", m)
  951. p19.BrickColor = BrickColor.new("Bright blue")
  952. p19.Material = "Neon"
  953. p19.FormFactor = Enum.FormFactor.Symmetric
  954. p19.Size = Vector3.new(1, 1, 1)
  955. 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)
  956. p19.CanCollide = false
  957. p19.Locked = true
  958. b17 = Instance.new("SpecialMesh", p19)
  959. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  960. b17.TextureId = ""
  961. b17.MeshType = Enum.MeshType.FileMesh
  962. b17.Name = "Mesh"
  963. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  964. p20 = Instance.new("Part", m)
  965. p20.BrickColor = BrickColor.new("Really black")
  966. p20.FormFactor = Enum.FormFactor.Custom
  967. p20.Size = Vector3.new(3, 1, 2.4000001)
  968. 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)
  969. p20.CanCollide = false
  970. p20.Locked = true
  971. p20.BottomSurface = Enum.SurfaceType.Smooth
  972. p20.TopSurface = Enum.SurfaceType.Smooth
  973. b18 = Instance.new("BlockMesh", p20)
  974. b18.Name = "Mesh"
  975. p21 = Instance.new("Part", m)
  976. p21.BrickColor = BrickColor.new("Really black")
  977. p21.FormFactor = Enum.FormFactor.Custom
  978. p21.Size = Vector3.new(3, 1, 1.19999993)
  979. 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)
  980. p21.CanCollide = false
  981. p21.Locked = true
  982. p21.BottomSurface = Enum.SurfaceType.Smooth
  983. p21.TopSurface = Enum.SurfaceType.Smooth
  984. b19 = Instance.new("BlockMesh", p21)
  985. b19.Name = "Mesh"
  986. p22 = Instance.new("WedgePart", m)
  987. p22.BrickColor = BrickColor.new("Really black")
  988. p22.Name = "Wedge"
  989. p22.FormFactor = Enum.FormFactor.Custom
  990. p22.Size = Vector3.new(3, 1, 0.5)
  991. 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)
  992. p22.CanCollide = false
  993. p22.Locked = true
  994. p22.BottomSurface = Enum.SurfaceType.Smooth
  995. p22.TopSurface = Enum.SurfaceType.Smooth
  996. p23 = Instance.new("Part", m)
  997. p23.BrickColor = BrickColor.new("Really black")
  998. p23.FormFactor = Enum.FormFactor.Custom
  999. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1000. 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)
  1001. p23.CanCollide = false
  1002. p23.Locked = true
  1003. p23.BottomSurface = Enum.SurfaceType.Smooth
  1004. p23.TopSurface = Enum.SurfaceType.Smooth
  1005. b20 = Instance.new("BlockMesh", p23)
  1006. b20.Name = "Mesh"
  1007. p24 = Instance.new("WedgePart", m)
  1008. p24.BrickColor = BrickColor.new("Really black")
  1009. p24.Name = "Wedge"
  1010. p24.FormFactor = Enum.FormFactor.Custom
  1011. p24.Size = Vector3.new(3, 1, 0.5)
  1012. 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)
  1013. p24.CanCollide = false
  1014. p24.Locked = true
  1015. p24.BottomSurface = Enum.SurfaceType.Smooth
  1016. p24.TopSurface = Enum.SurfaceType.Smooth
  1017. p25 = Instance.new("Part", m)
  1018. p25.BrickColor = BrickColor.new("Bright blue")
  1019. p25.Material = "Neon"
  1020. p25.FormFactor = Enum.FormFactor.Symmetric
  1021. p25.Size = Vector3.new(1, 1, 1)
  1022. 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)
  1023. p25.CanCollide = false
  1024. p25.Locked = true
  1025. p25.BottomSurface = Enum.SurfaceType.Smooth
  1026. p25.TopSurface = Enum.SurfaceType.Smooth
  1027. b21 = Instance.new("SpecialMesh", p25)
  1028. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1029. b21.TextureId = ""
  1030. b21.MeshType = Enum.MeshType.FileMesh
  1031. b21.Name = "Mesh"
  1032. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1033. p26 = Instance.new("Part", m)
  1034. p26.BrickColor = BrickColor.new("Really black")
  1035. p26.FormFactor = Enum.FormFactor.Symmetric
  1036. p26.Size = Vector3.new(1, 1, 1)
  1037. 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)
  1038. p26.CanCollide = false
  1039. p26.Locked = true
  1040. p26.BottomSurface = Enum.SurfaceType.Smooth
  1041. p26.TopSurface = Enum.SurfaceType.Smooth
  1042. b22 = Instance.new("SpecialMesh", p26)
  1043. b22.MeshType = Enum.MeshType.Brick
  1044. b22.Name = "Mesh"
  1045. w1 = Instance.new("Weld", p1)
  1046. w1.Name = "Wedge_Weld"
  1047. w1.Part0 = p1
  1048. 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)
  1049. w1.Part1 = p2
  1050. 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)
  1051. w2 = Instance.new("Weld", p2)
  1052. w2.Name = "Part_Weld"
  1053. w2.Part0 = p2
  1054. 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)
  1055. w2.Part1 = p3
  1056. 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)
  1057. w3 = Instance.new("Weld", p3)
  1058. w3.Name = "Wedge_Weld"
  1059. w3.Part0 = p3
  1060. 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)
  1061. w3.Part1 = p4
  1062. 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)
  1063. w4 = Instance.new("Weld", p4)
  1064. w4.Name = "Part_Weld"
  1065. w4.Part0 = p4
  1066. 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)
  1067. w4.Part1 = p5
  1068. 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)
  1069. w5 = Instance.new("Weld", p5)
  1070. w5.Name = "Part_Weld"
  1071. w5.Part0 = p5
  1072. 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)
  1073. w5.Part1 = p6
  1074. 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)
  1075. w6 = Instance.new("Weld", p6)
  1076. w6.Name = "Part_Weld"
  1077. w6.Part0 = p6
  1078. 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)
  1079. w6.Part1 = p7
  1080. 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)
  1081. w7 = Instance.new("Weld", p7)
  1082. w7.Name = "Part_Weld"
  1083. w7.Part0 = p7
  1084. 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)
  1085. w7.Part1 = p8
  1086. 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)
  1087. w8 = Instance.new("Weld", p8)
  1088. w8.Name = "Part_Weld"
  1089. w8.Part0 = p8
  1090. 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)
  1091. w8.Part1 = p9
  1092. 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)
  1093. w9 = Instance.new("Weld", p9)
  1094. w9.Name = "Part_Weld"
  1095. w9.Part0 = p9
  1096. 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)
  1097. w9.Part1 = p10
  1098. 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)
  1099. w10 = Instance.new("Weld", p10)
  1100. w10.Name = "Part_Weld"
  1101. w10.Part0 = p10
  1102. 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)
  1103. w10.Part1 = p11
  1104. 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)
  1105. w11 = Instance.new("Weld", p11)
  1106. w11.Name = "Part_Weld"
  1107. w11.Part0 = p11
  1108. 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)
  1109. w11.Part1 = p12
  1110. 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)
  1111. w12 = Instance.new("Weld", p12)
  1112. w12.Name = "Part_Weld"
  1113. w12.Part0 = p12
  1114. 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)
  1115. w12.Part1 = p13
  1116. 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)
  1117. w13 = Instance.new("Weld", p13)
  1118. w13.Name = "Part_Weld"
  1119. w13.Part0 = p13
  1120. 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)
  1121. w13.Part1 = p14
  1122. 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)
  1123. w14 = Instance.new("Weld", p14)
  1124. w14.Name = "ArmPart_Weld"
  1125. w14.Part0 = p14
  1126. 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)
  1127. w14.Part1 = p15
  1128. 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)
  1129. w15 = Instance.new("Weld", p15)
  1130. w15.Name = "Part_Weld"
  1131. w15.Part0 = p15
  1132. 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)
  1133. w15.Part1 = p16
  1134. 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)
  1135. w16 = Instance.new("Weld", p16)
  1136. w16.Name = "Part_Weld"
  1137. w16.Part0 = p16
  1138. 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)
  1139. w16.Part1 = p17
  1140. 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)
  1141. w17 = Instance.new("Weld", p17)
  1142. w17.Name = "Part_Weld"
  1143. w17.Part0 = p17
  1144. 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)
  1145. w17.Part1 = p18
  1146. 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)
  1147. w18 = Instance.new("Weld", p18)
  1148. w18.Name = "Part_Weld"
  1149. w18.Part0 = p18
  1150. 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)
  1151. w18.Part1 = p19
  1152. 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)
  1153. w19 = Instance.new("Weld", p19)
  1154. w19.Name = "Part_Weld"
  1155. w19.Part0 = p19
  1156. 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)
  1157. w19.Part1 = p20
  1158. 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)
  1159. w20 = Instance.new("Weld", p20)
  1160. w20.Name = "Part_Weld"
  1161. w20.Part0 = p20
  1162. 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)
  1163. w20.Part1 = p21
  1164. 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)
  1165. w21 = Instance.new("Weld", p21)
  1166. w21.Name = "Wedge_Weld"
  1167. w21.Part0 = p21
  1168. 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)
  1169. w21.Part1 = p22
  1170. 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)
  1171. w22 = Instance.new("Weld", p22)
  1172. w22.Name = "Part_Weld"
  1173. w22.Part0 = p22
  1174. 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)
  1175. w22.Part1 = p23
  1176. 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)
  1177. w23 = Instance.new("Weld", p23)
  1178. w23.Name = "Wedge_Weld"
  1179. w23.Part0 = p23
  1180. 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)
  1181. w23.Part1 = p24
  1182. 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)
  1183. w24 = Instance.new("Weld", p24)
  1184. w24.Name = "Part_Weld"
  1185. w24.Part0 = p24
  1186. 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)
  1187. w24.Part1 = p25
  1188. 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)
  1189. w25 = Instance.new("Weld", p25)
  1190. w25.Name = "Part_Weld"
  1191. w25.Part0 = p25
  1192. 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)
  1193. w25.Part1 = p26
  1194. 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)
  1195. m.Parent = char
  1196. m:MakeJoints()
  1197. ----------------------------------------------------
  1198. local cor2 = Instance.new("Part", char.Claw)
  1199. cor2.Name = "Thingy"
  1200. cor2.Locked = true
  1201. cor2.BottomSurface = 0
  1202. cor2.CanCollide = false
  1203. cor2.Size = Vector3.new(2, 1, 1)
  1204. cor2.Transparency = 1
  1205. cor2.TopSurface = 0
  1206. corw2 = Instance.new("Weld", cor2)
  1207. corw2.Part0 = larm
  1208. corw2.Part1 = cor2
  1209. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1210. corw2.C1 = CFrame.new(0, 0, 0)
  1211. weld2 = Instance.new("Weld", char.Claw)
  1212. weld2.Part0 = cor2
  1213. weld2.Part1 = char.Claw.ArmPart
  1214. weld2.C0 = CFrame.new(0, 0, 0)
  1215. ----------------------------------------------------
  1216. local m = Instance.new("Model")
  1217. m.Name = "LeftArm"
  1218. p1 = Instance.new("WedgePart", m)
  1219. p1.BrickColor = BrickColor.new("Bright blue")
  1220. p1.Material = Enum.Material.Neon
  1221. p1.Name = "Wedge"
  1222. p1.FormFactor = Enum.FormFactor.Custom
  1223. p1.Size = Vector3.new(1, 1.19999981, 4)
  1224. 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)
  1225. p1.CanCollide = false
  1226. p1.Locked = true
  1227. p1.TopSurface = Enum.SurfaceType.Smooth
  1228. b1 = Instance.new("SpecialMesh", p1)
  1229. b1.MeshType = Enum.MeshType.Wedge
  1230. b1.Name = "Mesh"
  1231. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1232. p2 = Instance.new("WedgePart", m)
  1233. p2.BrickColor = BrickColor.new("Bright blue")
  1234. p2.Material = Enum.Material.Neon
  1235. p2.Name = "Wedge"
  1236. p2.FormFactor = Enum.FormFactor.Custom
  1237. p2.Size = Vector3.new(1, 1.19999981, 4)
  1238. 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)
  1239. p2.CanCollide = false
  1240. p2.Locked = true
  1241. p2.TopSurface = Enum.SurfaceType.Smooth
  1242. b2 = Instance.new("SpecialMesh", p2)
  1243. b2.MeshType = Enum.MeshType.Wedge
  1244. b2.Name = "Mesh"
  1245. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1246. p3 = Instance.new("WedgePart", m)
  1247. p3.BrickColor = BrickColor.new("Bright blue")
  1248. p3.Material = Enum.Material.Neon
  1249. p3.Name = "Wedge"
  1250. p3.FormFactor = Enum.FormFactor.Custom
  1251. p3.Size = Vector3.new(1, 1.19999981, 4)
  1252. 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)
  1253. p3.CanCollide = false
  1254. p3.Locked = true
  1255. p3.TopSurface = Enum.SurfaceType.Smooth
  1256. b3 = Instance.new("SpecialMesh", p3)
  1257. b3.MeshType = Enum.MeshType.Wedge
  1258. b3.Name = "Mesh"
  1259. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1260. p4 = Instance.new("WedgePart", m)
  1261. p4.BrickColor = BrickColor.new("Bright blue")
  1262. p4.Material = Enum.Material.Neon
  1263. p4.Name = "Wedge"
  1264. p4.FormFactor = Enum.FormFactor.Custom
  1265. p4.Size = Vector3.new(1, 1.19999981, 4)
  1266. 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)
  1267. p4.CanCollide = false
  1268. p4.Locked = true
  1269. p4.TopSurface = Enum.SurfaceType.Smooth
  1270. b4 = Instance.new("SpecialMesh", p4)
  1271. b4.MeshType = Enum.MeshType.Wedge
  1272. b4.Name = "Mesh"
  1273. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1274. p5 = Instance.new("WedgePart", m)
  1275. p5.BrickColor = BrickColor.new("Bright blue")
  1276. p5.Material = Enum.Material.Neon
  1277. p5.Name = "Wedge"
  1278. p5.FormFactor = Enum.FormFactor.Custom
  1279. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1280. 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)
  1281. p5.CanCollide = false
  1282. p5.Locked = true
  1283. p5.TopSurface = Enum.SurfaceType.Smooth
  1284. b5 = Instance.new("SpecialMesh", p5)
  1285. b5.MeshType = Enum.MeshType.Wedge
  1286. b5.Name = "Mesh"
  1287. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1288. p6 = Instance.new("WedgePart", m)
  1289. p6.BrickColor = BrickColor.new("Bright blue")
  1290. p6.Material = Enum.Material.Neon
  1291. p6.Name = "Wedge"
  1292. p6.FormFactor = Enum.FormFactor.Custom
  1293. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1294. 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)
  1295. p6.CanCollide = false
  1296. p6.Locked = true
  1297. p6.TopSurface = Enum.SurfaceType.Smooth
  1298. b6 = Instance.new("SpecialMesh", p6)
  1299. b6.MeshType = Enum.MeshType.Wedge
  1300. b6.Name = "Mesh"
  1301. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1302. p7 = Instance.new("WedgePart", m)
  1303. p7.BrickColor = BrickColor.new("Bright blue")
  1304. p7.Material = Enum.Material.Neon
  1305. p7.Name = "Wedge"
  1306. p7.FormFactor = Enum.FormFactor.Custom
  1307. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1308. 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)
  1309. p7.CanCollide = false
  1310. p7.Locked = true
  1311. p7.TopSurface = Enum.SurfaceType.Smooth
  1312. b7 = Instance.new("SpecialMesh", p7)
  1313. b7.MeshType = Enum.MeshType.Wedge
  1314. b7.Name = "Mesh"
  1315. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1316. p8 = Instance.new("Part", m)
  1317. p8.BrickColor = BrickColor.new("Really black")
  1318. p8.Material = Enum.Material.Neon
  1319. p8.FormFactor = Enum.FormFactor.Custom
  1320. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1321. 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)
  1322. p8.CanCollide = false
  1323. p8.Locked = true
  1324. p8.BottomSurface = Enum.SurfaceType.Smooth
  1325. p8.TopSurface = Enum.SurfaceType.Smooth
  1326. b8 = Instance.new("SpecialMesh", p8)
  1327. b8.MeshType = Enum.MeshType.Sphere
  1328. b8.Name = "Mesh"
  1329. p9 = Instance.new("Part", m)
  1330. p9.BrickColor = BrickColor.new("Really black")
  1331. p9.Material = Enum.Material.Neon
  1332. p9.FormFactor = Enum.FormFactor.Custom
  1333. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1334. 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)
  1335. p9.CanCollide = false
  1336. p9.Locked = true
  1337. p9.BottomSurface = Enum.SurfaceType.Smooth
  1338. p9.TopSurface = Enum.SurfaceType.Smooth
  1339. b9 = Instance.new("SpecialMesh", p9)
  1340. b9.MeshType = Enum.MeshType.Sphere
  1341. b9.Name = "Mesh"
  1342. p10 = Instance.new("Part", m)
  1343. p10.BrickColor = BrickColor.new("Bright blue")
  1344. p10.Material = Enum.Material.Neon
  1345. p10.FormFactor = Enum.FormFactor.Custom
  1346. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1347. 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)
  1348. p10.CanCollide = false
  1349. p10.Locked = true
  1350. p10.BottomSurface = Enum.SurfaceType.Smooth
  1351. p10.TopSurface = Enum.SurfaceType.Smooth
  1352. p11 = Instance.new("Part", m)
  1353. p11.BrickColor = BrickColor.new("Bright blue")
  1354. p11.Material = Enum.Material.Neon
  1355. p11.FormFactor = Enum.FormFactor.Custom
  1356. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1357. 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)
  1358. p11.CanCollide = false
  1359. p11.Locked = true
  1360. p11.BottomSurface = Enum.SurfaceType.Smooth
  1361. p11.TopSurface = Enum.SurfaceType.Smooth
  1362. p12 = Instance.new("Part", m)
  1363. p12.BrickColor = BrickColor.new("Really black")
  1364. p12.Material = Enum.Material.Neon
  1365. p12.FormFactor = Enum.FormFactor.Custom
  1366. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1367. 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)
  1368. p12.CanCollide = false
  1369. p12.Locked = true
  1370. p12.BottomSurface = Enum.SurfaceType.Smooth
  1371. p12.TopSurface = Enum.SurfaceType.Smooth
  1372. b10 = Instance.new("SpecialMesh", p12)
  1373. b10.MeshType = Enum.MeshType.Sphere
  1374. b10.Name = "Mesh"
  1375. p13 = Instance.new("Part", m)
  1376. p13.BrickColor = BrickColor.new("Bright blue")
  1377. p13.Material = Enum.Material.Neon
  1378. p13.FormFactor = Enum.FormFactor.Custom
  1379. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1380. 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)
  1381. p13.CanCollide = false
  1382. p13.Locked = true
  1383. p13.BottomSurface = Enum.SurfaceType.Smooth
  1384. p13.TopSurface = Enum.SurfaceType.Smooth
  1385. b11 = Instance.new("SpecialMesh", p13)
  1386. b11.MeshType = Enum.MeshType.Sphere
  1387. b11.Name = "Mesh"
  1388. p14 = Instance.new("Part", m)
  1389. p14.BrickColor = BrickColor.new("Really black")
  1390. p14.Material = Enum.Material.Neon
  1391. p14.FormFactor = Enum.FormFactor.Custom
  1392. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1393. 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)
  1394. p14.CanCollide = false
  1395. p14.Locked = true
  1396. p14.BottomSurface = Enum.SurfaceType.Smooth
  1397. p14.TopSurface = Enum.SurfaceType.Smooth
  1398. b12 = Instance.new("SpecialMesh", p14)
  1399. b12.MeshType = Enum.MeshType.Sphere
  1400. b12.Name = "Mesh"
  1401. p15 = Instance.new("Part", m)
  1402. p15.BrickColor = BrickColor.new("Really black")
  1403. p15.Material = Enum.Material.Metal
  1404. p15.Name = "Main"
  1405. p15.FormFactor = Enum.FormFactor.Custom
  1406. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1407. 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)
  1408. p15.CanCollide = false
  1409. p15.Locked = true
  1410. p15.BottomSurface = Enum.SurfaceType.Smooth
  1411. p15.TopSurface = Enum.SurfaceType.Smooth
  1412. p16 = Instance.new("Part", m)
  1413. p16.BrickColor = BrickColor.new("Really black")
  1414. p16.Material = Enum.Material.Neon
  1415. p16.FormFactor = Enum.FormFactor.Custom
  1416. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1417. 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)
  1418. p16.CanCollide = false
  1419. p16.Locked = true
  1420. p16.BottomSurface = Enum.SurfaceType.Smooth
  1421. p16.TopSurface = Enum.SurfaceType.Smooth
  1422. b13 = Instance.new("SpecialMesh", p16)
  1423. b13.MeshType = Enum.MeshType.Sphere
  1424. b13.Name = "Mesh"
  1425. p17 = Instance.new("Part", m)
  1426. p17.BrickColor = BrickColor.new("Bright blue")
  1427. p17.Material = Enum.Material.Neon
  1428. p17.FormFactor = Enum.FormFactor.Custom
  1429. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1430. 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)
  1431. p17.CanCollide = false
  1432. p17.Locked = true
  1433. p17.BottomSurface = Enum.SurfaceType.Smooth
  1434. p17.TopSurface = Enum.SurfaceType.Smooth
  1435. p18 = Instance.new("Part", m)
  1436. p18.BrickColor = BrickColor.new("Bright blue")
  1437. p18.Material = Enum.Material.Neon
  1438. p18.FormFactor = Enum.FormFactor.Custom
  1439. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1440. 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)
  1441. p18.CanCollide = false
  1442. p18.Locked = true
  1443. p18.BottomSurface = Enum.SurfaceType.Smooth
  1444. p18.TopSurface = Enum.SurfaceType.Smooth
  1445. p19 = Instance.new("Part", m)
  1446. p19.BrickColor = BrickColor.new("Bright blue")
  1447. p19.Material = Enum.Material.Neon
  1448. p19.FormFactor = Enum.FormFactor.Custom
  1449. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1450. 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)
  1451. p19.CanCollide = false
  1452. p19.Locked = true
  1453. p19.BottomSurface = Enum.SurfaceType.Smooth
  1454. p19.TopSurface = Enum.SurfaceType.Smooth
  1455. p20 = Instance.new("Part", m)
  1456. p20.BrickColor = BrickColor.new("Bright blue")
  1457. p20.Material = Enum.Material.Neon
  1458. p20.FormFactor = Enum.FormFactor.Custom
  1459. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1460. 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)
  1461. p20.CanCollide = false
  1462. p20.Locked = true
  1463. p20.BottomSurface = Enum.SurfaceType.Smooth
  1464. p20.TopSurface = Enum.SurfaceType.Smooth
  1465. p21 = Instance.new("Part", m)
  1466. p21.BrickColor = BrickColor.new("Bright blue")
  1467. p21.Material = Enum.Material.Neon
  1468. p21.FormFactor = Enum.FormFactor.Custom
  1469. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1470. 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)
  1471. p21.CanCollide = false
  1472. p21.Locked = true
  1473. p21.BottomSurface = Enum.SurfaceType.Smooth
  1474. p21.TopSurface = Enum.SurfaceType.Smooth
  1475. p22 = Instance.new("Part", m)
  1476. p22.BrickColor = BrickColor.new("Really black")
  1477. p22.Material = Enum.Material.Neon
  1478. p22.FormFactor = Enum.FormFactor.Custom
  1479. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1480. 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)
  1481. p22.CanCollide = false
  1482. p22.Locked = true
  1483. p22.BottomSurface = Enum.SurfaceType.Smooth
  1484. p22.TopSurface = Enum.SurfaceType.Smooth
  1485. b14 = Instance.new("SpecialMesh", p22)
  1486. b14.MeshType = Enum.MeshType.Sphere
  1487. b14.Name = "Mesh"
  1488. p23 = Instance.new("Part", m)
  1489. p23.BrickColor = BrickColor.new("Really black")
  1490. p23.Material = Enum.Material.Neon
  1491. p23.FormFactor = Enum.FormFactor.Custom
  1492. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1493. 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)
  1494. p23.CanCollide = false
  1495. p23.Locked = true
  1496. p23.BottomSurface = Enum.SurfaceType.Smooth
  1497. p23.TopSurface = Enum.SurfaceType.Smooth
  1498. b15 = Instance.new("SpecialMesh", p23)
  1499. b15.MeshType = Enum.MeshType.Sphere
  1500. b15.Name = "Mesh"
  1501. p24 = Instance.new("Part", m)
  1502. p24.BrickColor = BrickColor.new("Really black")
  1503. p24.Material = Enum.Material.Neon
  1504. p24.FormFactor = Enum.FormFactor.Custom
  1505. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1506. 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)
  1507. p24.CanCollide = false
  1508. p24.Locked = true
  1509. p24.BottomSurface = Enum.SurfaceType.Smooth
  1510. p24.TopSurface = Enum.SurfaceType.Smooth
  1511. b16 = Instance.new("SpecialMesh", p24)
  1512. b16.MeshType = Enum.MeshType.Sphere
  1513. b16.Name = "Mesh"
  1514. w1 = Instance.new("Weld", p1)
  1515. w1.Name = "Wedge_Weld"
  1516. w1.Part0 = p1
  1517. 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)
  1518. w1.Part1 = p2
  1519. 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)
  1520. w2 = Instance.new("Weld", p2)
  1521. w2.Name = "Wedge_Weld"
  1522. w2.Part0 = p2
  1523. 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)
  1524. w2.Part1 = p3
  1525. 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)
  1526. w3 = Instance.new("Weld", p3)
  1527. w3.Name = "Wedge_Weld"
  1528. w3.Part0 = p3
  1529. 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)
  1530. w3.Part1 = p4
  1531. 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)
  1532. w4 = Instance.new("Weld", p4)
  1533. w4.Name = "Wedge_Weld"
  1534. w4.Part0 = p4
  1535. 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)
  1536. w4.Part1 = p5
  1537. 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)
  1538. w5 = Instance.new("Weld", p5)
  1539. w5.Name = "Wedge_Weld"
  1540. w5.Part0 = p5
  1541. 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)
  1542. w5.Part1 = p6
  1543. 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)
  1544. w6 = Instance.new("Weld", p6)
  1545. w6.Name = "Wedge_Weld"
  1546. w6.Part0 = p6
  1547. 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)
  1548. w6.Part1 = p7
  1549. 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)
  1550. w7 = Instance.new("Weld", p7)
  1551. w7.Name = "Part_Weld"
  1552. w7.Part0 = p7
  1553. 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)
  1554. w7.Part1 = p8
  1555. 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)
  1556. w8 = Instance.new("Weld", p8)
  1557. w8.Name = "Part_Weld"
  1558. w8.Part0 = p8
  1559. 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)
  1560. w8.Part1 = p9
  1561. 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)
  1562. w9 = Instance.new("Weld", p9)
  1563. w9.Name = "Part_Weld"
  1564. w9.Part0 = p9
  1565. 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)
  1566. w9.Part1 = p10
  1567. 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)
  1568. w10 = Instance.new("Weld", p10)
  1569. w10.Name = "Part_Weld"
  1570. w10.Part0 = p10
  1571. 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)
  1572. w10.Part1 = p11
  1573. 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)
  1574. w11 = Instance.new("Weld", p11)
  1575. w11.Name = "Part_Weld"
  1576. w11.Part0 = p11
  1577. 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)
  1578. w11.Part1 = p12
  1579. 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)
  1580. w12 = Instance.new("Weld", p12)
  1581. w12.Name = "Part_Weld"
  1582. w12.Part0 = p12
  1583. 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)
  1584. w12.Part1 = p13
  1585. 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)
  1586. w13 = Instance.new("Weld", p13)
  1587. w13.Name = "Part_Weld"
  1588. w13.Part0 = p13
  1589. 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)
  1590. w13.Part1 = p14
  1591. 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)
  1592. w14 = Instance.new("Weld", p14)
  1593. w14.Name = "Part_Weld"
  1594. w14.Part0 = p14
  1595. 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)
  1596. w14.Part1 = p15
  1597. 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)
  1598. w15 = Instance.new("Weld", p15)
  1599. w15.Name = "Part_Weld"
  1600. w15.Part0 = p15
  1601. 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)
  1602. w15.Part1 = p16
  1603. 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)
  1604. w16 = Instance.new("Weld", p16)
  1605. w16.Name = "Part_Weld"
  1606. w16.Part0 = p16
  1607. 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)
  1608. w16.Part1 = p17
  1609. 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)
  1610. w17 = Instance.new("Weld", p17)
  1611. w17.Name = "Part_Weld"
  1612. w17.Part0 = p17
  1613. 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)
  1614. w17.Part1 = p18
  1615. 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)
  1616. w18 = Instance.new("Weld", p18)
  1617. w18.Name = "Part_Weld"
  1618. w18.Part0 = p18
  1619. 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)
  1620. w18.Part1 = p19
  1621. 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)
  1622. w19 = Instance.new("Weld", p19)
  1623. w19.Name = "Part_Weld"
  1624. w19.Part0 = p19
  1625. 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)
  1626. w19.Part1 = p20
  1627. 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)
  1628. w20 = Instance.new("Weld", p20)
  1629. w20.Name = "Part_Weld"
  1630. w20.Part0 = p20
  1631. 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)
  1632. w20.Part1 = p21
  1633. 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)
  1634. w21 = Instance.new("Weld", p21)
  1635. w21.Name = "Part_Weld"
  1636. w21.Part0 = p21
  1637. 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)
  1638. w21.Part1 = p22
  1639. 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)
  1640. w22 = Instance.new("Weld", p22)
  1641. w22.Name = "Part_Weld"
  1642. w22.Part0 = p22
  1643. 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)
  1644. w22.Part1 = p23
  1645. 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)
  1646. w23 = Instance.new("Weld", p23)
  1647. w23.Name = "Part_Weld"
  1648. w23.Part0 = p23
  1649. 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)
  1650. w23.Part1 = p24
  1651. 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)
  1652. w24 = Instance.new("Weld", p24)
  1653. w24.Name = "Part_Weld"
  1654. w24.Part0 = p24
  1655. 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)
  1656. m.Parent = larm
  1657. m:MakeJoints()
  1658. ----------------------------------------------------
  1659. local cor3 = Instance.new("Part", larm.LeftArm)
  1660. cor3.Name = "Thingy"
  1661. cor3.Locked = true
  1662. cor3.BottomSurface = 0
  1663. cor3.CanCollide = false
  1664. cor3.Size = Vector3.new(2, 1, 1)
  1665. cor3.Transparency = 1
  1666. cor3.TopSurface = 0
  1667. corw2 = Instance.new("Weld", cor3)
  1668. corw2.Part0 = larm
  1669. corw2.Part1 = cor3
  1670. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1671. corw2.C1 = CFrame.new(0, 0, 0)
  1672. weld2 = Instance.new("Weld", larm.LeftArm)
  1673. weld2.Part0 = cor3
  1674. weld2.Part1 = p15
  1675. weld2.C0 = CFrame.new(0, 0, 0)
  1676. ----------------------------------------------------
  1677. local m = Instance.new("Model")
  1678. m.Name = "RightArm"
  1679. p1 = Instance.new("WedgePart", m)
  1680. p1.BrickColor = BrickColor.new("Bright blue")
  1681. p1.Material = Enum.Material.Neon
  1682. p1.Name = "Wedge"
  1683. p1.FormFactor = Enum.FormFactor.Custom
  1684. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1685. 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)
  1686. p1.CanCollide = false
  1687. p1.Locked = true
  1688. p1.TopSurface = Enum.SurfaceType.Smooth
  1689. b1 = Instance.new("SpecialMesh", p1)
  1690. b1.MeshType = Enum.MeshType.Wedge
  1691. b1.Name = "Mesh"
  1692. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1693. p2 = Instance.new("WedgePart", m)
  1694. p2.BrickColor = BrickColor.new("Bright blue")
  1695. p2.Material = Enum.Material.Neon
  1696. p2.Name = "Wedge"
  1697. p2.FormFactor = Enum.FormFactor.Custom
  1698. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1699. 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)
  1700. p2.CanCollide = false
  1701. p2.Locked = true
  1702. p2.TopSurface = Enum.SurfaceType.Smooth
  1703. b2 = Instance.new("SpecialMesh", p2)
  1704. b2.MeshType = Enum.MeshType.Wedge
  1705. b2.Name = "Mesh"
  1706. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1707. p3 = Instance.new("WedgePart", m)
  1708. p3.BrickColor = BrickColor.new("Bright blue")
  1709. p3.Material = Enum.Material.Neon
  1710. p3.Name = "Wedge"
  1711. p3.FormFactor = Enum.FormFactor.Custom
  1712. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1713. 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)
  1714. p3.CanCollide = false
  1715. p3.Locked = true
  1716. p3.TopSurface = Enum.SurfaceType.Smooth
  1717. b3 = Instance.new("SpecialMesh", p3)
  1718. b3.MeshType = Enum.MeshType.Wedge
  1719. b3.Name = "Mesh"
  1720. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1721. p4 = Instance.new("WedgePart", m)
  1722. p4.BrickColor = BrickColor.new("Bright blue")
  1723. p4.Material = Enum.Material.Neon
  1724. p4.Name = "Wedge"
  1725. p4.FormFactor = Enum.FormFactor.Custom
  1726. p4.Size = Vector3.new(1, 1.19999981, 4)
  1727. 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)
  1728. p4.CanCollide = false
  1729. p4.Locked = true
  1730. p4.TopSurface = Enum.SurfaceType.Smooth
  1731. b4 = Instance.new("SpecialMesh", p4)
  1732. b4.MeshType = Enum.MeshType.Wedge
  1733. b4.Name = "Mesh"
  1734. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1735. p5 = Instance.new("WedgePart", m)
  1736. p5.BrickColor = BrickColor.new("Bright blue")
  1737. p5.Material = Enum.Material.Neon
  1738. p5.Name = "Wedge"
  1739. p5.FormFactor = Enum.FormFactor.Custom
  1740. p5.Size = Vector3.new(1, 1.19999981, 4)
  1741. 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)
  1742. p5.CanCollide = false
  1743. p5.Locked = true
  1744. p5.TopSurface = Enum.SurfaceType.Smooth
  1745. b5 = Instance.new("SpecialMesh", p5)
  1746. b5.MeshType = Enum.MeshType.Wedge
  1747. b5.Name = "Mesh"
  1748. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1749. p6 = Instance.new("WedgePart", m)
  1750. p6.BrickColor = BrickColor.new("Bright blue")
  1751. p6.Material = Enum.Material.Neon
  1752. p6.Name = "Wedge"
  1753. p6.FormFactor = Enum.FormFactor.Custom
  1754. p6.Size = Vector3.new(1, 1.19999981, 4)
  1755. 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)
  1756. p6.CanCollide = false
  1757. p6.Locked = true
  1758. p6.TopSurface = Enum.SurfaceType.Smooth
  1759. b6 = Instance.new("SpecialMesh", p6)
  1760. b6.MeshType = Enum.MeshType.Wedge
  1761. b6.Name = "Mesh"
  1762. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1763. p7 = Instance.new("Part", m)
  1764. p7.BrickColor = BrickColor.new("Really black")
  1765. p7.Material = Enum.Material.Neon
  1766. p7.FormFactor = Enum.FormFactor.Custom
  1767. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1768. 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)
  1769. p7.CanCollide = false
  1770. p7.Locked = true
  1771. p7.BottomSurface = Enum.SurfaceType.Smooth
  1772. p7.TopSurface = Enum.SurfaceType.Smooth
  1773. b7 = Instance.new("SpecialMesh", p7)
  1774. b7.MeshType = Enum.MeshType.Sphere
  1775. b7.Name = "Mesh"
  1776. p8 = Instance.new("Part", m)
  1777. p8.BrickColor = BrickColor.new("Bright blue")
  1778. p8.Material = Enum.Material.Neon
  1779. p8.FormFactor = Enum.FormFactor.Custom
  1780. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1781. 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)
  1782. p8.CanCollide = false
  1783. p8.Locked = true
  1784. p8.BottomSurface = Enum.SurfaceType.Smooth
  1785. p8.TopSurface = Enum.SurfaceType.Smooth
  1786. p9 = Instance.new("Part", m)
  1787. p9.BrickColor = BrickColor.new("Really black")
  1788. p9.Material = Enum.Material.Neon
  1789. p9.FormFactor = Enum.FormFactor.Custom
  1790. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1791. 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)
  1792. p9.CanCollide = false
  1793. p9.Locked = true
  1794. p9.BottomSurface = Enum.SurfaceType.Smooth
  1795. p9.TopSurface = Enum.SurfaceType.Smooth
  1796. b8 = Instance.new("SpecialMesh", p9)
  1797. b8.MeshType = Enum.MeshType.Sphere
  1798. b8.Name = "Mesh"
  1799. p10 = Instance.new("Part", m)
  1800. p10.BrickColor = BrickColor.new("Really black")
  1801. p10.Material = Enum.Material.Neon
  1802. p10.FormFactor = Enum.FormFactor.Custom
  1803. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1804. 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)
  1805. p10.CanCollide = false
  1806. p10.Locked = true
  1807. p10.BottomSurface = Enum.SurfaceType.Smooth
  1808. p10.TopSurface = Enum.SurfaceType.Smooth
  1809. b9 = Instance.new("SpecialMesh", p10)
  1810. b9.MeshType = Enum.MeshType.Sphere
  1811. b9.Name = "Mesh"
  1812. p11 = Instance.new("Part", m)
  1813. p11.BrickColor = BrickColor.new("Bright blue")
  1814. p11.Material = Enum.Material.Neon
  1815. p11.FormFactor = Enum.FormFactor.Custom
  1816. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1817. 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)
  1818. p11.CanCollide = false
  1819. p11.Locked = true
  1820. p11.BottomSurface = Enum.SurfaceType.Smooth
  1821. p11.TopSurface = Enum.SurfaceType.Smooth
  1822. p12 = Instance.new("Part", m)
  1823. p12.BrickColor = BrickColor.new("Bright blue")
  1824. p12.Material = Enum.Material.Neon
  1825. p12.FormFactor = Enum.FormFactor.Custom
  1826. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1827. 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)
  1828. p12.CanCollide = false
  1829. p12.Locked = true
  1830. p12.BottomSurface = Enum.SurfaceType.Smooth
  1831. p12.TopSurface = Enum.SurfaceType.Smooth
  1832. p13 = Instance.new("Part", m)
  1833. p13.BrickColor = BrickColor.new("Bright blue")
  1834. p13.Material = Enum.Material.Neon
  1835. p13.FormFactor = Enum.FormFactor.Custom
  1836. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1837. 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)
  1838. p13.CanCollide = false
  1839. p13.Locked = true
  1840. p13.BottomSurface = Enum.SurfaceType.Smooth
  1841. p13.TopSurface = Enum.SurfaceType.Smooth
  1842. b10 = Instance.new("SpecialMesh", p13)
  1843. b10.MeshType = Enum.MeshType.Sphere
  1844. b10.Name = "Mesh"
  1845. p14 = Instance.new("Part", m)
  1846. p14.BrickColor = BrickColor.new("Really black")
  1847. p14.Material = Enum.Material.Metal
  1848. p14.Name = "Main"
  1849. p14.FormFactor = Enum.FormFactor.Custom
  1850. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1851. 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)
  1852. p14.CanCollide = false
  1853. p14.Locked = true
  1854. p14.BottomSurface = Enum.SurfaceType.Smooth
  1855. p14.TopSurface = Enum.SurfaceType.Smooth
  1856. p15 = Instance.new("Part", m)
  1857. p15.BrickColor = BrickColor.new("Really black")
  1858. p15.Material = Enum.Material.Neon
  1859. p15.FormFactor = Enum.FormFactor.Custom
  1860. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1861. 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)
  1862. p15.CanCollide = false
  1863. p15.Locked = true
  1864. p15.BottomSurface = Enum.SurfaceType.Smooth
  1865. p15.TopSurface = Enum.SurfaceType.Smooth
  1866. b11 = Instance.new("SpecialMesh", p15)
  1867. b11.MeshType = Enum.MeshType.Sphere
  1868. b11.Name = "Mesh"
  1869. p16 = Instance.new("Part", m)
  1870. p16.BrickColor = BrickColor.new("Bright blue")
  1871. p16.Material = Enum.Material.Neon
  1872. p16.FormFactor = Enum.FormFactor.Custom
  1873. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1874. 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)
  1875. p16.CanCollide = false
  1876. p16.Locked = true
  1877. p16.BottomSurface = Enum.SurfaceType.Smooth
  1878. p16.TopSurface = Enum.SurfaceType.Smooth
  1879. p17 = Instance.new("Part", m)
  1880. p17.BrickColor = BrickColor.new("Bright blue")
  1881. p17.Material = Enum.Material.Neon
  1882. p17.FormFactor = Enum.FormFactor.Custom
  1883. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1884. 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)
  1885. p17.CanCollide = false
  1886. p17.Locked = true
  1887. p17.BottomSurface = Enum.SurfaceType.Smooth
  1888. p17.TopSurface = Enum.SurfaceType.Smooth
  1889. p18 = Instance.new("Part", m)
  1890. p18.BrickColor = BrickColor.new("Really black")
  1891. p18.Material = Enum.Material.Neon
  1892. p18.FormFactor = Enum.FormFactor.Custom
  1893. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1894. 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)
  1895. p18.CanCollide = false
  1896. p18.Locked = true
  1897. p18.BottomSurface = Enum.SurfaceType.Smooth
  1898. p18.TopSurface = Enum.SurfaceType.Smooth
  1899. b12 = Instance.new("SpecialMesh", p18)
  1900. b12.MeshType = Enum.MeshType.Sphere
  1901. b12.Name = "Mesh"
  1902. p19 = Instance.new("Part", m)
  1903. p19.BrickColor = BrickColor.new("Really black")
  1904. p19.Material = Enum.Material.Neon
  1905. p19.FormFactor = Enum.FormFactor.Custom
  1906. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1907. 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)
  1908. p19.CanCollide = false
  1909. p19.Locked = true
  1910. p19.BottomSurface = Enum.SurfaceType.Smooth
  1911. p19.TopSurface = Enum.SurfaceType.Smooth
  1912. b13 = Instance.new("SpecialMesh", p19)
  1913. b13.MeshType = Enum.MeshType.Sphere
  1914. b13.Name = "Mesh"
  1915. w1 = Instance.new("Weld", p1)
  1916. w1.Name = "Wedge_Weld"
  1917. w1.Part0 = p1
  1918. 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)
  1919. w1.Part1 = p2
  1920. 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)
  1921. w2 = Instance.new("Weld", p2)
  1922. w2.Name = "Wedge_Weld"
  1923. w2.Part0 = p2
  1924. 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)
  1925. w2.Part1 = p3
  1926. 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)
  1927. w3 = Instance.new("Weld", p3)
  1928. w3.Name = "Wedge_Weld"
  1929. w3.Part0 = p3
  1930. 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)
  1931. w3.Part1 = p4
  1932. 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)
  1933. w4 = Instance.new("Weld", p4)
  1934. w4.Name = "Wedge_Weld"
  1935. w4.Part0 = p4
  1936. 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)
  1937. w4.Part1 = p5
  1938. 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)
  1939. w5 = Instance.new("Weld", p5)
  1940. w5.Name = "Wedge_Weld"
  1941. w5.Part0 = p5
  1942. 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)
  1943. w5.Part1 = p6
  1944. 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)
  1945. w6 = Instance.new("Weld", p6)
  1946. w6.Name = "Part_Weld"
  1947. w6.Part0 = p6
  1948. 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)
  1949. w6.Part1 = p7
  1950. 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)
  1951. w7 = Instance.new("Weld", p7)
  1952. w7.Name = "Part_Weld"
  1953. w7.Part0 = p7
  1954. 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)
  1955. w7.Part1 = p8
  1956. 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)
  1957. w8 = Instance.new("Weld", p8)
  1958. w8.Name = "Part_Weld"
  1959. w8.Part0 = p8
  1960. 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)
  1961. w8.Part1 = p9
  1962. 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)
  1963. w9 = Instance.new("Weld", p9)
  1964. w9.Name = "Part_Weld"
  1965. w9.Part0 = p9
  1966. 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)
  1967. w9.Part1 = p10
  1968. 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)
  1969. w10 = Instance.new("Weld", p10)
  1970. w10.Name = "Part_Weld"
  1971. w10.Part0 = p10
  1972. 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)
  1973. w10.Part1 = p11
  1974. 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)
  1975. w11 = Instance.new("Weld", p11)
  1976. w11.Name = "Part_Weld"
  1977. w11.Part0 = p11
  1978. 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)
  1979. w11.Part1 = p12
  1980. 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)
  1981. w12 = Instance.new("Weld", p12)
  1982. w12.Name = "Part_Weld"
  1983. w12.Part0 = p12
  1984. 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)
  1985. w12.Part1 = p13
  1986. 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)
  1987. w13 = Instance.new("Weld", p13)
  1988. w13.Name = "Part_Weld"
  1989. w13.Part0 = p13
  1990. 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)
  1991. w13.Part1 = p14
  1992. 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)
  1993. w14 = Instance.new("Weld", p14)
  1994. w14.Name = "Part_Weld"
  1995. w14.Part0 = p14
  1996. 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)
  1997. w14.Part1 = p15
  1998. 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)
  1999. w15 = Instance.new("Weld", p15)
  2000. w15.Name = "Part_Weld"
  2001. w15.Part0 = p15
  2002. 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)
  2003. w15.Part1 = p16
  2004. 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)
  2005. w16 = Instance.new("Weld", p16)
  2006. w16.Name = "Part_Weld"
  2007. w16.Part0 = p16
  2008. 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)
  2009. w16.Part1 = p17
  2010. 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)
  2011. w17 = Instance.new("Weld", p17)
  2012. w17.Name = "Part_Weld"
  2013. w17.Part0 = p17
  2014. 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)
  2015. w17.Part1 = p18
  2016. 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)
  2017. w18 = Instance.new("Weld", p18)
  2018. w18.Name = "Part_Weld"
  2019. w18.Part0 = p18
  2020. 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)
  2021. w18.Part1 = p19
  2022. 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)
  2023. w19 = Instance.new("Weld", p19)
  2024. w19.Name = "Wedge_Weld"
  2025. w19.Part0 = p19
  2026. 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)
  2027. m.Parent = rarm
  2028. m:MakeJoints()
  2029. ----------------------------------------------------
  2030. local cor4 = Instance.new("Part", rarm.RightArm)
  2031. cor4.Name = "Thingy"
  2032. cor4.Locked = true
  2033. cor4.BottomSurface = 0
  2034. cor4.CanCollide = false
  2035. cor4.Size = Vector3.new(2, 1, 1)
  2036. cor4.Transparency = 1
  2037. cor4.TopSurface = 0
  2038. corw2 = Instance.new("Weld", cor4)
  2039. corw2.Part0 = rarm
  2040. corw2.Part1 = cor4
  2041. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2042. corw2.C1 = CFrame.new(0, 0, 0)
  2043. weld2 = Instance.new("Weld", rarm.RightArm)
  2044. weld2.Part0 = cor4
  2045. weld2.Part1 = p14
  2046. weld2.C0 = CFrame.new(0, 0, 0)
  2047. ----------------------------------------------------
  2048. local m = Instance.new("Model")
  2049. m.Name = "Torso"
  2050. p1 = Instance.new("Part", m)
  2051. p1.BrickColor = BrickColor.new("Really black")
  2052. p1.Material = Enum.Material.Neon
  2053. p1.FormFactor = Enum.FormFactor.Custom
  2054. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2055. 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)
  2056. p1.CanCollide = false
  2057. p1.Locked = true
  2058. p1.BottomSurface = Enum.SurfaceType.Smooth
  2059. p1.TopSurface = Enum.SurfaceType.Smooth
  2060. b1 = Instance.new("SpecialMesh", p1)
  2061. b1.MeshType = Enum.MeshType.Sphere
  2062. b1.Name = "Mesh"
  2063. p2 = Instance.new("Part", m)
  2064. p2.BrickColor = BrickColor.new("Really black")
  2065. p2.Material = Enum.Material.Neon
  2066. p2.FormFactor = Enum.FormFactor.Custom
  2067. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2068. 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)
  2069. p2.CanCollide = false
  2070. p2.Locked = true
  2071. p2.BottomSurface = Enum.SurfaceType.Smooth
  2072. p2.TopSurface = Enum.SurfaceType.Smooth
  2073. b2 = Instance.new("SpecialMesh", p2)
  2074. b2.MeshType = Enum.MeshType.Sphere
  2075. b2.Name = "Mesh"
  2076. p3 = Instance.new("Part", m)
  2077. p3.BrickColor = BrickColor.new("Bright blue")
  2078. p3.Material = Enum.Material.Neon
  2079. p3.FormFactor = Enum.FormFactor.Custom
  2080. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2081. 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)
  2082. p3.CanCollide = false
  2083. p3.Locked = true
  2084. p3.BottomSurface = Enum.SurfaceType.Smooth
  2085. p3.TopSurface = Enum.SurfaceType.Smooth
  2086. p4 = Instance.new("Part", m)
  2087. p4.BrickColor = BrickColor.new("Bright blue")
  2088. p4.Material = Enum.Material.Neon
  2089. p4.FormFactor = Enum.FormFactor.Custom
  2090. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2091. 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)
  2092. p4.CanCollide = false
  2093. p4.Locked = true
  2094. p4.BottomSurface = Enum.SurfaceType.Smooth
  2095. p4.TopSurface = Enum.SurfaceType.Smooth
  2096. p5 = Instance.new("Part", m)
  2097. p5.BrickColor = BrickColor.new("Bright blue")
  2098. p5.Material = Enum.Material.Neon
  2099. p5.FormFactor = Enum.FormFactor.Custom
  2100. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2101. 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)
  2102. p5.CanCollide = false
  2103. p5.Locked = true
  2104. p5.BottomSurface = Enum.SurfaceType.Smooth
  2105. p5.TopSurface = Enum.SurfaceType.Smooth
  2106. p6 = Instance.new("Part", m)
  2107. p6.BrickColor = BrickColor.new("Bright blue")
  2108. p6.Material = Enum.Material.Neon
  2109. p6.FormFactor = Enum.FormFactor.Custom
  2110. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2111. 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)
  2112. p6.CanCollide = false
  2113. p6.Locked = true
  2114. p6.BottomSurface = Enum.SurfaceType.Smooth
  2115. p6.TopSurface = Enum.SurfaceType.Smooth
  2116. p7 = Instance.new("Part", m)
  2117. p7.BrickColor = BrickColor.new("Really black")
  2118. p7.Material = Enum.Material.Neon
  2119. p7.FormFactor = Enum.FormFactor.Custom
  2120. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2121. 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)
  2122. p7.CanCollide = false
  2123. p7.Locked = true
  2124. p7.BottomSurface = Enum.SurfaceType.Smooth
  2125. p7.TopSurface = Enum.SurfaceType.Smooth
  2126. b3 = Instance.new("SpecialMesh", p7)
  2127. b3.MeshType = Enum.MeshType.Sphere
  2128. b3.Name = "Mesh"
  2129. p8 = Instance.new("Part", m)
  2130. p8.BrickColor = BrickColor.new("Really black")
  2131. p8.Material = Enum.Material.Neon
  2132. p8.FormFactor = Enum.FormFactor.Custom
  2133. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2134. 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)
  2135. p8.CanCollide = false
  2136. p8.Locked = true
  2137. p8.BottomSurface = Enum.SurfaceType.Smooth
  2138. p8.TopSurface = Enum.SurfaceType.Smooth
  2139. b4 = Instance.new("SpecialMesh", p8)
  2140. b4.MeshType = Enum.MeshType.Sphere
  2141. b4.Name = "Mesh"
  2142. p9 = Instance.new("Part", m)
  2143. p9.BrickColor = BrickColor.new("Really black")
  2144. p9.Material = Enum.Material.Neon
  2145. p9.FormFactor = Enum.FormFactor.Custom
  2146. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2147. 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)
  2148. p9.CanCollide = false
  2149. p9.Locked = true
  2150. p9.BottomSurface = Enum.SurfaceType.Smooth
  2151. p9.TopSurface = Enum.SurfaceType.Smooth
  2152. b5 = Instance.new("SpecialMesh", p9)
  2153. b5.MeshType = Enum.MeshType.Sphere
  2154. b5.Name = "Mesh"
  2155. p10 = Instance.new("Part", m)
  2156. p10.BrickColor = BrickColor.new("Bright blue")
  2157. p10.Material = Enum.Material.Neon
  2158. p10.FormFactor = Enum.FormFactor.Custom
  2159. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2160. 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)
  2161. p10.CanCollide = false
  2162. p10.Locked = true
  2163. p10.BottomSurface = Enum.SurfaceType.Smooth
  2164. p10.TopSurface = Enum.SurfaceType.Smooth
  2165. p11 = Instance.new("Part", m)
  2166. p11.BrickColor = BrickColor.new("Really black")
  2167. p11.Material = Enum.Material.Metal
  2168. p11.Name = "Main"
  2169. p11.FormFactor = Enum.FormFactor.Custom
  2170. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2171. 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)
  2172. p11.CanCollide = false
  2173. p11.Locked = true
  2174. p11.BottomSurface = Enum.SurfaceType.Smooth
  2175. p11.TopSurface = Enum.SurfaceType.Smooth
  2176. p12 = Instance.new("Part", m)
  2177. p12.BrickColor = BrickColor.new("Really black")
  2178. p12.Material = Enum.Material.Neon
  2179. p12.FormFactor = Enum.FormFactor.Custom
  2180. p12.Size = Vector3.new(3, 3, 2)
  2181. 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)
  2182. p12.CanCollide = false
  2183. p12.Locked = true
  2184. p12.BottomSurface = Enum.SurfaceType.Smooth
  2185. p12.TopSurface = Enum.SurfaceType.Smooth
  2186. b6 = Instance.new("SpecialMesh", p12)
  2187. b6.MeshType = Enum.MeshType.Sphere
  2188. b6.Name = "Mesh"
  2189. p13 = Instance.new("Part", m)
  2190. p13.BrickColor = BrickColor.new("Bright blue")
  2191. p13.Material = Enum.Material.Neon
  2192. p13.FormFactor = Enum.FormFactor.Custom
  2193. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2194. 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)
  2195. p13.CanCollide = false
  2196. p13.Locked = true
  2197. p13.BottomSurface = Enum.SurfaceType.Smooth
  2198. p13.TopSurface = Enum.SurfaceType.Smooth
  2199. p14 = Instance.new("Part", m)
  2200. p14.BrickColor = BrickColor.new("Bright blue")
  2201. p14.Material = Enum.Material.Neon
  2202. p14.FormFactor = Enum.FormFactor.Custom
  2203. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2204. 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)
  2205. p14.CanCollide = false
  2206. p14.Locked = true
  2207. p14.BottomSurface = Enum.SurfaceType.Smooth
  2208. p14.TopSurface = Enum.SurfaceType.Smooth
  2209. p15 = Instance.new("Part", m)
  2210. p15.BrickColor = BrickColor.new("Bright blue")
  2211. p15.Material = Enum.Material.Neon
  2212. p15.FormFactor = Enum.FormFactor.Custom
  2213. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2214. 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)
  2215. p15.CanCollide = false
  2216. p15.Locked = true
  2217. p15.BottomSurface = Enum.SurfaceType.Smooth
  2218. p15.TopSurface = Enum.SurfaceType.Smooth
  2219. p16 = Instance.new("Part", m)
  2220. p16.BrickColor = BrickColor.new("Bright blue")
  2221. p16.Material = Enum.Material.Neon
  2222. p16.FormFactor = Enum.FormFactor.Custom
  2223. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2224. 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)
  2225. p16.CanCollide = false
  2226. p16.Locked = true
  2227. p16.BottomSurface = Enum.SurfaceType.Smooth
  2228. p16.TopSurface = Enum.SurfaceType.Smooth
  2229. p17 = Instance.new("Part", m)
  2230. p17.BrickColor = BrickColor.new("Bright blue")
  2231. p17.Material = Enum.Material.Neon
  2232. p17.FormFactor = Enum.FormFactor.Custom
  2233. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2234. 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)
  2235. p17.CanCollide = false
  2236. p17.Locked = true
  2237. p17.BottomSurface = Enum.SurfaceType.Smooth
  2238. p17.TopSurface = Enum.SurfaceType.Smooth
  2239. p18 = Instance.new("Part", m)
  2240. p18.BrickColor = BrickColor.new("Bright blue")
  2241. p18.Material = Enum.Material.Neon
  2242. p18.FormFactor = Enum.FormFactor.Custom
  2243. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2244. 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)
  2245. p18.CanCollide = false
  2246. p18.Locked = true
  2247. p18.BottomSurface = Enum.SurfaceType.Smooth
  2248. p18.TopSurface = Enum.SurfaceType.Smooth
  2249. p19 = Instance.new("Part", m)
  2250. p19.BrickColor = BrickColor.new("Really black")
  2251. p19.Material = Enum.Material.Neon
  2252. p19.FormFactor = Enum.FormFactor.Custom
  2253. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2254. 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)
  2255. p19.CanCollide = false
  2256. p19.Locked = true
  2257. p19.BottomSurface = Enum.SurfaceType.Smooth
  2258. p19.TopSurface = Enum.SurfaceType.Smooth
  2259. b7 = Instance.new("SpecialMesh", p19)
  2260. b7.MeshType = Enum.MeshType.Sphere
  2261. b7.Name = "Mesh"
  2262. p20 = Instance.new("Part", m)
  2263. p20.BrickColor = BrickColor.new("Really black")
  2264. p20.Material = Enum.Material.Neon
  2265. p20.FormFactor = Enum.FormFactor.Custom
  2266. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2267. 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)
  2268. p20.CanCollide = false
  2269. p20.Locked = true
  2270. p20.BottomSurface = Enum.SurfaceType.Smooth
  2271. p20.TopSurface = Enum.SurfaceType.Smooth
  2272. b8 = Instance.new("SpecialMesh", p20)
  2273. b8.MeshType = Enum.MeshType.Sphere
  2274. b8.Name = "Mesh"
  2275. p21 = Instance.new("Part", m)
  2276. p21.BrickColor = BrickColor.new("Bright blue")
  2277. p21.Material = Enum.Material.Neon
  2278. p21.FormFactor = Enum.FormFactor.Custom
  2279. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2280. 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)
  2281. p21.CanCollide = false
  2282. p21.Locked = true
  2283. p21.BottomSurface = Enum.SurfaceType.Smooth
  2284. p21.TopSurface = Enum.SurfaceType.Smooth
  2285. p22 = Instance.new("Part", m)
  2286. p22.BrickColor = BrickColor.new("Really black")
  2287. p22.Material = Enum.Material.Neon
  2288. p22.FormFactor = Enum.FormFactor.Custom
  2289. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2290. 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)
  2291. p22.CanCollide = false
  2292. p22.Locked = true
  2293. p22.BottomSurface = Enum.SurfaceType.Smooth
  2294. p22.TopSurface = Enum.SurfaceType.Smooth
  2295. b9 = Instance.new("SpecialMesh", p22)
  2296. b9.MeshType = Enum.MeshType.Sphere
  2297. b9.Name = "Mesh"
  2298. w1 = Instance.new("Weld", p1)
  2299. w1.Name = "Part_Weld"
  2300. w1.Part0 = p1
  2301. 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)
  2302. w1.Part1 = p2
  2303. 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)
  2304. w2 = Instance.new("Weld", p2)
  2305. w2.Name = "Part_Weld"
  2306. w2.Part0 = p2
  2307. 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)
  2308. w2.Part1 = p3
  2309. 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)
  2310. w3 = Instance.new("Weld", p3)
  2311. w3.Name = "Part_Weld"
  2312. w3.Part0 = p3
  2313. 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)
  2314. w3.Part1 = p4
  2315. 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)
  2316. w4 = Instance.new("Weld", p4)
  2317. w4.Name = "Part_Weld"
  2318. w4.Part0 = p4
  2319. 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)
  2320. w4.Part1 = p5
  2321. 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)
  2322. w5 = Instance.new("Weld", p5)
  2323. w5.Name = "Part_Weld"
  2324. w5.Part0 = p5
  2325. 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)
  2326. w5.Part1 = p6
  2327. 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)
  2328. w6 = Instance.new("Weld", p6)
  2329. w6.Name = "Part_Weld"
  2330. w6.Part0 = p6
  2331. 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)
  2332. w6.Part1 = p7
  2333. 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)
  2334. w7 = Instance.new("Weld", p7)
  2335. w7.Name = "Part_Weld"
  2336. w7.Part0 = p7
  2337. 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)
  2338. w7.Part1 = p8
  2339. 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)
  2340. w8 = Instance.new("Weld", p8)
  2341. w8.Name = "Part_Weld"
  2342. w8.Part0 = p8
  2343. 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)
  2344. w8.Part1 = p9
  2345. 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)
  2346. w9 = Instance.new("Weld", p9)
  2347. w9.Name = "Part_Weld"
  2348. w9.Part0 = p9
  2349. 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)
  2350. w9.Part1 = p10
  2351. 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)
  2352. w10 = Instance.new("Weld", p10)
  2353. w10.Name = "Main_Weld"
  2354. w10.Part0 = p10
  2355. 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)
  2356. w10.Part1 = p11
  2357. 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)
  2358. w11 = Instance.new("Weld", p11)
  2359. w11.Name = "Part_Weld"
  2360. w11.Part0 = p11
  2361. 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)
  2362. w11.Part1 = p12
  2363. 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)
  2364. w12 = Instance.new("Weld", p12)
  2365. w12.Name = "Part_Weld"
  2366. w12.Part0 = p12
  2367. 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)
  2368. w12.Part1 = p13
  2369. 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)
  2370. w13 = Instance.new("Weld", p13)
  2371. w13.Name = "Part_Weld"
  2372. w13.Part0 = p13
  2373. 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)
  2374. w13.Part1 = p14
  2375. 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)
  2376. w14 = Instance.new("Weld", p14)
  2377. w14.Name = "Part_Weld"
  2378. w14.Part0 = p14
  2379. 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)
  2380. w14.Part1 = p15
  2381. 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)
  2382. w15 = Instance.new("Weld", p15)
  2383. w15.Name = "Part_Weld"
  2384. w15.Part0 = p15
  2385. 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)
  2386. w15.Part1 = p16
  2387. 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)
  2388. w16 = Instance.new("Weld", p16)
  2389. w16.Name = "Part_Weld"
  2390. w16.Part0 = p16
  2391. 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)
  2392. w16.Part1 = p17
  2393. 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)
  2394. w17 = Instance.new("Weld", p17)
  2395. w17.Name = "Part_Weld"
  2396. w17.Part0 = p17
  2397. 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)
  2398. w17.Part1 = p18
  2399. 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)
  2400. w18 = Instance.new("Weld", p18)
  2401. w18.Name = "Part_Weld"
  2402. w18.Part0 = p18
  2403. 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)
  2404. w18.Part1 = p19
  2405. 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)
  2406. w19 = Instance.new("Weld", p19)
  2407. w19.Name = "Part_Weld"
  2408. w19.Part0 = p19
  2409. 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)
  2410. w19.Part1 = p20
  2411. 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)
  2412. w20 = Instance.new("Weld", p20)
  2413. w20.Name = "Part_Weld"
  2414. w20.Part0 = p20
  2415. 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)
  2416. w20.Part1 = p21
  2417. 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)
  2418. w21 = Instance.new("Weld", p21)
  2419. w21.Name = "Part_Weld"
  2420. w21.Part0 = p21
  2421. 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)
  2422. w21.Part1 = p22
  2423. 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)
  2424. w22 = Instance.new("Weld", p22)
  2425. w22.Name = "Wedge_Weld"
  2426. w22.Part0 = p22
  2427. 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)
  2428. m.Parent = torso
  2429. m:MakeJoints()
  2430. ----------------------------------------------------
  2431. local cor5 = Instance.new("Part", torso.Torso)
  2432. cor5.Name = "Thingy"
  2433. cor5.Locked = true
  2434. cor5.BottomSurface = 0
  2435. cor5.CanCollide = false
  2436. cor5.Size = Vector3.new(2, 1, 1)
  2437. cor5.Transparency = 1
  2438. cor5.TopSurface = 0
  2439. corw2 = Instance.new("Weld", cor5)
  2440. corw2.Part0 = torso
  2441. corw2.Part1 = cor5
  2442. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2443. corw2.C1 = CFrame.new(0, 0, 0)
  2444. weld2 = Instance.new("Weld", torso.Torso)
  2445. weld2.Part0 = cor5
  2446. weld2.Part1 = p11
  2447. weld2.C0 = CFrame.new(0, 0, 0)
  2448. ----------------------------------------------------
  2449. local m = Instance.new("Model")
  2450. m.Name = "RightLeg"
  2451. p1 = Instance.new("Part", m)
  2452. p1.BrickColor = BrickColor.new("Really black")
  2453. p1.Material = Enum.Material.Neon
  2454. p1.FormFactor = Enum.FormFactor.Custom
  2455. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2456. 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)
  2457. p1.CanCollide = false
  2458. p1.Locked = true
  2459. p1.BottomSurface = Enum.SurfaceType.Smooth
  2460. p1.TopSurface = Enum.SurfaceType.Smooth
  2461. b1 = Instance.new("SpecialMesh", p1)
  2462. b1.MeshType = Enum.MeshType.Sphere
  2463. b1.Name = "Mesh"
  2464. p2 = Instance.new("Part", m)
  2465. p2.BrickColor = BrickColor.new("Really black")
  2466. p2.Material = Enum.Material.Neon
  2467. p2.FormFactor = Enum.FormFactor.Custom
  2468. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2469. 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)
  2470. p2.CanCollide = false
  2471. p2.Locked = true
  2472. p2.BottomSurface = Enum.SurfaceType.Smooth
  2473. p2.TopSurface = Enum.SurfaceType.Smooth
  2474. b2 = Instance.new("SpecialMesh", p2)
  2475. b2.MeshType = Enum.MeshType.Sphere
  2476. b2.Name = "Mesh"
  2477. p3 = Instance.new("Part", m)
  2478. p3.BrickColor = BrickColor.new("Bright blue")
  2479. p3.Material = Enum.Material.Neon
  2480. p3.FormFactor = Enum.FormFactor.Custom
  2481. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2482. 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)
  2483. p3.CanCollide = false
  2484. p3.Locked = true
  2485. p3.BottomSurface = Enum.SurfaceType.Smooth
  2486. p3.TopSurface = Enum.SurfaceType.Smooth
  2487. p4 = Instance.new("Part", m)
  2488. p4.BrickColor = BrickColor.new("Really black")
  2489. p4.Material = Enum.Material.Neon
  2490. p4.FormFactor = Enum.FormFactor.Custom
  2491. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2492. 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)
  2493. p4.CanCollide = false
  2494. p4.Locked = true
  2495. p4.BottomSurface = Enum.SurfaceType.Smooth
  2496. p4.TopSurface = Enum.SurfaceType.Smooth
  2497. b3 = Instance.new("SpecialMesh", p4)
  2498. b3.MeshType = Enum.MeshType.Sphere
  2499. b3.Name = "Mesh"
  2500. p5 = Instance.new("Part", m)
  2501. p5.BrickColor = BrickColor.new("Bright blue")
  2502. p5.Material = Enum.Material.Neon
  2503. p5.FormFactor = Enum.FormFactor.Custom
  2504. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2505. 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)
  2506. p5.CanCollide = false
  2507. p5.Locked = true
  2508. p5.BottomSurface = Enum.SurfaceType.Smooth
  2509. p5.TopSurface = Enum.SurfaceType.Smooth
  2510. p6 = Instance.new("Part", m)
  2511. p6.BrickColor = BrickColor.new("Bright blue")
  2512. p6.Material = Enum.Material.Neon
  2513. p6.FormFactor = Enum.FormFactor.Custom
  2514. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2515. 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)
  2516. p6.CanCollide = false
  2517. p6.Locked = true
  2518. p6.BottomSurface = Enum.SurfaceType.Smooth
  2519. p6.TopSurface = Enum.SurfaceType.Smooth
  2520. p7 = Instance.new("Part", m)
  2521. p7.BrickColor = BrickColor.new("Really black")
  2522. p7.Material = Enum.Material.Metal
  2523. p7.Name = "Main"
  2524. p7.FormFactor = Enum.FormFactor.Custom
  2525. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2526. 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)
  2527. p7.CanCollide = false
  2528. p7.Locked = true
  2529. p7.BottomSurface = Enum.SurfaceType.Smooth
  2530. p7.TopSurface = Enum.SurfaceType.Smooth
  2531. p8 = Instance.new("Part", m)
  2532. p8.BrickColor = BrickColor.new("Bright blue")
  2533. p8.Material = Enum.Material.Neon
  2534. p8.FormFactor = Enum.FormFactor.Custom
  2535. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2536. 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)
  2537. p8.CanCollide = false
  2538. p8.Locked = true
  2539. p8.BottomSurface = Enum.SurfaceType.Smooth
  2540. p8.TopSurface = Enum.SurfaceType.Smooth
  2541. p9 = Instance.new("WedgePart", m)
  2542. p9.BrickColor = BrickColor.new("Bright blue")
  2543. p9.Material = Enum.Material.Neon
  2544. p9.Name = "Wedge"
  2545. p9.FormFactor = Enum.FormFactor.Custom
  2546. p9.Size = Vector3.new(1, 1.19999981, 4)
  2547. 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)
  2548. p9.CanCollide = false
  2549. p9.Locked = true
  2550. p9.TopSurface = Enum.SurfaceType.Smooth
  2551. b4 = Instance.new("SpecialMesh", p9)
  2552. b4.MeshType = Enum.MeshType.Wedge
  2553. b4.Name = "Mesh"
  2554. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2555. p10 = Instance.new("Part", m)
  2556. p10.BrickColor = BrickColor.new("Really black")
  2557. p10.Material = Enum.Material.Neon
  2558. p10.FormFactor = Enum.FormFactor.Custom
  2559. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2560. 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)
  2561. p10.CanCollide = false
  2562. p10.Locked = true
  2563. p10.BottomSurface = Enum.SurfaceType.Smooth
  2564. p10.TopSurface = Enum.SurfaceType.Smooth
  2565. b5 = Instance.new("SpecialMesh", p10)
  2566. b5.MeshType = Enum.MeshType.Sphere
  2567. b5.Name = "Mesh"
  2568. p11 = Instance.new("Part", m)
  2569. p11.BrickColor = BrickColor.new("Really black")
  2570. p11.Material = Enum.Material.Neon
  2571. p11.FormFactor = Enum.FormFactor.Custom
  2572. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2573. 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)
  2574. p11.CanCollide = false
  2575. p11.Locked = true
  2576. p11.BottomSurface = Enum.SurfaceType.Smooth
  2577. p11.TopSurface = Enum.SurfaceType.Smooth
  2578. b6 = Instance.new("SpecialMesh", p11)
  2579. b6.MeshType = Enum.MeshType.Sphere
  2580. b6.Name = "Mesh"
  2581. p12 = Instance.new("Part", m)
  2582. p12.BrickColor = BrickColor.new("Bright blue")
  2583. p12.Material = Enum.Material.Neon
  2584. p12.FormFactor = Enum.FormFactor.Custom
  2585. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2586. 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)
  2587. p12.CanCollide = false
  2588. p12.Locked = true
  2589. p12.BottomSurface = Enum.SurfaceType.Smooth
  2590. p12.TopSurface = Enum.SurfaceType.Smooth
  2591. p13 = Instance.new("Part", m)
  2592. p13.BrickColor = BrickColor.new("Really black")
  2593. p13.Material = Enum.Material.Neon
  2594. p13.FormFactor = Enum.FormFactor.Custom
  2595. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2596. 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)
  2597. p13.CanCollide = false
  2598. p13.Locked = true
  2599. p13.BottomSurface = Enum.SurfaceType.Smooth
  2600. p13.TopSurface = Enum.SurfaceType.Smooth
  2601. b7 = Instance.new("SpecialMesh", p13)
  2602. b7.MeshType = Enum.MeshType.Sphere
  2603. b7.Name = "Mesh"
  2604. p14 = Instance.new("WedgePart", m)
  2605. p14.BrickColor = BrickColor.new("Bright blue")
  2606. p14.Material = Enum.Material.Neon
  2607. p14.Name = "Wedge"
  2608. p14.FormFactor = Enum.FormFactor.Custom
  2609. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2610. 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)
  2611. p14.CanCollide = false
  2612. p14.Locked = true
  2613. p14.TopSurface = Enum.SurfaceType.Smooth
  2614. b8 = Instance.new("SpecialMesh", p14)
  2615. b8.MeshType = Enum.MeshType.Wedge
  2616. b8.Name = "Mesh"
  2617. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2618. p15 = Instance.new("WedgePart", m)
  2619. p15.BrickColor = BrickColor.new("Bright blue")
  2620. p15.Material = Enum.Material.Neon
  2621. p15.Name = "Wedge"
  2622. p15.FormFactor = Enum.FormFactor.Custom
  2623. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2624. 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)
  2625. p15.CanCollide = false
  2626. p15.Locked = true
  2627. p15.TopSurface = Enum.SurfaceType.Smooth
  2628. b9 = Instance.new("SpecialMesh", p15)
  2629. b9.MeshType = Enum.MeshType.Wedge
  2630. b9.Name = "Mesh"
  2631. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2632. p16 = Instance.new("WedgePart", m)
  2633. p16.BrickColor = BrickColor.new("Bright blue")
  2634. p16.Material = Enum.Material.Neon
  2635. p16.Name = "Wedge"
  2636. p16.FormFactor = Enum.FormFactor.Custom
  2637. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2638. 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)
  2639. p16.CanCollide = false
  2640. p16.Locked = true
  2641. p16.TopSurface = Enum.SurfaceType.Smooth
  2642. b10 = Instance.new("SpecialMesh", p16)
  2643. b10.MeshType = Enum.MeshType.Wedge
  2644. b10.Name = "Mesh"
  2645. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2646. w1 = Instance.new("Weld", p1)
  2647. w1.Name = "Part_Weld"
  2648. w1.Part0 = p1
  2649. 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)
  2650. w1.Part1 = p2
  2651. 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)
  2652. w2 = Instance.new("Weld", p2)
  2653. w2.Name = "Part_Weld"
  2654. w2.Part0 = p2
  2655. 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)
  2656. w2.Part1 = p3
  2657. 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)
  2658. w3 = Instance.new("Weld", p3)
  2659. w3.Name = "Part_Weld"
  2660. w3.Part0 = p3
  2661. 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)
  2662. w3.Part1 = p4
  2663. 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)
  2664. w4 = Instance.new("Weld", p4)
  2665. w4.Name = "Part_Weld"
  2666. w4.Part0 = p4
  2667. 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)
  2668. w4.Part1 = p5
  2669. 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)
  2670. w5 = Instance.new("Weld", p5)
  2671. w5.Name = "Part_Weld"
  2672. w5.Part0 = p5
  2673. 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)
  2674. w5.Part1 = p6
  2675. 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)
  2676. w6 = Instance.new("Weld", p6)
  2677. w6.Name = "Part_Weld"
  2678. w6.Part0 = p6
  2679. 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)
  2680. w6.Part1 = p7
  2681. 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)
  2682. w7 = Instance.new("Weld", p7)
  2683. w7.Name = "Part_Weld"
  2684. w7.Part0 = p7
  2685. 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)
  2686. w7.Part1 = p8
  2687. 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)
  2688. w8 = Instance.new("Weld", p8)
  2689. w8.Name = "Wedge_Weld"
  2690. w8.Part0 = p8
  2691. 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)
  2692. w8.Part1 = p9
  2693. 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)
  2694. w9 = Instance.new("Weld", p9)
  2695. w9.Name = "Part_Weld"
  2696. w9.Part0 = p9
  2697. 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)
  2698. w9.Part1 = p10
  2699. 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)
  2700. w10 = Instance.new("Weld", p10)
  2701. w10.Name = "Part_Weld"
  2702. w10.Part0 = p10
  2703. 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)
  2704. w10.Part1 = p11
  2705. 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)
  2706. w11 = Instance.new("Weld", p11)
  2707. w11.Name = "Part_Weld"
  2708. w11.Part0 = p11
  2709. 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)
  2710. w11.Part1 = p12
  2711. 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)
  2712. w12 = Instance.new("Weld", p12)
  2713. w12.Name = "Part_Weld"
  2714. w12.Part0 = p12
  2715. 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)
  2716. w12.Part1 = p13
  2717. 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)
  2718. w13 = Instance.new("Weld", p13)
  2719. w13.Name = "Wedge_Weld"
  2720. w13.Part0 = p13
  2721. 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)
  2722. w13.Part1 = p14
  2723. 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)
  2724. w14 = Instance.new("Weld", p14)
  2725. w14.Name = "Wedge_Weld"
  2726. w14.Part0 = p14
  2727. 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)
  2728. w14.Part1 = p15
  2729. 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)
  2730. w15 = Instance.new("Weld", p15)
  2731. w15.Name = "Wedge_Weld"
  2732. w15.Part0 = p15
  2733. 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)
  2734. w15.Part1 = p16
  2735. 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)
  2736. m.Parent = rleg
  2737. m:MakeJoints()
  2738. ----------------------------------------------------
  2739. local cor6 = Instance.new("Part", rleg.RightLeg)
  2740. cor6.Name = "Thingy"
  2741. cor6.Locked = true
  2742. cor6.BottomSurface = 0
  2743. cor6.CanCollide = false
  2744. cor6.Size = Vector3.new(2, 1, 1)
  2745. cor6.Transparency = 1
  2746. cor6.TopSurface = 0
  2747. corw2 = Instance.new("Weld", cor6)
  2748. corw2.Part0 = rleg
  2749. corw2.Part1 = cor6
  2750. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2751. corw2.C1 = CFrame.new(0, 0, 0)
  2752. weld2 = Instance.new("Weld", rleg.RightLeg)
  2753. weld2.Part0 = cor6
  2754. weld2.Part1 = p7
  2755. weld2.C0 = CFrame.new(0, 0, 0)
  2756. ----------------------------------------------------
  2757. local m = Instance.new("Model")
  2758. m.Name = "LeftLeg"
  2759. p1 = Instance.new("WedgePart", m)
  2760. p1.BrickColor = BrickColor.new("Bright blue")
  2761. p1.Material = Enum.Material.Neon
  2762. p1.Name = "Wedge"
  2763. p1.FormFactor = Enum.FormFactor.Custom
  2764. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2765. 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)
  2766. p1.CanCollide = false
  2767. p1.Locked = true
  2768. p1.TopSurface = Enum.SurfaceType.Smooth
  2769. b1 = Instance.new("SpecialMesh", p1)
  2770. b1.MeshType = Enum.MeshType.Wedge
  2771. b1.Name = "Mesh"
  2772. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2773. p2 = Instance.new("WedgePart", m)
  2774. p2.BrickColor = BrickColor.new("Bright blue")
  2775. p2.Material = Enum.Material.Neon
  2776. p2.Name = "Wedge"
  2777. p2.FormFactor = Enum.FormFactor.Custom
  2778. p2.Size = Vector3.new(1, 1.19999981, 4)
  2779. 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)
  2780. p2.CanCollide = false
  2781. p2.Locked = true
  2782. p2.TopSurface = Enum.SurfaceType.Smooth
  2783. b2 = Instance.new("SpecialMesh", p2)
  2784. b2.MeshType = Enum.MeshType.Wedge
  2785. b2.Name = "Mesh"
  2786. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2787. p3 = Instance.new("Part", m)
  2788. p3.BrickColor = BrickColor.new("Really black")
  2789. p3.Material = Enum.Material.Metal
  2790. p3.Name = "Main"
  2791. p3.FormFactor = Enum.FormFactor.Custom
  2792. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2793. 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)
  2794. p3.CanCollide = false
  2795. p3.Locked = true
  2796. p3.BottomSurface = Enum.SurfaceType.Smooth
  2797. p3.TopSurface = Enum.SurfaceType.Smooth
  2798. p4 = Instance.new("Part", m)
  2799. p4.BrickColor = BrickColor.new("Really black")
  2800. p4.Material = Enum.Material.Neon
  2801. p4.FormFactor = Enum.FormFactor.Custom
  2802. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2803. 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)
  2804. p4.CanCollide = false
  2805. p4.Locked = true
  2806. p4.BottomSurface = Enum.SurfaceType.Smooth
  2807. p4.TopSurface = Enum.SurfaceType.Smooth
  2808. b3 = Instance.new("SpecialMesh", p4)
  2809. b3.MeshType = Enum.MeshType.Sphere
  2810. b3.Name = "Mesh"
  2811. p5 = Instance.new("WedgePart", m)
  2812. p5.BrickColor = BrickColor.new("Bright blue")
  2813. p5.Material = Enum.Material.Neon
  2814. p5.Name = "Wedge"
  2815. p5.FormFactor = Enum.FormFactor.Custom
  2816. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2817. 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)
  2818. p5.CanCollide = false
  2819. p5.Locked = true
  2820. p5.TopSurface = Enum.SurfaceType.Smooth
  2821. b4 = Instance.new("SpecialMesh", p5)
  2822. b4.MeshType = Enum.MeshType.Wedge
  2823. b4.Name = "Mesh"
  2824. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2825. p6 = Instance.new("Part", m)
  2826. p6.BrickColor = BrickColor.new("Bright blue")
  2827. p6.Material = Enum.Material.Neon
  2828. p6.FormFactor = Enum.FormFactor.Custom
  2829. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2830. 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)
  2831. p6.CanCollide = false
  2832. p6.Locked = true
  2833. p6.BottomSurface = Enum.SurfaceType.Smooth
  2834. p6.TopSurface = Enum.SurfaceType.Smooth
  2835. p7 = Instance.new("Part", m)
  2836. p7.BrickColor = BrickColor.new("Bright blue")
  2837. p7.Material = Enum.Material.Neon
  2838. p7.FormFactor = Enum.FormFactor.Custom
  2839. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2840. 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)
  2841. p7.CanCollide = false
  2842. p7.Locked = true
  2843. p7.BottomSurface = Enum.SurfaceType.Smooth
  2844. p7.TopSurface = Enum.SurfaceType.Smooth
  2845. p8 = Instance.new("Part", m)
  2846. p8.BrickColor = BrickColor.new("Really black")
  2847. p8.Material = Enum.Material.Neon
  2848. p8.FormFactor = Enum.FormFactor.Custom
  2849. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2850. 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)
  2851. p8.CanCollide = false
  2852. p8.Locked = true
  2853. p8.BottomSurface = Enum.SurfaceType.Smooth
  2854. p8.TopSurface = Enum.SurfaceType.Smooth
  2855. b5 = Instance.new("SpecialMesh", p8)
  2856. b5.MeshType = Enum.MeshType.Sphere
  2857. b5.Name = "Mesh"
  2858. p9 = Instance.new("Part", m)
  2859. p9.BrickColor = BrickColor.new("Really black")
  2860. p9.Material = Enum.Material.Neon
  2861. p9.FormFactor = Enum.FormFactor.Custom
  2862. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2863. 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)
  2864. p9.CanCollide = false
  2865. p9.Locked = true
  2866. p9.BottomSurface = Enum.SurfaceType.Smooth
  2867. p9.TopSurface = Enum.SurfaceType.Smooth
  2868. b6 = Instance.new("SpecialMesh", p9)
  2869. b6.MeshType = Enum.MeshType.Sphere
  2870. b6.Name = "Mesh"
  2871. p10 = Instance.new("Part", m)
  2872. p10.BrickColor = BrickColor.new("Bright blue")
  2873. p10.Material = Enum.Material.Neon
  2874. p10.FormFactor = Enum.FormFactor.Custom
  2875. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2876. 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)
  2877. p10.CanCollide = false
  2878. p10.Locked = true
  2879. p10.BottomSurface = Enum.SurfaceType.Smooth
  2880. p10.TopSurface = Enum.SurfaceType.Smooth
  2881. p11 = Instance.new("Part", m)
  2882. p11.BrickColor = BrickColor.new("Bright blue")
  2883. p11.Material = Enum.Material.Neon
  2884. p11.FormFactor = Enum.FormFactor.Custom
  2885. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2886. 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)
  2887. p11.CanCollide = false
  2888. p11.Locked = true
  2889. p11.BottomSurface = Enum.SurfaceType.Smooth
  2890. p11.TopSurface = Enum.SurfaceType.Smooth
  2891. p12 = Instance.new("WedgePart", m)
  2892. p12.BrickColor = BrickColor.new("Bright blue")
  2893. p12.Material = Enum.Material.Neon
  2894. p12.Name = "Wedge"
  2895. p12.FormFactor = Enum.FormFactor.Custom
  2896. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2897. 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)
  2898. p12.CanCollide = false
  2899. p12.Locked = true
  2900. p12.TopSurface = Enum.SurfaceType.Smooth
  2901. b7 = Instance.new("SpecialMesh", p12)
  2902. b7.MeshType = Enum.MeshType.Wedge
  2903. b7.Name = "Mesh"
  2904. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2905. p13 = Instance.new("Part", m)
  2906. p13.BrickColor = BrickColor.new("Really black")
  2907. p13.Material = Enum.Material.Neon
  2908. p13.FormFactor = Enum.FormFactor.Custom
  2909. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2910. 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)
  2911. p13.CanCollide = false
  2912. p13.Locked = true
  2913. p13.BottomSurface = Enum.SurfaceType.Smooth
  2914. p13.TopSurface = Enum.SurfaceType.Smooth
  2915. b8 = Instance.new("SpecialMesh", p13)
  2916. b8.MeshType = Enum.MeshType.Sphere
  2917. b8.Name = "Mesh"
  2918. p14 = Instance.new("Part", m)
  2919. p14.BrickColor = BrickColor.new("Really black")
  2920. p14.Material = Enum.Material.Neon
  2921. p14.FormFactor = Enum.FormFactor.Custom
  2922. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2923. 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)
  2924. p14.CanCollide = false
  2925. p14.Locked = true
  2926. p14.BottomSurface = Enum.SurfaceType.Smooth
  2927. p14.TopSurface = Enum.SurfaceType.Smooth
  2928. b9 = Instance.new("SpecialMesh", p14)
  2929. b9.MeshType = Enum.MeshType.Sphere
  2930. b9.Name = "Mesh"
  2931. w1 = Instance.new("Weld", p1)
  2932. w1.Name = "Wedge_Weld"
  2933. w1.Part0 = p1
  2934. 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)
  2935. w1.Part1 = p2
  2936. 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)
  2937. w2 = Instance.new("Weld", p2)
  2938. w2.Name = "Part_Weld"
  2939. w2.Part0 = p2
  2940. 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)
  2941. w2.Part1 = p3
  2942. 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)
  2943. w3 = Instance.new("Weld", p3)
  2944. w3.Name = "Part_Weld"
  2945. w3.Part0 = p3
  2946. 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)
  2947. w3.Part1 = p4
  2948. 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)
  2949. w4 = Instance.new("Weld", p4)
  2950. w4.Name = "Wedge_Weld"
  2951. w4.Part0 = p4
  2952. 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)
  2953. w4.Part1 = p5
  2954. 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)
  2955. w5 = Instance.new("Weld", p5)
  2956. w5.Name = "Part_Weld"
  2957. w5.Part0 = p5
  2958. 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)
  2959. w5.Part1 = p6
  2960. 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)
  2961. w6 = Instance.new("Weld", p6)
  2962. w6.Name = "Part_Weld"
  2963. w6.Part0 = p6
  2964. 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)
  2965. w6.Part1 = p7
  2966. 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)
  2967. w7 = Instance.new("Weld", p7)
  2968. w7.Name = "Part_Weld"
  2969. w7.Part0 = p7
  2970. 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)
  2971. w7.Part1 = p8
  2972. 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)
  2973. w8 = Instance.new("Weld", p8)
  2974. w8.Name = "Part_Weld"
  2975. w8.Part0 = p8
  2976. 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)
  2977. w8.Part1 = p9
  2978. 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)
  2979. w9 = Instance.new("Weld", p9)
  2980. w9.Name = "Part_Weld"
  2981. w9.Part0 = p9
  2982. 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)
  2983. w9.Part1 = p10
  2984. 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)
  2985. w10 = Instance.new("Weld", p10)
  2986. w10.Name = "Part_Weld"
  2987. w10.Part0 = p10
  2988. 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)
  2989. w10.Part1 = p11
  2990. 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)
  2991. w11 = Instance.new("Weld", p11)
  2992. w11.Name = "Wedge_Weld"
  2993. w11.Part0 = p11
  2994. 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)
  2995. w11.Part1 = p12
  2996. 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)
  2997. w12 = Instance.new("Weld", p12)
  2998. w12.Name = "Part_Weld"
  2999. w12.Part0 = p12
  3000. 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)
  3001. w12.Part1 = p13
  3002. 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)
  3003. w13 = Instance.new("Weld", p13)
  3004. w13.Name = "Part_Weld"
  3005. w13.Part0 = p13
  3006. 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)
  3007. w13.Part1 = p14
  3008. 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)
  3009. w14 = Instance.new("Weld", p14)
  3010. w14.Name = "Wedge_Weld"
  3011. w14.Part0 = p14
  3012. 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)
  3013. m.Parent = lleg
  3014. m:MakeJoints()
  3015. ----------------------------------------------------
  3016. local cor7 = Instance.new("Part", lleg.LeftLeg)
  3017. cor7.Name = "Thingy"
  3018. cor7.Locked = true
  3019. cor7.BottomSurface = 0
  3020. cor7.CanCollide = false
  3021. cor7.Size = Vector3.new(2, 1, 1)
  3022. cor7.Transparency = 1
  3023. cor7.TopSurface = 0
  3024. corw2 = Instance.new("Weld", cor7)
  3025. corw2.Part0 = lleg
  3026. corw2.Part1 = cor7
  3027. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3028. corw2.C1 = CFrame.new(0, 0, 0)
  3029. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3030. weld2.Part0 = cor7
  3031. weld2.Part1 = p3
  3032. weld2.C0 = CFrame.new(0, 0, 0)
  3033. ----------------------------------------------------
  3034. function weld5(part0, part1, c0, c1)
  3035. weeld=Instance.new("Weld", part0)
  3036. weeld.Part0=part0
  3037. weeld.Part1=part1
  3038. weeld.C0=c0
  3039. weeld.C1=c1
  3040. return weeld
  3041. end
  3042. ----------------------------------------------------
  3043. function newRay(start,face,range,wat)
  3044. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3045. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3046. return rey,hit,pos
  3047. end
  3048. ----------------------------------------------------
  3049. mod5 = Instance.new("Model",char)
  3050.  
  3051. function FindNearestTorso(Position,Distance,SinglePlayer)
  3052. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3053. local List = {}
  3054. for i,v in pairs(workspace:GetChildren())do
  3055. if v:IsA("Model")then
  3056. if v:findFirstChild("Torso")then
  3057. if v ~= char then
  3058. if(v.Torso.Position -Position).magnitude <= Distance then
  3059. table.insert(List,v)
  3060. end
  3061. end
  3062. end
  3063. end
  3064. end
  3065. return List
  3066. end
  3067.  
  3068. function Landing()
  3069. part=Instance.new('Part',mod5)
  3070. part.Anchored=true
  3071. part.CanCollide=false
  3072. part.FormFactor='Custom'
  3073. part.Size=Vector3.new(.2,.2,.2)
  3074. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3075. part.Transparency=.7
  3076. part.BrickColor=BrickColor.new('Really black')
  3077. part2=part:clone()
  3078. part2.Parent = mod5
  3079. part2.BrickColor=BrickColor.new('Bright blue')
  3080. mesh=Instance.new('SpecialMesh',part)
  3081. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3082. mesh.Scale=Vector3.new(10,5,10)
  3083. mesh2=mesh:clone()
  3084. mesh2.Parent=part2
  3085. mesh2.Scale=Vector3.new(12, 6, 12)
  3086.  
  3087. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3088. if v:FindFirstChild('Humanoid') then
  3089. v.Humanoid:TakeDamage(math.random(20,30))
  3090. v.Humanoid.PlatformStand = true
  3091. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3092. end
  3093. end
  3094.  
  3095. coroutine.resume(coroutine.create(function()
  3096. for i=0,3.8,0.05 do
  3097. wait()
  3098. part.CFrame=part.CFrame
  3099. part.Transparency=i
  3100. part2.CFrame=part2.CFrame
  3101. part2.Transparency=i
  3102. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3103. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3104. end
  3105. part.Parent = nil
  3106. end))
  3107. end
  3108. ----------------------------------------------------
  3109. mod4 = Instance.new("Model",char)
  3110.  
  3111. ptez = {0.7, 0.8, 0.9, 1}
  3112.  
  3113. function FindNearestTorso(Position,Distance,SinglePlayer)
  3114. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3115. local List = {}
  3116. for i,v in pairs(workspace:GetChildren())do
  3117. if v:IsA("Model")then
  3118. if v:findFirstChild("Torso")then
  3119. if v ~= char then
  3120. if(v.Torso.Position -Position).magnitude <= Distance then
  3121. table.insert(List,v)
  3122. end
  3123. end
  3124. end
  3125. end
  3126. end
  3127. return List
  3128. end
  3129.  
  3130. function GroundPound()
  3131. part=Instance.new('Part',mod4)
  3132. part.Anchored=true
  3133. part.CanCollide=false
  3134. part.FormFactor='Custom'
  3135. part.Size=Vector3.new(.2,.2,.2)
  3136. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3137. part.Transparency=.7
  3138. part.BrickColor=BrickColor.new('Really black')
  3139. mesh=Instance.new('SpecialMesh',part)
  3140. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3141. mesh.Scale=Vector3.new(3,3,3)
  3142. part2=Instance.new('Part',mod4)
  3143. part2.Anchored=true
  3144. part2.CanCollide=false
  3145. part2.FormFactor='Custom'
  3146. part2.Size=Vector3.new(.2,.2,.2)
  3147. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3148. part2.Transparency=.7
  3149. part2.BrickColor=BrickColor.new('Really red')
  3150. mesh2=Instance.new('SpecialMesh',part2)
  3151. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3152. mesh2.Scale=Vector3.new(3,1.5,3)
  3153. x = Instance.new("Sound",char)
  3154. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3155. x.Pitch = ptez[math.random(1,#ptez)]
  3156. x.Volume = 1
  3157. wait(.1)
  3158. x:Play()
  3159. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3160. if v:FindFirstChild('Humanoid') then
  3161. v.Humanoid:TakeDamage(math.random(8,15))
  3162. end
  3163. end
  3164. coroutine.resume(coroutine.create(function()
  3165. for i=0,0.62,0.13 do
  3166. wait()
  3167. part.CFrame=part.CFrame
  3168. part.Transparency=i
  3169. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3170. part2.CFrame=part2.CFrame
  3171. part2.Transparency=i
  3172. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3173. end
  3174. part.Parent=nil
  3175. part2.Parent=nil
  3176. x:Destroy()
  3177. end))
  3178. end
  3179. ----------------------------------------------------
  3180. mod=Instance.new('Model',char)
  3181.  
  3182. function charge()
  3183. hed.Velocity=hed.CFrame.lookVector*200
  3184. part=Instance.new('Part',mod)
  3185. part.Anchored=true
  3186. part.CanCollide=false
  3187. part.FormFactor='Custom'
  3188. part.Size=Vector3.new(.2,.2,.2)
  3189. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3190. part.Transparency=.7
  3191. part.BrickColor=BrickColor.new('Black')
  3192. mesh=Instance.new('SpecialMesh',part)
  3193. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3194. mesh.Scale=Vector3.new(10,5,10)
  3195. part2=part:clone()
  3196. part2.Parent=mod
  3197. part2.BrickColor=BrickColor.new('Bright red')
  3198. mesh2=mesh:clone()
  3199. mesh2.Parent=part2
  3200. mesh2.Scale=Vector3.new(20,10,20)
  3201. part3=part2:clone()
  3202. part3.Parent = mod
  3203. part3.BrickColor=BrickColor.new('Really black')
  3204. mesh3=mesh2:clone()
  3205. mesh2.Parent=part3
  3206. mesh3.Scale=Vector3.new(30,15,30)
  3207. coroutine.resume(coroutine.create(function()
  3208. for i=0,1,0.1 do
  3209. wait()
  3210. part.CFrame=part.CFrame
  3211. part.Transparency=i
  3212. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3213. part2.CFrame=part2.CFrame
  3214. part2.Transparency=i
  3215. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3216. part3.CFrame=part3.CFrame
  3217. part3.Transparency=i
  3218. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3219. end
  3220. part.Parent=nil
  3221. part2.Parent=nil
  3222. part3.Parent = nil
  3223. end))
  3224. end
  3225. ----------------------------------------------------
  3226. function FindNearestTorso(Position,Distance,SinglePlayer)
  3227. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3228. local List = {}
  3229. for i,v in pairs(workspace:GetChildren())do
  3230. if v:IsA("Model")then
  3231. if v:findFirstChild("Torso")then
  3232. if v ~= char then
  3233. if(v.Torso.Position -Position).magnitude <= Distance then
  3234. table.insert(List,v)
  3235. end
  3236. end
  3237. end
  3238. end
  3239. end
  3240. return List
  3241. end
  3242.  
  3243. mod3 = Instance.new("Model",rleg)
  3244.  
  3245. function Stomp()
  3246. part=Instance.new('Part',mod3)
  3247. part.Anchored=true
  3248. part.CanCollide=false
  3249. part.FormFactor='Custom'
  3250. part.Size=Vector3.new(.2,.2,.2)
  3251. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3252. part.Transparency=.7
  3253. part.BrickColor=BrickColor.new('Bright green')
  3254. mesh=Instance.new('SpecialMesh',part)
  3255. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3256. mesh.Scale=Vector3.new(25,25,25)
  3257. part2=part:clone()
  3258. part2.Parent=mod3
  3259. part2.BrickColor=BrickColor.new('Bright green')
  3260. mesh2=mesh:clone()
  3261. mesh2.Parent=part2
  3262. mesh2.Scale=Vector3.new(15,15,15)
  3263. part3=part:clone()
  3264. part3.Parent=mod3
  3265. part3.TopSurface=0
  3266. part3.BottomSurface=0
  3267. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3268. mesh3=Instance.new('SpecialMesh',part3)
  3269. mesh3.MeshType = 3
  3270. mesh3.Scale=Vector3.new(12,12,12)
  3271. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3272. if v:FindFirstChild('Humanoid') then
  3273. v.Humanoid:TakeDamage(math.random(20,60))
  3274. v.Humanoid.PlatformStand = true
  3275. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3276. end
  3277. end
  3278. coroutine.resume(coroutine.create(function()
  3279. for i=0,3.8,0.05 do
  3280. wait()
  3281. part.CFrame=part.CFrame
  3282. part.Transparency=i
  3283. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3284. part2.CFrame=part2.CFrame
  3285. part2.Transparency=i
  3286. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3287. part3.CFrame=part3.CFrame
  3288. part3.Transparency=i
  3289. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3290. end
  3291. end))
  3292. end
  3293. ----------------------------------------------------
  3294.  
  3295. local acos = math.acos
  3296. local sqrt = math.sqrt
  3297. local Vec3 = Vector3.new
  3298. local fromAxisAngle = CFrame.fromAxisAngle
  3299.  
  3300. local function toAxisAngle(CFr)
  3301. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3302. local Angle = math.acos((R00+R11+R22-1)/2)
  3303. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3304. A = A == 0 and 0.00001 or A
  3305. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3306. B = B == 0 and 0.00001 or B
  3307. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3308. C = C == 0 and 0.00001 or C
  3309. local x = (R21-R12)/sqrt(A)
  3310. local y = (R02-R20)/sqrt(B)
  3311. local z = (R10-R01)/sqrt(C)
  3312. return Vec3(x,y,z),Angle
  3313. end
  3314.  
  3315. function ApplyTrig(Num,Func)
  3316. local Min,Max = Func(0),Func(1)
  3317. local i = Func(Num)
  3318. return (i-Min)/(Max-Min)
  3319. --[[if Func == "sin" then
  3320. return (math.sin((1-Num)*math.pi)+1)/2
  3321. elseif Func == "cos" then
  3322. return (math.cos((1-Num)*math.pi)+1)/2
  3323. end]]
  3324. end
  3325.  
  3326. function LerpCFrame(CFrame1,CFrame2,Num)
  3327. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3328. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3329. end
  3330.  
  3331. function Crater(Torso,Radius)
  3332. Spawn(function()
  3333. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3334. local Ignore = {}
  3335. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3336. if v.Character ~= nil then
  3337. Ignore[#Ignore+1] = v.Character
  3338. end
  3339. end
  3340. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3341. if Hit == nil then return end
  3342. local Parts = {}
  3343. for i = 1,360,10 do
  3344. local P = Instance.new("Part",Torso.Parent)
  3345. P.Anchored = true
  3346. P.FormFactor = "Custom"
  3347. P.BrickColor = Hit.BrickColor
  3348. P.Material = Hit.Material
  3349. P.TopSurface = "Smooth"
  3350. P.BottomSurface = "Smooth"
  3351. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3352. 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)))
  3353. 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}
  3354. if math.random(0,5) == 0 then -- rubble
  3355. local P = Instance.new("Part",Torso.Parent)
  3356. P.Anchored = true
  3357. P.FormFactor = "Custom"
  3358. P.BrickColor = Hit.BrickColor
  3359. P.Material = Hit.Material
  3360. P.TopSurface = "Smooth"
  3361. P.BottomSurface = "Smooth"
  3362. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3363. 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)))
  3364. 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}
  3365. end
  3366. end
  3367. for i = 0,1,0.05 do
  3368. for i2,v in pairs(Parts) do
  3369. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3370. end
  3371. wait(0.02)
  3372. end
  3373. for i,v in pairs(Parts) do
  3374. if v[1].Size.X > 2.1 then
  3375. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3376. end
  3377. v[1].Anchored = false
  3378. end
  3379. for i = 0,1,0.05 do
  3380. for i2,v in pairs(Parts) do
  3381. v[1].Transparency = i
  3382. if i == 1 then
  3383. v[1]:Destroy()
  3384. elseif i >= 0.25 then
  3385. v[1].CanCollide = false
  3386. end
  3387. end
  3388. wait(0.02)
  3389. end
  3390. Parts = nil
  3391. end)
  3392. end
  3393.  
  3394. ----------------------------------------------------
  3395. mouse.KeyDown:connect(function(key)
  3396. if key == "r" then
  3397. larm.BrickColor = BrickColor.new("Bright red")
  3398. rarm.BrickColor = BrickColor.new("Bright red")
  3399. if Debounces.CanAttack == true then
  3400. Debounces.CanAttack = false
  3401. Debounces.on = true
  3402. Debounces.NoIdl = true
  3403. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3404. hit = ht.Parent
  3405. if ht and hit:IsA("Model") then
  3406. if hit:FindFirstChild("Humanoid") then
  3407. if hit.Name ~= p.Name then
  3408. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3409. Debounces.Slashed = true]]--
  3410. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3411. wait(1)
  3412. --Debounces.Slashed = false
  3413. --end
  3414. end
  3415. end
  3416. elseif ht and hit:IsA("Hat") then
  3417. if hit.Parent.Name ~= p.Name then
  3418. if hit.Parent:FindFirstChild("Humanoid") then
  3419. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3420. Debounces.Slashed = true]]--
  3421. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3422. wait(1)
  3423. --Debounces.Slashed = false
  3424. end
  3425. end
  3426. end
  3427. end)
  3428. q = Instance.new("Sound",hed)
  3429. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3430. q.Pitch = 0.85
  3431. q.Looped = false
  3432. q1 = Instance.new("Sound",hed)
  3433. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3434. q1.Pitch = 0.85
  3435. q1.Looped = false
  3436. q:Play()
  3437. q1:Play()
  3438. for i = 1,20 do
  3439. 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)
  3440. 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)
  3441. 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)
  3442. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3443. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3444. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3445. 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)
  3446. if Debounces.on == false then break end
  3447. rs:wait(.6)
  3448. end
  3449. n = Instance.new("Sound",hed)
  3450. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3451. n.Pitch = 0.94
  3452. n.Looped = false
  3453. n1 = Instance.new("Sound",hed)
  3454. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3455. n1.Pitch = 0.94
  3456. n1.Looped = false
  3457. n:Play()
  3458. n1:Play()
  3459. b = Instance.new("Sound",hed)
  3460. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3461. b.Pitch = 0.94
  3462. b.Looped = false
  3463. b1 = Instance.new("Sound",hed)
  3464. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3465. b1.Pitch = 0.94
  3466. b1.Looped = false
  3467. b:Play()
  3468. b1:Play()
  3469. for i = 1,26 do
  3470. 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)
  3471. 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)
  3472. 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)
  3473. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3474. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3475. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3476. 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)
  3477. if Debounces.on == false then break end
  3478. rs:wait(1)
  3479. end
  3480. wait(.5)
  3481. to:disconnect()
  3482. q:Destroy()
  3483. q1:Destroy()
  3484. n:Destroy()
  3485. n1:Destroy()
  3486. larm.BrickColor = BrickColor.new("Really black")
  3487. rarm.BrickColor = BrickColor.new("Really black")
  3488. if Debounces.CanAttack == false then
  3489. Debounces.CanAttack = true
  3490. Debounces.on = false
  3491. Debounces.NoIdl = false
  3492. end
  3493. end
  3494. end
  3495. end)
  3496. ----------------------------------------------------
  3497. mouse.KeyDown:connect(function(key)
  3498. if key == "q" then
  3499. larm.BrickColor = BrickColor.new("Bright red")
  3500. rarm.BrickColor = BrickColor.new("Bright red")
  3501. if Debounces.CanAttack == true then
  3502. Debounces.CanAttack = false
  3503. Debounces.on = true
  3504. Debounces.NoIdl = true
  3505. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3506. hit = ht.Parent
  3507. if ht and hit:IsA("Model") then
  3508. if hit:FindFirstChild("Humanoid") then
  3509. if hit.Name ~= p.Name then
  3510. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3511. Debounces.Slashed = true]]--
  3512. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3513. wait(1)
  3514. --Debounces.Slashed = false
  3515. --end
  3516. end
  3517. end
  3518. elseif ht and hit:IsA("Hat") then
  3519. if hit.Parent.Name ~= p.Name then
  3520. if hit.Parent:FindFirstChild("Humanoid") then
  3521. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3522. Debounces.Slashed = true]]--
  3523. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3524. wait(1)
  3525. --Debounces.Slashed = false
  3526. end
  3527. end
  3528. end
  3529. end)
  3530. for i = 1, 20 do
  3531. 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)
  3532. 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)
  3533. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3534. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3535. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3536. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3537. 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)
  3538. if Debounces.on == false then break end
  3539. rs:wait(2)
  3540. end
  3541. z = Instance.new("Sound",hed)
  3542. z.SoundId = "rbxassetid://160069154"
  3543. z.Looped = false
  3544. z.Pitch = .9
  3545. z1 = Instance.new("Sound",hed)
  3546. z1.SoundId = "rbxassetid://160069154"
  3547. z1.Looped = false
  3548. z1.Pitch = .9
  3549. wait(0.01)
  3550. z:Play()
  3551. z1:Play()
  3552. for i = 1, 20 do
  3553. 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)
  3554. 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)
  3555. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3556. 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)
  3557. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3558. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3559. 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)
  3560. if Debounces.on == false then break end
  3561. rs:wait(2)
  3562. end
  3563. for i = 1, 20 do
  3564. 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)
  3565. 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)
  3566. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3567. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3568. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3569. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3570. 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)
  3571. if Debounces.on == false then break end
  3572. rs:wait(2)
  3573. end
  3574. z = Instance.new("Sound",hed)
  3575. z.SoundId = "rbxassetid://168586621"
  3576. z.Looped = false
  3577. z.Pitch = 1
  3578. z1 = Instance.new("Sound",hed)
  3579. z1.SoundId = "rbxassetid://168586621"
  3580. z1.Looped = false
  3581. z1.Pitch = 1
  3582. wait(0.01)
  3583. z:Play()
  3584. z1:Play()
  3585. for i = 1, 20 do
  3586. 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)
  3587. 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)
  3588. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3589. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3590. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3591. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3592. 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)
  3593. if Debounces.on == false then break end
  3594. rs:wait(2)
  3595. end
  3596. to:disconnect()
  3597. larm.BrickColor = BrickColor.new("Really black")
  3598. rarm.BrickColor = BrickColor.new("Really black")
  3599. if Debounces.CanAttack == false then
  3600. Debounces.CanAttack = true
  3601. Debounces.on = false
  3602. Debounces.NoIdl = false
  3603. end
  3604. end
  3605. end
  3606. end)
  3607. ----------------------------------------------------
  3608. Sit = false
  3609. mouse.KeyDown:connect(function(key)
  3610. if key == "v" then
  3611. if Sit == false then
  3612. Sit = true
  3613. hum.WalkSpeed = 0.001
  3614. stanceToggle = "Sitting"
  3615. elseif Sit == true then
  3616. Sit = false
  3617. hum.WalkSpeed = 7
  3618. stanceToggle = "Normal"
  3619. end
  3620. end
  3621. end)
  3622. ----------------------------------------------------
  3623. mouse.KeyDown:connect(function(key)
  3624. if key == "t" then
  3625. if Debounces.CanAttack == true then
  3626. Debounces.CanAttack = false
  3627. Debounces.on = true
  3628. Debounces.NoIdl = true
  3629. for i = 1, 20 do
  3630. 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)
  3631. 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)
  3632. 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)
  3633. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3634. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3635. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3636. 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)
  3637. if Debounces.on == false then break end
  3638. rs:wait(2.6)
  3639. end
  3640. Spawn(function()
  3641. local Parts = {}
  3642. for Y = -5,5 do
  3643. local P = Instance.new("Part",char)
  3644. P.Anchored = true
  3645. P.FormFactor = "Custom"
  3646. P.CanCollide = false
  3647. P.Size = Vector3.new(1,2,1)
  3648. P.TopSurface = "SmoothNoOutlines"
  3649. P.BottomSurface = "SmoothNoOutlines"
  3650. P.BrickColor = BrickColor.new("Really black")
  3651. P.Name = tostring(Y)
  3652. local i = (Y+5)/(10)
  3653. i = 1-math.cos(math.pi*i-(math.pi/2))
  3654. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3655. --[[P.Touched:connect(function(ht)
  3656. local hit = ht.Parent
  3657. if hit:FindFirstChild("Humanoid") then
  3658. hit.Humanoid:TakeDamage(math.random(20,50))
  3659. end
  3660. end)]]--
  3661. s = Instance.new("Sound",P)
  3662. s.SoundId = "rbxassetid://228343271"
  3663. s.Volume = .7
  3664. s.Pitch = 0.9
  3665. s:Play()
  3666. P.Touched:connect(function(ht)
  3667. hit = ht.Parent
  3668. if ht and hit:IsA("Model") then
  3669. if hit:FindFirstChild("Humanoid") then
  3670. if hit.Name ~= p.Name then
  3671. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3672. Debounces.Slashed = true]]--
  3673. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3674. hit:FindFirstChild("Humanoid").PlatformStand = true
  3675. wait(1)
  3676. --Debounces.Slashed = false
  3677. --end
  3678. end
  3679. end
  3680. elseif ht and hit:IsA("Hat") then
  3681. if hit.Parent.Name ~= p.Name then
  3682. if hit.Parent:FindFirstChild("Humanoid") then
  3683. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3684. Debounces.Slashed = true]]--
  3685. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3686. hit:FindFirstChild("Humanoid").PlatformStand = true
  3687. wait(1)
  3688. --Debounces.Slashed = false
  3689. --end
  3690. end
  3691. end
  3692. end
  3693. end)
  3694. Parts[#Parts+1] = P
  3695. end
  3696. local BREAKIT = false
  3697. local CParts = {}
  3698. local Rocks = {}
  3699. local LastPos = nil
  3700. for i = 1,70 do
  3701. for i2,v in pairs(Parts) do
  3702. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3703. local cf = v.CFrame
  3704. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3705. v.CFrame = cf
  3706. v.Transparency = v.Transparency+0.02
  3707. if v.Transparency >= 0.975 then BREAKIT = true end
  3708. if v.Name == "0" then
  3709. local Ignore = {}
  3710. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3711. if v.Character ~= nil then
  3712. Ignore[#Ignore+1] = v.Character
  3713. end
  3714. end
  3715. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3716. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3717. if Hit ~= nil then
  3718. if #Rocks == 0 then
  3719. for i = 1,5 do
  3720. local P = Instance.new("Part",char)
  3721. Rocks[#Rocks+1] = P
  3722. P.Anchored = true
  3723. P.FormFactor = "Custom"
  3724. P.BrickColor = Hit.BrickColor
  3725. P.Material = Hit.Material
  3726. P.TopSurface = "Smooth"
  3727. P.BottomSurface = "Smooth"
  3728. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3729. end
  3730. end
  3731. for i,P in pairs(Rocks) do
  3732. 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)))
  3733. end
  3734. local P = Instance.new("Part",char)
  3735. CParts[#CParts+1] = {P,tick()}
  3736. P.Anchored = true
  3737. P.FormFactor = "Custom"
  3738. P.BrickColor = Hit.BrickColor
  3739. P.Material = Hit.Material
  3740. P.TopSurface = "Smooth"
  3741. P.BottomSurface = "Smooth"
  3742. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3743. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3744. Pos = Pos.p
  3745. 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)))
  3746. local P = P:Clone()
  3747. CParts[#CParts+1] = {P,tick()}
  3748. P.Parent = char
  3749. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3750. Pos = Pos.p
  3751. 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)))
  3752. if LastPos ~= nil then
  3753. local P = P:Clone()
  3754. CParts[#CParts+1] = {P,tick()}
  3755. P.Parent = char
  3756. P.BrickColor = BrickColor.new("Really black")
  3757. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3758. Pos = Pos.p
  3759. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3760. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3761. --P.Velocity = Vector3.new(0,-1000,0)
  3762. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3763. end
  3764. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3765. end
  3766. end
  3767. end
  3768. if BREAKIT then break end
  3769. wait(0.002)
  3770. end
  3771. for i,v in pairs(Rocks) do
  3772. CParts[#CParts+1] = {v,tick()}
  3773. end
  3774. for i,v in pairs(Parts) do
  3775. v:Destroy()
  3776. end
  3777. Parts = nil
  3778. while true do
  3779. local t = tick()
  3780. local p = nil
  3781. for i,v in pairs(CParts) do
  3782. if t-v[2] > 4 then
  3783. v[1].Transparency = v[1].Transparency+0.05
  3784. if v[1].Transparency >= 1 then
  3785. v[1]:Destroy()
  3786. CParts[i] = nil
  3787. end
  3788. end
  3789. p = v
  3790. end
  3791. if p == nil then break end
  3792. wait(0.002)
  3793. end
  3794. for i,v in pairs(CParts) do
  3795. v:Destroy()
  3796. end
  3797. CParts = {}
  3798. end)
  3799. for i = 1, 20 do
  3800. 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)
  3801. 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)
  3802. 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)
  3803. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3804. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3805. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3806. 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)
  3807. if Debounces.on == false then break end
  3808. rs:wait(2)
  3809. end
  3810. if Debounces.CanAttack == false then
  3811. Debounces.CanAttack = true
  3812. Debounces.on = false
  3813. Debounces.NoIdl = false
  3814. end
  3815. end
  3816. end
  3817. end)
  3818. ----------------------------------------------------
  3819. mouse.KeyDown:connect(function(key)
  3820. if key == "e" then
  3821. larm.BrickColor = BrickColor.new("Bright red")
  3822. rarm.BrickColor = BrickColor.new("Bright red")
  3823. if Debounces.CanAttack == true then
  3824. Debounces.CanAttack = false
  3825. Debounces.on = true
  3826. Debounces.NoIdl = true
  3827. for i = 1, 18 do
  3828. 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)
  3829. 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)
  3830. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3831. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3832. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3833. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3834. 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)
  3835. if Debounces.on == false then break end
  3836. rs:wait(4)
  3837. end
  3838. 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))
  3839. local rng = Instance.new("Part", char.Absolution.Handle)
  3840. rng.Anchored = true
  3841. rng.BrickColor = BrickColor.new("Really black")
  3842. rng.CanCollide = true
  3843. rng.FormFactor = 3
  3844. rng.Name = "Ring"
  3845. rng.Size = Vector3.new(1, 1, 1)
  3846. rng.CanCollide = false
  3847. rng.Transparency = 0.35
  3848. rng.TopSurface = 0
  3849. rng.BottomSurface = 0
  3850. rng.CFrame = HandCF
  3851. local rngm = Instance.new("SpecialMesh", rng)
  3852. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3853. rngm.Scale = Vector3.new(1, 1, 2)
  3854. x = Instance.new("Sound", hed)
  3855. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3856. x.Looped = false
  3857. x.Pitch = .7
  3858. x.Volume = 1
  3859. x1 = Instance.new("Sound", hed)
  3860. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3861. x1.Looped = false
  3862. x1.Pitch = .7
  3863. x1.Volume = 1
  3864. x:Play()
  3865. x1:Play()
  3866. rngto = rng.Touched:connect(function(ht)
  3867. hit = ht.Parent
  3868. if ht and hit:IsA("Model") then
  3869. if hit:FindFirstChild("Humanoid") then
  3870. if hit.Name ~= p.Name then
  3871. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3872. Debounces.Slashed = true]]--
  3873. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3874. hit:FindFirstChild("Humanoid").PlatformStand = true
  3875. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3876. --Debounces.Slashed = false
  3877. --end
  3878. end
  3879. end
  3880. elseif ht and hit:IsA("Hat") then
  3881. if hit.Parent.Name ~= p.Name then
  3882. if hit.Parent:FindFirstChild("Humanoid") then
  3883. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3884. Debounces.Slashed = true]]--
  3885. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3886. hit:FindFirstChild("Humanoid").PlatformStand = true
  3887. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3888. --Debounces.Slashed = false
  3889. end
  3890. end
  3891. end
  3892. end)
  3893. coroutine.wrap(function()
  3894. for i = 1, 60, 2 do
  3895. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3896. rng.Size = rngm.Scale
  3897. rng.CFrame = HandCF
  3898. rng.Transparency = i/60
  3899. wait()
  3900. end
  3901. wait()
  3902. rng:Destroy()
  3903. end)()
  3904. for i = 1, 18 do
  3905. 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)
  3906. 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)
  3907. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3908. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3909. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3910. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3911. 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)
  3912. if Debounces.on == false then break end
  3913. rs:wait(2.4)
  3914. end
  3915. larm.BrickColor = BrickColor.new("Really black")
  3916. rarm.BrickColor = BrickColor.new("Really black")
  3917. x:Destroy()
  3918. x1:Destroy()
  3919. if Debounces.CanAttack == false then
  3920. Debounces.CanAttack = true
  3921. Debounces.on = false
  3922. Debounces.NoIdl = false
  3923. end
  3924. end
  3925. end
  3926. end)
  3927. ----------------------------------------------------
  3928. mouse.KeyDown:connect(function(key)
  3929. if key == "y" then
  3930. if Debounces.CanAttack == true then
  3931. Debounces.CanAttack = false
  3932. Debounces.on = true
  3933. Debounces.NoIdl = true
  3934. for i = 1, 15 do
  3935. 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)
  3936. 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)
  3937. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3938. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3939. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3940. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3941. 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)
  3942. if Debounces.on == false then break end
  3943. rs:wait(2.7)
  3944. end
  3945. x = Instance.new("Sound",char)
  3946. x.SoundId = "rbxassetid://228343271"
  3947. x.Pitch = 1
  3948. x.Volume = .8
  3949. wait(.1)
  3950. x:Play()
  3951. Debounces.on = false
  3952. Debounces.Here = false
  3953. shot = shot + 1
  3954. local rng = Instance.new("Part", char)
  3955. rng.Anchored = true
  3956. rng.BrickColor = BrickColor.new("Bright blue")
  3957. rng.CanCollide = false
  3958. rng.FormFactor = 3
  3959. rng.Name = "Ring"
  3960. rng.Size = Vector3.new(1, 1, 1)
  3961. rng.Transparency = 0.35
  3962. rng.TopSurface = 0
  3963. rng.BottomSurface = 0
  3964. rng2 = rng:clone()
  3965. rng3 = rng2:clone()
  3966. rng4 = rng2:clone()
  3967. local rngm = Instance.new("SpecialMesh", rng)
  3968. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3969. rngm.Scale = Vector3.new(10, 10, 1)
  3970. rngm2 = rngm:clone()
  3971. rngm2.Scale = Vector3.new(5, 5, 3)
  3972. rngm3=rngm2:clone()
  3973. rngm3.Parent = rng3
  3974. rngm3.Scale = Vector3.new(8, 8, 1)
  3975. rngm4 = rngm2:clone()
  3976. rngm4.Parent = rng4
  3977. rngm4.Scale = Vector3.new(6, 6, 1)
  3978. local bem = Instance.new("Part", char)
  3979. bem.Anchored = true
  3980. bem.BrickColor = BrickColor.new("Really black")
  3981. bem.CanCollide = false
  3982. bem.FormFactor = 3
  3983. bem.Name = "Beam" .. shot
  3984. bem.Size = Vector3.new(1, 1, 1)
  3985. bem.Transparency = 0.35
  3986. bem.TopSurface = 0
  3987. bem.BottomSurface = 0
  3988. local bemm = Instance.new("SpecialMesh", bem)
  3989. bemm.MeshType = 4
  3990. bemm.Scale = Vector3.new(1, 4, 4)
  3991. local out = Instance.new("Part", char)
  3992. out.Anchored = true
  3993. out.BrickColor = BrickColor.new("Really black")
  3994. out.CanCollide = false
  3995. out.FormFactor = 3
  3996. out.Name = "Out"
  3997. out.Size = Vector3.new(4, 4, 4)
  3998. out.Transparency = 0.35
  3999. out.TopSurface = 0
  4000. out.BottomSurface = 0
  4001. local outm = Instance.new("SpecialMesh", out)
  4002. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  4003. outm.Scale = Vector3.new(4, 4, 4)
  4004. local bnd = Instance.new("Part", char)
  4005. bnd.Anchored = true
  4006. bnd.BrickColor = BrickColor.new("Bright blue")
  4007. bnd.CanCollide = false
  4008. bnd.FormFactor = 3
  4009. bnd.Name = "Bend"
  4010. bnd.Size = Vector3.new(1, 1, 1)
  4011. bnd.Transparency = 1
  4012. bnd.TopSurface = 0
  4013. bnd.BottomSurface = 0
  4014. local bndm = Instance.new("SpecialMesh", bnd)
  4015. bndm.MeshType = 3
  4016. bndm.Scale = Vector3.new(8, 8, 8)
  4017. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4018. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  4019. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  4020. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  4021. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  4022. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  4023. Debounces.Shewt = true
  4024. coroutine.wrap(function()
  4025. for i = 1, 20, 0.2 do
  4026. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4027. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  4028. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  4029. rng.Transparency = i/20
  4030. rng3.Transparency = 1/24
  4031. rng4.Transparency = i/26
  4032. wait()
  4033. end
  4034. wait()
  4035. rng:Destroy()
  4036. end)()
  4037. if Debounces.Shewt == true then
  4038. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4039. hit = ht.Parent
  4040. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4041. if HasntTouched(hit.Name) == true and deb == false then
  4042. deb = true
  4043. coroutine.wrap(function()
  4044. hit:FindFirstChild("Humanoid").PlatformStand = true
  4045. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4046. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4047. end)()
  4048. table.insert(Touche, hit.Name)
  4049. deb = false
  4050. end
  4051. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4052. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4053. deb = true
  4054. coroutine.wrap(function()
  4055. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4056. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4057. wait(1)
  4058. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4059. end)()
  4060. table.insert(Touche, hit.Parent.Name)
  4061. deb = false
  4062. for i, v in pairs(Touche) do
  4063. print(v)
  4064. end
  4065. end
  4066. end
  4067. end)
  4068. end
  4069. for i = 0, 260, 8 do
  4070. bem.Size = Vector3.new(i, 2, 2)
  4071. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4072. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4073. bnd.Size = Vector3.new(1,1,1)
  4074. bndm.Scale = Vector3.new(8,8,8)
  4075. if i % 10 == 0 then
  4076. local newRng = rng2:Clone()
  4077. newRng.Parent = char
  4078. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4079. local newRngm = rngm2:clone()
  4080. newRngm.Parent=newRng
  4081. coroutine.wrap(function()
  4082. for i = 1, 10, 0.2 do
  4083. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4084. newRng.Transparency = i/10
  4085. wait()
  4086. end
  4087. wait()
  4088. newRng:Destroy()
  4089. end)()
  4090. end
  4091. wait()
  4092. end
  4093. wait()
  4094. Debounces.Shewt = false
  4095. bem:Destroy()
  4096. out:Destroy()
  4097. bnd:Destroy()
  4098. Debounces.Ready = false
  4099. for i, v in pairs(Touche) do
  4100. table.remove(Touche, i)
  4101. end
  4102. wait()
  4103. table.insert(Touche, char.Name)
  4104. Debounces.NoIdl = false
  4105. if Debounces.CanAttack == false then
  4106. Debounces.CanAttack = true
  4107. end
  4108. end
  4109. end
  4110. end)
  4111. ----------------------------------------------------
  4112. sidz = {"231917888", "231917845", "231917806"}
  4113. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4114. mouse.KeyDown:connect(function(key)
  4115. if key == "f" then
  4116. larm.BrickColor = BrickColor.new("Bright red")
  4117. rarm.BrickColor = BrickColor.new("Bright red")
  4118. if Debounces.CanAttack == true then
  4119. Debounces.CanAttack = false
  4120. Debounces.on = true
  4121. Debounces.NoIdl = true
  4122. for i = 1, 20 do
  4123. 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)
  4124. 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)
  4125. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4126. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4127. 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)
  4128. 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)
  4129. 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)
  4130. if Debounces.on == false then break end
  4131. rs:wait(6)
  4132. end
  4133. z = Instance.new("Sound",char)
  4134. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4135. z.Pitch = ptz[math.random(1,#ptz)]
  4136. z.Volume = 1
  4137. z1 = Instance.new("Sound",char)
  4138. z1.SoundId = z.SoundId
  4139. z1.Pitch = z.Pitch
  4140. z1.Volume = 1
  4141. z:Play()
  4142. z1:Play()
  4143. Stomp()
  4144. for i = 1, 20 do
  4145. 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)
  4146. 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)
  4147. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4148. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4149. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4150. 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)
  4151. 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)
  4152. if Debounces.on == false then break end
  4153. rs:wait(2.5)
  4154. end
  4155. if Debounces.CanAttack == false then
  4156. Debounces.CanAttack = true
  4157. Debounces.on = false
  4158. Debounces.NoIdl = false
  4159. larm.BrickColor = BrickColor.new("Really black")
  4160. rarm.BrickColor = BrickColor.new("Really black")
  4161. end
  4162. end
  4163. end
  4164. end)
  4165. ----------------------------------------------------
  4166. mouse.KeyDown:connect(function(key)
  4167. if key == "g" then
  4168. larm.BrickColor = BrickColor.new("Bright red")
  4169. rarm.BrickColor = BrickColor.new("Bright red")
  4170. if Debounces.CanAttack == true then
  4171. Debounces.CanAttack = false
  4172. Debounces.on = true
  4173. Debounces.NoIdl = true
  4174. chrg = lleg.Touched:connect(function(ht)
  4175. hit = ht.Parent
  4176. if ht and hit:IsA("Model") then
  4177. if hit:FindFirstChild("Humanoid") then
  4178. if hit.Name ~= p.Name then
  4179. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4180. Debounces.Slashed = true]]--
  4181. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4182. hit:FindFirstChild("Humanoid").PlatformStand = true
  4183. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4184. --Debounces.Slashed = false
  4185. --end
  4186. end
  4187. end
  4188. elseif ht and hit:IsA("Hat") then
  4189. if hit.Parent.Name ~= p.Name then
  4190. if hit.Parent:FindFirstChild("Humanoid") then
  4191. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4192. Debounces.Slashed = true]]--
  4193. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4194. hit:FindFirstChild("Humanoid").PlatformStand = true
  4195. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4196. --Debounces.Slashed = false
  4197. end
  4198. end
  4199. end
  4200. end)
  4201. for i = 1, 14 do
  4202. 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)
  4203. 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)
  4204. 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)
  4205. 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)
  4206. 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)
  4207. 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)
  4208. 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)
  4209. if Debounces.on == false then break end
  4210. rs:wait(3)
  4211. end
  4212. charge()
  4213. z = Instance.new("Sound",char)
  4214. z.SoundId = "rbxassetid://200632875"
  4215. z.Volume = 1
  4216. z.Pitch = .8
  4217. z1 = Instance.new("Sound",char)
  4218. z1.SoundId = "rbxassetid://200632875"
  4219. z1.Volume = 1
  4220. z1.Pitch = .9
  4221. z:Play()
  4222. z1:Play()
  4223. wait(1)
  4224. z:Destroy()
  4225. z1:Destroy()
  4226. chrg:disconnect()
  4227. if Debounces.CanAttack == false then
  4228. Debounces.CanAttack = true
  4229. Debounces.on = false
  4230. Debounces.NoIdl = false
  4231. larm.BrickColor = BrickColor.new("Really black")
  4232. rarm.BrickColor = BrickColor.new("Really black")
  4233. end
  4234. end
  4235. end
  4236. end)
  4237. ----------------------------------------------------
  4238. pt = {0.7, 0.8, 0.9}
  4239. mouse.KeyDown:connect(function(key)
  4240. if key == "h" then
  4241. if Debounces.CanJoke == true then
  4242. Debounces.CanJoke = false
  4243. u = Instance.new("Sound")
  4244. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4245. u.Parent = char
  4246. u.Looped = false
  4247. u.Pitch = pt[math.random(1,#pt)]
  4248. u.Volume = 1
  4249. u2 = Instance.new("Sound")
  4250. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4251. u2.Parent = char
  4252. u2.Looped = false
  4253. u2.Pitch = u.Pitch
  4254. u2.Volume = 1
  4255. wait(.01)
  4256. u:Play()
  4257. u2:Play()
  4258. wait(6)
  4259. u:Destroy()
  4260. u2:Destroy()
  4261. if Debounces.CanJoke == false then
  4262. Debounces.CanJoke = true
  4263. end
  4264. end
  4265. end
  4266. end)
  4267. ----------------------------------------------------
  4268. mouse.KeyDown:connect(function(key)
  4269. if key == "j" then
  4270. if Debounces.CanJoke == true then
  4271. Debounces.CanJoke = false
  4272. z = Instance.new("Sound",char)
  4273. z.SoundId = "rbxassetid://135017755"
  4274. z.Pitch = .76
  4275. z.Volume = 1
  4276. wait()
  4277. z:Play()
  4278. wait(6)
  4279. z:Destroy()
  4280. if Debounces.CanJoke == false then
  4281. Debounces.CanJoke = true
  4282. end
  4283. end
  4284. end
  4285. end)
  4286. ----------------------------------------------------
  4287. mouse.KeyDown:connect(function(key)
  4288. if key == "k" then
  4289. if Debounces.CanJoke == true then
  4290. Debounces.CanJoke = false
  4291. z = Instance.new("Sound",char)
  4292. z.SoundId = "rbxassetid://135017578"
  4293. z.Pitch = .76
  4294. z.Volume = 1
  4295. wait()
  4296. z:Play()
  4297. wait(4)
  4298. z:Destroy()
  4299. if Debounces.CanJoke == false then
  4300. Debounces.CanJoke = true
  4301. end
  4302. end
  4303. end
  4304. end)
  4305. ----------------------------------------------------
  4306. mouse.KeyDown:connect(function(key)
  4307. if key == "x" then
  4308. if Debounces.CanAttack == true then
  4309. Debounces.CanAttack = false
  4310. Debounces.NoIdl = true
  4311. Debounces.on = true
  4312. Debounces.ks = true
  4313. for i = 1, 10 do
  4314. 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)
  4315. 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)
  4316. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4317. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4318. 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)
  4319. 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)
  4320. 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)
  4321. if Debounces.on == false then break end
  4322. rs:wait(1)
  4323. end
  4324. z = Instance.new("Sound",hed)
  4325. z.SoundId = "rbxassetid://169445092"
  4326. z.Volume = 1
  4327. wait(0.1)
  4328. z:Play()
  4329. kik = rleg.Touched:connect(function(ht)
  4330. hit = ht.Parent
  4331. if ht and hit:IsA("Model") then
  4332. if hit:FindFirstChild("Humanoid") then
  4333. if hit.Name ~= p.Name then
  4334. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4335. Debounces.Slashed = true]]--
  4336. if Debounces.ks==true then
  4337. z = Instance.new("Sound",hed)
  4338. z.SoundId = "rbxassetid://169380525"
  4339. z.Volume = 1
  4340. z:Play()
  4341. Debounces.ks=false
  4342. end
  4343. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4344. hit:FindFirstChild("Humanoid").PlatformStand = true
  4345. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4346. --Debounces.Slashed = false
  4347. --end
  4348. end
  4349. end
  4350. elseif ht and hit:IsA("Hat") then
  4351. if hit.Parent.Name ~= p.Name then
  4352. if hit.Parent:FindFirstChild("Humanoid") then
  4353. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4354. Debounces.Slashed = true]]--
  4355. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4356. hit:FindFirstChild("Humanoid").PlatformStand = true
  4357. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4358. --Debounces.Slashed = false
  4359. --end
  4360. end
  4361. end
  4362. end
  4363. end)
  4364. for i = 1, 8 do
  4365. 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)
  4366. 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)
  4367. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4368. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4369. 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)
  4370. 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)
  4371. 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)
  4372. if Debounces.on == false then break end
  4373. rs:wait(.7)
  4374. end
  4375. kik:disconnect()
  4376. if Debounces.CanAttack == false then
  4377. Debounces.CanAttack = true
  4378. Debounces.on = false
  4379. Debounces.NoIdl = false
  4380. end
  4381. end
  4382. end
  4383. end)
  4384. ----------------------------------------------------
  4385. mouse.KeyDown:connect(function(key)
  4386. if key == "c" then
  4387. if Debounces.CanAttack == true then
  4388. Debounces.CanAttack = false
  4389. Debounces.NoIdl = true
  4390. Debounces.on = true
  4391. SIDZ = {"231917744", "231917742"}
  4392. PTZ = {0.7, 0.8, 0.9, 1}
  4393. for i = 1, 20 do
  4394. wait()
  4395. for i,v in pairs(char.Absolution:children()) do
  4396. if v:IsA("Part") or v:IsA("WedgePart") then
  4397. v.Transparency = v.Transparency + 0.05
  4398. end
  4399. end
  4400. end
  4401. function FindNearestTorso(Position,Distance,SinglePlayer)
  4402. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4403. local List = {}
  4404. for i,v in pairs(workspace:GetChildren())do
  4405. if v:IsA("Model")then
  4406. if v:findFirstChild("Torso")then
  4407. if v ~= char then
  4408. if(v.Torso.Position -Position).magnitude <= Distance then
  4409. table.insert(List,v)
  4410. end
  4411. end
  4412. end
  4413. end
  4414. end
  4415. return List
  4416. end
  4417. GroundPound()
  4418. for i = 1, 11 do
  4419. 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)
  4420. 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)
  4421. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4422. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4423. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4424. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4425. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4426. if Debounces.on == false then break end
  4427. rs:wait(1.4)
  4428. end
  4429. GroundPound()
  4430. for i = 1, 11 do
  4431. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4432. 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)
  4433. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4434. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4435. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4436. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4437. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4438. if Debounces.on == false then break end
  4439. rs:wait(1.4)
  4440. end
  4441. GroundPound()
  4442. for i = 1, 11 do
  4443. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4444. 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)
  4445. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4446. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4447. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4448. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4449. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4450. if Debounces.on == false then break end
  4451. rs:wait(1.4)
  4452. end
  4453. GroundPound()
  4454. for i = 1, 11 do
  4455. 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)
  4456. 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)
  4457. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4458. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4459. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4460. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4461. 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)
  4462. if Debounces.on == false then break end
  4463. rs:wait(1.4)
  4464. end
  4465. GroundPound()
  4466. for i = 1, 11 do
  4467. 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)
  4468. 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)
  4469. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4470. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4471. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4472. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4473. 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)
  4474. if Debounces.on == false then break end
  4475. rs:wait(1.4)
  4476. end
  4477. GroundPound()
  4478. for i = 1, 11 do
  4479. 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)
  4480. 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)
  4481. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4482. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4483. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4484. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4485. 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)
  4486. if Debounces.on == false then break end
  4487. rs:wait(1.4)
  4488. end
  4489. for i = 1, 24 do
  4490. 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)
  4491. 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)
  4492. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4493. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4494. 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)
  4495. 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)
  4496. 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)
  4497. if Debounces.on == false then break end
  4498. rs:wait(3)
  4499. end
  4500. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4501. if v:FindFirstChild('Humanoid') then
  4502. v.Humanoid:TakeDamage(math.random(20,60))
  4503. v.Humanoid.PlatformStand = true
  4504. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4505. end
  4506. end
  4507. x = Instance.new("Sound",char)
  4508. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4509. x.Pitch = PTZ[math.random(1,#PTZ)]
  4510. x.Volume = 1
  4511. wait(0.1)
  4512. x:Play()
  4513. Crater(hed,20)
  4514. for i = 1, 20 do
  4515. 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)
  4516. 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)
  4517. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4518. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4519. 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)
  4520. 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)
  4521. 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)
  4522. if Debounces.on == false then break end
  4523. rs:wait(2)
  4524. end
  4525. if Debounces.CanAttack == false then
  4526. Debounces.CanAttack = true
  4527. Debounces.on = false
  4528. Debounces.NoIdl = false
  4529. for i = 1, 20 do
  4530. wait()
  4531. for i,v in pairs(char.Absolution:children()) do
  4532. if v:IsA("Part") or v:IsA("WedgePart") then
  4533. v.Transparency = v.Transparency - 0.05
  4534. end
  4535. end
  4536. end
  4537. end
  4538. end
  4539. end
  4540. end)
  4541. ----------------------------------------------------176349813
  4542. mouse.KeyDown:connect(function(key)
  4543. if key == "b" then
  4544. hum.WalkSpeed = 0.01
  4545. if Debounces.CanAttack == true then
  4546. Debounces.CanAttack = false
  4547. Debounces.NoIdl = true
  4548. Debounces.on = true
  4549. for i = 1, 30 do
  4550. 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)
  4551. 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)
  4552. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4553. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4554. 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)
  4555. 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)
  4556. 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)
  4557. if Debounces.on == false then break end
  4558. rs:wait(6)
  4559. end
  4560. v = Instance.new("Sound")
  4561. v.SoundId = "rbxassetid://181384451"
  4562. v.Parent = char
  4563. v.Looped = false
  4564. v.Pitch = .94
  4565. v.Volume = 1
  4566. wait(.01)
  4567. v:Play()
  4568.  
  4569. if Daytime == true then
  4570. Daytime = false
  4571. l.TimeOfDay = 24
  4572. else
  4573. Daytime = true
  4574. l.TimeOfDay = 12
  4575. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4576. end
  4577.  
  4578. local Shockwave = function()
  4579. local rng1 = Instance.new("Part", char)
  4580. rng1.Anchored = true
  4581. rng1.BrickColor = BrickColor.new("Really black")
  4582. rng1.CanCollide = false
  4583. rng1.FormFactor = 3
  4584. rng1.Name = "Ring"
  4585. rng1.Size = Vector3.new(1, 1, 1)
  4586. rng1.Transparency = 0.35
  4587. rng1.TopSurface = 0
  4588. rng1.BottomSurface = 0
  4589. local rngm1 = Instance.new("SpecialMesh", rng)
  4590. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4591. rngm1.Scale = Vector3.new(10, 10, 1)
  4592. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4593. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4594. Wave.Name = "Shockwave"
  4595. Wave.BrickColor = BrickColor.new("Really black")
  4596. Wave.Size = Vector3.new(1, 1, 1)
  4597. Wave.Shape = "Ball"
  4598. Wave.CanCollide = false
  4599. Wave.Anchored = true
  4600. Wave.TopSurface = 0
  4601. Wave.BottomSurface = 0
  4602. Wave.Touched:connect(function(hit)
  4603. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4604. local Occlude = true
  4605. local NotOccludes = {
  4606. char.Name;
  4607. "Wings";
  4608. "Scythe";
  4609. "Thingy";
  4610. "Thingy2"; -- put all of the names in a table pls
  4611. }
  4612. for i,v in pairs(NotOccludes) do
  4613. if hit.Parent.Name == v then
  4614. Occlude = false
  4615. end
  4616. end
  4617. --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
  4618. if Occlude then
  4619. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4620. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4621. end
  4622. end
  4623. end)
  4624.  
  4625. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4626.  
  4627. coroutine.wrap(function()
  4628. for i = 1, 20, 0.2 do
  4629. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4630. rng1.Transparency = i/20
  4631. wait()
  4632. end
  4633. wait()
  4634. rng1:Destroy()
  4635. end)()
  4636.  
  4637. Delay(0, function()
  4638.  
  4639. if Daytime == false then
  4640. for i = 1, 50, 1 do
  4641. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4642. Wave.CFrame = char.Torso.CFrame
  4643. local t = i / 50
  4644. Wave.Transparency = t
  4645. wait()
  4646. end
  4647. else
  4648. for i = 1, 50, 1 do
  4649. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4650. Wave.CFrame = char.Torso.CFrame
  4651. local t = i / 50
  4652. Wave.Transparency = t
  4653. wait()
  4654. end
  4655. end
  4656. Wave:Destroy()
  4657. end)
  4658. Delay(0, function()
  4659. while wait() do
  4660. if Wave ~= nil then
  4661. Wave.CFrame = char.Torso.CFrame
  4662. else
  4663. break
  4664. end
  4665. end
  4666. end)
  4667. end
  4668. Shockwave()
  4669. for i = 1, 30 do
  4670. 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)
  4671. 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)
  4672. 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)
  4673. 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)
  4674. 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)
  4675. 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)
  4676. if Debounces.on == false then break end
  4677. rs:wait()
  4678. end
  4679. wait(2.4)
  4680. Debounces.NoIdl = false
  4681. hum.WalkSpeed = 5
  4682. Debounces.on = false
  4683. wait()
  4684. if Debounces.CanAttack == false then
  4685. Debounces.CanAttack = true
  4686. v:Destroy()
  4687. end
  4688. end
  4689. end
  4690. end)
  4691. ----------------------------------------------------
  4692. mouse.KeyDown:connect(function(key)
  4693. if key == "l" then
  4694. for i = 1, 20 do
  4695. wait()
  4696. for i,v in pairs(char.Absolution:children()) do
  4697. if v:IsA("Part") or v:IsA("WedgePart") then
  4698. v.Transparency = v.Transparency + 0.05
  4699. end
  4700. end
  4701. end
  4702. if Debounces.CanAttack == true then
  4703. Debounces.CanAttack = false
  4704. Debounces.NoIdl = true
  4705. Debounces.on = true
  4706. bv = Instance.new("BodyVelocity",torso)
  4707. bv.maxForce = Vector3.new(0,200000,0)
  4708. bv.P = 100000
  4709. bv.velocity = Vector3.new(0,500,0)
  4710. wait(2)
  4711. bv:Destroy()
  4712. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4713. for i = 1, 20 do
  4714. 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)
  4715. 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)
  4716. 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)
  4717. 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)
  4718. 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)
  4719. 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)
  4720. 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)
  4721. if Debounces.on == false then break end
  4722. wait()
  4723. end
  4724. for i = 1, 360, 20 do wait()
  4725. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4726. end
  4727. end
  4728. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4729. local ry,ht,ps=nil,nil,nil
  4730. while ht==nil do
  4731. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4732. wait()
  4733. end
  4734. z = Instance.new("Sound",char)
  4735. z.SoundId = "rbxassetid://245537790"
  4736. z.Pitch = 1
  4737. z.Volume = 1
  4738. wait(0.1)
  4739. z:Play()
  4740. local sp = Instance.new("Part", char)
  4741. sp.Name = "Energy"
  4742. sp.BrickColor = BrickColor.new("Really black")
  4743. sp.Size = Vector3.new(1, 1, 1)
  4744. sp.Shape = "Ball"
  4745. sp.CanCollide = false
  4746. sp.Anchored = true
  4747. sp.TopSurface = 0
  4748. sp.BottomSurface = 0
  4749. local spm = Instance.new("SpecialMesh",sp)
  4750. spm.MeshId = "rbxassetid://9982590"
  4751. spm.Scale = Vector3.new(3,3,3)
  4752. local sp2 = Instance.new("Part", char)
  4753. sp2.Name = "Energy2"
  4754. sp2.BrickColor = BrickColor.new("Really black")
  4755. sp2.Size = Vector3.new(1, 1, 1)
  4756. sp2.Shape = "Ball"
  4757. sp2.CanCollide = false
  4758. sp2.Anchored = true
  4759. sp2.TopSurface = 0
  4760. sp2.BottomSurface = 0
  4761. local spm2 = Instance.new("SpecialMesh",sp2)
  4762. spm2.MeshId = "rbxassetid://9982590"
  4763. spm2.Scale = Vector3.new(3,3,3)
  4764. sp.Touched:connect(function(hit)
  4765. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4766. local Occlude = true
  4767. local NotOccludes = {
  4768. char.Name;
  4769. "Wings";
  4770. "Scythe";
  4771. "Thingy";
  4772. "Thingy2"; -- put all of the names in a table pls
  4773. }
  4774. for i,v in pairs(NotOccludes) do
  4775. if hit.Parent.Name == v then
  4776. Occlude = false
  4777. end
  4778. end
  4779. --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
  4780. if Occlude then
  4781. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4782. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4783. end
  4784. end
  4785. end)
  4786. sp2.Touched:connect(function(hit)
  4787. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4788. local Occlude = true
  4789. local NotOccludes = {
  4790. char.Name;
  4791. "Wings";
  4792. "Scythe";
  4793. "Thingy";
  4794. "Thingy2"; -- put all of the names in a table pls
  4795. }
  4796. for i,v in pairs(NotOccludes) do
  4797. if hit.Parent.Name == v then
  4798. Occlude = false
  4799. end
  4800. end
  4801. --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
  4802. if Occlude then
  4803. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4804. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4805. end
  4806. end
  4807. end)
  4808. for i = 1, 100, 1 do
  4809. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4810. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4811. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4812. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4813. spm.Scale = sp.Size
  4814. spm2.Scale = sp2.Size
  4815. local t = i / 100
  4816. sp.Transparency = t
  4817. sp2.Transparency = t
  4818. wait()
  4819. end
  4820. sp:Destroy()
  4821. sp2:Destroy()
  4822. z:Destroy()
  4823. for i = 1, 20 do
  4824. wait()
  4825. for i,v in pairs(char.Absolution:children()) do
  4826. if v:IsA("Part") or v:IsA("WedgePart") then
  4827. v.Transparency = v.Transparency - 0.05
  4828. end
  4829. end
  4830. end
  4831. if Debounces.CanAttack == false then
  4832. Debounces.CanAttack = true
  4833. Debounces.NoIdl = false
  4834. Debounces.on = false
  4835. end
  4836. end
  4837. end
  4838. end)
  4839. ----------------------------------------------------
  4840. local orbt={}
  4841. local stlt={}
  4842. local chot={}
  4843. local cfxt={}
  4844. local pfxt={}
  4845. local cns=0
  4846. local cnOrb=nil
  4847. mouse.KeyDown:connect(function(key)
  4848. if key == "u" then
  4849. if Debounces.CanAttack == true then
  4850. Debounces.CanAttack = false
  4851. Debounces.NoIdl = true
  4852. Debounces.on = true
  4853. orbt={}
  4854. stlt={}
  4855. chot={}
  4856. cfxt={}
  4857. for i = 1, 20 do
  4858. 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)
  4859. 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)
  4860. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4861. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4862. 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)
  4863. 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)
  4864. 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)
  4865. if Debounces.on == false then end
  4866. rs:wait()
  4867. end
  4868. z = Instance.new("Sound",char)
  4869. z.SoundId = "rbxassetid://170053944"
  4870. z.Pitch = 1.07
  4871. z.Volume = 1
  4872. wait(0.1)
  4873. z:Play()
  4874. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4875. debris:AddItem(cnOrb,50)
  4876. cnOrb.Mesh.MeshType=3
  4877. table.insert(orbt,cnOrb)
  4878. table.insert(stlt,cnOrb)
  4879. local nt=0
  4880. for i=0,5,0.02 do
  4881. nt=nt+1
  4882. cns=i
  4883. if nt>=2 then
  4884. nt=0
  4885. 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")
  4886. debris:AddItem(cho,1)
  4887. cho.Mesh.MeshType=3
  4888. table.insert(chot,cho)
  4889. end
  4890. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4891. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4892. wait()
  4893. end
  4894. for i = 1, 14 do
  4895. 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)
  4896. if Debounces.on == false then end
  4897. rs:wait()
  4898. end
  4899. coroutine.wrap(function()
  4900. for i = 1, 20 do
  4901. 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)
  4902. 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)
  4903. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4904. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4905. 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)
  4906. 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)
  4907. if Debounces.on == false then end
  4908. rs:wait()
  4909. end
  4910. end)()
  4911. wait(0.1)
  4912. stlt={}
  4913. 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})
  4914. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4915. local nt=0
  4916. for i=0,160,3 do
  4917. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4918. nt=nt+1
  4919. if nt>=6 then
  4920. nt=0
  4921. 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")
  4922. cfx.Mesh.MeshId="rbxassetid://20329976"
  4923. cfx.Transparency=0.4
  4924. table.insert(cfxt,cfx)
  4925. debris:AddItem(cfx,1)
  4926. end
  4927. if (cnOrb.Position-ps).magnitude<6 then
  4928. break
  4929. end
  4930. wait()
  4931. end
  4932. orbt={}
  4933.  
  4934. for i=0,1,0.1 do
  4935. local cs=cnOrb.Mesh.Scale
  4936. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4937. wait()
  4938. end
  4939. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4940. ofx.Transparency=0.5
  4941. ofx.Mesh.MeshType=3
  4942. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4943. for _,v in pairs(game:service"Players":GetChildren()) do
  4944. pcall(function()
  4945. for _,c in pairs(v.Character:GetChildren()) do
  4946. 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
  4947. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4948. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4949. end
  4950. end
  4951. end)
  4952. end
  4953. for i=0,1,0.05 do
  4954. local cs=cnOrb.Mesh.Scale
  4955. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4956. local ofs=ofx.Mesh.Scale
  4957. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4958. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4959. wait()
  4960. end
  4961. ofx:Destroy()
  4962. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4963. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4964. cnfx.Mesh.MeshType=3
  4965. cnOrb.Transparency=0.05
  4966. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4967. cnr.Mesh.MeshType=3
  4968. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4969. rn1.Transparency=1
  4970. rn1.Mesh.MeshId="rbxassetid://3270017"
  4971. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4972. rn2.Transparency=1
  4973. rn2.Mesh.MeshId="rbxassetid://3270017"
  4974. local nt=0
  4975. local cs=nil
  4976. for i=0,1,0.05 do
  4977. cs=cnOrb.Mesh.Scale
  4978. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4979. local fs=cnfx.Mesh.Scale
  4980. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4981. cnfx.Transparency=cnfx.Transparency+0.05
  4982. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4983. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4984. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4985. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4986. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4987. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4988. local rs=cnr.Mesh.Scale
  4989. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4990. nt=nt+1
  4991. if nt>=6 then
  4992. local pls={}
  4993. for _,v in pairs(game.Players:GetChildren()) do
  4994. table.insert(pls,v)
  4995. end
  4996. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4997. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4998. pffx.Mesh.MeshId="rbxassetid://20329976"
  4999. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  5000. debris:AddItem(pffx,2)
  5001. table.insert(pfxt,pffx)
  5002. nt=0
  5003. end
  5004. wait()
  5005. end
  5006. local int=0
  5007. coroutine.wrap(function()
  5008. for i=1,500 do
  5009. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5010. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5011. nt=nt+1
  5012. int=int+1
  5013. local htd={p}
  5014. for _,v in pairs(game:service"Players":GetChildren()) do
  5015. pcall(function()
  5016. for _,c in pairs(v.Character:GetChildren()) do
  5017. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5018. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  5019. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  5020. table.insert(htd,v)
  5021. end
  5022. end
  5023. end)
  5024. end
  5025. htd={p}
  5026. if int>=6 then
  5027. for _,v in pairs(game:service"Players":GetChildren()) do
  5028. pcall(function()
  5029. for _,c in pairs(v.Character:GetChildren()) do
  5030. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5031. table.insert(htd,v)
  5032. 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")
  5033. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5034. hfx.Mesh.MeshType=3
  5035. debris:AddItem(hfx,2)
  5036. coroutine.wrap(function()
  5037. pcall(function()
  5038. for i=0,1,0.05 do
  5039. pcall(function()
  5040. local hs=hfx.Mesh.Scale
  5041. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5042. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5043. end)
  5044. wait()
  5045. end
  5046. hfx:Destroy()
  5047. end)
  5048. end)()
  5049. end
  5050. end
  5051. end)
  5052. end
  5053. int=0
  5054. end
  5055. if nt>=4 then
  5056. local pls={}
  5057. for _,v in pairs(game.Players:GetChildren()) do
  5058. table.insert(pls,v)
  5059. end
  5060. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5061. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5062. pffx.Transparency=0.4
  5063. pffx.Mesh.MeshId="rbxassetid://20329976"
  5064. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5065. debris:AddItem(pffx,2)
  5066. table.insert(pfxt,pffx)
  5067. nt=0
  5068. end
  5069. wait()
  5070. end
  5071. cnOrb:Destroy()
  5072. cnfx:Destroy()
  5073. for _,v in pairs(mod3:GetChildren()) do
  5074. v:Destroy()
  5075. end
  5076. orbt={}
  5077. stlt={}
  5078. chot={}
  5079. cfxt={}
  5080. pfxt={}
  5081. end)()
  5082. if Debounces.CanAttack == false then
  5083. Debounces.CanAttack = true
  5084. Debounces.NoIdl = false
  5085. Debounces.on = false
  5086. end
  5087. end
  5088. end
  5089. end)
  5090. ----------------------------------------------------
  5091. mouse.KeyDown:connect(function(key)
  5092. if key == "m" then
  5093. if Debounces.CanAttack == true then
  5094. Debounces.CanAttack = false
  5095. Debounces.on = true
  5096. Debounces.NoIdl = true
  5097. --[[x = Instance.new("Sound",char)
  5098. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5099. x.Looped = false
  5100. x.Pitch = 1.1
  5101. x.Volume = 1
  5102. x:Play()
  5103. x2 = Instance.new("Sound",char)
  5104. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5105. x2.Looped = false
  5106. x2.Pitch = .7
  5107. x2.Volume = 1
  5108. wait(.1)
  5109. x:Play()
  5110. x2:Play()
  5111. for i = 1, 20 do
  5112. 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)
  5113. 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)
  5114. 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)
  5115. 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)
  5116. 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)
  5117. 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)
  5118. 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)
  5119. if Debounces.on == false then break end
  5120. wait()
  5121. x:Destroy()
  5122. x2:Destroy()
  5123. end
  5124. wait(1)]]--
  5125. local rng = Instance.new("Part", char)
  5126. rng.Anchored = true
  5127. rng.BrickColor = BrickColor.new("Really black")
  5128. rng.CanCollide = false
  5129. rng.FormFactor = 3
  5130. rng.Name = "Ring"
  5131. rng.Size = Vector3.new(1, 1, 1)
  5132. rng.Transparency = 0.35
  5133. rng.TopSurface = 0
  5134. rng.BottomSurface = 0
  5135. rng.Position = torso.Position - Vector3.new(0,5,0)
  5136. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5137. local rngm = Instance.new("SpecialMesh", rng)
  5138. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5139. rngm.Scale = Vector3.new(1, 1, 2)
  5140. x = Instance.new("Sound",char)
  5141. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5142. x.Looped = false
  5143. x.Pitch = .7
  5144. x.Volume = 1
  5145. x:Play()
  5146. coroutine.wrap(function()
  5147. for i = 1, 60, 2 do
  5148. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5149. rng.Transparency = i/60
  5150. wait()
  5151. end
  5152. wait()
  5153. rng:Destroy()
  5154. end)()
  5155. hum.WalkSpeed = 100
  5156. BV = Instance.new("BodyVelocity", torso)
  5157. BV.maxForce = Vector3.new(0,200000,0)
  5158. BV.P = 240000
  5159. BV.velocity = Vector3.new(0,700,0)
  5160. for i = 1, 20 do
  5161. 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)
  5162. 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)
  5163. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5164. 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)
  5165. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5166. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5167. 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)
  5168. if Debounces.on == false then break end
  5169. wait()
  5170. end
  5171. x:Destroy()
  5172. BV:Destroy()
  5173. --[[for i = 1, 30 do
  5174. 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)
  5175. 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)
  5176. 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)
  5177. 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)
  5178. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5179. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5180. if Debounces.on == false then break end
  5181. wait()
  5182. end]]--
  5183. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5184. for i = 1, 30 do
  5185. 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)
  5186. 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)
  5187. 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)
  5188. 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)
  5189. 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)
  5190. 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)
  5191. 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)
  5192. if Debounces.on == false then break end
  5193. wait()
  5194. end
  5195. end
  5196. Debounces.on = false
  5197. Debounces.NoIdl = false
  5198. local ry,ht,ps=nil,nil,nil
  5199. while ht==nil do
  5200. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5201. wait()
  5202. end
  5203. z = Instance.new("Sound",char)
  5204. z.SoundId = "rbxassetid://142070127"
  5205. z.Volume = 1
  5206. wait(.1)
  5207. z:Play()
  5208. Landing()
  5209. hum.WalkSpeed = 8
  5210. if Debounces.CanAttack == false then
  5211. Debounces.CanAttack = true
  5212. end
  5213. end
  5214. end
  5215. end)
  5216. ----------------------------------------------------
  5217. Grab = false
  5218. mouse.KeyDown:connect(function(key)
  5219. if key == "z" then
  5220. Debounces.on = true
  5221. Debounces.NoIdl = true
  5222. if Grab == false then
  5223. gp = nil
  5224. con1=larm.Touched:connect(function(hit) -- this is grab
  5225. ht = hit.Parent
  5226. hum1=ht:FindFirstChild('Humanoid')
  5227. if hum1 ~= nil then
  5228. hum1.PlatformStand=true
  5229. gp = ht
  5230. Grab = true
  5231. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5232. asd.Parent = larm
  5233. asd.Name = "asd"
  5234. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5235. con1:disconnect()
  5236. elseif hum1 ~= nil then
  5237. con1:disconnect()
  5238. wait() return
  5239. end
  5240. end)
  5241. for i = 1, 18 do
  5242. 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)
  5243. 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)
  5244. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5245. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5246. 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)
  5247. 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)
  5248. 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)
  5249. if Debounces.on == false then break end
  5250. wait()
  5251. end
  5252. con1:disconnect()
  5253. Debounces.on = false
  5254. Debounces.NoIdl = false
  5255. elseif Grab == true then
  5256. Grab = false
  5257. for i = 1, 20 do
  5258. 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)
  5259. 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)
  5260. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5261. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5262. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5263. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5264. 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)
  5265. if Debounces.on == false then end
  5266. wait()
  5267. end
  5268. if gp ~= nil then
  5269. for i,v in pairs(larm:GetChildren()) do
  5270. if v.Name == "asd" and v:IsA("Weld") then
  5271. v:Remove()
  5272. end
  5273. end
  5274. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5275. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5276. bv.P = 125000
  5277. bv.velocity = char.Head.CFrame.lookVector * 200
  5278. for i = 1, 12 do
  5279. 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)
  5280. if Debounces.on == false then end
  5281. wait()
  5282. end--
  5283. ht=nil
  5284. Spawn(function()
  5285. wait(0.5)
  5286. bv:Destroy()
  5287. end)
  5288. Debounces.on = false
  5289. Debounces.NoIdl = false
  5290. elseif ht == nil then wait()
  5291. Grab = false
  5292. Debounces.on = false
  5293. Debounces.NoIdl = false
  5294. end
  5295. end
  5296. end
  5297. end)
  5298. ----------------------------------------------------
  5299. mouse.KeyDown:connect(function(key)
  5300. if string.byte(key) == 52 then
  5301. char.Humanoid.WalkSpeed = 21
  5302. end
  5303. end)
  5304. mouse.KeyUp:connect(function(key)
  5305. if string.byte(key) == 52 then
  5306. char.Humanoid.WalkSpeed = 5
  5307. end
  5308. end)
  5309. ----------------------------------------------------
  5310. Change = false
  5311. mouse.KeyDown:connect(function(key)
  5312. if key == "n" then
  5313. if Change == false then
  5314. Change = true
  5315. stanceToggle = "Normal2"
  5316. elseif Change == true then
  5317. Change = false
  5318. stanceToggle = "Normal"
  5319. end
  5320. end
  5321. end)
  5322. ----------------------------------------------------
  5323. local animpose = "Idle"
  5324. local lastanimpose = "Idle"
  5325. local sine = 0
  5326. local change = 1
  5327. local val = 0
  5328. local ffing = false
  5329. local och = 0
  5330. ----------------------------------------------------
  5331. game:GetService("RunService").RenderStepped:connect(function()
  5332. --[[if char.Humanoid.Jump == true then
  5333. jump = true
  5334. else
  5335. jump = false
  5336. end]]
  5337. char.Humanoid.FreeFalling:connect(function(f)
  5338. if f then
  5339. ffing = true
  5340. else
  5341. ffing = false
  5342. end
  5343. end)
  5344. sine = sine + change
  5345. if jumpn == true then
  5346. animpose = "Jumping"
  5347. elseif ffing == true then
  5348. animpose = "Freefalling"
  5349. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5350. animpose = "Idle"
  5351. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5352. animpose = "Walking"
  5353. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5354. animpose = "Running"
  5355. end
  5356. if animpose ~= lastanimpose then
  5357. sine = 0
  5358. if Debounces.NoIdl == false then
  5359. if animpose == "Idle" then
  5360. for i = 1, 2 do
  5361. 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)
  5362. 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)
  5363. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5364. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5365. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5366. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5367. 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)
  5368. end
  5369. elseif animpose == "Walking" then
  5370. for i = 1, 2 do
  5371. 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)
  5372. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5373. 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)
  5374. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5375. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5376. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5377. 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)
  5378. end
  5379. elseif animpose == "Running" then
  5380. for i = 1, 2 do
  5381. 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)
  5382. 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)
  5383. 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)
  5384. 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)
  5385. 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)
  5386. 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)
  5387. 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)
  5388. end
  5389. rs:wait(2)
  5390. end
  5391. else
  5392. end
  5393. end
  5394. lastanimpose = animpose
  5395. if Debounces.NoIdl == false then
  5396. if animpose == "Idle" then
  5397. if stanceToggle == "Normal" then
  5398. change = 0.5
  5399. 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)
  5400. 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)
  5401. 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)
  5402. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5403. 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)
  5404. 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)
  5405. 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)
  5406. elseif stanceToggle == "Sitting" then
  5407. 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)
  5408. 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)
  5409. 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)
  5410. 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)
  5411. 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)
  5412. 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)
  5413. 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)
  5414. elseif stanceToggle == "Normal2" then
  5415. 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)
  5416. 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)
  5417. 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)
  5418. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5419. 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)
  5420. 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)
  5421. 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)
  5422. end
  5423. elseif animpose == "Walking" then
  5424. if stanceToggle == "Normal" then
  5425. change = 1
  5426. 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)
  5427. 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)
  5428. 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)
  5429. 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)
  5430. 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)
  5431. 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)
  5432. 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)
  5433. elseif stanceToggle == "Normal2" then
  5434. 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)
  5435. 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)
  5436. 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)
  5437. 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)
  5438. 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)
  5439. 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)
  5440. 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)
  5441. end
  5442. elseif animpose == "Running" then
  5443. change = 1
  5444. 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)
  5445. 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)
  5446. 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)
  5447. 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)
  5448. 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)
  5449. 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)
  5450. 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)
  5451. end
  5452. end
  5453. och=och+1
  5454. for _,v in pairs(orbt) do
  5455. pcall(function()
  5456. 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)))
  5457. end)
  5458. end
  5459. for _,v in pairs(stlt) do
  5460. pcall(function()
  5461. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5462. end)
  5463. end
  5464. for _,v in pairs(chot) do
  5465. pcall(function()
  5466. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5467. 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))
  5468. end)
  5469. end
  5470. for _,v in pairs(cfxt) do
  5471. pcall(function()
  5472. local vs=v.Mesh.Scale
  5473. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5474. v.Transparency=v.Transparency+0.05
  5475. end)
  5476. end
  5477. for _,v in pairs(pfxt) do
  5478. pcall(function()
  5479. local vs=v.Mesh.Scale
  5480. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5481. v.Transparency=v.Transparency+0.025
  5482. end)
  5483. end
  5484. end)
  5485.  
  5486. TextButton_2.Parent = Frame
  5487. TextButton_2.BackgroundColor3 = Color3.new(1, 0, 0)
  5488. TextButton_2.Position = UDim2.new(0, 142, 0, 72)
  5489. TextButton_2.Size = UDim2.new(0, 118, 0, 76)
  5490. TextButton_2.Font = Enum.Font.SourceSans
  5491. TextButton_2.FontSize = Enum.FontSize.Size14
  5492. TextButton_2.Text = "Godly Titan"
  5493. TextButton_2.TextSize = 14
  5494.  
  5495. BUTTONNAMEHERE!.MouseButton1Down:connect(function()
  5496. Script Here
  5497. end)
  5498.  
  5499. TextButton_3.Parent = Frame
  5500. TextButton_3.BackgroundColor3 = Color3.new(1, 0, 0)
  5501. TextButton_3.Position = UDim2.new(0, 285, 0, 72)
  5502. TextButton_3.Size = UDim2.new(0, 118, 0, 76)
  5503. TextButton_3.Font = Enum.Font.SourceSans
  5504. TextButton_3.FontSize = Enum.FontSize.Size14
  5505. TextButton_3.Text = "Green Swords Wings"
  5506. TextButton_3.TextSize = 14
  5507.  
  5508. TextButton.MouseButton1Down:connect(function()
  5509. --coolallball
  5510. if game.Players.LocalPlayer.Character.Animate.Disabled==false then
  5511. game.Players.LocalPlayer.Character.Animate.Disabled=true
  5512. end
  5513. wait()
  5514. local Player=game.Players.LocalPlayer
  5515. repeat wait()
  5516. until Player
  5517. local Char=Player.Character
  5518. repeat wait()
  5519. until Char
  5520. local CurrentEffects={}
  5521. local CurrentDamages={}
  5522. local Human=Char.Humanoid
  5523. local LArm=Char["Left Arm"]
  5524. local RArm=Char["Right Arm"]
  5525. local LLeg=Char["Left Leg"]
  5526. local RLeg=Char["Right Leg"]
  5527. local Torso=Char.Torso
  5528. local RS=Torso["Right Shoulder"]
  5529. local LS=Torso["Left Shoulder"]
  5530. local RH=Torso["Right Hip"]
  5531. local LH=Torso["Left Hip"]
  5532. local Head=Char.Head
  5533. local Neck=Torso.Neck
  5534. local RootPart=Char.HumanoidRootPart
  5535. local RootJoint=RootPart.RootJoint
  5536. local equipped=false
  5537. local Debounce=false
  5538. local Anim="Idle"
  5539. local chat = game:GetService("Chat")
  5540. local Mouse=Player:GetMouse()
  5541. local Lighting=game.Lighting
  5542. local cf=CFrame.new
  5543. local v3=Vector3.new
  5544. local c3=Color3.new
  5545. local it=Instance.new
  5546. local angles=CFrame.Angles
  5547. local rad=math.rad
  5548. local ran=math.random
  5549. local huge=math.huge
  5550. local attacking=false
  5551. local attacktype=1
  5552. local Portalling=false
  5553. local p = game.Players.LocalPlayer
  5554. local char = p.Character
  5555. local mouse = p:GetMouse()
  5556. local larm = char["Left Arm"]
  5557. local rarm = char["Right Arm"]
  5558. local lleg = char["Left Leg"]
  5559. local rleg = char["Right Leg"]
  5560. local hed = char.Head
  5561. local torso = char.Torso
  5562. local hum = char.Humanoid
  5563. local cam = game.Workspace.CurrentCamera
  5564. local root = char.HumanoidRootPart
  5565. local deb = false
  5566. local shot = 0
  5567. local debris=game:service"Debris"
  5568. local l = game:GetService("Lighting")
  5569. local rs = game:GetService("RunService").RenderStepped
  5570. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5571. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  5572. LSC0=cf(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  5573. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  5574. RSC0=cf(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  5575. ROOTC0 = cf(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  5576. r=game:service'RunService'.RenderStepped
  5577. clerp=function(a,b,t)
  5578. return a:lerp(b,t)
  5579. end
  5580.  
  5581.  
  5582. local Rainbow = { --This is the main color set. Try to use more than just a few, make it fade in order as well
  5583. "Lime green",
  5584. }
  5585.  
  5586. Debounces = {
  5587. CanAttack = true;
  5588. NoIdl = false;
  5589. Slashing = false;
  5590. Slashed = false;
  5591. RPunch = false;
  5592. Invisible = false;
  5593. RPunched = false;
  5594. LPunch = false;
  5595. LPunched = false;
  5596. }
  5597. local Touche = {char.Name, }
  5598.  
  5599.  
  5600. function genWeld(a,b)
  5601. local w = Instance.new("Weld",a)
  5602. w.Part0 = a
  5603. w.Part1 = b
  5604. return w
  5605. end
  5606. function weld(a, b)
  5607. local weld = Instance.new("Weld")
  5608. weld.Name = "W"
  5609. weld.Part0 = a
  5610. weld.Part1 = b
  5611. weld.C0 = a.CFrame:inverse() * b.CFrame
  5612. weld.Parent = a
  5613. return weld;
  5614. end
  5615. ----------------------------------------------------
  5616. function Lerp(c1,c2,al)
  5617. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  5618. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  5619. for i,v in pairs(com1) do
  5620. com1[i] = v+(com2[i]-v)*al
  5621. end
  5622. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  5623. end
  5624. ----------------------------------------------------
  5625. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  5626. local wld = Instance.new("Weld", wp1)
  5627. wld.Part0 = wp0
  5628. wld.Part1 = wp1
  5629. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  5630. end
  5631. ----------------------------------------------------
  5632. function weld5(part0, part1, c0, c1)
  5633. weeld=Instance.new("Weld", part0)
  5634. weeld.Part0=part0
  5635. weeld.Part1=part1
  5636. weeld.C0=c0
  5637. weeld.C1=c1
  5638. return weeld
  5639. end
  5640. ----------------------------------------------------
  5641. function HasntTouched(plrname)
  5642. local ret = true
  5643. for _, v in pairs(Touche) do
  5644. if v == plrname then
  5645. ret = false
  5646. end
  5647. end
  5648. return ret
  5649. end
  5650. ----------------------------------------------------
  5651. newWeld(torso, larm, -1.5, 0.5, 0)
  5652. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  5653. newWeld(torso, rarm, 1.5, 0.5, 0)
  5654. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  5655. newWeld(torso, hed, 0, 1.5, 0)
  5656. newWeld(torso, lleg, -0.5, -1, 0)
  5657. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  5658. newWeld(torso, rleg, 0.5, -1, 0)
  5659. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  5660. newWeld(root, torso, 0, -1, 0)
  5661. torso.Weld.C1 = CFrame.new(0, -1, 0)
  5662.  
  5663.  
  5664.  
  5665. p = Instance.new("Part")
  5666. p.BrickColor = BrickColor.new("Lime green")
  5667. p.Transparency = 1
  5668. TorsoColor = p.BrickColor
  5669.  
  5670. local Transforming = true
  5671. Human.WalkSpeed = 0
  5672. local fx = Instance.new("Part",Torso)
  5673. wit = p.BrickColor.Color
  5674. wit2 = Color3.new(0,255,0)
  5675. local glowz = Instance.new("ParticleEmitter",fx)
  5676. glowz.LightEmission = 1
  5677. glowz.Texture = "rbxassetid://284205403"
  5678. glowz.Color = ColorSequence.new(wit)
  5679. glowz.Size = NumberSequence.new(5)
  5680. glowz.Speed = NumberRange.new(25,50)
  5681. glowz.LockedToPart = false
  5682. glowz.Transparency = NumberSequence.new(0.75)
  5683. glowz.RotSpeed = NumberRange.new(-2000,2000)
  5684. glowz.Lifetime = NumberRange.new(1)
  5685. glowz.Rate = 50000
  5686. glowz.VelocitySpread = 9001
  5687. local glowz2 = Instance.new("ParticleEmitter",fx)
  5688. glowz2.LightEmission = 0.5
  5689. glowz.Texture = "rbxassetid://284205403"
  5690. glowz2.Color = ColorSequence.new(wit2)
  5691. glowz2.Size = NumberSequence.new(5)
  5692. glowz2.Speed = NumberRange.new(25,50)
  5693. glowz2.LockedToPart = false
  5694. glowz2.Transparency = NumberSequence.new(0.75)
  5695. glowz2.RotSpeed = NumberRange.new(-2000,2000)
  5696. glowz2.Lifetime = NumberRange.new(1)
  5697. glowz2.Rate = 50000
  5698. glowz2.VelocitySpread = 9001
  5699. fx.Anchored = true
  5700. fx.Material = "Neon"
  5701. fx.CanCollide = false
  5702. fx.Locked = true
  5703. fx.Transparency = 1
  5704. fx.Material = "Neon"
  5705. fx.Size = Vector3.new(1,1,1)
  5706. fx.TopSurface = "SmoothNoOutlines"
  5707. fx.BottomSurface = "SmoothNoOutlines"
  5708. fx.BrickColor = BrickColor.new("Really black")
  5709. fxm = Instance.new("SpecialMesh",fx)
  5710. fxm.MeshType = "Sphere"
  5711. local sa2 = Instance.new("Sound",Torso)
  5712. sa2.SoundId = "rbxassetid://93724183"
  5713. sa2.Pitch = 0.5
  5714. sa2.Volume = 5
  5715. sa2.Looped = false
  5716. sa2:Play()
  5717. local value = 1
  5718. fxm.Scale = Vector3.new(1,1,1)
  5719. for i = 1, 20 do rs:wait()
  5720. value = value - 0.05
  5721. fx.Transparency = fx.Transparency - (1/20)
  5722. fx.CFrame = Torso.CFrame
  5723. fxm.Scale = fxm.Scale + Vector3.new(value,value,value)
  5724. rs:wait()
  5725. end
  5726. ----------------------------------------------------
  5727. GroundWave1 = function()
  5728. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5729. local Colors = {"Pastel blue-green", "Really black"}
  5730. local wave = Instance.new("Part", Torso)
  5731. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  5732. wave.Anchored = true
  5733. wave.CanCollide = false
  5734. wave.Locked = true
  5735. wave.Size = Vector3.new(1, 1, 1)
  5736. wave.TopSurface = "Smooth"
  5737. wave.BottomSurface = "Smooth"
  5738. wave.Transparency = 0.35
  5739. wave.CFrame = HandCF
  5740. wm = Instance.new("SpecialMesh", wave)
  5741. wm.MeshId = "rbxassetid://3270017"
  5742. coroutine.wrap(function()
  5743. for i = 1, 30, 1 do
  5744. wm.Scale = Vector3.new(50, 50, 1 + i*50)
  5745. wave.Size = wm.Scale
  5746. wave.CFrame = HandCF
  5747. wave.Transparency = i/30
  5748. wait()
  5749. end
  5750. wait()
  5751. wave:Destroy()
  5752. end)()
  5753. end
  5754. ----------------------------------------------------
  5755.  
  5756.  
  5757. GroundWave3 = function()
  5758. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5759. local Colors = {"Lime green", "Lime green"}
  5760. local wave = Instance.new("Part", torso)
  5761. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  5762. wave.Anchored = true
  5763. wave.CanCollide = false
  5764. wave.Locked = true
  5765. wave.Size = Vector3.new(1, 1, 1)
  5766. wave.TopSurface = "Smooth"
  5767. wave.BottomSurface = "Smooth"
  5768. wave.Transparency = 0.35
  5769. wave.CFrame = HandCF
  5770. wm = Instance.new("SpecialMesh", wave)
  5771. wm.MeshId = "rbxassetid://3270017"
  5772. coroutine.wrap(function()
  5773. for i = 1, 14, 1 do
  5774. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  5775. wave.Size = wm.Scale
  5776. wave.CFrame = HandCF
  5777. wave.Transparency = i/14
  5778. wait()
  5779. end
  5780. wait()
  5781. wave:Destroy()
  5782. end)()
  5783. end
  5784.  
  5785.  
  5786.  
  5787.  
  5788.  
  5789. local acos = math.acos
  5790. local sqrt = math.sqrt
  5791. local Vec3 = Vector3.new
  5792. local fromAxisAngle = CFrame.fromAxisAngle
  5793.  
  5794. local function toAxisAngle(CFr)
  5795. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  5796. local Angle = math.acos((R00+R11+R22-1)/2)
  5797. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  5798. A = A == 0 and 0.00001 or A
  5799. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  5800. B = B == 0 and 0.00001 or B
  5801. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  5802. C = C == 0 and 0.00001 or C
  5803. local x = (R21-R12)/sqrt(A)
  5804. local y = (R02-R20)/sqrt(B)
  5805. local z = (R10-R01)/sqrt(C)
  5806. return Vec3(x,y,z),Angle
  5807. end
  5808.  
  5809. local acos = math.acos
  5810. local sqrt = math.sqrt
  5811. local Vec3 = Vector3.new
  5812. local fromAxisAngle = CFrame.fromAxisAngle
  5813.  
  5814. local function toAxisAngle(CFr)
  5815. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  5816. local Angle = math.acos((R00+R11+R22-1)/2)
  5817. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  5818. A = A == 0 and 0.00001 or A
  5819. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  5820. B = B == 0 and 0.00001 or B
  5821. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  5822. C = C == 0 and 0.00001 or C
  5823. local x = (R21-R12)/sqrt(A)
  5824. local y = (R02-R20)/sqrt(B)
  5825. local z = (R10-R01)/sqrt(C)
  5826. return Vec3(x,y,z),Angle
  5827. end
  5828.  
  5829. function ApplyTrig(Num,Func)
  5830. local Min,Max = Func(0),Func(1)
  5831. local i = Func(Num)
  5832. return (i-Min)/(Max-Min)
  5833. --[[if Func == "sin" then
  5834. return (math.sin((1-Num)*math.pi)+1)/2
  5835. elseif Func == "cos" then
  5836. return (math.cos((1-Num)*math.pi)+1)/2
  5837. end]]
  5838. end
  5839.  
  5840. function LerpCFrame(CFrame1,CFrame2,Num)
  5841. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  5842. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  5843. end
  5844.  
  5845.  
  5846.  
  5847. function Crater(Torso,Radius)
  5848. Spawn(function()
  5849. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  5850. local Ignore = {}
  5851. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  5852. if v.Character ~= nil then
  5853. Ignore[#Ignore+1] = v.Character
  5854. end
  5855. end
  5856. local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  5857. if Hit == nil then return end
  5858. local Parts = {}
  5859. for i = 1,360,10 do
  5860. local P = Instance.new("Part",Torso.Parent)
  5861. P.Anchored = true
  5862. P.FormFactor = "Custom"
  5863. P.BrickColor = BrickColor.new("Lime green")
  5864. P.Material = "Granite"
  5865. P.TopSurface = "Smooth"
  5866. P.BottomSurface = "Smooth"
  5867. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  5868. 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)))
  5869. 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}
  5870. if math.random(0,5) == 0 then -- rubble
  5871. local P = Instance.new("Part",Torso.Parent)
  5872. P.Anchored = true
  5873. P.FormFactor = "Custom"
  5874. P.BrickColor = BrickColor.new("Lime green")
  5875. P.Material = Hit.Material
  5876. P.TopSurface = "Smooth"
  5877. P.BottomSurface = "Smooth"
  5878. P.Size = Vector3.new(5,5,5)*(math.random(80,100)/100)
  5879. 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)))
  5880. 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}
  5881. end
  5882. end
  5883. for i = 0,1,0.05 do
  5884. for i2,v in pairs(Parts) do
  5885. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  5886. end
  5887. wait(0.02)
  5888. end
  5889. for i,v in pairs(Parts) do
  5890. if v[1].Size.X > 2.1 then
  5891. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  5892. end
  5893. v[1].Anchored = false
  5894. end
  5895. for i = 0,1,0.05 do
  5896. for i2,v in pairs(Parts) do
  5897. v[1].Transparency = i
  5898. if i == 1 then
  5899. v[1]:Destroy()
  5900. elseif i >= 0.25 then
  5901. v[1].CanCollide = false
  5902. end
  5903. end
  5904. wait(0.02)
  5905. end
  5906. Parts = nil
  5907. end)
  5908. end
  5909.  
  5910.  
  5911.  
  5912. GroundWave = function()
  5913. if Transforming == true then
  5914. local value = 5
  5915. local value2 = 10
  5916. local value3 = 20
  5917. local sa2 = Instance.new("Sound",Torso)
  5918. sa2.SoundId = "rbxassetid://393621716"
  5919. sa2.Pitch = 1
  5920. sa2.Volume = 10
  5921. sa2.Looped = false
  5922. sa2:Play()
  5923. local wave = Instance.new("Part", Torso)
  5924. local glowz = Instance.new("ParticleEmitter",wave)
  5925. glowz.LightEmission = 1
  5926. glowz.Texture = "rbxassetid://284205403"
  5927. glowz.Color = ColorSequence.new(wit)
  5928. glowz.Size = NumberSequence.new(30)
  5929. glowz.Speed = NumberRange.new(25,100)
  5930. glowz.LockedToPart = false
  5931. glowz.Transparency = NumberSequence.new(0.75)
  5932. glowz.RotSpeed = NumberRange.new(-2000,2000)
  5933. glowz.Lifetime = NumberRange.new(1)
  5934. glowz.Rate = 50000
  5935. glowz.VelocitySpread = 9001
  5936. local glowz2 = Instance.new("ParticleEmitter",wave)
  5937. glowz2.LightEmission = 1
  5938. glowz.Texture = "rbxassetid://284205403"
  5939. glowz2.Color = ColorSequence.new(wit)
  5940. glowz2.Size = NumberSequence.new(30)
  5941. glowz2.Speed = NumberRange.new(25,100)
  5942. glowz2.LockedToPart = false
  5943. glowz2.Transparency = NumberSequence.new(0.75)
  5944. glowz2.RotSpeed = NumberRange.new(-2000,2000)
  5945. glowz2.Lifetime = NumberRange.new(1)
  5946. glowz2.Rate = 50000
  5947. glowz2.VelocitySpread = 9001
  5948. wave.BrickColor = BrickColor.new("Really black")
  5949. wave.Anchored = true
  5950. wave.CanCollide = false
  5951. wave.Locked = true
  5952. wave.Size = Vector3.new(1, 1, 1)
  5953. wave.TopSurface = "Smooth"
  5954. wave.BottomSurface = "Smooth"
  5955. wave.Transparency = 0.35
  5956. wave.CFrame = fx.CFrame
  5957. wave.Material = "Neon"
  5958. wm = Instance.new("SpecialMesh", wave)
  5959. wm.MeshType = "Sphere"
  5960. wm.Scale = Vector3.new(1,1,1)
  5961. local wave2 = Instance.new("Part", Torso)
  5962. wave2.BrickColor = TorsoColor
  5963. wave2.Anchored = true
  5964. wave2.CanCollide = false
  5965. wave2.Locked = true
  5966. wave2.Size = Vector3.new(1, 1, 1)
  5967. wave2.TopSurface = "Smooth"
  5968. wave2.BottomSurface = "Smooth"
  5969. wave2.Transparency = 0.35
  5970. wave2.CFrame = fx.CFrame
  5971. wave2.Material = "Neon"
  5972. wm2 = Instance.new("SpecialMesh", wave2)
  5973. wm2.MeshType = "FileMesh"
  5974. wm2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5975. wm2.Scale = Vector3.new(1,1,1)
  5976. local wave3 = Instance.new("Part", Torso)
  5977. wave3.BrickColor = BrickColor.new("Really black")
  5978. wave3.Anchored = true
  5979. wave3.CanCollide = false
  5980. wave3.Locked = true
  5981. wave3.Size = Vector3.new(1, 1, 1)
  5982. wave3.TopSurface = "Smooth"
  5983. wave3.BottomSurface = "Smooth"
  5984. wave3.Transparency = 0.35
  5985. wave3.CFrame = fx.CFrame
  5986. wave3.Material = "Neon"
  5987. wm3 = Instance.new("SpecialMesh", wave3)
  5988. wm3.MeshType = "FileMesh"
  5989. wm3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5990. wm3.Scale = Vector3.new(1,1,1)
  5991. coroutine.wrap(function()
  5992. for i = 1, 18, 1 do
  5993. value = value - 0.5
  5994. value2 = value2 - 0.75*1.5
  5995. value3 = value3 - 0.475*1.5
  5996. wm.Scale = wm.Scale + Vector3.new(value*3.5,value*3.5,value*3.5)
  5997. wm2.Scale = wm.Scale + Vector3.new(value2*3.5,value2*3.5,0.5)
  5998. wm3.Scale = wm.Scale + Vector3.new(value3*3.5,value3*3.5,0.25)
  5999. --wave.Size = wm.Scale
  6000. wave.CFrame = fx.CFrame
  6001. wave.Transparency = i/14
  6002. --wave2.Size = wm2.Scale
  6003. wave2.CFrame = fx.CFrame
  6004. wave2.Rotation = Vector3.new(90, 0, 0)
  6005. wave2.Transparency = i/14
  6006. --wave3.Size = wm3.Scale
  6007. wave3.CFrame = fx.CFrame
  6008. wave3.Rotation = Vector3.new(90, 0, 0)
  6009. wave3.Transparency = i/14
  6010. wait()
  6011. glowz.Rate = 0
  6012. glowz2.Rate = 0
  6013. end
  6014. wait()
  6015. wave:Destroy()
  6016. wave2:Destroy()
  6017. wave3:Destroy()
  6018. end)()
  6019. elseif Transforming == false then
  6020. wait()
  6021. end
  6022. end
  6023.  
  6024. for i = 1, 100 do rs:wait()
  6025. fx.CFrame = Torso.CFrame
  6026. end
  6027.  
  6028. spawn(function()
  6029. while wait(1) do
  6030. GroundWave()
  6031. end
  6032. end)
  6033.  
  6034. wait(4)
  6035.  
  6036. Transforming = false
  6037.  
  6038.  
  6039.  
  6040. local value2 = 1
  6041. for i = 1, 20 do rs:wait()
  6042. value2 = value2 - 0.05
  6043. glowz.Rate = 0
  6044. glowz2.Rate = 0
  6045. fx.Transparency = fx.Transparency + (1/20)
  6046. fx.CFrame = torso.CFrame
  6047. fxm.Scale = fxm.Scale + Vector3.new(value2,value2,value2)
  6048. rs:wait()
  6049. end
  6050. glowz:Destroy()
  6051. glowz2:Destroy()
  6052.  
  6053. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  6054. local valuer = 5
  6055. local valuer2 = 10
  6056. local valuer3 = 15
  6057. local sa2 = Instance.new("Sound",torso)
  6058. sa2.SoundId = "rbxassetid://130972023"
  6059. sa2.Pitch = 1
  6060. sa2.Volume = 5
  6061. sa2.Looped = false
  6062. sa2:Play()
  6063. local sar2 = Instance.new("Sound",torso)
  6064. sar2.SoundId = "rbxassetid://153274423"
  6065. sar2.Pitch = 1
  6066. sar2.Volume = 5
  6067. sar2.Looped = false
  6068. sar2:Play()
  6069. local Mus = Instance.new("Sound",torso)
  6070. Mus.SoundId = "rbxassetid://397952612"
  6071. Mus.Pitch = 1
  6072. Mus.Volume = 6
  6073. Mus.Looped = true
  6074. Mus:Play()
  6075. Crater(torso,67)
  6076. local wave = Instance.new("Part", torso)
  6077. wave.BrickColor = TorsoColor
  6078. wave.Anchored = true
  6079. wave.CanCollide = false
  6080. wave.Locked = true
  6081. wave.Size = Vector3.new(1, 1, 1)
  6082. wave.TopSurface = "Smooth"
  6083. wave.BottomSurface = "Smooth"
  6084. wave.Transparency = 0.35
  6085. wave.CFrame = HandCF
  6086. wm = Instance.new("SpecialMesh", wave)
  6087. wm.MeshId = "rbxassetid://3270017"
  6088. local wave2 = Instance.new("Part", torso)
  6089. wave2.BrickColor = BrickColor.new("Really black")
  6090. wave2.Anchored = true
  6091. wave2.CanCollide = false
  6092. wave2.Locked = true
  6093. wave2.Size = Vector3.new(1, 1, 1)
  6094. wave2.TopSurface = "Smooth"
  6095. wave2.BottomSurface = "Smooth"
  6096. wave2.Transparency = 0.35
  6097. wave2.CFrame = HandCF
  6098. wm2 = Instance.new("SpecialMesh", wave2)
  6099. wm2.MeshId = "rbxassetid://3270017"
  6100. local wave3 = Instance.new("Part", torso)
  6101. wave3.BrickColor = TorsoColor
  6102. wave3.Anchored = true
  6103. wave3.CanCollide = false
  6104. wave3.Locked = true
  6105. wave3.Size = Vector3.new(1, 1, 1)
  6106. wave3.TopSurface = "Smooth"
  6107. wave3.BottomSurface = "Smooth"
  6108. wave3.Transparency = 0.35
  6109. wave3.CFrame = HandCF
  6110. wm3 = Instance.new("SpecialMesh", wave3)
  6111. wm3.MeshId = "rbxassetid://3270017"
  6112. coroutine.wrap(function()
  6113. for i = 1, 14, 1 do
  6114. valuer = valuer - 0.35
  6115. valuer2 = valuer - 0.45
  6116. valuer3 = valuer3 - 0.475
  6117. wm.Scale = wm.Scale + Vector3.new(valuer*2.5,valuer*2.5, 1 + i*200)
  6118. wave.Size = wm.Scale
  6119. wave.CFrame = HandCF
  6120. wave.Transparency = i/14
  6121. wm2.Scale = wm2.Scale + Vector3.new(valuer2*2.5,valuer2*2.5, 0 + i*10)
  6122. wave2.Size = wm2.Scale
  6123. wave2.CFrame = HandCF
  6124. wave2.Transparency = i/14
  6125. wm3.Scale = wm3.Scale + Vector3.new(valuer3*2.5,valuer3*2.5, 1)
  6126. wave3.Size = wm2.Scale
  6127. wave3.CFrame = HandCF
  6128. wave3.Transparency = i/14
  6129. wait()
  6130. end
  6131. wait()
  6132. wave:Destroy()
  6133. wave2:Destroy()
  6134. end)()
  6135. hum.WalkSpeed = 16
  6136.  
  6137.  
  6138.  
  6139.  
  6140.  
  6141.  
  6142.  
  6143.  
  6144.  
  6145. CV="Pastel blue"
  6146.  
  6147. local txt = Instance.new("BillboardGui", Char)
  6148. txt.Adornee = Char .Head
  6149. txt.Name = "_status"
  6150. txt.Size = UDim2.new(2, 0, 1.2, 0)
  6151. txt.StudsOffset = Vector3.new(-9, 8, 0)
  6152. local text = Instance.new("TextLabel", txt)
  6153. text.Size = UDim2.new(10, 0, 7, 0)
  6154. text.FontSize = "Size24"
  6155. text.TextScaled = true
  6156. text.TextTransparency = 0
  6157. text.BackgroundTransparency = 1
  6158. text.TextTransparency = 0
  6159. text.TextStrokeTransparency = 0
  6160. text.Font = "Antique"
  6161. text.TextStrokeColor3 = Color3.new(0,255,0)
  6162.  
  6163. v=Instance.new("Part")
  6164. v.Name = "ColorBrick"
  6165. v.Parent=Player.Character
  6166. v.FormFactor="Symmetric"
  6167. v.Anchored=true
  6168. v.CanCollide=false
  6169. v.BottomSurface="Smooth"
  6170. v.TopSurface="Smooth"
  6171. v.Size=Vector3.new(10,5,3)
  6172. v.Transparency=1
  6173. v.CFrame=Char.Torso.CFrame
  6174. v.BrickColor=BrickColor.new(CV)
  6175. v.Transparency=1
  6176. text.TextColor3 = Color3.new(0,0,0)
  6177. v.Shape="Block"
  6178. text.Text = Char.Name
  6179.  
  6180. Player:ClearCharacterAppearance()
  6181. wait(0.1)
  6182. Player.Character.Head.BrickColor = BrickColor.new("Really black")
  6183. Player.Character.Torso.BrickColor = BrickColor.new("Really black")
  6184. Player.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  6185. Player.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  6186. Player.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  6187. Player.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  6188. Player.Character.Head.face:Destroy()
  6189.  
  6190.  
  6191.  
  6192.  
  6193.  
  6194.  
  6195.  
  6196. local selectionBoxOfTorso = Instance.new("SelectionBox",Torso)
  6197. selectionBoxOfTorso.Adornee = Torso
  6198. selectionBoxOfTorso.Color = BrickColor.new("Lime green")
  6199. selectionBoxOfTorso.LineThickness = 0.01
  6200. selectionBoxOfTorso.Transparency = 0
  6201.  
  6202. local selectionBoxOfRightArm = Instance.new("SelectionBox",Char["Right Arm"])
  6203. selectionBoxOfRightArm.Adornee = Char["Right Arm"]
  6204. selectionBoxOfRightArm.Color = BrickColor.new("Lime green")
  6205. selectionBoxOfRightArm.LineThickness = 0.01
  6206. selectionBoxOfRightArm.Transparency = 0
  6207.  
  6208. local selectionBoxOfRightLeg = Instance.new("SelectionBox",Char["Right Leg"])
  6209. selectionBoxOfRightLeg.Adornee = Char["Right Leg"]
  6210. selectionBoxOfRightLeg.Color = BrickColor.new("Lime green")
  6211. selectionBoxOfRightLeg.LineThickness = 0.01
  6212. selectionBoxOfRightLeg.Transparency = 0
  6213.  
  6214. local selectionBoxOfLeftArm = Instance.new("SelectionBox",Char["Left Arm"])
  6215. selectionBoxOfLeftArm.Adornee = Char["Left Arm"]
  6216. selectionBoxOfLeftArm.Color = BrickColor.new("Lime green")
  6217. selectionBoxOfLeftArm.LineThickness = 0.01
  6218. selectionBoxOfLeftArm.Transparency = 0
  6219.  
  6220. local selectionBoxOfLeftLeg = Instance.new("SelectionBox",Char["Left Leg"])
  6221. selectionBoxOfLeftLeg.Adornee = Char["Left Leg"]
  6222. selectionBoxOfLeftLeg.Color = BrickColor.new("Lime green")
  6223. selectionBoxOfLeftLeg.LineThickness = 0.01
  6224. selectionBoxOfLeftLeg.Transparency = 0
  6225.  
  6226.  
  6227. LightOnBody = Instance.new("PointLight", Head)
  6228. LightOnBody.Brightness = 3000
  6229. LightOnBody.Range = 20
  6230. LightOnBody.Color = Color3.new(0, 225, 0)
  6231.  
  6232.  
  6233.  
  6234. ----------------------------------------------------------------------
  6235. local m2 = Instance.new("Model")
  6236. m2.Name = "Wings"
  6237. p1 = Instance.new("Part", m2)
  6238. p1.BrickColor = BrickColor.new("Lime green")
  6239. p1.Material = Enum.Material.Neon
  6240. p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
  6241. p1.FormFactor = Enum.FormFactor.Custom
  6242. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  6243. p1.BottomSurface = Enum.SurfaceType.Smooth
  6244. p1.TopSurface = Enum.SurfaceType.Smooth
  6245. b1 = Instance.new("SpecialMesh", p1)
  6246. b1.MeshType = Enum.MeshType.Sphere
  6247. b1.Name = "Mesh"
  6248. p2 = Instance.new("Part", m2)
  6249. p2.BrickColor = BrickColor.new("Lime green")
  6250. p2.Material = Enum.Material.SmoothPlastic
  6251. p2.Reflectance = 0.30000001192093
  6252. p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
  6253. p2.CanCollide = false
  6254. p2.FormFactor = Enum.FormFactor.Custom
  6255. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6256. p2.BottomSurface = Enum.SurfaceType.Smooth
  6257. p2.TopSurface = Enum.SurfaceType.Smooth
  6258. b2 = Instance.new("SpecialMesh", p2)
  6259. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6260. b2.TextureId = ""
  6261. b2.MeshType = Enum.MeshType.FileMesh
  6262. b2.Name = "Mesh"
  6263. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6264. p3 = Instance.new("Part", m2)
  6265. p3.BrickColor = BrickColor.new("Lime green")
  6266. p3.Material = Enum.Material.SmoothPlastic
  6267. p3.Reflectance = 0.30000001192093
  6268. p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
  6269. p3.CanCollide = false
  6270. p3.FormFactor = Enum.FormFactor.Custom
  6271. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6272. p3.BottomSurface = Enum.SurfaceType.Smooth
  6273. p3.TopSurface = Enum.SurfaceType.Smooth
  6274. b3 = Instance.new("SpecialMesh", p3)
  6275. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6276. b3.TextureId = ""
  6277. b3.MeshType = Enum.MeshType.FileMesh
  6278. b3.Name = "Mesh"
  6279. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6280. p4 = Instance.new("Part", m2)
  6281. p4.BrickColor = BrickColor.new("Lime green")
  6282. p4.Material = Enum.Material.SmoothPlastic
  6283. p4.Reflectance = 0.30000001192093
  6284. p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
  6285. p4.CanCollide = false
  6286. p4.FormFactor = Enum.FormFactor.Custom
  6287. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6288. p4.BottomSurface = Enum.SurfaceType.Smooth
  6289. p4.TopSurface = Enum.SurfaceType.Smooth
  6290. b4 = Instance.new("SpecialMesh", p4)
  6291. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6292. b4.TextureId = ""
  6293. b4.MeshType = Enum.MeshType.FileMesh
  6294. b4.Name = "Mesh"
  6295. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6296. p5 = Instance.new("Part", m2)
  6297. p5.BrickColor = BrickColor.new("Lime green")
  6298. p5.Material = Enum.Material.SmoothPlastic
  6299. p5.Reflectance = 0.30000001192093
  6300. p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
  6301. p5.CanCollide = false
  6302. p5.FormFactor = Enum.FormFactor.Custom
  6303. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6304. p5.BottomSurface = Enum.SurfaceType.Smooth
  6305. p5.TopSurface = Enum.SurfaceType.Smooth
  6306. b5 = Instance.new("SpecialMesh", p5)
  6307. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6308. b5.TextureId = ""
  6309. b5.MeshType = Enum.MeshType.FileMesh
  6310. b5.Name = "Mesh"
  6311. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6312. p6 = Instance.new("Part", m2)
  6313. p6.BrickColor = BrickColor.new("Lime green")
  6314. p6.Material = Enum.Material.SmoothPlastic
  6315. p6.Reflectance = 0.30000001192093
  6316. p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
  6317. p6.CanCollide = false
  6318. p6.FormFactor = Enum.FormFactor.Custom
  6319. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6320. p6.BottomSurface = Enum.SurfaceType.Smooth
  6321. p6.TopSurface = Enum.SurfaceType.Smooth
  6322. b6 = Instance.new("SpecialMesh", p6)
  6323. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6324. b6.TextureId = ""
  6325. b6.MeshType = Enum.MeshType.FileMesh
  6326. b6.Name = "Mesh"
  6327. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6328. p7 = Instance.new("Part", m2)
  6329. p7.BrickColor = BrickColor.new("Lime green")
  6330. p7.Material = Enum.Material.SmoothPlastic
  6331. p7.Reflectance = 0.30000001192093
  6332. p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
  6333. p7.CanCollide = false
  6334. p7.FormFactor = Enum.FormFactor.Custom
  6335. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6336. p7.BottomSurface = Enum.SurfaceType.Smooth
  6337. p7.TopSurface = Enum.SurfaceType.Smooth
  6338. b7 = Instance.new("SpecialMesh", p7)
  6339. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6340. b7.TextureId = ""
  6341. b7.MeshType = Enum.MeshType.FileMesh
  6342. b7.Name = "Mesh"
  6343. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6344. p8 = Instance.new("Part", m2)
  6345. p8.BrickColor = BrickColor.new("Lime green")
  6346. p8.Material = Enum.Material.SmoothPlastic
  6347. p8.Reflectance = 0.30000001192093
  6348. p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
  6349. p8.CanCollide = false
  6350. p8.FormFactor = Enum.FormFactor.Custom
  6351. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6352. p8.BottomSurface = Enum.SurfaceType.Smooth
  6353. p8.TopSurface = Enum.SurfaceType.Smooth
  6354. b8 = Instance.new("SpecialMesh", p8)
  6355. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6356. b8.TextureId = ""
  6357. b8.MeshType = Enum.MeshType.FileMesh
  6358. b8.Name = "Mesh"
  6359. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6360. p9 = Instance.new("Part", m2)
  6361. p9.BrickColor = BrickColor.new("Lime green")
  6362. p9.Material = Enum.Material.SmoothPlastic
  6363. p9.Reflectance = 0.30000001192093
  6364. p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
  6365. p9.CanCollide = false
  6366. p9.FormFactor = Enum.FormFactor.Custom
  6367. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6368. p9.BottomSurface = Enum.SurfaceType.Smooth
  6369. p9.TopSurface = Enum.SurfaceType.Smooth
  6370. b9 = Instance.new("SpecialMesh", p9)
  6371. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6372. b9.TextureId = ""
  6373. b9.MeshType = Enum.MeshType.FileMesh
  6374. b9.Name = "Mesh"
  6375. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6376. p10 = Instance.new("Part", m2)
  6377. p10.BrickColor = BrickColor.new("Lime green")
  6378. p10.Material = Enum.Material.SmoothPlastic
  6379. p10.Reflectance = 0.30000001192093
  6380. p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
  6381. p10.CanCollide = false
  6382. p10.FormFactor = Enum.FormFactor.Custom
  6383. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6384. p10.BottomSurface = Enum.SurfaceType.Smooth
  6385. p10.TopSurface = Enum.SurfaceType.Smooth
  6386. b10 = Instance.new("SpecialMesh", p10)
  6387. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6388. b10.TextureId = ""
  6389. b10.MeshType = Enum.MeshType.FileMesh
  6390. b10.Name = "Mesh"
  6391. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6392. p11 = Instance.new("Part", m2)
  6393. p11.BrickColor = BrickColor.new("Lime green")
  6394. p11.Material = Enum.Material.SmoothPlastic
  6395. p11.Reflectance = 0.30000001192093
  6396. p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
  6397. p11.CanCollide = false
  6398. p11.FormFactor = Enum.FormFactor.Custom
  6399. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6400. p11.BottomSurface = Enum.SurfaceType.Smooth
  6401. p11.TopSurface = Enum.SurfaceType.Smooth
  6402. b11 = Instance.new("SpecialMesh", p11)
  6403. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6404. b11.TextureId = ""
  6405. b11.MeshType = Enum.MeshType.FileMesh
  6406. b11.Name = "Mesh"
  6407. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6408. p12 = Instance.new("Part", m2)
  6409. p12.BrickColor = BrickColor.new("Lime green")
  6410. p12.Material = Enum.Material.SmoothPlastic
  6411. p12.Reflectance = 0.30000001192093
  6412. p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
  6413. p12.CanCollide = false
  6414. p12.FormFactor = Enum.FormFactor.Custom
  6415. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6416. p12.BottomSurface = Enum.SurfaceType.Smooth
  6417. p12.TopSurface = Enum.SurfaceType.Smooth
  6418. b12 = Instance.new("SpecialMesh", p12)
  6419. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6420. b12.TextureId = ""
  6421. b12.MeshType = Enum.MeshType.FileMesh
  6422. b12.Name = "Mesh"
  6423. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6424. p13 = Instance.new("Part", m2)
  6425. p13.BrickColor = BrickColor.new("Lime green")
  6426. p13.Material = Enum.Material.SmoothPlastic
  6427. p13.Reflectance = 0.30000001192093
  6428. p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
  6429. p13.CanCollide = false
  6430. p13.FormFactor = Enum.FormFactor.Custom
  6431. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6432. p13.BottomSurface = Enum.SurfaceType.Smooth
  6433. p13.TopSurface = Enum.SurfaceType.Smooth
  6434. b13 = Instance.new("SpecialMesh", p13)
  6435. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6436. b13.TextureId = ""
  6437. b13.MeshType = Enum.MeshType.FileMesh
  6438. b13.Name = "Mesh"
  6439. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6440. p14 = Instance.new("Part", m2)
  6441. p14.BrickColor = BrickColor.new("Lime green")
  6442. p14.Material = Enum.Material.SmoothPlastic
  6443. p14.Reflectance = 0.30000001192093
  6444. p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
  6445. p14.CanCollide = false
  6446. p14.FormFactor = Enum.FormFactor.Custom
  6447. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6448. p14.BottomSurface = Enum.SurfaceType.Smooth
  6449. p14.TopSurface = Enum.SurfaceType.Smooth
  6450. b14 = Instance.new("SpecialMesh", p14)
  6451. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6452. b14.TextureId = ""
  6453. b14.MeshType = Enum.MeshType.FileMesh
  6454. b14.Name = "Mesh"
  6455. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6456. p15 = Instance.new("Part", m2)
  6457. p15.BrickColor = BrickColor.new("Lime green")
  6458. p15.Material = Enum.Material.SmoothPlastic
  6459. p15.Reflectance = 0.30000001192093
  6460. p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
  6461. p15.CanCollide = false
  6462. p15.FormFactor = Enum.FormFactor.Custom
  6463. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6464. p15.BottomSurface = Enum.SurfaceType.Smooth
  6465. p15.TopSurface = Enum.SurfaceType.Smooth
  6466. b15 = Instance.new("SpecialMesh", p15)
  6467. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6468. b15.TextureId = ""
  6469. b15.MeshType = Enum.MeshType.FileMesh
  6470. b15.Name = "Mesh"
  6471. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6472. p16 = Instance.new("Part", m2)
  6473. p16.BrickColor = BrickColor.new("Lime green")
  6474. p16.Material = Enum.Material.SmoothPlastic
  6475. p16.Reflectance = 0.30000001192093
  6476. p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
  6477. p16.CanCollide = false
  6478. p16.FormFactor = Enum.FormFactor.Custom
  6479. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6480. p16.BottomSurface = Enum.SurfaceType.Smooth
  6481. p16.TopSurface = Enum.SurfaceType.Smooth
  6482. b16 = Instance.new("SpecialMesh", p16)
  6483. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6484. b16.TextureId = ""
  6485. b16.MeshType = Enum.MeshType.FileMesh
  6486. b16.Name = "Mesh"
  6487. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6488. p17 = Instance.new("Part", m2)
  6489. p17.BrickColor = BrickColor.new("Lime green")
  6490. p17.Material = Enum.Material.SmoothPlastic
  6491. p17.Reflectance = 0.30000001192093
  6492. p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
  6493. p17.CanCollide = false
  6494. p17.FormFactor = Enum.FormFactor.Custom
  6495. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6496. p17.BottomSurface = Enum.SurfaceType.Smooth
  6497. p17.TopSurface = Enum.SurfaceType.Smooth
  6498. b17 = Instance.new("SpecialMesh", p17)
  6499. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6500. b17.TextureId = ""
  6501. b17.MeshType = Enum.MeshType.FileMesh
  6502. b17.Name = "Mesh"
  6503. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6504. p18 = Instance.new("Part", m2)
  6505. p18.BrickColor = BrickColor.new("Lime green")
  6506. p18.Material = Enum.Material.SmoothPlastic
  6507. p18.Reflectance = 0.30000001192093
  6508. p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
  6509. p18.CanCollide = false
  6510. p18.FormFactor = Enum.FormFactor.Custom
  6511. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6512. p18.BottomSurface = Enum.SurfaceType.Smooth
  6513. p18.TopSurface = Enum.SurfaceType.Smooth
  6514. b18 = Instance.new("SpecialMesh", p18)
  6515. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6516. b18.TextureId = ""
  6517. b18.MeshType = Enum.MeshType.FileMesh
  6518. b18.Name = "Mesh"
  6519. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6520. p19 = Instance.new("Part", m2)
  6521. p19.BrickColor = BrickColor.new("Lime green")
  6522. p19.Material = Enum.Material.SmoothPlastic
  6523. p19.Reflectance = 0.30000001192093
  6524. p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
  6525. p19.CanCollide = false
  6526. p19.FormFactor = Enum.FormFactor.Custom
  6527. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6528. p19.BottomSurface = Enum.SurfaceType.Smooth
  6529. p19.TopSurface = Enum.SurfaceType.Smooth
  6530. b19 = Instance.new("SpecialMesh", p19)
  6531. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6532. b19.TextureId = ""
  6533. b19.MeshType = Enum.MeshType.FileMesh
  6534. b19.Name = "Mesh"
  6535. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6536. p20 = Instance.new("Part", m2)
  6537. p20.BrickColor = BrickColor.new("Lime green")
  6538. p20.Material = Enum.Material.SmoothPlastic
  6539. p20.Reflectance = 0.30000001192093
  6540. p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
  6541. p20.CanCollide = false
  6542. p20.FormFactor = Enum.FormFactor.Custom
  6543. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6544. p20.BottomSurface = Enum.SurfaceType.Smooth
  6545. p20.TopSurface = Enum.SurfaceType.Smooth
  6546. b20 = Instance.new("SpecialMesh", p20)
  6547. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6548. b20.TextureId = ""
  6549. b20.MeshType = Enum.MeshType.FileMesh
  6550. b20.Name = "Mesh"
  6551. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6552. p21 = Instance.new("Part", m2)
  6553. p21.BrickColor = BrickColor.new("Lime green")
  6554. p21.Material = Enum.Material.SmoothPlastic
  6555. p21.Reflectance = 0.30000001192093
  6556. p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
  6557. p21.CanCollide = false
  6558. p21.FormFactor = Enum.FormFactor.Custom
  6559. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6560. p21.BottomSurface = Enum.SurfaceType.Smooth
  6561. p21.TopSurface = Enum.SurfaceType.Smooth
  6562. b21 = Instance.new("SpecialMesh", p21)
  6563. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6564. b21.TextureId = ""
  6565. b21.MeshType = Enum.MeshType.FileMesh
  6566. b21.Name = "Mesh"
  6567. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6568. p22 = Instance.new("Part", m2)
  6569. p22.BrickColor = BrickColor.new("Lime green")
  6570. p22.Material = Enum.Material.SmoothPlastic
  6571. p22.Reflectance = 0.30000001192093
  6572. p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
  6573. p22.CanCollide = false
  6574. p22.FormFactor = Enum.FormFactor.Custom
  6575. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6576. p22.BottomSurface = Enum.SurfaceType.Smooth
  6577. p22.TopSurface = Enum.SurfaceType.Smooth
  6578. b22 = Instance.new("SpecialMesh", p22)
  6579. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6580. b22.TextureId = ""
  6581. b22.MeshType = Enum.MeshType.FileMesh
  6582. b22.Name = "Mesh"
  6583. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6584. p23 = Instance.new("Part", m2)
  6585. p23.BrickColor = BrickColor.new("Lime green")
  6586. p23.Material = Enum.Material.SmoothPlastic
  6587. p23.Reflectance = 0.30000001192093
  6588. p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
  6589. p23.CanCollide = false
  6590. p23.FormFactor = Enum.FormFactor.Custom
  6591. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6592. p23.BottomSurface = Enum.SurfaceType.Smooth
  6593. p23.TopSurface = Enum.SurfaceType.Smooth
  6594. b23 = Instance.new("SpecialMesh", p23)
  6595. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6596. b23.TextureId = ""
  6597. b23.MeshType = Enum.MeshType.FileMesh
  6598. b23.Name = "Mesh"
  6599. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6600. p24 = Instance.new("Part", m2)
  6601. p24.BrickColor = BrickColor.new("Lime green")
  6602. p24.Material = Enum.Material.SmoothPlastic
  6603. p24.Reflectance = 0.30000001192093
  6604. p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
  6605. p24.CanCollide = false
  6606. p24.FormFactor = Enum.FormFactor.Custom
  6607. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6608. p24.BottomSurface = Enum.SurfaceType.Smooth
  6609. p24.TopSurface = Enum.SurfaceType.Smooth
  6610. b24 = Instance.new("SpecialMesh", p24)
  6611. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6612. b24.TextureId = ""
  6613. b24.MeshType = Enum.MeshType.FileMesh
  6614. b24.Name = "Mesh"
  6615. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6616. p25 = Instance.new("Part", m2)
  6617. p25.BrickColor = BrickColor.new("Lime green")
  6618. p25.Material = Enum.Material.SmoothPlastic
  6619. p25.Reflectance = 0.30000001192093
  6620. p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
  6621. p25.CanCollide = false
  6622. p25.FormFactor = Enum.FormFactor.Custom
  6623. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6624. p25.BottomSurface = Enum.SurfaceType.Smooth
  6625. p25.TopSurface = Enum.SurfaceType.Smooth
  6626. b25 = Instance.new("SpecialMesh", p25)
  6627. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6628. b25.TextureId = ""
  6629. b25.MeshType = Enum.MeshType.FileMesh
  6630. b25.Name = "Mesh"
  6631. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6632. p26 = Instance.new("Part", m2)
  6633. p26.BrickColor = BrickColor.new("Lime green")
  6634. p26.Material = Enum.Material.SmoothPlastic
  6635. p26.Reflectance = 0.30000001192093
  6636. p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
  6637. p26.CanCollide = false
  6638. p26.FormFactor = Enum.FormFactor.Custom
  6639. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6640. p26.BottomSurface = Enum.SurfaceType.Smooth
  6641. p26.TopSurface = Enum.SurfaceType.Smooth
  6642. b26 = Instance.new("SpecialMesh", p26)
  6643. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6644. b26.TextureId = ""
  6645. b26.MeshType = Enum.MeshType.FileMesh
  6646. b26.Name = "Mesh"
  6647. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6648. p27 = Instance.new("Part", m2)
  6649. p27.BrickColor = BrickColor.new("Lime green")
  6650. p27.Material = Enum.Material.SmoothPlastic
  6651. p27.Reflectance = 0.30000001192093
  6652. p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
  6653. p27.CanCollide = false
  6654. p27.FormFactor = Enum.FormFactor.Custom
  6655. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6656. p27.BottomSurface = Enum.SurfaceType.Smooth
  6657. p27.TopSurface = Enum.SurfaceType.Smooth
  6658. b27 = Instance.new("SpecialMesh", p27)
  6659. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6660. b27.TextureId = ""
  6661. b27.MeshType = Enum.MeshType.FileMesh
  6662. b27.Name = "Mesh"
  6663. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6664. p28 = Instance.new("Part", m2)
  6665. p28.BrickColor = BrickColor.new("Lime green")
  6666. p28.Material = Enum.Material.SmoothPlastic
  6667. p28.Reflectance = 0.30000001192093
  6668. p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
  6669. p28.CanCollide = false
  6670. p28.FormFactor = Enum.FormFactor.Custom
  6671. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6672. p28.BottomSurface = Enum.SurfaceType.Smooth
  6673. p28.TopSurface = Enum.SurfaceType.Smooth
  6674. b28 = Instance.new("SpecialMesh", p28)
  6675. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6676. b28.TextureId = ""
  6677. b28.MeshType = Enum.MeshType.FileMesh
  6678. b28.Name = "Mesh"
  6679. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6680. p29 = Instance.new("Part", m2)
  6681. p29.BrickColor = BrickColor.new("Lime green")
  6682. p29.Material = Enum.Material.Neon
  6683. p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
  6684. p29.FormFactor = Enum.FormFactor.Custom
  6685. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  6686. p29.BottomSurface = Enum.SurfaceType.Smooth
  6687. p29.TopSurface = Enum.SurfaceType.Smooth
  6688. b29 = Instance.new("SpecialMesh", p29)
  6689. b29.MeshType = Enum.MeshType.Sphere
  6690. b29.Name = "Mesh"
  6691. p30 = Instance.new("Part", m2)
  6692. p30.BrickColor = BrickColor.new("Lime green")
  6693. p30.Material = Enum.Material.SmoothPlastic
  6694. p30.Reflectance = 0.30000001192093
  6695. p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
  6696. p30.CanCollide = false
  6697. p30.FormFactor = Enum.FormFactor.Custom
  6698. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6699. p30.BottomSurface = Enum.SurfaceType.Smooth
  6700. p30.TopSurface = Enum.SurfaceType.Smooth
  6701. b30 = Instance.new("SpecialMesh", p30)
  6702. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6703. b30.TextureId = ""
  6704. b30.MeshType = Enum.MeshType.FileMesh
  6705. b30.Name = "Mesh"
  6706. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6707. p31 = Instance.new("Part", m2)
  6708. p31.BrickColor = BrickColor.new("Lime green")
  6709. p31.Material = Enum.Material.SmoothPlastic
  6710. p31.Reflectance = 0.30000001192093
  6711. p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
  6712. p31.CanCollide = false
  6713. p31.FormFactor = Enum.FormFactor.Custom
  6714. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6715. p31.BottomSurface = Enum.SurfaceType.Smooth
  6716. p31.TopSurface = Enum.SurfaceType.Smooth
  6717. b31 = Instance.new("SpecialMesh", p31)
  6718. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6719. b31.TextureId = ""
  6720. b31.MeshType = Enum.MeshType.FileMesh
  6721. b31.Name = "Mesh"
  6722. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6723. p32 = Instance.new("Part", m2)
  6724. p32.BrickColor = BrickColor.new("Lime green")
  6725. p32.Material = Enum.Material.SmoothPlastic
  6726. p32.Reflectance = 0.30000001192093
  6727. p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
  6728. p32.CanCollide = false
  6729. p32.FormFactor = Enum.FormFactor.Custom
  6730. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6731. p32.BottomSurface = Enum.SurfaceType.Smooth
  6732. p32.TopSurface = Enum.SurfaceType.Smooth
  6733. b32 = Instance.new("SpecialMesh", p32)
  6734. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6735. b32.TextureId = ""
  6736. b32.MeshType = Enum.MeshType.FileMesh
  6737. b32.Name = "Mesh"
  6738. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6739. p33 = Instance.new("Part", m2)
  6740. p33.BrickColor = BrickColor.new("Lime green")
  6741. p33.Material = Enum.Material.Neon
  6742. p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
  6743. p33.FormFactor = Enum.FormFactor.Custom
  6744. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  6745. p33.BottomSurface = Enum.SurfaceType.Smooth
  6746. p33.TopSurface = Enum.SurfaceType.Smooth
  6747. b33 = Instance.new("SpecialMesh", p33)
  6748. b33.MeshType = Enum.MeshType.Sphere
  6749. b33.Name = "Mesh"
  6750. p34 = Instance.new("Part", m2)
  6751. p34.BrickColor = BrickColor.new("Lime green")
  6752. p34.Material = Enum.Material.SmoothPlastic
  6753. p34.Reflectance = 0.30000001192093
  6754. p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
  6755. p34.CanCollide = false
  6756. p34.FormFactor = Enum.FormFactor.Custom
  6757. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6758. p34.BottomSurface = Enum.SurfaceType.Smooth
  6759. p34.TopSurface = Enum.SurfaceType.Smooth
  6760. b34 = Instance.new("SpecialMesh", p34)
  6761. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6762. b34.TextureId = ""
  6763. b34.MeshType = Enum.MeshType.FileMesh
  6764. b34.Name = "Mesh"
  6765. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6766. p35 = Instance.new("Part", m2)
  6767. p35.BrickColor = BrickColor.new("Lime green")
  6768. p35.Material = Enum.Material.SmoothPlastic
  6769. p35.Reflectance = 0.30000001192093
  6770. p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
  6771. p35.CanCollide = false
  6772. p35.FormFactor = Enum.FormFactor.Custom
  6773. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6774. p35.BottomSurface = Enum.SurfaceType.Smooth
  6775. p35.TopSurface = Enum.SurfaceType.Smooth
  6776. b35 = Instance.new("SpecialMesh", p35)
  6777. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6778. b35.TextureId = ""
  6779. b35.MeshType = Enum.MeshType.FileMesh
  6780. b35.Name = "Mesh"
  6781. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6782. p36 = Instance.new("Part", m2)
  6783. p36.BrickColor = BrickColor.new("Lime green")
  6784. p36.Material = Enum.Material.SmoothPlastic
  6785. p36.Reflectance = 0.30000001192093
  6786. p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
  6787. p36.CanCollide = false
  6788. p36.FormFactor = Enum.FormFactor.Custom
  6789. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6790. p36.BottomSurface = Enum.SurfaceType.Smooth
  6791. p36.TopSurface = Enum.SurfaceType.Smooth
  6792. b36 = Instance.new("SpecialMesh", p36)
  6793. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6794. b36.TextureId = ""
  6795. b36.MeshType = Enum.MeshType.FileMesh
  6796. b36.Name = "Mesh"
  6797. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6798. p37 = Instance.new("Part", m2)
  6799. p37.BrickColor = BrickColor.new("Lime green")
  6800. p37.Material = Enum.Material.Neon
  6801. p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
  6802. p37.FormFactor = Enum.FormFactor.Custom
  6803. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  6804. p37.BottomSurface = Enum.SurfaceType.Smooth
  6805. p37.TopSurface = Enum.SurfaceType.Smooth
  6806. b37 = Instance.new("SpecialMesh", p37)
  6807. b37.MeshType = Enum.MeshType.Sphere
  6808. b37.Name = "Mesh"
  6809. p38 = Instance.new("Part", m2)
  6810. p38.BrickColor = BrickColor.new("Lime green")
  6811. p38.Material = Enum.Material.Neon
  6812. p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
  6813. p38.FormFactor = Enum.FormFactor.Custom
  6814. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  6815. p38.BottomSurface = Enum.SurfaceType.Smooth
  6816. p38.TopSurface = Enum.SurfaceType.Smooth
  6817. b38 = Instance.new("SpecialMesh", p38)
  6818. b38.MeshType = Enum.MeshType.Sphere
  6819. b38.Name = "Mesh"
  6820. p39 = Instance.new("Part", m2)
  6821. p39.BrickColor = BrickColor.new("Lime green")
  6822. p39.Material = Enum.Material.SmoothPlastic
  6823. p39.Reflectance = 0.30000001192093
  6824. p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  6825. p39.CanCollide = false
  6826. p39.FormFactor = Enum.FormFactor.Custom
  6827. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6828. p39.BottomSurface = Enum.SurfaceType.Smooth
  6829. p39.TopSurface = Enum.SurfaceType.Smooth
  6830. b39 = Instance.new("SpecialMesh", p39)
  6831. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6832. b39.TextureId = ""
  6833. b39.MeshType = Enum.MeshType.FileMesh
  6834. b39.Name = "Mesh"
  6835. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6836. p40 = Instance.new("Part", m2)
  6837. p40.BrickColor = BrickColor.new("Lime green")
  6838. p40.Material = Enum.Material.SmoothPlastic
  6839. p40.Reflectance = 0.30000001192093
  6840. p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  6841. p40.CanCollide = false
  6842. p40.FormFactor = Enum.FormFactor.Custom
  6843. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6844. p40.BottomSurface = Enum.SurfaceType.Smooth
  6845. p40.TopSurface = Enum.SurfaceType.Smooth
  6846. b40 = Instance.new("SpecialMesh", p40)
  6847. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6848. b40.TextureId = ""
  6849. b40.MeshType = Enum.MeshType.FileMesh
  6850. b40.Name = "Mesh"
  6851. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6852. p41 = Instance.new("Part", m2)
  6853. p41.BrickColor = BrickColor.new("Lime green")
  6854. p41.Material = Enum.Material.SmoothPlastic
  6855. p41.Reflectance = 0.30000001192093
  6856. p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  6857. p41.CanCollide = false
  6858. p41.FormFactor = Enum.FormFactor.Custom
  6859. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6860. p41.BottomSurface = Enum.SurfaceType.Smooth
  6861. p41.TopSurface = Enum.SurfaceType.Smooth
  6862. b41 = Instance.new("SpecialMesh", p41)
  6863. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6864. b41.TextureId = ""
  6865. b41.MeshType = Enum.MeshType.FileMesh
  6866. b41.Name = "Mesh"
  6867. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6868. p42 = Instance.new("Part", m2)
  6869. p42.BrickColor = BrickColor.new("Lime green")
  6870. p42.Material = Enum.Material.SmoothPlastic
  6871. p42.Reflectance = 0.30000001192093
  6872. p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
  6873. p42.CanCollide = false
  6874. p42.FormFactor = Enum.FormFactor.Custom
  6875. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6876. p42.BottomSurface = Enum.SurfaceType.Smooth
  6877. p42.TopSurface = Enum.SurfaceType.Smooth
  6878. b42 = Instance.new("SpecialMesh", p42)
  6879. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6880. b42.TextureId = ""
  6881. b42.MeshType = Enum.MeshType.FileMesh
  6882. b42.Name = "Mesh"
  6883. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6884. p43 = Instance.new("Part", m2)
  6885. p43.BrickColor = BrickColor.new("Lime green")
  6886. p43.Material = Enum.Material.SmoothPlastic
  6887. p43.Reflectance = 0.30000001192093
  6888. p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
  6889. p43.CanCollide = false
  6890. p43.FormFactor = Enum.FormFactor.Custom
  6891. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6892. p43.BottomSurface = Enum.SurfaceType.Smooth
  6893. p43.TopSurface = Enum.SurfaceType.Smooth
  6894. b43 = Instance.new("SpecialMesh", p43)
  6895. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6896. b43.TextureId = ""
  6897. b43.MeshType = Enum.MeshType.FileMesh
  6898. b43.Name = "Mesh"
  6899. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  6900. p44 = Instance.new("Part", m2)
  6901. p44.BrickColor = BrickColor.new("Lime green")
  6902. p44.Material = Enum.Material.SmoothPlastic
  6903. p44.Reflectance = 0.30000001192093
  6904. p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
  6905. p44.CanCollide = false
  6906. p44.FormFactor = Enum.FormFactor.Custom
  6907. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6908. p44.BottomSurface = Enum.SurfaceType.Smooth
  6909. p44.TopSurface = Enum.SurfaceType.Smooth
  6910. b44 = Instance.new("SpecialMesh", p44)
  6911. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6912. b44.TextureId = ""
  6913. b44.MeshType = Enum.MeshType.FileMesh
  6914. b44.Name = "Mesh"
  6915. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6916. p45 = Instance.new("Part", m2)
  6917. p45.BrickColor = BrickColor.new("Lime green")
  6918. p45.Material = Enum.Material.SmoothPlastic
  6919. p45.Reflectance = 0.30000001192093
  6920. p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
  6921. p45.CanCollide = false
  6922. p45.FormFactor = Enum.FormFactor.Custom
  6923. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6924. p45.BottomSurface = Enum.SurfaceType.Smooth
  6925. p45.TopSurface = Enum.SurfaceType.Smooth
  6926. b45 = Instance.new("SpecialMesh", p45)
  6927. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6928. b45.TextureId = ""
  6929. b45.MeshType = Enum.MeshType.FileMesh
  6930. b45.Name = "Mesh"
  6931. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6932. p46 = Instance.new("Part", m2)
  6933. p46.BrickColor = BrickColor.new("Lime green")
  6934. p46.Material = Enum.Material.SmoothPlastic
  6935. p46.Reflectance = 0.30000001192093
  6936. p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
  6937. p46.CanCollide = false
  6938. p46.FormFactor = Enum.FormFactor.Custom
  6939. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6940. p46.BottomSurface = Enum.SurfaceType.Smooth
  6941. p46.TopSurface = Enum.SurfaceType.Smooth
  6942. b46 = Instance.new("SpecialMesh", p46)
  6943. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6944. b46.TextureId = ""
  6945. b46.MeshType = Enum.MeshType.FileMesh
  6946. b46.Name = "Mesh"
  6947. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6948. p47 = Instance.new("Part", m2)
  6949. p47.BrickColor = BrickColor.new("Lime green")
  6950. p47.Material = Enum.Material.SmoothPlastic
  6951. p47.Reflectance = 0.30000001192093
  6952. p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
  6953. p47.CanCollide = false
  6954. p47.FormFactor = Enum.FormFactor.Custom
  6955. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  6956. p47.BottomSurface = Enum.SurfaceType.Smooth
  6957. p47.TopSurface = Enum.SurfaceType.Smooth
  6958. b47 = Instance.new("SpecialMesh", p47)
  6959. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6960. b47.TextureId = ""
  6961. b47.MeshType = Enum.MeshType.FileMesh
  6962. b47.Name = "Mesh"
  6963. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  6964. p48 = Instance.new("Part", m2)
  6965. p48.BrickColor = BrickColor.new("Lime green")
  6966. p48.Material = Enum.Material.Neon
  6967. p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
  6968. p48.FormFactor = Enum.FormFactor.Custom
  6969. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  6970. p48.BottomSurface = Enum.SurfaceType.Smooth
  6971. p48.TopSurface = Enum.SurfaceType.Smooth
  6972. b48 = Instance.new("SpecialMesh", p48)
  6973. b48.MeshType = Enum.MeshType.Sphere
  6974. b48.Name = "Mesh"
  6975. p49 = Instance.new("Part", m2)
  6976. p49.BrickColor = BrickColor.new("Lime green")
  6977. p49.Material = Enum.Material.SmoothPlastic
  6978. p49.Reflectance = 0.30000001192093
  6979. p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  6980. p49.CanCollide = false
  6981. p49.FormFactor = Enum.FormFactor.Custom
  6982. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  6983. p49.BottomSurface = Enum.SurfaceType.Smooth
  6984. p49.TopSurface = Enum.SurfaceType.Smooth
  6985. b49 = Instance.new("SpecialMesh", p49)
  6986. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  6987. b49.TextureId = ""
  6988. b49.MeshType = Enum.MeshType.FileMesh
  6989. b49.Name = "Mesh"
  6990. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  6991. p50 = Instance.new("Part", m2)
  6992. p50.BrickColor = BrickColor.new("Lime green")
  6993. p50.Material = Enum.Material.SmoothPlastic
  6994. p50.Reflectance = 0.30000001192093
  6995. p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  6996. p50.CanCollide = false
  6997. p50.FormFactor = Enum.FormFactor.Custom
  6998. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  6999. p50.BottomSurface = Enum.SurfaceType.Smooth
  7000. p50.TopSurface = Enum.SurfaceType.Smooth
  7001. b50 = Instance.new("SpecialMesh", p50)
  7002. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7003. b50.TextureId = ""
  7004. b50.MeshType = Enum.MeshType.FileMesh
  7005. b50.Name = "Mesh"
  7006. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  7007. p51 = Instance.new("Part", m2)
  7008. p51.BrickColor = BrickColor.new("Lime green")
  7009. p51.Material = Enum.Material.SmoothPlastic
  7010. p51.Reflectance = 0.30000001192093
  7011. p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  7012. p51.CanCollide = false
  7013. p51.FormFactor = Enum.FormFactor.Custom
  7014. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  7015. p51.BottomSurface = Enum.SurfaceType.Smooth
  7016. p51.TopSurface = Enum.SurfaceType.Smooth
  7017. b51 = Instance.new("SpecialMesh", p51)
  7018. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7019. b51.TextureId = ""
  7020. b51.MeshType = Enum.MeshType.FileMesh
  7021. b51.Name = "Mesh"
  7022. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  7023. p52 = Instance.new("Part", m2)
  7024. p52.BrickColor = BrickColor.new("Lime green")
  7025. p52.Material = Enum.Material.Neon
  7026. p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
  7027. p52.FormFactor = Enum.FormFactor.Custom
  7028. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  7029. p52.BottomSurface = Enum.SurfaceType.Smooth
  7030. p52.TopSurface = Enum.SurfaceType.Smooth
  7031. b52 = Instance.new("SpecialMesh", p52)
  7032. b52.MeshType = Enum.MeshType.Sphere
  7033. b52.Name = "Mesh"
  7034. p53 = Instance.new("Part", m2)
  7035. p53.BrickColor = BrickColor.new("Lime green")
  7036. p53.Material = Enum.Material.Neon
  7037. p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
  7038. p53.FormFactor = Enum.FormFactor.Custom
  7039. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  7040. p53.BottomSurface = Enum.SurfaceType.Smooth
  7041. p53.TopSurface = Enum.SurfaceType.Smooth
  7042. b53 = Instance.new("SpecialMesh", p53)
  7043. b53.MeshType = Enum.MeshType.Sphere
  7044. b53.Name = "Mesh"
  7045. p54 = Instance.new("Part", m2)
  7046. p54.BrickColor = BrickColor.new("Lime green")
  7047. p54.Material = Enum.Material.Neon
  7048. p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
  7049. p54.FormFactor = Enum.FormFactor.Custom
  7050. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  7051. p54.BottomSurface = Enum.SurfaceType.Smooth
  7052. p54.TopSurface = Enum.SurfaceType.Smooth
  7053. b54 = Instance.new("SpecialMesh", p54)
  7054. b54.MeshType = Enum.MeshType.Sphere
  7055. b54.Name = "Mesh"
  7056. p55 = Instance.new("Part", m2)
  7057. p55.BrickColor = BrickColor.new("Lime green")
  7058. p55.Material = Enum.Material.Neon
  7059. p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
  7060. p55.FormFactor = Enum.FormFactor.Custom
  7061. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  7062. p55.BottomSurface = Enum.SurfaceType.Smooth
  7063. p55.TopSurface = Enum.SurfaceType.Smooth
  7064. b55 = Instance.new("SpecialMesh", p55)
  7065. b55.MeshType = Enum.MeshType.Sphere
  7066. b55.Name = "Mesh"
  7067. p56 = Instance.new("Part", m2)
  7068. p56.BrickColor = BrickColor.new("Lime green")
  7069. p56.Material = Enum.Material.SmoothPlastic
  7070. p56.Reflectance = 0.30000001192093
  7071. p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  7072. p56.CanCollide = false
  7073. p56.FormFactor = Enum.FormFactor.Custom
  7074. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  7075. p56.BottomSurface = Enum.SurfaceType.Smooth
  7076. p56.TopSurface = Enum.SurfaceType.Smooth
  7077. b56 = Instance.new("SpecialMesh", p56)
  7078. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7079. b56.TextureId = ""
  7080. b56.MeshType = Enum.MeshType.FileMesh
  7081. b56.Name = "Mesh"
  7082. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  7083. p57 = Instance.new("Part", m2)
  7084. p57.BrickColor = BrickColor.new("Lime green")
  7085. p57.Material = Enum.Material.SmoothPlastic
  7086. p57.Reflectance = 0.30000001192093
  7087. p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  7088. p57.CanCollide = false
  7089. p57.FormFactor = Enum.FormFactor.Custom
  7090. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  7091. p57.BottomSurface = Enum.SurfaceType.Smooth
  7092. p57.TopSurface = Enum.SurfaceType.Smooth
  7093. b57 = Instance.new("SpecialMesh", p57)
  7094. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7095. b57.TextureId = ""
  7096. b57.MeshType = Enum.MeshType.FileMesh
  7097. b57.Name = "Mesh"
  7098. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  7099. p58 = Instance.new("Part", m2)
  7100. p58.BrickColor = BrickColor.new("Lime green")
  7101. p58.Material = Enum.Material.SmoothPlastic
  7102. p58.Reflectance = 0.30000001192093
  7103. p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  7104. p58.CanCollide = false
  7105. p58.FormFactor = Enum.FormFactor.Custom
  7106. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  7107. p58.BottomSurface = Enum.SurfaceType.Smooth
  7108. p58.TopSurface = Enum.SurfaceType.Smooth
  7109. b58 = Instance.new("SpecialMesh", p58)
  7110. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7111. b58.TextureId = ""
  7112. b58.MeshType = Enum.MeshType.FileMesh
  7113. b58.Name = "Mesh"
  7114. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  7115. p59 = Instance.new("Part", m2)
  7116. p59.BrickColor = BrickColor.new("Lime green")
  7117. p59.Material = Enum.Material.SmoothPlastic
  7118. p59.Reflectance = 0.30000001192093
  7119. p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
  7120. p59.CanCollide = false
  7121. p59.FormFactor = Enum.FormFactor.Custom
  7122. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  7123. p59.BottomSurface = Enum.SurfaceType.Smooth
  7124. p59.TopSurface = Enum.SurfaceType.Smooth
  7125. b59 = Instance.new("SpecialMesh", p59)
  7126. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7127. b59.TextureId = ""
  7128. b59.MeshType = Enum.MeshType.FileMesh
  7129. b59.Name = "Mesh"
  7130. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  7131. p60 = Instance.new("Part", m2)
  7132. p60.BrickColor = BrickColor.new("Lime green")
  7133. p60.Material = Enum.Material.SmoothPlastic
  7134. p60.Reflectance = 0.30000001192093
  7135. p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
  7136. p60.CanCollide = false
  7137. p60.FormFactor = Enum.FormFactor.Custom
  7138. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  7139. p60.BottomSurface = Enum.SurfaceType.Smooth
  7140. p60.TopSurface = Enum.SurfaceType.Smooth
  7141. b60 = Instance.new("SpecialMesh", p60)
  7142. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7143. b60.TextureId = ""
  7144. b60.MeshType = Enum.MeshType.FileMesh
  7145. b60.Name = "Mesh"
  7146. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  7147. p61 = Instance.new("Part", m2)
  7148. p61.BrickColor = BrickColor.new("Lime green")
  7149. p61.Material = Enum.Material.SmoothPlastic
  7150. p61.Reflectance = 0.30000001192093
  7151. p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
  7152. p61.CanCollide = false
  7153. p61.FormFactor = Enum.FormFactor.Custom
  7154. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  7155. p61.BottomSurface = Enum.SurfaceType.Smooth
  7156. p61.TopSurface = Enum.SurfaceType.Smooth
  7157. b61 = Instance.new("SpecialMesh", p61)
  7158. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7159. b61.TextureId = ""
  7160. b61.MeshType = Enum.MeshType.FileMesh
  7161. b61.Name = "Mesh"
  7162. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  7163. p62 = Instance.new("Part", m2)
  7164. p62.BrickColor = BrickColor.new("Lime green")
  7165. p62.Material = Enum.Material.SmoothPlastic
  7166. p62.Reflectance = 0.30000001192093
  7167. p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
  7168. p62.CanCollide = false
  7169. p62.FormFactor = Enum.FormFactor.Custom
  7170. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  7171. p62.BottomSurface = Enum.SurfaceType.Smooth
  7172. p62.TopSurface = Enum.SurfaceType.Smooth
  7173. b62 = Instance.new("SpecialMesh", p62)
  7174. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7175. b62.TextureId = ""
  7176. b62.MeshType = Enum.MeshType.FileMesh
  7177. b62.Name = "Mesh"
  7178. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  7179. p63 = Instance.new("Part", m2)
  7180. p63.BrickColor = BrickColor.new("Lime green")
  7181. p63.Material = Enum.Material.SmoothPlastic
  7182. p63.Reflectance = 0.30000001192093
  7183. p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
  7184. p63.CanCollide = false
  7185. p63.FormFactor = Enum.FormFactor.Custom
  7186. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  7187. p63.BottomSurface = Enum.SurfaceType.Smooth
  7188. p63.TopSurface = Enum.SurfaceType.Smooth
  7189. b63 = Instance.new("SpecialMesh", p63)
  7190. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7191. b63.TextureId = ""
  7192. b63.MeshType = Enum.MeshType.FileMesh
  7193. b63.Name = "Mesh"
  7194. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  7195. p64 = Instance.new("Part", m2)
  7196. p64.BrickColor = BrickColor.new("Lime green")
  7197. p64.Material = Enum.Material.SmoothPlastic
  7198. p64.Reflectance = 0.30000001192093
  7199. p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
  7200. p64.CanCollide = false
  7201. p64.FormFactor = Enum.FormFactor.Custom
  7202. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  7203. p64.BottomSurface = Enum.SurfaceType.Smooth
  7204. p64.TopSurface = Enum.SurfaceType.Smooth
  7205. b64 = Instance.new("SpecialMesh", p64)
  7206. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  7207. b64.TextureId = ""
  7208. b64.MeshType = Enum.MeshType.FileMesh
  7209. b64.Name = "Mesh"
  7210. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  7211. p65 = Instance.new("Part", m2)
  7212. p65.BrickColor = BrickColor.new("Really black")
  7213. p65.Transparency = 1
  7214. p65.Name = "TorsoPart"
  7215. p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
  7216. p65.FormFactor = Enum.FormFactor.Symmetric
  7217. p65.Size = Vector3.new(4, 4, 2)
  7218. w1 = Instance.new("Weld", p1)
  7219. w1.Name = "Part_Weld"
  7220. w1.Part0 = p1
  7221. w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
  7222. w1.Part1 = p2
  7223. w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7224. w2 = Instance.new("Weld", p2)
  7225. w2.Name = "Part_Weld"
  7226. w2.Part0 = p2
  7227. w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7228. w2.Part1 = p3
  7229. w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7230. w3 = Instance.new("Weld", p3)
  7231. w3.Name = "Part_Weld"
  7232. w3.Part0 = p3
  7233. w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7234. w3.Part1 = p4
  7235. w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7236. w4 = Instance.new("Weld", p4)
  7237. w4.Name = "Part_Weld"
  7238. w4.Part0 = p4
  7239. w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7240. w4.Part1 = p5
  7241. w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7242. w5 = Instance.new("Weld", p5)
  7243. w5.Name = "Part_Weld"
  7244. w5.Part0 = p5
  7245. w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7246. w5.Part1 = p6
  7247. w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7248. w6 = Instance.new("Weld", p6)
  7249. w6.Name = "Part_Weld"
  7250. w6.Part0 = p6
  7251. w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7252. w6.Part1 = p7
  7253. w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7254. w7 = Instance.new("Weld", p7)
  7255. w7.Name = "Part_Weld"
  7256. w7.Part0 = p7
  7257. w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7258. w7.Part1 = p8
  7259. w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7260. w8 = Instance.new("Weld", p8)
  7261. w8.Name = "Part_Weld"
  7262. w8.Part0 = p8
  7263. w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  7264. w8.Part1 = p9
  7265. w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7266. w9 = Instance.new("Weld", p9)
  7267. w9.Name = "Part_Weld"
  7268. w9.Part0 = p9
  7269. w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7270. w9.Part1 = p10
  7271. w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7272. w10 = Instance.new("Weld", p10)
  7273. w10.Name = "Part_Weld"
  7274. w10.Part0 = p10
  7275. w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7276. w10.Part1 = p11
  7277. w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7278. w11 = Instance.new("Weld", p11)
  7279. w11.Name = "Part_Weld"
  7280. w11.Part0 = p11
  7281. w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7282. w11.Part1 = p12
  7283. w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7284. w12 = Instance.new("Weld", p12)
  7285. w12.Name = "Part_Weld"
  7286. w12.Part0 = p12
  7287. w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7288. w12.Part1 = p13
  7289. w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7290. w13 = Instance.new("Weld", p13)
  7291. w13.Name = "Part_Weld"
  7292. w13.Part0 = p13
  7293. w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7294. w13.Part1 = p14
  7295. w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7296. w14 = Instance.new("Weld", p14)
  7297. w14.Name = "Part_Weld"
  7298. w14.Part0 = p14
  7299. w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7300. w14.Part1 = p15
  7301. w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7302. w15 = Instance.new("Weld", p15)
  7303. w15.Name = "Part_Weld"
  7304. w15.Part0 = p15
  7305. w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7306. w15.Part1 = p16
  7307. w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7308. w16 = Instance.new("Weld", p16)
  7309. w16.Name = "Part_Weld"
  7310. w16.Part0 = p16
  7311. w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7312. w16.Part1 = p17
  7313. w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7314. w17 = Instance.new("Weld", p17)
  7315. w17.Name = "Part_Weld"
  7316. w17.Part0 = p17
  7317. w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7318. w17.Part1 = p18
  7319. w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7320. w18 = Instance.new("Weld", p18)
  7321. w18.Name = "Part_Weld"
  7322. w18.Part0 = p18
  7323. w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7324. w18.Part1 = p19
  7325. w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7326. w19 = Instance.new("Weld", p19)
  7327. w19.Name = "Part_Weld"
  7328. w19.Part0 = p19
  7329. w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7330. w19.Part1 = p20
  7331. w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7332. w20 = Instance.new("Weld", p20)
  7333. w20.Name = "Part_Weld"
  7334. w20.Part0 = p20
  7335. w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7336. w20.Part1 = p21
  7337. w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7338. w21 = Instance.new("Weld", p21)
  7339. w21.Name = "Part_Weld"
  7340. w21.Part0 = p21
  7341. w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7342. w21.Part1 = p22
  7343. w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7344. w22 = Instance.new("Weld", p22)
  7345. w22.Name = "Part_Weld"
  7346. w22.Part0 = p22
  7347. w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7348. w22.Part1 = p23
  7349. w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7350. w23 = Instance.new("Weld", p23)
  7351. w23.Name = "Part_Weld"
  7352. w23.Part0 = p23
  7353. w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7354. w23.Part1 = p24
  7355. w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7356. w24 = Instance.new("Weld", p24)
  7357. w24.Name = "Part_Weld"
  7358. w24.Part0 = p24
  7359. w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7360. w24.Part1 = p25
  7361. w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7362. w25 = Instance.new("Weld", p25)
  7363. w25.Name = "Part_Weld"
  7364. w25.Part0 = p25
  7365. w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7366. w25.Part1 = p26
  7367. w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7368. w26 = Instance.new("Weld", p26)
  7369. w26.Name = "Part_Weld"
  7370. w26.Part0 = p26
  7371. w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  7372. w26.Part1 = p27
  7373. w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7374. w27 = Instance.new("Weld", p27)
  7375. w27.Name = "Part_Weld"
  7376. w27.Part0 = p27
  7377. w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7378. w27.Part1 = p28
  7379. w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7380. w28 = Instance.new("Weld", p28)
  7381. w28.Name = "Part_Weld"
  7382. w28.Part0 = p28
  7383. w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7384. w28.Part1 = p29
  7385. w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  7386. w29 = Instance.new("Weld", p29)
  7387. w29.Name = "Part_Weld"
  7388. w29.Part0 = p29
  7389. w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  7390. w29.Part1 = p30
  7391. w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7392. w30 = Instance.new("Weld", p30)
  7393. w30.Name = "Part_Weld"
  7394. w30.Part0 = p30
  7395. w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7396. w30.Part1 = p31
  7397. w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7398. w31 = Instance.new("Weld", p31)
  7399. w31.Name = "Part_Weld"
  7400. w31.Part0 = p31
  7401. w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  7402. w31.Part1 = p32
  7403. w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7404. w32 = Instance.new("Weld", p32)
  7405. w32.Name = "Part_Weld"
  7406. w32.Part0 = p32
  7407. w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7408. w32.Part1 = p33
  7409. w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  7410. w33 = Instance.new("Weld", p33)
  7411. w33.Name = "Part_Weld"
  7412. w33.Part0 = p33
  7413. w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  7414. w33.Part1 = p34
  7415. w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7416. w34 = Instance.new("Weld", p34)
  7417. w34.Name = "Part_Weld"
  7418. w34.Part0 = p34
  7419. w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7420. w34.Part1 = p35
  7421. w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7422. w35 = Instance.new("Weld", p35)
  7423. w35.Name = "Part_Weld"
  7424. w35.Part0 = p35
  7425. w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  7426. w35.Part1 = p36
  7427. w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7428. w36 = Instance.new("Weld", p36)
  7429. w36.Name = "Part_Weld"
  7430. w36.Part0 = p36
  7431. w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  7432. w36.Part1 = p37
  7433. w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  7434. w37 = Instance.new("Weld", p37)
  7435. w37.Name = "Part_Weld"
  7436. w37.Part0 = p37
  7437. w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  7438. w37.Part1 = p38
  7439. w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  7440. w38 = Instance.new("Weld", p38)
  7441. w38.Name = "Part_Weld"
  7442. w38.Part0 = p38
  7443. w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  7444. w38.Part1 = p39
  7445. w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7446. w39 = Instance.new("Weld", p39)
  7447. w39.Name = "Part_Weld"
  7448. w39.Part0 = p39
  7449. w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7450. w39.Part1 = p40
  7451. w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7452. w40 = Instance.new("Weld", p40)
  7453. w40.Name = "Part_Weld"
  7454. w40.Part0 = p40
  7455. w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7456. w40.Part1 = p41
  7457. w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7458. w41 = Instance.new("Weld", p41)
  7459. w41.Name = "Part_Weld"
  7460. w41.Part0 = p41
  7461. w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7462. w41.Part1 = p42
  7463. w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7464. w42 = Instance.new("Weld", p42)
  7465. w42.Name = "Part_Weld"
  7466. w42.Part0 = p42
  7467. w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7468. w42.Part1 = p43
  7469. w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7470. w43 = Instance.new("Weld", p43)
  7471. w43.Name = "Part_Weld"
  7472. w43.Part0 = p43
  7473. w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7474. w43.Part1 = p44
  7475. w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7476. w44 = Instance.new("Weld", p44)
  7477. w44.Name = "Part_Weld"
  7478. w44.Part0 = p44
  7479. w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7480. w44.Part1 = p45
  7481. w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7482. w45 = Instance.new("Weld", p45)
  7483. w45.Name = "Part_Weld"
  7484. w45.Part0 = p45
  7485. w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7486. w45.Part1 = p46
  7487. w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7488. w46 = Instance.new("Weld", p46)
  7489. w46.Name = "Part_Weld"
  7490. w46.Part0 = p46
  7491. w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7492. w46.Part1 = p47
  7493. w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7494. w47 = Instance.new("Weld", p47)
  7495. w47.Name = "Part_Weld"
  7496. w47.Part0 = p47
  7497. w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  7498. w47.Part1 = p48
  7499. w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  7500. w48 = Instance.new("Weld", p48)
  7501. w48.Name = "Part_Weld"
  7502. w48.Part0 = p48
  7503. w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  7504. w48.Part1 = p49
  7505. w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7506. w49 = Instance.new("Weld", p49)
  7507. w49.Name = "Part_Weld"
  7508. w49.Part0 = p49
  7509. w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7510. w49.Part1 = p50
  7511. w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7512. w50 = Instance.new("Weld", p50)
  7513. w50.Name = "Part_Weld"
  7514. w50.Part0 = p50
  7515. w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7516. w50.Part1 = p51
  7517. w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7518. w51 = Instance.new("Weld", p51)
  7519. w51.Name = "Part_Weld"
  7520. w51.Part0 = p51
  7521. w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7522. w51.Part1 = p52
  7523. w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  7524. w52 = Instance.new("Weld", p52)
  7525. w52.Name = "Part_Weld"
  7526. w52.Part0 = p52
  7527. w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  7528. w52.Part1 = p53
  7529. w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  7530. w53 = Instance.new("Weld", p53)
  7531. w53.Name = "Part_Weld"
  7532. w53.Part0 = p53
  7533. w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  7534. w53.Part1 = p54
  7535. w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  7536. w54 = Instance.new("Weld", p54)
  7537. w54.Name = "Part_Weld"
  7538. w54.Part0 = p54
  7539. w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  7540. w54.Part1 = p55
  7541. w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  7542. w55 = Instance.new("Weld", p55)
  7543. w55.Name = "Part_Weld"
  7544. w55.Part0 = p55
  7545. w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  7546. w55.Part1 = p56
  7547. w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7548. w56 = Instance.new("Weld", p56)
  7549. w56.Name = "Part_Weld"
  7550. w56.Part0 = p56
  7551. w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7552. w56.Part1 = p57
  7553. w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7554. w57 = Instance.new("Weld", p57)
  7555. w57.Name = "Part_Weld"
  7556. w57.Part0 = p57
  7557. w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7558. w57.Part1 = p58
  7559. w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7560. w58 = Instance.new("Weld", p58)
  7561. w58.Name = "Part_Weld"
  7562. w58.Part0 = p58
  7563. w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  7564. w58.Part1 = p59
  7565. w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7566. w59 = Instance.new("Weld", p59)
  7567. w59.Name = "Part_Weld"
  7568. w59.Part0 = p59
  7569. w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7570. w59.Part1 = p60
  7571. w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7572. w60 = Instance.new("Weld", p60)
  7573. w60.Name = "Part_Weld"
  7574. w60.Part0 = p60
  7575. w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7576. w60.Part1 = p61
  7577. w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7578. w61 = Instance.new("Weld", p61)
  7579. w61.Name = "Part_Weld"
  7580. w61.Part0 = p61
  7581. w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7582. w61.Part1 = p62
  7583. w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7584. w62 = Instance.new("Weld", p62)
  7585. w62.Name = "Part_Weld"
  7586. w62.Part0 = p62
  7587. w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7588. w62.Part1 = p63
  7589. w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7590. w63 = Instance.new("Weld", p63)
  7591. w63.Name = "Part_Weld"
  7592. w63.Part0 = p63
  7593. w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7594. w63.Part1 = p64
  7595. w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7596. w64 = Instance.new("Weld", p64)
  7597. w64.Name = "TorsoPart_Weld"
  7598. w64.Part0 = p64
  7599. w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  7600. w64.Part1 = p65
  7601. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7602. m2.Parent = char
  7603. m2:MakeJoints()
  7604. --------------------------------------------------------------------------------
  7605. local cor2 = Instance.new("Part", char.Wings)
  7606. cor2.Name = "Thingy"
  7607. cor2.Locked = true
  7608. cor2.BottomSurface = 0
  7609. cor2.CanCollide = false
  7610. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  7611. cor2.Transparency = 1
  7612. cor2.TopSurface = 0
  7613. corw2 = Instance.new("Weld", cor2)
  7614. corw2.Part0 = torso
  7615. corw2.Part1 = cor2
  7616. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  7617. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7618. weld2 = Instance.new("Weld", char.Wings)
  7619. weld2.Part0 = cor2
  7620. weld2.Part1 = char.Wings.TorsoPart
  7621. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  7622.  
  7623.  
  7624.  
  7625.  
  7626.  
  7627.  
  7628.  
  7629. rainbowNumber = 1
  7630.  
  7631. local model = Instance.new("Model", char)
  7632. model.Name = "x10Wand"
  7633. local player = game.Players.LocalPlayer
  7634. local pchar = player.Character
  7635. local mouse = player:GetMouse()
  7636. local cam = workspace.CurrentCamera
  7637.  
  7638. local rad = math.rad
  7639. bodyparts = {}
  7640. local keysDown = {}
  7641. local flySpeed = 0
  7642. local MAX_FLY_SPEED = 150
  7643.  
  7644. local canFly = false
  7645. local flyToggled = false
  7646.  
  7647. local forward, side = 0, 0
  7648. local lastForward, lastSide = 0, 0
  7649.  
  7650. local floatBP = Instance.new("BodyPosition")
  7651. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  7652. local flyBV = Instance.new("BodyVelocity")
  7653. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  7654. local turnBG = Instance.new("BodyGyro")
  7655. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  7656.  
  7657. mouse.KeyDown:connect(function(key)
  7658. keysDown[key] = true
  7659.  
  7660. if key == "f" then
  7661. flyToggled = not flyToggled
  7662.  
  7663. if not flyToggled then
  7664. stanceToggle = "Normal"
  7665. floatBP.Parent = nil
  7666. flyBV.Parent = nil
  7667. turnBG.Parent = nil
  7668. root.Velocity = Vector3.new()
  7669. pchar.Humanoid.PlatformStand = false
  7670. end
  7671. end
  7672.  
  7673. end)
  7674. mouse.KeyUp:connect(function(key)
  7675. keysDown[key] = nil
  7676. end)
  7677.  
  7678. local function updateFly()
  7679.  
  7680.  
  7681.  
  7682.  
  7683. if not flyToggled then return end
  7684.  
  7685. lastForward = forward
  7686. lastSide = side
  7687.  
  7688. forward = 0
  7689. side = 0
  7690.  
  7691. if keysDown.w then
  7692. forward = forward + 1
  7693. end
  7694. if keysDown.s then
  7695. forward = forward - 1
  7696. end
  7697. if keysDown.a then
  7698. side = side - 1
  7699. end
  7700. if keysDown.d then
  7701. side = side + 1
  7702. end
  7703.  
  7704. canFly = (forward ~= 0 or side ~= 0)
  7705.  
  7706. if canFly then
  7707. stanceToggle = "Floating"
  7708. turnBG.Parent = root
  7709. floatBP.Parent = nil
  7710. flyBV.Parent = root
  7711.  
  7712. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  7713. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  7714. else
  7715. floatBP.position = root.Position
  7716. floatBP.Parent = root
  7717.  
  7718. flySpeed = flySpeed - 1
  7719. if flySpeed < 0 then flySpeed = 0 end
  7720. end
  7721.  
  7722. local camCF = cam.CoordinateFrame
  7723. local in_forward = canFly and forward or lastForward
  7724. local in_side = canFly and side or lastSide
  7725.  
  7726. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  7727.  
  7728. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,0)
  7729. end
  7730.  
  7731. game:service'RunService'.RenderStepped:connect(function()
  7732. if flyToggled then
  7733. pchar.Humanoid.PlatformStand = true
  7734. end
  7735. updateFly()
  7736. end)
  7737.  
  7738.  
  7739.  
  7740.  
  7741.  
  7742. local TBlast, TBMesh = Instance.new("Part"), Instance.new("SpecialMesh")
  7743. TBlast.BrickColor = BrickColor.new("Lime green")
  7744. TBlast.Transparency = 1
  7745. TBlast.Anchored = true
  7746. TBlast.CanCollide = false
  7747. TBlast.CFrame = root.CFrame
  7748. TBlast.Size = Vector3.new(2,2,2)
  7749. TBMesh.Parent = TBlast
  7750. TBMesh.MeshType = "Sphere"
  7751. game.Lighting.Brightness = 0
  7752. game.Lighting.OutdoorAmbient = TBlast.BrickColor.Color
  7753. game.Lighting.TimeOfDay = 0.1
  7754. game.Lighting.FogEnd = 1000
  7755. game.Lighting.FogColor = TBlast.BrickColor.Color
  7756. game.Lighting.TimeOfDay = "00:00:00"
  7757. game.Lighting.Ambient = Color3.new(0,0,0)
  7758. game.Lighting.FogColor = Color3.new(0,0,0)
  7759. game.Lighting.FogEnd = 500
  7760. game.Lighting.FogStart = 0
  7761. game.Lighting.GlobalShadows = true
  7762.  
  7763.  
  7764.  
  7765. function ClearEffects()
  7766. for i, v in ipairs(CurrentEffects) do
  7767. v:Remove()
  7768. v:Destroy()
  7769. game:GetService("Debris"):AddItem(v,0)
  7770. table.remove(CurrentEffects,i)
  7771. end
  7772. end
  7773. Human.WalkSpeed=26
  7774. function defpos()
  7775. Neck.C0 = necko
  7776. LH.C0 = LHC0
  7777. LS.C0 = LSC0
  7778. RH.C0 = RHC0
  7779. RS.C0 = RSC0
  7780. RootJoint.C0 = ROOTC0
  7781. end
  7782.  
  7783. function newpos()
  7784. defpos()
  7785. RS.C0=clerp(RS.C0,RS.C0*angles(rad(-50),0,0),.3)
  7786. LS.C0=clerp(LS.C0,LS.C0*angles(rad(-50),0,0),.3)
  7787. RH.C0=clerp(RH.C0,RH.C0*angles(rad(-25),0,0),.3)
  7788. LH.C0=clerp(LH.C0,LH.C0*angles(rad(-25),0,0),.3)
  7789. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*cf(0,0,1),1)
  7790. end
  7791. function PEE(part,size,col3,Lemission,trans,accel,ltp,edirection,enabled,lifetime,rate,rotation,rotspeed,speed,velspread,name,text)
  7792. local p=it("ParticleEmitter",part)
  7793. p.Size=size
  7794. p.Texture=text
  7795. p.Color=col3
  7796. p.LightEmission=Lemission
  7797. p.Transparency=trans
  7798. p.Acceleration=accel
  7799. p.LockedToPart=ltp
  7800. p.EmissionDirection=edirection
  7801. p.Enabled=enabled
  7802. p.Lifetime=lifetime
  7803. p.Rate=rate
  7804. p.Rotation=rotation
  7805. p.RotSpeed=rotspeed
  7806. p.Speed=speed
  7807. p.VelocitySpread=velspread
  7808. p.Name=name
  7809. return p
  7810. end
  7811.  
  7812. gui = function(GuiType, parent, text, backtrans, backcol, pos, size)
  7813. local gui = Instance.new(GuiType)
  7814. gui.Parent = parent
  7815. gui.Text = text
  7816. gui.BackgroundTransparency = backtrans
  7817. gui.BackgroundColor3 = backcol
  7818. gui.SizeConstraint = "RelativeXY"
  7819. gui.TextXAlignment = "Center"
  7820. gui.TextYAlignment = "Center"
  7821. gui.Position = pos
  7822. gui.Size = size
  7823. gui.Font = "SourceSans"
  7824. gui.FontSize = "Size60"
  7825. gui.TextWrapped = false
  7826. gui.TextStrokeTransparency = 0
  7827. gui.TextColor = BrickColor.new("Lime green")
  7828. return gui
  7829. end
  7830.  
  7831. part=function(parent,anchored,cancollide,size,cframe,col3,material,trans)
  7832. local p=it("Part",parent)
  7833. p.Anchored=anchored
  7834. p.CanCollide=cancollide
  7835. p.Size=size
  7836. p.CFrame=cframe
  7837. p.Color=col3
  7838. p.Material=material
  7839. p.Transparency=trans
  7840. return p
  7841. end
  7842.  
  7843. BillboardGui = function(image, position, size)
  7844. local billpar = Instance.new("Part")
  7845. billpar.Transparency = 1
  7846. billpar.formFactor = "Custom"
  7847. billpar.Size = Vector3.new(1, 1, 1)
  7848. billpar.Anchored = true
  7849. billpar.CanCollide = false
  7850. billpar.CFrame = CFrame.new(position)
  7851. billpar.Name = "BillboardGuiPart"
  7852. local bill = Instance.new("BillboardGui", billpar)
  7853. bill.Adornee = billpar
  7854. bill.Size = UDim2.new(1, 0, 1, 0)
  7855. bill.SizeOffset = Vector2.new(size, size)
  7856. local d = Instance.new("ImageLabel", bill)
  7857. d.BackgroundTransparency = 1
  7858. d.Size = UDim2.new(1, 0, 1, 0)
  7859. d.Image = image
  7860. return billpar
  7861. end
  7862.  
  7863. RealDamage = function(part,min,max,radius)
  7864. coroutine.resume(coroutine.create(function()
  7865. for i,v in pairs(workspace:children()) do
  7866. if v:FindFirstChild'Humanoid' and v:FindFirstChild'Torso' then
  7867. if v.Name == game.Players.LocalPlayer.Name then else
  7868. print((v.Torso.Position - part.Position).magnitude)
  7869. if ((v.Torso.Position - part.Position).magnitude <= radius) then
  7870. local hpdmg=math.random(min,max)
  7871. v.Humanoid.Health = v.Humanoid.Health - hpdmg
  7872. print"0"
  7873. print"1"
  7874. local Dbil=it("BillboardGui", v.Torso)
  7875. Dbil.Adornee=v.Torso
  7876. Dbil.Size=UDim2.new(0, 500, 0, 500)
  7877. Dbil.SizeOffset=Vector2.new(0,0)
  7878. Dbil.AlwaysOnTop=true
  7879. Dbil.ExtentsOffset=Vector3.new(ran(-3,3),ran(-3,3),ran(-3,3))
  7880. table.insert(CurrentDamages,Dbil)
  7881. print"2"
  7882. local goo=gui("TextLabel",Dbil,""..hpdmg.."",1,Color3.new(0,0,0),UDim2.new(0, 0, 0, 0),UDim2.new(1, 0, 1, 0))
  7883. table.insert(CurrentDamages,goo)
  7884. print"3"
  7885. for i=1,10 do
  7886. wait()
  7887. goo.TextTransparency=i/10
  7888. end
  7889. for a,b in pairs(CurrentDamages) do
  7890. b:Remove()
  7891. b:Destroy()
  7892. game:GetService("Debris"):AddItem(b,0)
  7893. table.remove(CurrentEffects,a)
  7894. end
  7895.  
  7896. end
  7897. end
  7898. end
  7899. end
  7900. end))
  7901. end
  7902.  
  7903. smoothNO=function(ppart)
  7904. ppart.TopSurface=10
  7905. ppart.BottomSurface=10
  7906. ppart.BackSurface=10
  7907. ppart.FrontSurface=10
  7908. ppart.LeftSurface=10
  7909. ppart.RightSurface=10
  7910. return ppart
  7911. end
  7912.  
  7913. smoothO=function(ppart)
  7914. ppart.TopSurface=0
  7915. ppart.BottomSurface=0
  7916. ppart.BackSurface=0
  7917. ppart.FrontSurface=0
  7918. ppart.LeftSurface=0
  7919. ppart.RightSurface=0
  7920. end
  7921.  
  7922. sound=function(parent,id,vol,looped)
  7923. local s=it("Sound",parent)
  7924. s.SoundId=id
  7925. s.Volume=vol
  7926. s.Looped=looped
  7927. return s
  7928. end
  7929.  
  7930. mesh=function(parent,ttype,scale)
  7931. local m=it("SpecialMesh",parent)
  7932. m.MeshType=ttype
  7933. m.Scale=scale
  7934. return m
  7935. end
  7936.  
  7937. spmesh=function(parent,id,scale)
  7938. local m=it("SpecialMesh",parent)
  7939. m.MeshId=id
  7940. m.Scale=scale
  7941. return m
  7942. end
  7943.  
  7944.  
  7945.  
  7946.  
  7947. local EyePart=part(Char,false,false,v3(.3,.3,.3),Torso.CFrame,c3(0,1,0),"Neon",0)
  7948. EyePart.Name="EyePart"
  7949. EyePart.Shape="Ball"
  7950. local EyeWeld=it("Weld",Char)
  7951. EyeWeld.Part0=EyePart
  7952. EyeWeld.Part1=Head
  7953. EyeWeld.C0=EyeWeld.C0*cf(.2,-.25,.578)
  7954. local EyeSizes={
  7955. NumberSequenceKeypoint.new(0,.4,0),
  7956. NumberSequenceKeypoint.new(1,0,0)
  7957. }
  7958. local EyeTrans={
  7959. NumberSequenceKeypoint.new(0,0,0),
  7960. NumberSequenceKeypoint.new(1,1,0)
  7961. }
  7962. local PE=it("ParticleEmitter",EyePart)
  7963. PE.LightEmission=.4
  7964. PE.LockedToPart=true
  7965. PE.Size=NumberSequence.new(EyeSizes)
  7966. PE.Transparency=NumberSequence.new(EyeTrans)
  7967. PE.Acceleration=v3(2,0,0)
  7968. PE.Lifetime=NumberRange.new(2,2,2)
  7969. PE.Rate=70
  7970. PE.Speed=NumberRange.new(4,4,4)
  7971. PE.Texture="rbxassetid://300899374"
  7972.  
  7973. local function RisingAndRotatingParts(Parent,Cframe,Col1,Col2,Time,Material,Size)
  7974. local Colours = {BrickColor.new(Col1),BrickColor.new(Col2)}
  7975.  
  7976. local flame1 = Instance.new("Part",Parent)
  7977. flame1.Anchored = true
  7978. flame1.CanCollide =false
  7979. flame1.CFrame = Cframe
  7980. flame1.Material = Material
  7981. flame1.TopSurface = 0
  7982. flame1.BottomSurface = 0
  7983. flame1.Size = Size
  7984. flame1.BrickColor = Colours[math.random(1,#Colours)]
  7985.  
  7986. for i = 1,30 do
  7987. flame1.CFrame = flame1.CFrame*CFrame.Angles(.5,.5,.5)+Vector3.new(0,.2,0)
  7988. flame1.Transparency = i/30
  7989. r:wait()
  7990. end
  7991. flame1:Destroy()
  7992. end
  7993.  
  7994. coroutine.resume(coroutine.create(function()
  7995. while r:wait() do
  7996. RisingAndRotatingParts(Char,Torso.CFrame*cf(ran(-2,2),-3,ran(-2,2)),"Lime green","Really black",1,"Neon",v3(.5,.5,.5))
  7997. end
  7998. end))
  7999. coroutine.resume(coroutine.create(function()
  8000. for i=1,huge do
  8001. local MCir=part(Char,false,false,v3(0,0,0),Torso.CFrame,c3(0,0,0),"Neon",1)
  8002. table.insert(CurrentEffects,MCir)
  8003. local CirM=mesh(MCir,"Cylinder",v3(1.3,3.3,3.3))
  8004. table.insert(CurrentEffects,CirM)
  8005. local CirDec=it("Decal",MCir)
  8006. CirDec.Texture="rbxassetid://687708091"
  8007. CirDec.Face="Right"
  8008. CirDec.Transparency=.5
  8009. table.insert(CurrentEffects,CirDec)
  8010. local MagicWeld=it("Weld",Char)
  8011. MagicWeld.Part0=EyePart
  8012. MagicWeld.Part1=MCir
  8013. MagicWeld.C0=MagicWeld.C0*angles(0,rad(90),0)*cf(.05,0,0)
  8014. table.insert(CurrentEffects,MagicWeld)
  8015. for i=1,40 do
  8016. MagicWeld.C0=MagicWeld.C0*angles(rad(6),0,0)
  8017. CirM.Scale=CirM.Scale+v3(0,.4,.4)
  8018. CirDec.Transparency=i/40
  8019. r:wait()
  8020. end
  8021. --ClearEffects()
  8022. end
  8023. end))
  8024. print"kek"
  8025.  
  8026. attackone=function()
  8027. if attacking ==false then attacking=true
  8028. print"1"
  8029. chat:Chat(Char.Head,"Hmph.","Green")
  8030. local Hbox=part(Char,false,false,v3(1.5,2,1.5),Torso.CFrame,c3(0,0,0),"Plastic",1)
  8031. RealDamage(Hbox,7,16,5,false)
  8032. local w=it("Weld",Char)
  8033. w.Part0=Hbox
  8034. w.Part1=LArm
  8035. w.C0=w.C0*cf(0,1,0)
  8036. for i=1,10 do
  8037. RS.C0=clerp(RS.C0,RS.C0*angles(rad(0),0,0),.06)
  8038. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(-65),rad(-150)),.06)
  8039. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  8040. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  8041. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(90)),.06)
  8042. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(-90)),.06)
  8043. r:wait()
  8044. end
  8045. for i=1,10 do
  8046. LS.C0=clerp(LS.C0,LS.C0*angles(rad(-9),rad(0),rad(0)),1)
  8047. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(-12)),1)
  8048. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(12)),1)
  8049. r:wait()
  8050. end
  8051. wait(.8)
  8052. newpos()
  8053. Hbox:Destroy()
  8054. end
  8055. attacking=false
  8056. end
  8057.  
  8058. attacktwo=function()
  8059. if attacking==false then attacking=true
  8060. print"2"
  8061. chat:Chat(Char.Head,"Die!","Green")
  8062. local ETorso=Torso:Clone()
  8063. ETorso.Transparency=1
  8064. ETorso.Anchored=true
  8065. ETorso.CanCollide=false
  8066. ETorso.CFrame=Torso.CFrame
  8067. for i=1,10 do
  8068. RS.C0=clerp(RS.C0,RS.C0*angles(rad(-7),rad(0),rad(0))*cf(0,-.05,0),1)
  8069. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(9)),1)
  8070. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(-9)),1)
  8071. r:wait()
  8072. end
  8073.  
  8074. for i=1,30 do
  8075. local p=part(Char,true,false,v3(1,1,1),ETorso.CFrame*cf(0,0,-i)*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Plastic",0)
  8076. local m=it("SpecialMesh",p)
  8077. m.MeshId="rbxassetid://3270017"
  8078. m.Scale=v3(4,4,4)
  8079. spawn(function()
  8080. for ii=1,20 do
  8081. r:wait()
  8082. m.Scale=m.Scale+v3(.5,.5,.5)
  8083. p.Transparency=ii/20
  8084. end
  8085. end)
  8086.  
  8087. r:wait()
  8088. end
  8089. local urmum=part(Char,true,false,v3(1,1,1),ETorso.CFrame*cf(0,0,-30),c3(0,1,0),"Plastic",0)
  8090. table.insert(CurrentEffects,urmum)
  8091. smoothNO(urmum)
  8092. local HBox=urmum:Clone()
  8093. HBox.Parent=Char
  8094. HBox.Transparency=1
  8095. HBox.Shape="Ball"
  8096. HBox.Size=v3(2,2,2)
  8097. HBox.CFrame=urmum.CFrame
  8098. RealDamage(HBox,10,25,20,false)
  8099. local urmesh=it("SpecialMesh",urmum)
  8100. urmesh.MeshType="Sphere"
  8101. urmesh.Scale=v3(2,2,2)
  8102. coroutine.resume(coroutine.create(function()
  8103. for i=1,40 do
  8104. urmum.Transparency=i/40
  8105. urmesh.Scale=urmesh.Scale+v3(1.5,1.5,1.5)
  8106. HBox.CFrame=urmum.CFrame
  8107. HBox.Size=HBox.Size+v3(1,1,1)
  8108. r:wait()
  8109. end
  8110. end))
  8111. for a=1,2 do
  8112. for i=1,20 do
  8113. spawn(function()
  8114. local rann=part(Char,true,false,v3(0,0,0),ETorso.CFrame*cf(0,0,-30)*cf(ran(-30,30),ran(30),ran(-30,30)),c3(0,1,0),"Neon",1)
  8115. table.insert(CurrentEffects,rann)
  8116. local p=part(Char,false,false,v3(0,0,0),ETorso.CFrame*CFrame.new(0,0,-30),c3(0,1,0),"Neon",0)
  8117. table.insert(CurrentEffects,p)
  8118. local m=it("BlockMesh",p)
  8119. m.Scale=v3(6,6,6)
  8120. local bp=it("BodyPosition")
  8121. bp.maxForce=v3(math.huge,math.huge,math.huge)
  8122. bp.Position=rann.Position
  8123. bp.Parent=p
  8124. table.insert(CurrentEffects,bp)
  8125. spawn(function()
  8126. for i=1,16 do
  8127. r:wait()
  8128. p.Transparency=i/16
  8129. end
  8130. end)
  8131. wait()
  8132. bp.Parent=bil
  8133. end)
  8134. end
  8135. end
  8136. ETorso:Remove()
  8137. HBox:Destroy()
  8138. end
  8139. --ClearEffects()
  8140. attacking=false
  8141. newpos()
  8142. end
  8143.  
  8144. attackthree=function()
  8145. if attacking==false then attacking=true
  8146. print"3"
  8147. chat:Chat(Char.Head,"Get Ready..","Green")
  8148. for i=1,10 do
  8149. RS.C0=clerp(RS.C0,RS.C0*angles(rad(-33),0,rad(-10))*cf(0,-.25,0),.4)
  8150. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(20),rad(0)),.06)
  8151. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  8152. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  8153. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(-6)),1)
  8154. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(6)),1)
  8155. r:wait()
  8156. end
  8157.  
  8158. local ball=part(Char,false,false,v3(1,1,1),Head.CFrame,c3(0,0,0),"Plastic",.8)
  8159. local ball2=part(Char,false,false,v3(1,1,1),Head.CFrame,c3(0,1,0),"Neon",.2)
  8160. local w=it("Weld",Char)
  8161. w.Part0=ball
  8162. w.Part1=RArm
  8163. w.C0=w.C0*cf(0,20,0)
  8164. local w2=it("Weld",Char)
  8165. w2.Part0=ball2
  8166. w2.Part1=ball
  8167. local m=it("SpecialMesh",ball)
  8168. m.MeshType="Sphere"
  8169. m.Scale=Vector3.new(.1,.1,.1)
  8170. local m2=it("SpecialMesh",ball2)
  8171. m2.MeshType="Sphere"
  8172. m2.Scale=Vector3.new(.01,.01,.01)
  8173. local EyeSizes={
  8174. NumberSequenceKeypoint.new(0,5,0),
  8175. NumberSequenceKeypoint.new(1,0,0)
  8176. }
  8177. local PE=it("ParticleEmitter",ball)
  8178. PE.LightEmission=.4
  8179. PE.LockedToPart=false
  8180. PE.Size=NumberSequence.new(EyeSizes)
  8181. PE.Transparency=NumberSequence.new(EyeTrans)
  8182. PE.Acceleration=v3(0,0,0)
  8183. PE.Lifetime=NumberRange.new(4,4,4)
  8184. PE.Rate=2e9
  8185. PE.Speed=NumberRange.new(0,0,0)
  8186. PE.Texture="rbxassetid://300899374"
  8187. --table.insert(CurrentEffects,PE)
  8188. coroutine.resume(coroutine.create(function()
  8189. for i=1,30 do
  8190. spawn(function()
  8191. local rng=part(Char,true,false,v3(1,1,1),ball.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Plastic",.5)
  8192. table.insert(CurrentEffects,rng)
  8193. local rm=it("SpecialMesh",rng)
  8194. rm.MeshId="rbxassetid://3270017"
  8195. rm.Scale=v3(60,60,60)
  8196. for ii=1,10 do
  8197. rm.Scale=rm.Scale-v3(6,6,6)
  8198. r:wait()
  8199. end
  8200. end)
  8201. wait()
  8202. end
  8203. end))
  8204. local p1=part(Char,true,false,v3(1,1,1),ball.CFrame,c3(0,1,0),"Neon",.5)
  8205. local pm=mesh(p1,"Brick",v3(5,5,5))
  8206. for i=1,20 do
  8207. m.Scale=m.Scale+v3(.5,.5,.5)
  8208. m2.Scale=m2.Scale+v3(.3,.3,.3)
  8209. p1.Transparency=(-i/20*-i/20)
  8210. r:wait()
  8211. end
  8212. wait(.5)
  8213. w.Parent=nil
  8214. table.insert(CurrentEffects,w)
  8215. --table.insert(CurrentEffects,w2)
  8216. local placeholder=part(Char,true,false,v3(1,1,1),Head.CFrame*CFrame.new(0,-5,-30),c3(0,1,0),"Neon",1)
  8217. local BV=it("BodyVelocity")
  8218. BV.maxForce=v3(huge,huge,huge)
  8219. BV.Velocity=(placeholder.Position-ball.Position).unit*100
  8220. BV.Parent=ball
  8221. ball.Touched:connect(function(hit)
  8222. if hit.Name~=ball2.Name then
  8223. ball.Anchored=true
  8224. ball.ParticleEmitter.Enabled=false
  8225. ball.Transparency=1
  8226. ball2.Transparency=1
  8227. local xpl=part(Char,true,false,v3(1,1,1),ball.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.75)
  8228. local m=spmesh(xpl,"rbxassetid://9982590",v3(4,4,4))
  8229. local xpl2=part(Char,true,false,v3(4,4,4),ball.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",1)
  8230. spawn(function()
  8231. for i=1,80 do
  8232. xpl.Transparency=.75+i/80
  8233.  
  8234. m.Scale=m.Scale+v3(.6,.6,.6)
  8235.  
  8236. wait()
  8237.  
  8238.  
  8239. end
  8240. end)
  8241. RealDamage(xpl2,15,30,7)
  8242. for i=1,50 do
  8243. xpl2.Size=xpl2.Size+v3(.3,.3,.3)
  8244. xpl2.CFrame=ball.CFrame
  8245. r:wait()
  8246. end
  8247. xpl:Destroy()
  8248. xpl2:Destroy()
  8249. end
  8250. end)
  8251. spawn(function()
  8252. wait(1.5)
  8253. if BV then
  8254. BV:Destroy()
  8255. end
  8256.  
  8257. placeholder:Destroy()
  8258. PE.Enabled=false
  8259. ball2:Destroy()
  8260. wait(7)
  8261. ball:Destroy()
  8262. end)
  8263. for i=1,10 do
  8264. RS.C0=clerp(RS.C0,RS.C0*angles(rad(0),rad(20),rad(30))*cf(0,0,0),.4)
  8265. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(0),rad(0)),.06)
  8266. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  8267. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  8268. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(12)),1)
  8269. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(-12)),1)
  8270. wait()
  8271. end
  8272. chat:Chat(Char.Head,"Falling Star!","Green")
  8273. end
  8274. wait(2)
  8275. attacking=false
  8276. attacktype=1
  8277. newpos()
  8278. end
  8279.  
  8280. Mouse.Button1Down:connect(function()
  8281. if attacking== false and attacktype == 1 then
  8282. attackone()
  8283. attacktype = 2
  8284. else
  8285. if attacking == false and attacktype == 2 then
  8286. attacktwo()
  8287. attacktype = 3
  8288. else
  8289. if attacking == false and attacktype == 3 then
  8290. attackthree()
  8291. attacktype = 1
  8292. end
  8293. end
  8294. end
  8295. end)
  8296.  
  8297.  
  8298. local Ging=false
  8299. Mouse.KeyDown:connect(function(Key)
  8300. if Key=="g" and Ging==false and attacking==false then attacking,Torso.Anchored=true,true
  8301. local Clear={}
  8302. local REKING=true
  8303. chat:Chat(Char.Head,"By The Power Bestowed Upon Me Within The Demon's Eye..","Green")
  8304. for i=1,20 do
  8305. RS.C0=clerp(RS.C0,RS.C0*angles(rad(4.5),rad(-2),rad(8.5))*cf(0.02,0,0),1)
  8306. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(0),rad(0)),.06)
  8307. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  8308. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  8309. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(1)),1)
  8310. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(-1),0,rad(-2)),1)
  8311. r:wait()
  8312. end
  8313. local ball=part(Char,false,false,v3(0,0,0),Torso.CFrame,c3(0,1,0),"Neon",0)
  8314. local ball2=part(Char,false,false,v3(.3,.3,.3),Torso.CFrame,c3(0,0,0),"Plastic",.8)
  8315. local bm=mesh(ball,"Sphere",v3(0,0,0))
  8316. local bm2=mesh(ball2,"Sphere",v3(.3,.3,.3))
  8317. smoothNO(ball2)
  8318. local w=it("Weld",Char)
  8319. w.Part0=ball
  8320. w.Part1=RArm
  8321. w.C0=w.C0*CFrame.new(0,1.6,0)
  8322. local w2=it("Weld",Char)
  8323. w2.Part0=ball2
  8324. w2.Part1=RArm
  8325. w2.C0=w2.C0*CFrame.new(0,1.6,0)
  8326. for i=1,60 do r:wait()
  8327. bm.Scale=bm.Scale:Lerp(bm.Scale+Vector3.new(.23,.23,.23),.3)
  8328. bm2.Scale=bm2.Scale:Lerp(bm2.Scale+Vector3.new(.3,.3,.3),.3)
  8329. end
  8330. local Ring=part(Char,true,false,v3(0,0,0),ball.CFrame,c3(0,0,0),"Neon",.5)
  8331. local Ring2=Ring:Clone()
  8332. Ring2.Parent=Char
  8333. local RM=spmesh(Ring,"rbxassetid://3270017",Vector3.new(1.7,1.7,.5))
  8334. local RM2=spmesh(Ring2,"rbxassetid://3270017",Vector3.new(1.7,1.7,.5))
  8335. Ring.CFrame=ball.CFrame*CFrame.Angles(ran(-10,10),ran(-10,10),ran(-10,10))
  8336. Ring2.CFrame=ball.CFrame*CFrame.Angles(ran(-10,10),ran(-10,10),ran(-10,10))
  8337. Ging=true
  8338. coroutine.resume(coroutine.create(function()
  8339. while Ging==true do r:wait()
  8340. Ring.CFrame=Ring.CFrame:lerp(Ring.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  8341. Ring2.CFrame=Ring2.CFrame:lerp(Ring2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  8342. end
  8343. end))
  8344. print"OYEFGYEFYGIEF"
  8345. local cols={"Lime green", "Really black"}
  8346. function fromground()
  8347. local poss = Torso.CFrame*CFrame.new(0,-3,0)
  8348. local main=it("Part",Char)
  8349. main.Anchored=true
  8350. main.CanCollide=false
  8351. main.Size=v3(1,.2,1)
  8352. main.CFrame=poss
  8353. main.BrickColor=BrickColor.new(cols[math.random(#cols)])
  8354. main.Material="Neon"
  8355. main.CFrame = main.CFrame*cf((ran(-30,30)),0,(ran(-30,30)))
  8356. local one = it("SpecialMesh", main)
  8357. one.MeshType = "Sphere"
  8358. one.Scale = v3(.3,.3,.3)
  8359. main.CFrame = main.CFrame*angles((rad(90)),0,0)
  8360. for i = 0,10,.1 do
  8361. one.Scale = one.Scale+v3(.1,.1,4)
  8362. main.Transparency = i
  8363. wait()
  8364. end
  8365. one:Destroy()
  8366. main:Destroy()
  8367. end
  8368. coroutine.resume(coroutine.create(function()
  8369. while Ging==true do
  8370. spawn(function()
  8371. fromground()
  8372. end)
  8373. wait(.1)
  8374. end
  8375. end))
  8376. spawn(function()
  8377. coroutine.resume(coroutine.create(function()
  8378. for i=1,17 do r:wait()
  8379. print"hi"
  8380. local Cir=part(Char,true,false,v3(0,0,0),Torso.CFrame*cf(0,-2.8,0)*angles(0,0,math.rad(90)),c3(0,0,0),"Neon",1)
  8381. local Cirm=mesh(Cir,"Cylinder",v3(0,1,1))
  8382. local CirDec=it("Decal",Cir)
  8383. CirDec.Texture="rbxassetid://687708091"
  8384. CirDec.Face="Right"
  8385. CirDec.Transparency=0
  8386. table.insert(Clear,Cir)
  8387. for ii=1,100 do r:wait()
  8388. Cir.CFrame=Cir.CFrame*CFrame.Angles(math.rad(i*1.5),0,0)
  8389. Cirm.Scale=Cirm.Scale:Lerp(Cirm.Scale+Vector3.new(0,6,6),.4)
  8390. CirDec.Transparency=ii/100
  8391. end
  8392. end
  8393. end))
  8394. end)
  8395. Bright={}
  8396. local BR=1
  8397. for i=1,10 do
  8398. table.insert(Bright,BR)
  8399. BR=BR-.1
  8400. end
  8401. table.insert(Bright,0)
  8402. for i, v in pairs(Bright) do
  8403. print(v)
  8404. end
  8405. Lighting.Brightness=1
  8406. spawn(function()
  8407. for i=1,#Bright do
  8408. Lighting.Brightness=Bright[i]
  8409. wait(.1)
  8410. end
  8411. end)
  8412. local C1=part(Char,true,false,v3(1,1,1),Torso.CFrame*CFrame.new(0,155,0),c3(90/255,97/255,99/255),"Plastic",1)
  8413. local C1m=spmesh(C1,"rbxassetid://1095708",v3(1000,50,1000))
  8414. for i=1,#Bright do
  8415. C1.Transparency=Bright[i]
  8416. wait(.1)
  8417. end
  8418. chat:Chat(Char.Head,"Open! Hades Gate!","Green")
  8419. --PORTAL
  8420. Portalling=true
  8421. for i=1,2 do
  8422. local Spoke1=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,1),"Plastic",1)
  8423. local pp1=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  8424. local pp2=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  8425. local pp3=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  8426. local pp4=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  8427. local POS=part(Char,false,false,v3(2,2,2),Torso.CFrame*angles(math.rad(90),0,0)*cf(0,0,-140),c3(0,1,1),"Plastic",1)
  8428.  
  8429. local wel0=it("Weld",Char)
  8430. wel0.Part0=Spoke1
  8431. wel0.Part1=POS
  8432. wait()
  8433. local wel1=it("Weld",Char)
  8434. wel1.Part0=POS
  8435. wel1.Part1=pp1
  8436. wait()
  8437. wel1.C0=wel1.C0*cf(0,60,0)
  8438. wait()
  8439. local wel2=it("Weld",Char)
  8440. wel2.Part0=POS
  8441. wel2.Part1=pp2
  8442. wel2.C0=wel2.C0*cf(0,-60,0)
  8443. wait()
  8444.  
  8445. local wel3=it("Weld",Char)
  8446. wel3.Part0=POS
  8447. wel3.Part1=pp3
  8448. wel3.C0=wel3.C0*cf(-60,0,0)
  8449. wait()
  8450. local wel4=it("Weld",Char)
  8451. wel4.Part0=POS
  8452. wel4.Part1=pp4
  8453. wel4.C0=wel4.C0*cf(60,0,0)
  8454. local TransPoints={
  8455. NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(.51,0,0),NumberSequenceKeypoint.new(.517,.0123,0),
  8456. NumberSequenceKeypoint.new(.767,0.0926,0),NumberSequenceKeypoint.new(.88,.395,0),NumberSequenceKeypoint.new(1,1,0)
  8457. }
  8458. local SizePoints={
  8459. NumberSequenceKeypoint.new(0,4.56,0),NumberSequenceKeypoint.new(.046,4.44,0),NumberSequenceKeypoint.new(.144,4.25,0),
  8460. NumberSequenceKeypoint.new(.521,4,0),NumberSequenceKeypoint.new(1,3.75,0)
  8461. }
  8462. local PE1=PEE(pp1,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Bottom",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect1","rbxassetid://300899374")
  8463. local PE2=PEE(pp2,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Top",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect2","rbxassetid://300899374")
  8464. local PE3=PEE(pp3,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Right",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect3","rbxassetid://300899374")
  8465. local PE4=PEE(pp4,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Left",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect4","rbxassetid://300899374")
  8466. spawn(function()
  8467.  
  8468.  
  8469. while Portalling==true do
  8470. wait()
  8471. POS.CFrame=POS.CFrame*angles(0,0,math.rad(3))
  8472. end
  8473. POS:Destroy()
  8474. pp1:Destroy()
  8475. pp2:Destroy()
  8476. pp3:Destroy()
  8477. pp4:Destroy()
  8478. end)
  8479. wait(.5)
  8480. end
  8481. wait(5)
  8482. newpos()
  8483. chat:Chat(Char.Head,"Now, You Will Know What It's Like To Burn.","Green")
  8484. Ging=false
  8485. Ring:Destroy()
  8486. Ring2:Destroy()
  8487. ball:Destroy()
  8488. ball2:Destroy()
  8489. for i,v in pairs(Clear) do
  8490. v:Destroy()
  8491. end
  8492. wait(3)
  8493. --anims
  8494. chat:Chat(Char.Head,"DIE!!!!!","Green")
  8495. defpos()
  8496.  
  8497. RS.C0 = clerp(RS.C0,RS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  8498. LS.C0 = clerp(LS.C0,LS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  8499. RH.C0 = clerp(RH.C0,RH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  8500. LH.C0 = clerp(LH.C0,LH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  8501. Neck.C0 = clerp(Neck.C0,Neck.C0*angles(rad(-35), rad(0), rad(0)), 1)
  8502. local cylp=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(0,0,math.rad(90)),c3(0,1,0),"Neon",.5)
  8503. local clym=mesh(cylp,"Cylinder",v3(5000,60,40))
  8504. smoothNO(cylp)
  8505. spawn(function()
  8506. while REKING==true do r:wait()
  8507. cylp.CFrame=Torso.CFrame*angles(0,0,math.rad(90))*CFrame.new(ran(-2,2),0,ran(-2,2))
  8508. end
  8509. end)
  8510. local Explosion=function()
  8511. local b1=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.5)--spike mesh in middle
  8512. local b2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.6)--black ball mesh thats big and expands
  8513. local b3=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--green ball mesh that coats black ball mesh
  8514. local r1=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  8515. local r2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  8516. local bb=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.7)--black ball that envelopes all >:D rhymes
  8517. local gr=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  8518. local gr2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  8519. local sw=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--shockwave around whole fing
  8520. local sw2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--another shockwave around whole fing
  8521. local bm1=spmesh(b1,"rbxassetid://9982590",v3(8,8,8))
  8522. local bm2=mesh(b2,"Sphere",v3(40,40,40))
  8523. local bm3=mesh(b3,"Sphere",v3(42,42,42))
  8524. local rm1=spmesh(r1,"rbxassetid://3270017",v3(50,50,30))
  8525. local rm2=spmesh(r2,"rbxassetid://3270017",v3(50,50,30))
  8526. local bbm=mesh(bb,"Sphere",v3(60,60,60))
  8527. local grm1=spmesh(gr,"rbxassetid://3270017",v3(80,80,50))
  8528. local grm2=spmesh(gr2,"rbxassetid://3270017",v3(80,80,50))
  8529. local ss1=spmesh(sw,"rbxassetid://20329976",v3(40,15,40))
  8530. local ss2=spmesh(sw2,"rbxassetid://20329976",v3(48,5,48))
  8531. wait()
  8532. smoothNO(b1)
  8533. smoothNO(b2)
  8534. smoothNO(bb)
  8535. RealDamage(Torso,70,200,70,false)
  8536. for i=1,400 do r:wait()
  8537. --CFrames
  8538. b1.CFrame=b1.CFrame:lerp(b1.CFrame*CFrame.Angles(rad(3),0,rad(3)),.4)
  8539. r1.CFrame=r1.CFrame:lerp(r1.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  8540. r2.CFrame=r2.CFrame:lerp(r2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  8541. gr.CFrame=gr.CFrame:lerp(gr.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  8542. gr2.CFrame=gr2.CFrame:lerp(gr2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  8543. sw.CFrame=sw.CFrame:lerp(sw.CFrame*CFrame.Angles(0,math.rad(5),0),.4)
  8544. sw2.CFrame=sw2.CFrame:lerp(sw2.CFrame*CFrame.Angles(0,math.rad(-5),0),.4)
  8545. --Sizing
  8546. bm1.Scale=bm1.Scale:Lerp(bm1.Scale+Vector3.new(1.8,1.8,1.8),.069)--hehe
  8547. bm2.Scale=bm2.Scale:Lerp(bm2.Scale+Vector3.new(6,6,6),.1)
  8548. bm3.Scale=bm3.Scale:Lerp(bm3.Scale+Vector3.new(6,6,6),.1)
  8549. rm1.Scale=rm1.Scale:Lerp(rm1.Scale+Vector3.new(7,7,7),.1)
  8550. rm2.Scale=rm2.Scale:Lerp(rm2.Scale+Vector3.new(7,7,7),.1)
  8551. bbm.Scale=bbm.Scale:Lerp(bbm.Scale+Vector3.new(8,8,8),.1)
  8552. grm1.Scale=grm1.Scale:Lerp(grm1.Scale+Vector3.new(7,7,7),.1)
  8553. grm2.Scale=grm2.Scale:Lerp(grm2.Scale+Vector3.new(7,7,7),.1)
  8554. ss1.Scale=ss1.Scale:Lerp(ss1.Scale+Vector3.new(7,3,7),.1)
  8555. ss2.Scale=ss2.Scale:Lerp(ss2.Scale+Vector3.new(7,2,7),.1)
  8556. --Transparency
  8557. b1.Transparency=.7+i/400
  8558. b2.Transparency=.7+i/400
  8559. b3.Transparency=.7+i/400
  8560. r1.Transparency=.7+i/400
  8561. r2.Transparency=.7+i/400
  8562. bb.Transparency=.7+i/400
  8563. gr.Transparency=.7+i/400
  8564. gr2.Transparency=.7+i/400
  8565. sw.Transparency=.7+i/400
  8566. sw2.Transparency=.7+i/400
  8567.  
  8568. end
  8569. --Destroying
  8570. b1:Destroy()
  8571. b2:Destroy()
  8572. b3:Destroy()
  8573. r1:Destroy()
  8574. r2:Destroy()
  8575. bb:Destroy()
  8576. gr:Destroy()
  8577. gr2:Destroy()
  8578. sw:Destroy()
  8579. sw2:Destroy()
  8580. end
  8581. for i=1,30 do r:wait()
  8582. spawn(function()
  8583. Explosion()
  8584. end)
  8585. wait(.89)
  8586. end
  8587. REKING=false
  8588. NBright={}
  8589. local NBR=0
  8590. for i=1,10 do
  8591. table.insert(NBright,NBR)
  8592. NBR=NBR+.1
  8593. end
  8594. print"boop"
  8595. for i, v in pairs(NBright) do
  8596. print(v)
  8597. end
  8598. for i=1,#NBright do
  8599. Lighting.Brightness=NBright[i]
  8600. wait(.1)
  8601. end
  8602. Lighting.Brightness=1
  8603. Portalling=false
  8604. for i=1,10 do wait()
  8605. C1.Transparency=i/10
  8606. cylp.Transparency=.5+i/10
  8607. end
  8608. Torso.Anchored=false
  8609. newpos()
  8610. attacking=false
  8611. canattack=true
  8612.  
  8613. end
  8614. end)
  8615.  
  8616.  
  8617.  
  8618.  
  8619.  
  8620. Mouse.KeyDown:connect(function(Key)
  8621. if Key=="p" and attacking==false then attacking=true
  8622. chat:Chat(Char.Head,"URAGH!","Green")
  8623. local Explosion=function()
  8624. local b1=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.5)--spike mesh in middle
  8625. local b2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.6)--black ball mesh thats big and expands
  8626. local b3=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--green ball mesh that coats black ball mesh
  8627. local r1=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  8628. local r2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  8629. local bb=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.7)--black ball that envelopes all >:D rhymes
  8630. local gr=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  8631. local gr2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  8632. local sw=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--shockwave around whole fing
  8633. local sw2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--another shockwave around whole fing
  8634. local bm1=spmesh(b1,"rbxassetid://9982590",v3(8,8,8))
  8635. local bm2=mesh(b2,"Sphere",v3(40,40,40))
  8636. local bm3=mesh(b3,"Sphere",v3(42,42,42))
  8637. local rm1=spmesh(r1,"rbxassetid://3270017",v3(50,50,30))
  8638. local rm2=spmesh(r2,"rbxassetid://3270017",v3(50,50,30))
  8639. local bbm=mesh(bb,"Sphere",v3(60,60,60))
  8640. local grm1=spmesh(gr,"rbxassetid://3270017",v3(80,80,50))
  8641. local grm2=spmesh(gr2,"rbxassetid://3270017",v3(80,80,50))
  8642. local ss1=spmesh(sw,"rbxassetid://20329976",v3(40,15,40))
  8643. local ss2=spmesh(sw2,"rbxassetid://20329976",v3(48,5,48))
  8644. wait()
  8645. smoothNO(b1)
  8646. smoothNO(b2)
  8647. smoothNO(bb)
  8648. for i=1,400 do r:wait()
  8649. --CFrames
  8650. b1.CFrame=b1.CFrame:lerp(b1.CFrame*CFrame.Angles(rad(3),0,rad(3)),.4)
  8651. r1.CFrame=r1.CFrame:lerp(r1.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  8652. r2.CFrame=r2.CFrame:lerp(r2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  8653. gr.CFrame=gr.CFrame:lerp(gr.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  8654. gr2.CFrame=gr2.CFrame:lerp(gr2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  8655. sw.CFrame=sw.CFrame:lerp(sw.CFrame*CFrame.Angles(0,math.rad(5),0),.4)
  8656. sw2.CFrame=sw2.CFrame:lerp(sw2.CFrame*CFrame.Angles(0,math.rad(-5),0),.4)
  8657. --Sizing
  8658. bm1.Scale=bm1.Scale:Lerp(bm1.Scale+Vector3.new(1.8,1.8,1.8),.069)--hehe
  8659. bm2.Scale=bm2.Scale:Lerp(bm2.Scale+Vector3.new(6,6,6),.1)
  8660. bm3.Scale=bm3.Scale:Lerp(bm3.Scale+Vector3.new(6,6,6),.1)
  8661. rm1.Scale=rm1.Scale:Lerp(rm1.Scale+Vector3.new(7,7,7),.1)
  8662. rm2.Scale=rm2.Scale:Lerp(rm2.Scale+Vector3.new(7,7,7),.1)
  8663. bbm.Scale=bbm.Scale:Lerp(bbm.Scale+Vector3.new(8,8,8),.1)
  8664. grm1.Scale=grm1.Scale:Lerp(grm1.Scale+Vector3.new(7,7,7),.1)
  8665. grm2.Scale=grm2.Scale:Lerp(grm2.Scale+Vector3.new(7,7,7),.1)
  8666. ss1.Scale=ss1.Scale:Lerp(ss1.Scale+Vector3.new(7,3,7),.1)
  8667. ss2.Scale=ss2.Scale:Lerp(ss2.Scale+Vector3.new(7,2,7),.1)
  8668. --Transparency
  8669. b1.Transparency=.7+i/400
  8670. b2.Transparency=.7+i/400
  8671. b3.Transparency=.7+i/400
  8672. r1.Transparency=.7+i/400
  8673. r2.Transparency=.7+i/400
  8674. bb.Transparency=.7+i/400
  8675. gr.Transparency=.7+i/400
  8676. gr2.Transparency=.7+i/400
  8677. sw.Transparency=.7+i/400
  8678. sw2.Transparency=.7+i/400
  8679.  
  8680. end
  8681. b1:Destroy()
  8682. b2:Destroy()
  8683. b3:Destroy()
  8684. r1:Destroy()
  8685. r2:Destroy()
  8686. bb:Destroy()
  8687. gr:Destroy()
  8688. gr2:Destroy()
  8689. sw:Destroy()
  8690. sw2:Destroy()
  8691. end
  8692. Torso.Anchored=true
  8693. RS.C0 = clerp(RS.C0,RS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  8694. LS.C0 = clerp(LS.C0,LS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  8695. RH.C0 = clerp(RH.C0,RH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  8696. LH.C0 = clerp(LH.C0,LH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  8697. Neck.C0 = clerp(Neck.C0,Neck.C0*angles(rad(-35), rad(0), rad(0)), 1)
  8698. spawn(function()
  8699. Explosion()
  8700. end)
  8701. wait(2)
  8702. Torso.Anchored=false
  8703. newpos()
  8704.  
  8705. attacking=false
  8706. end
  8707. end)
  8708.  
  8709. Mouse.KeyDown:connect(function(Key)
  8710. if Key=="l" then
  8711. local poop=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)
  8712. local cyl=mesh(poop,"Cylinder",v3(1,1,1))
  8713. for i=1,60,.2 do r:wait()
  8714. cyl.Scale=Vector3.new(i*2,i*2,4)
  8715. poop.CFrame=Torso.CFrame*CFrame.new(0,0,-i)*CFrame.Angles(0,rad(90),0)
  8716. end
  8717.  
  8718. end
  8719. end)
  8720.  
  8721. Mouse.KeyDown:connect(function(Key)
  8722. if Key=="m" then
  8723. local poop=part(Char,true,false,v3(1,1,1),Torso.CFrame*cf(ran(3,10),ran(0,10),ran(3,10)),c3(0,1,0),"Neon",.7)
  8724. poop.CFrame=poop.CFrame*CFrame.new(poop.Position-Torso.Position,poop.Position)
  8725. end
  8726. end)
  8727.  
  8728.  
  8729.  
  8730.  
  8731.  
  8732.  
  8733.  
  8734.  
  8735.  
  8736. local animpose = "Idle"
  8737. local lastanimpose = "Idle"
  8738. local sine = 0
  8739. local change = 1
  8740. local val = 0
  8741. local ffing = false
  8742. -------------------------------
  8743. game:GetService("RunService").RenderStepped:connect(function()
  8744. --[[if char.Humanoid.Jump == true then
  8745. jump = true
  8746. else
  8747. jump = false
  8748. end]]
  8749. char.Humanoid.FreeFalling:connect(function(f)
  8750. if f then
  8751. ffing = true
  8752. else
  8753. ffing = false
  8754. end
  8755. end)
  8756. sine = sine + change
  8757. if jumpn == true then
  8758. animpose = "Jumping"
  8759. elseif ffing == true then
  8760. animpose = "Freefalling"
  8761. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  8762. animpose = "Idle"
  8763. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  8764. animpose = "Walking"
  8765. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  8766. animpose = "Running"
  8767. end
  8768. if animpose ~= lastanimpose then
  8769. sine = 0
  8770. if Debounces.NoIdl == false then
  8771. if animpose == "Idle" then
  8772. for i = 1, 2 do
  8773. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  8774. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  8775. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  8776. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  8777. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  8778. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  8779. end
  8780. elseif animpose == "Walking" then
  8781. for i = 1, 2 do
  8782. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  8783. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  8784. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  8785. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  8786. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  8787. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  8788. end
  8789. elseif animpose == "Running" then
  8790. for i = 1, 2 do
  8791. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  8792. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  8793. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  8794. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  8795. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  8796. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  8797. wait()
  8798. end
  8799. end
  8800. else
  8801. end
  8802. end
  8803. lastanimpose = animpose
  8804. if Debounces.NoIdl == false then
  8805. if animpose == "Idle" then
  8806. change = 0.5
  8807. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-10),math.rad(-10),math.rad(14+2*math.cos(sine/10))), 0.4)
  8808. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-20),math.rad(6),math.rad(-10-2*math.cos(sine/10))), 0.4)
  8809. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
  8810. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  8811. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
  8812. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(10), math.rad(-0-2*math.cos(sine/10))), 0.4)
  8813. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
  8814. elseif animpose == "Walking" then
  8815. change = 1
  8816. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  8817. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  8818. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  8819. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  8820. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  8821. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  8822. elseif animpose == "Running" then
  8823. change = 1
  8824. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  8825. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  8826. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  8827. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  8828. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  8829. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  8830. end
  8831. end
  8832. end)
  8833.  
  8834. hum.MaxHealth = math.huge
  8835. wait(3)
  8836. hum.Health = math.huge
  8837. spawn(function()
  8838. while wait(2)
  8839. do
  8840. GroundWave3()
  8841. end
  8842. end)
  8843. end)
  8844.  
  8845. TextLabel.Parent = Frame
  8846. TextLabel.BackgroundColor3 = Color3.new(1, 0, 0)
  8847. TextLabel.Size = UDim2.new(0, 403, 0, 38)
  8848. TextLabel.Font = Enum.Font.SourceSans
  8849. TextLabel.FontSize = Enum.FontSize.Size14
  8850. TextLabel.Text = "epic script quick access executor by Vextr0n"
  8851. TextLabel.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment