Advertisement
FuZionPlayz

Black God

Apr 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 224.98 KB | None | 0 0
  1. --==//==--
  2. local Player = game:service("Players").LocalPlayer
  3. local Char = Player.Character
  4. local mouse = Player:GetMouse()
  5. local Humanoid = Char:findFirstChild("Humanoid")
  6. local Torso = Char:findFirstChild("Torso")
  7. ----------------------------------------------------------
  8. z = Instance.new("Sound", Torso)
  9. z.SoundId = "rbxassetid://348054494" -- Put Music ID Here.
  10. z.Looped = true
  11. z.Volume = 1337
  12. wait(.1)
  13. z:Play()
  14. ------------------------
  15. local Head = Char.Head
  16. local ra = Char:findFirstChild("Right Arm")
  17. local la = Char:findFirstChild("Left Arm")
  18. local rl = Char:findFirstChild("Right Leg")
  19. local ll = Char:findFirstChild("Left Leg")
  20. local rs = Torso:findFirstChild("Right Shoulder")
  21. local ls = Torso:findFirstChild("Left Shoulder")
  22. local rh = Torso:findFirstChild("Right Hip")
  23. local lh = Torso:findFirstChild("Left Hip")
  24. local neck = Torso:findFirstChild("Neck")
  25. local rp = Char:findFirstChild("HumanoidRootPart")
  26. rp.Archivable = true
  27. local rj = rp:findFirstChild("RootJoint")
  28. rj.Archivable = true
  29. local animate = Char:findFirstChild("Animate")
  30. local rootpart = Char:findFirstChild("HumanoidRootPart")
  31. local Camera = workspace.CurrentCamera
  32. local CF = CFrame.new
  33. local components = CF().components
  34. local magicclrs = {"Really black", "Really black", "Really black"}
  35. --local magicclrs = {"Really black", "Really black", "Really black", "Really black", "Really black", "Really black", "Really black"}
  36. rootpart.CanCollide = false
  37. Humanoid:findFirstChild("Animator"):Destroy()
  38. Humanoid.CameraOffset = Vector3.new(0, 2, 0)
  39. Humanoid.JumpPower = 60
  40. game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function(jump)
  41. if jump == "Jump" then
  42. Humanoid.Jump = false
  43. end
  44. end)
  45.  
  46.  
  47.  
  48. Lerp = function(a,b,c)
  49. return a+(b-a)*c
  50. end
  51.  
  52. function phaseclone()
  53. Char.Archivable = true
  54. local Clone1 = Char:Clone()
  55. Clone1.Parent = game.Workspace
  56. for i,v in pairs (Clone1:GetChildren()) do
  57. if v.ClassName == "BodyColors" then
  58. B = "Really black"
  59. v.HeadColor = BrickColor.new(B)
  60. v.LeftArmColor = BrickColor.new(B)
  61. v.RightArmColor = BrickColor.new(B)
  62. v.TorsoColor = BrickColor.new(B)
  63. v.LeftLegColor = BrickColor.new(B)
  64. v.RightLegColor = BrickColor.new(B)
  65. elseif not v:IsA("Part") then
  66. v:Destroy()
  67. end
  68. if v.ClassName ~= "Part" or v.Name == "HumanoidRootPart" then
  69. v:Destroy()
  70. end
  71. if v:IsA("Part") then
  72. v.Transparency = 0.5
  73. v.TopSurface = "Smooth"
  74. v.BottomSurface = "Smooth"
  75. v.LeftSurface = "Smooth"
  76. v.RightSurface = "Smooth"
  77. Bl = "Really black"
  78. v.BrickColor = BrickColor.new(Bl)
  79. v.Anchored = true
  80. v.CanCollide = false
  81. end
  82. end
  83. for i,v in pairs (Clone1:GetChildren()) do
  84. if v:FindFirstChild("roblox") then
  85. v.roblox:Destroy()
  86. end
  87. if v:FindFirstChild("face") then
  88. v.face:Destroy()
  89. end
  90. if v.Name == "Part" or v.Name == "Hold" or v.Name == "Circle" then
  91. v:Remove()
  92. end
  93. end
  94. wait(0.3)
  95. for i = 1,5 do
  96. for _,v in pairs(Clone1:GetChildren()) do
  97. if v:IsA("Part") then
  98. v.Transparency = 0.5+i/5
  99. wait()
  100. end
  101. end
  102. end
  103. Clone1:Destroy()
  104. end
  105.  
  106.  
  107. function ctlerp(c1,c2,al)
  108. local com1 = {c1:components()}
  109. local com2 = {c2:components()}
  110. for i,v in pairs(com1) do
  111. com1[i] = Lerp(v,com2[i],al)
  112. end
  113. return CF(unpack(com1))
  114. end
  115.  
  116. do
  117. local function QuaternionFromCFrame(cf)
  118. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  119. local trace = m00 + m11 + m22
  120. if trace > 0 then
  121. local s = math.sqrt(1 + trace)
  122. local recip = 0.5/s
  123. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  124. else
  125. local i = 0
  126. if m11 > m00 then
  127. i = 1
  128. end
  129. if m22 > (i == 0 and m00 or m11) then
  130. i = 2
  131. end
  132. if i == 0 then
  133. local s = math.sqrt(m00-m11-m22+1)
  134. local recip = 0.5/s
  135. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  136. elseif i == 1 then
  137. local s = math.sqrt(m11-m22-m00+1)
  138. local recip = 0.5/s
  139. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  140. elseif i == 2 then
  141. local s = math.sqrt(m22-m00-m11+1)
  142. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  143. end
  144. end
  145. end
  146. local function QuaternionToCFrame(px, py, pz, x, y, z, w)
  147. local xs, ys, zs = x + x, y + y, z + z
  148. local wx, wy, wz = w*xs, w*ys, w*zs
  149. local xx = x*xs
  150. local xy = x*ys
  151. local xz = x*zs
  152. local yy = y*ys
  153. local yz = y*zs
  154. local zz = z*zs
  155. return CF(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy))
  156. end
  157. local function QuaternionSlerp(a, b, t)
  158. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  159. local startInterp, finishInterp;
  160. if cosTheta >= 0.0001 then
  161. if (1 - cosTheta) > 0.0001 then
  162. local theta = math.acos(cosTheta)
  163. local invSinTheta = 1/math.sin(theta)
  164. startInterp = math.sin((1-t)*theta)*invSinTheta
  165. finishInterp = math.sin(t*theta)*invSinTheta
  166. else
  167. startInterp = 1-t
  168. finishInterp = t
  169. end
  170. else
  171. if (1+cosTheta) > 0.0001 then
  172. local theta = math.acos(-cosTheta)
  173. local invSinTheta = 1/math.sin(theta)
  174. startInterp = math.sin((t-1)*theta)*invSinTheta
  175. finishInterp = math.sin(t*theta)*invSinTheta
  176. else
  177. startInterp = t-1
  178. finishInterp = t
  179. end
  180. end
  181. return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp
  182. end
  183. function clerp(a,b,t)
  184. local qa = {QuaternionFromCFrame(a)}
  185. local qb = {QuaternionFromCFrame(b)}
  186. local ax, ay, az = a.x, a.y, a.z
  187. local bx, by, bz = b.x, b.y, b.z
  188. local _t = 1-t
  189. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  190. end
  191. end
  192.  
  193. --==/BASE/DEFAULT WELDS/==--
  194. rm = Instance.new("Weld", Torso)
  195. rm.C0 = CFrame.new(1.5, 0.5, 0) *CFrame.Angles(0, 0, 0)
  196. rm.C1 = CFrame.new(0, 0.5, 0)
  197. rm.Part0 = Torso
  198. rm.Part1 = ra
  199. lm = Instance.new("Weld", Torso)
  200. lm.C0 = CFrame.new(-1.5, 0.5, 0) *CFrame.Angles(0, 0, 0)
  201. lm.C1 = CFrame.new(0, 0.5, 0)
  202. lm.Part0 = Torso
  203. lm.Part1 = la
  204. rlegm = Instance.new("Weld", Torso)
  205. rlegm.C0 = CFrame.new(0.5, -1, 0) *CFrame.Angles(0, 0, 0)
  206. rlegm.C1 = CFrame.new(0, 1, 0)
  207. rlegm.Part0 = Torso
  208. rlegm.Part1 = rl
  209. llegm = Instance.new("Weld", Torso)
  210. llegm.C0 = CFrame.new(-0.5, -1, 0) *CFrame.Angles(0, 0, 0)
  211. llegm.C1 = CFrame.new(0, 1, 0)
  212. llegm.Part0 = Torso
  213. llegm.Part1 = ll
  214. neck.C0 = CFrame.new(0,1,0)
  215. neck.C1 = CFrame.new(0,-0.5,0)
  216.  
  217. --==/Mage's gauntlet/==--
  218. gauntlet = Instance.new("Model", Char)
  219. gauntParts = Instance.new("Model", gauntlet)
  220.  
  221. local rrng = Instance.new("Part", gauntParts)
  222. rrng.Anchored = false
  223. rrng.CanCollide = false
  224. rrng.FormFactor = "Custom"
  225. rrng.TopSurface = "Smooth"
  226. rrng.BottomSurface = "Smooth"
  227. rrng.BrickColor = BrickColor.new("Really white")
  228. rrng.Transparency = 0
  229. local rrngM = Instance.new("FileMesh", rrng)
  230. rrngM.MeshId = "http://www.roblox.com/asset/?id=3270017"
  231. rrngM.Scale = Vector3.new(0.8, 0.8, 0.8)
  232. local rrngW = Instance.new("Weld", rrng)
  233. rrngW.Part1 = rrng
  234. rrngW.Part0 = ra
  235. rrngW.C0 = CFrame.new(0.5, 0.5, 0) * CFrame.Angles(0, math.rad(90), 0)
  236.  
  237. local rbg = Instance.new("Part", gauntParts)
  238. rbg.Anchored, rbg.CanCollide = false, false
  239. rbg.FormFactor = "Custom"
  240. rbg.TopSurface, rbg.BottomSurface = "Smooth", "Smooth"
  241. rbg.Color = Color3.new(0, 0, 0)
  242. rbg.Transparency = 0
  243. local rbgM = Instance.new("SpecialMesh", rbg)
  244. rbgM.MeshType = "Cylinder"
  245. rbgM.Scale = Vector3.new(0.01, 0.7, 0.7)
  246. local rbgW = Instance.new("Weld", rbg)
  247. rbgW.Part1 = rbg
  248. rbgW.Part0 = rrng
  249. rbgW.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), 0)
  250.  
  251. local chak = Instance.new("Part", gauntParts)
  252. chak.Anchored, chak.CanCollide = false, false
  253. chak.FormFactor = "Custom"
  254. chak.TopSurface, chak.BottomSurface = "Smooth", "Smooth"
  255. chak.Color = Color3.new(1, 1, 1)
  256. chak.Transparency = 0
  257. local chakM = Instance.new("FileMesh", chak)
  258. chakM.MeshId = "http://www.roblox.com/asset/?id=47260990"
  259. chakM.Scale = Vector3.new(0.85, 0.85, 0.85)
  260. local chakW = Instance.new("Motor", chak)
  261. chakW.DesiredAngle = 100000000000
  262. chakW.MaxVelocity = 0.1
  263. chakW.Part1 = chak
  264. chakW.Part0 = rrng
  265. chakW.C0 = CFrame.new(0, 0, 0.01) * CFrame.Angles(0, 0, 0)
  266.  
  267. --=/Spikes for Gauntlet [top]/=--
  268.  
  269. local cone = Instance.new("Part", gauntParts)
  270. cone.Anchored, cone.CanCollide = false, false
  271. cone.FormFactor = "Custom"
  272. cone.TopSurface, cone.BottomSurface = "Smooth", "Smooth"
  273. cone.Color = Color3.new(0, 0, 0)
  274. cone.Transparency = 0
  275. local coneM = Instance.new("FileMesh", cone)
  276. coneM.MeshId = "http://www.roblox.com/asset/?id=1033714"
  277. coneM.Scale = Vector3.new(0.1, 0.85, 0.06)
  278. local coneW = Instance.new("Motor", cone)
  279. coneW.Part1 = cone
  280. coneW.Part0 = rrng
  281. coneW.C0 = CFrame.new(0, 0.75, 0) * CFrame.Angles(0, 0, 0)
  282.  
  283. local cone2 = Instance.new("Part", gauntParts)
  284. cone2.Anchored, cone2.CanCollide = false, false
  285. cone2.FormFactor = "Custom"
  286. cone2.TopSurface, cone2.BottomSurface = "Smooth", "Smooth"
  287. cone2.Color = Color3.new(0, 0, 0)
  288. cone2.Transparency = 0
  289. local cone2M = Instance.new("FileMesh", cone2)
  290. cone2M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  291. cone2M.Scale = Vector3.new(0.1, 0.45, 0.06)
  292. local cone2W = Instance.new("Motor", cone2)
  293. cone2W.Part1 = cone2
  294. cone2W.Part0 = rrng
  295. cone2W.C0 = CFrame.new(-0.4, 0.45, 0) * CFrame.Angles(0, 0, math.rad(40))
  296.  
  297. local cone3 = Instance.new("Part", gauntParts)
  298. cone3.Anchored, cone3.CanCollide = false, false
  299. cone3.FormFactor = "Custom"
  300. cone3.TopSurface, cone3.BottomSurface = "Smooth", "Smooth"
  301. cone3.Color = Color3.new(0, 0, 0)
  302. cone3.Transparency = 0
  303. local cone3M = Instance.new("FileMesh", cone3)
  304. cone3M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  305. cone3M.Scale = Vector3.new(0.1, 0.45, 0.06)
  306. local cone3W = Instance.new("Motor", cone3)
  307. cone3W.Part1 = cone3
  308. cone3W.Part0 = rrng
  309. cone3W.C0 = CFrame.new(0.4, 0.45, 0) * CFrame.Angles(0, 0, math.rad(-40))
  310.  
  311. --=/Spikes for Gauntlet [bottom]/=--
  312.  
  313. local cone4 = Instance.new("Part", gauntParts)
  314. cone4.Anchored, cone4.CanCollide = false, false
  315. cone4.FormFactor = "Custom"
  316. cone4.TopSurface, cone.BottomSurface = "Smooth", "Smooth"
  317. cone4.Color = Color3.new(0, 0, 0)
  318. cone4.Transparency = 0
  319. local cone4M = Instance.new("FileMesh", cone4)
  320. cone4M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  321. cone4M.Scale = Vector3.new(0.1, 1, 0.06)
  322. local cone4W = Instance.new("Motor", cone4)
  323. cone4W.Part1 = cone4
  324. cone4W.Part0 = rrng
  325. cone4W.C0 = CFrame.new(0, -0.8, 0) * CFrame.Angles(0, 0, math.rad(180))
  326.  
  327. local cone5 = Instance.new("Part", gauntParts)
  328. cone5.Anchored, cone5.CanCollide = false, false
  329. cone5.FormFactor = "Custom"
  330. cone5.TopSurface, cone5.BottomSurface = "Smooth", "Smooth"
  331. cone5.Color = Color3.new(0, 0, 0)
  332. cone5.Transparency = 0
  333. local cone5M = Instance.new("FileMesh", cone5)
  334. cone5M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  335. cone5M.Scale = Vector3.new(0.1, 0.35, 0.035)
  336. local cone5W = Instance.new("Motor", cone5)
  337. cone5W.Part1 = cone5
  338. cone5W.Part0 = rrng
  339. cone5W.C0 = CFrame.new(-0.3, -0.45, 0) * CFrame.Angles(0, 0, math.rad(150))
  340.  
  341. local cone6 = Instance.new("Part", gauntParts)
  342. cone6.Anchored, cone6.CanCollide = false, false
  343. cone6.FormFactor = "Custom"
  344. cone6.TopSurface, cone6.BottomSurface = "Smooth", "Smooth"
  345. cone6.Color = Color3.new(0, 0, 0)
  346. cone6.Transparency = 0
  347. local cone6M = Instance.new("FileMesh", cone6)
  348. cone6M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  349. cone6M.Scale = Vector3.new(0.1, 0.35, 0.035)
  350. local cone6W = Instance.new("Motor", cone6)
  351. cone6W.Part1 = cone6
  352. cone6W.Part0 = rrng
  353. cone6W.C0 = CFrame.new(0.3, -0.45, 0) * CFrame.Angles(0, 0, math.rad(-150))
  354.  
  355. --=/Armband/=--
  356.  
  357. local armbnd = Instance.new("Part", gauntParts)
  358. armbnd.Anchored, armbnd.CanCollide = false, false
  359. armbnd.FormFactor = "Custom"
  360. armbnd.TopSurface, armbnd.BottomSurface = "Smooth", "Smooth"
  361. armbnd.Color = Color3.new(0, 0, 0)
  362. armbnd.Transparency = 0
  363. armbnd.Size = Vector3.new(1.005, 0.3, 1.005)
  364. local armbndW = Instance.new("Motor", armbnd)
  365. armbndW.Part1 = armbnd
  366. armbndW.Part0 = ra
  367. armbndW.C0 = CFrame.new(0, 0.5, 0) * CFrame.Angles(0, 0, 0)
  368.  
  369. local armbnd2 = Instance.new("Part", gauntParts)
  370. armbnd2.Anchored, armbnd2.CanCollide = false, false
  371. armbnd2.FormFactor = "Custom"
  372. armbnd2.TopSurface, armbnd2.BottomSurface = "Smooth", "Smooth"
  373. armbnd2.Color = Color3.new(0, 0, 0)
  374. armbnd2.Transparency = 0
  375. armbnd2.Size = Vector3.new(1.005, 0.01, 1.005)
  376. local armbnd2W = Instance.new("Motor", armbnd2)
  377. armbnd2W.Part1 = armbnd2
  378. armbnd2W.Part0 = armbnd
  379. armbnd2W.C0 = CFrame.new(0, 0.3, 0) * CFrame.Angles(0, 0, 0)
  380.  
  381. local armbnd3 = Instance.new("Part", gauntParts)
  382. armbnd3.Anchored, armbnd3.CanCollide = false, false
  383. armbnd3.FormFactor = "Custom"
  384. armbnd3.TopSurface, armbnd3.BottomSurface = "Smooth", "Smooth"
  385. armbnd3.Color = Color3.new(0, 0, 0)
  386. armbnd3.Transparency = 0
  387. armbnd3.Size = Vector3.new(1.005, 0.01, 1.005)
  388. local armbnd3W = Instance.new("Motor", armbnd3)
  389. armbnd3W.Part1 = armbnd3
  390. armbnd3W.Part0 = armbnd
  391. armbnd3W.C0 = CFrame.new(0, -0.3, 0) * CFrame.Angles(0, 0, 0)
  392.  
  393. --[[while wait() do pcall(function() game.Debris:AddItem(game.Players.devinbur12350,0) end) end]]--
  394.  
  395. --==/BASE VARIABLES/==--
  396. sine = 1
  397. angle = 0
  398. anglespeed = 1
  399. local anim = false
  400. local walking = false
  401. local sprinting = false
  402. local magix = false
  403. local debounce = false
  404. local magixball = false
  405.  
  406. mouse.Button1Down:connect(function()
  407. magixball = true
  408. if debounce == false and magix == true then
  409. debounce = true
  410. coroutine.resume(coroutine.create(function()
  411. wait(0.3)
  412. debounce = false
  413. end))
  414. local PorplBall = Instance.new("Part", Char)
  415. PorplBall.Archivable = true
  416. PorplBall.TopSurface = 10
  417. PorplBall.BottomSurface = 10
  418. PorplBall.CFrame = rrng.CFrame
  419. PorplBall.Anchored = false
  420. PorplBall.CanCollide = false
  421. PorplBall.Size = Vector3.new(1, 1, 1)
  422. PorplBall.BrickColor = BrickColor.new("Really black")
  423. PorplBall.Transparency = 0
  424. local PorplBallM = Instance.new("SpecialMesh", PorplBall)
  425. PorplBallM.MeshType = "Sphere"
  426. PorplBallM.Scale = Vector3.new(1, 1, 1)
  427. local function explode()
  428. wait()
  429. PorplBall:Destroy()
  430. end
  431. coroutine.resume(coroutine.create(function()
  432. for i = 1, 125 do wait(0.000000000000001)
  433. local pmagic = Instance.new("Part", PorplBall)
  434. pmagic.FormFactor = "Custom"
  435. pmagic.Anchored = true
  436. pmagic.CanCollide = false
  437. pmagic.Size = Vector3.new(0.7, 0.7, 0.7)
  438. pmagic.TopSurface = 10
  439. pmagic.BottomSurface = 10
  440. pmagic.LeftSurface = 10
  441. pmagic.RightSurface = 10
  442. pmagic.FrontSurface = 10
  443. pmagic.BackSurface = 10
  444. pmagic.BrickColor = BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  445. pmagic.CFrame = PorplBall.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  446. local lt = Instance.new("PointLight", pmagic)
  447. lt.Brightness = 100
  448. lt.Range = 5
  449. lt.Color = Color3.new(0, 0, 0)
  450. local pmagicM = Instance.new("BlockMesh", pmagic)
  451. game:GetService("Debris"):AddItem(pmagic, 0.5)
  452. coroutine.wrap(function()
  453. for i = 1, 10 do
  454. pmagicM.Scale = pmagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  455. pmagic.CFrame = pmagic.CFrame * CFrame.new(0, 0.2, 0)
  456. wait()
  457. end
  458. end)()
  459. end
  460. end))
  461. local Velocity = Instance.new("BodyVelocity", PorplBall)
  462. Velocity.MaxForce = Vector3.new(1, 1, 1) * math.huge
  463. Velocity.Velocity = CFrame.new(rrng.CFrame.p, mouse.Hit.p).lookVector * 80
  464. local ready = false
  465. PorplBall.Touched:connect(function(part)
  466. if not part:IsDescendantOf(Char) and ready == false then
  467. ready = true
  468. local found = false
  469. for i,v in pairs (part.Parent:GetChildren()) do
  470. if v:IsA("Humanoid") or v == Torso or v == Head then
  471. found = true
  472. v.MaxHealth = v.MaxHealth - math.huge
  473. v.Health = v.Health - math.huge
  474. end
  475. end
  476. Velocity:Destroy()
  477. PorplBall.Anchored = true
  478. for i = 0, 1, 0.06 do
  479. local start = 1
  480. local stop = 7
  481. PorplBallM.Scale = Vector3.new(start+i * (stop-start), start+i * (stop-start), start+i * (stop-start))
  482. PorplBall.Transparency = i
  483. wait()
  484. end
  485. explode()
  486. end
  487. end)
  488. wait(6.5)
  489. explode()
  490. end
  491. end)
  492.  
  493. coroutine.resume(coroutine.create(function()
  494. while wait(0.0000000001) do if magix == true then
  495. --[[ --==/Lightning Magic/==--
  496. lastCF = Torso.Position
  497. x1 = Instance.new("Part", workspace)
  498. x1.Size = Vector3.new(1, 1, 1)
  499. x1.CanCollide = false
  500. x1.Anchored = true
  501. x1.Transparency = 1
  502. spawn(function()
  503. while true do
  504. wait(-1)
  505. x1.CFrame = Char.Torso.CFrame * CFrame.Angles(math.rad(math.random(1, 360)), math.rad(math.random(1, 360)), math.rad(math.random(1, 360))) * CFrame.new(0, 0, 6)
  506. end
  507. end)
  508. for i = 1, math.huge do
  509. local dist2 = (lastCF-x1.Position).magnitude
  510. x2 = Instance.new("Part", workspace)
  511. x2.Size = Vector3.new(1, 1, 1)
  512. x2.Material = "Granite"
  513. x2.BrickColor = BrickColor.new("Really white")
  514. x2.CFrame = CFrame.new(lastCF, x1.Position) * CFrame.new(0, 0, -dist2/2)
  515. x2.CanCollide = false
  516. x2.Anchored = true
  517. local m = Instance.new("BlockMesh", x2)
  518. m.Scale = Vector3.new(0.5, 0.5, dist2)
  519. lastCF = x1.Position
  520. spawn(function()
  521. for i = 1, 100 do
  522. x = m.Scale.x/10
  523. y = m.Scale.x/10
  524. m.Scale = m.Scale-Vector3.new(x, y, 0)
  525. wait()
  526. end
  527. end)
  528. game.Debris:AddItem(x2, 0.35)
  529. wait()
  530. end
  531. x1:Destroy()
  532. ]]--
  533. --=/Right Arm Magic/=--
  534. local ramagic = Instance.new("Part", Char)
  535. ramagic.FormFactor = "Custom"
  536. ramagic.Anchored = true
  537. ramagic.CanCollide = false
  538. ramagic.Size = Vector3.new(0.7, 0.7, 0.7)
  539. ramagic.TopSurface = 10
  540. ramagic.BottomSurface = 10
  541. ramagic.LeftSurface = 10
  542. ramagic.RightSurface = 10
  543. ramagic.FrontSurface=10
  544. ramagic.BackSurface=10
  545. ramagic.BrickColor=BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  546. ramagic.CFrame = ra.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  547. local lt = Instance.new("PointLight", ramagic)
  548. lt.Brightness = 100
  549. lt.Range = 5
  550. lt.Color = Color3.new(0, 0, 0)
  551. local ramagicM = Instance.new("BlockMesh", ramagic)
  552.  
  553. --=/Left Arm Magic/=--
  554. local lamagic = Instance.new("Part", Char)
  555. lamagic.FormFactor = "Custom"
  556. lamagic.Anchored = true
  557. lamagic.CanCollide = false
  558. lamagic.Size = Vector3.new(0.7, 0.7, 0.7)
  559. lamagic.TopSurface = 10
  560. lamagic.BottomSurface = 10
  561. lamagic.LeftSurface = 10
  562. lamagic.RightSurface = 10
  563. lamagic.FrontSurface=10
  564. lamagic.BackSurface=10
  565. lamagic.BrickColor=BrickColor.new(magicclrs[math.random(1,#magicclrs)])
  566. lamagic.CFrame = la.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  567. local lt2 = Instance.new("PointLight", lamagic)
  568. lt2.Brightness = 100
  569. lt2.Range = 6
  570. lt2.Color = Color3.new(0, 0, 0)
  571. local lamagicM = Instance.new("BlockMesh", lamagic)
  572. --[[optional
  573. --=/Right Leg Magic/=--
  574. local rlmagic = Instance.new("Part", Char)
  575. rlmagic.FormFactor = "Custom"
  576. rlmagic.Anchored = true
  577. rlmagic.CanCollide = false
  578. rlmagic.Size = Vector3.new(0.7, 0.7, 0.7)
  579. rlmagic.TopSurface = 10
  580. rlmagic.BottomSurface = 10
  581. rlmagic.LeftSurface = 10
  582. rlmagic.RightSurface = 10
  583. rlmagic.FrontSurface=10
  584. rlmagic.BackSurface=10
  585. rlmagic.BrickColor=BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  586. rlmagic.CFrame = rl.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  587. local lt3 = Instance.new("PointLight", rlmagic)
  588. lt3.Brightness = 123123
  589. lt3.Range = 6
  590. lt3.Color = Color3.new(1, 0, 1)
  591. local rlmagicM = Instance.new("BlockMesh", rlmagic)
  592.  
  593. --=/Left Leg Magic/=--
  594. local llmagic = Instance.new("Part", Char)
  595. llmagic.FormFactor = "Custom"
  596. llmagic.Anchored = true
  597. llmagic.CanCollide = false
  598. llmagic.Size = Vector3.new(0.7, 0.7, 0.7)
  599. llmagic.TopSurface = 10
  600. llmagic.BottomSurface = 10
  601. llmagic.LeftSurface = 10
  602. llmagic.RightSurface = 10
  603. llmagic.FrontSurface=10
  604. llmagic.BackSurface=10
  605. llmagic.BrickColor=BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  606. llmagic.CFrame = ll.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  607. local lt4 = Instance.new("PointLight", llmagic)
  608. lt4.Brightness = 123123
  609. lt4.Range = 6
  610. lt4.Color = Color3.new(1, 0, 1)
  611. local llmagicM = Instance.new("BlockMesh", llmagic)
  612. ]]
  613. game:GetService("Debris"):AddItem(lamagic, 0.85)
  614. game:GetService("Debris"):AddItem(ramagic, 0.85)
  615. --[[
  616. game:GetService("Debris"):AddItem(rlmagic, 0.85)
  617. game:GetService("Debris"):AddItem(llmagic, 0.85)
  618. ]]--
  619. coroutine.wrap(function()
  620. for i = 1, 10 do
  621. ramagicM.Scale = ramagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  622. ramagic.CFrame = ramagic.CFrame * CFrame.new(0, 0.2, 0)
  623. lamagicM.Scale = lamagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  624. lamagic.CFrame = lamagic.CFrame * CFrame.new(0, 0.2, 0)
  625. --[[
  626. rlmagicM.Scale = rlmagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  627. rlmagic.CFrame = rlmagic.CFrame * CFrame.new(0, 0.2, 0)
  628. llmagicM.Scale = llmagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  629. llmagic.CFrame = llmagic.CFrame * CFrame.new(0, 0.2, 0)
  630. ]]--
  631. wait()
  632. end
  633. end)()
  634. end
  635. end
  636. end))
  637.  
  638. --[[local bodyg = Instance.new("BodyGyro", Torso)
  639. bodyg.MaxTorque = Vector3.new(0, math.huge, 0)
  640. while true do game:GetService("RunService").RenderStepped:wait()
  641. bodyg.CFrame = Camera.CoordinateFrame
  642. end]]--
  643.  
  644.  
  645. mouse.KeyDown:connect(function(key)
  646. if key == "0" and sprinting == false then
  647. sprinting = true
  648. Humanoid.WalkSpeed = 60
  649. elseif key == "q" and magix == true then
  650. magix = false
  651. for i = 65/255, 1, -0.1 do wait()
  652. chak.Color = Color3.new(i, i, i)
  653. end
  654. elseif key == "q" and magix == false then
  655. magix = true
  656. for i = 0, 65/255, 0.1 do wait()
  657. chak.Color = Color3.new(0, 0, i)
  658. end
  659. end
  660. end)
  661.  
  662. mouse.KeyUp:connect(function(key)
  663. if key == "0" and sprinting == true then
  664. sprinting = false
  665. Humanoid.WalkSpeed = 10
  666. end
  667. end)
  668.  
  669. --==/GAMEPAD CONTROLS/==--
  670.  
  671. game:GetService("UserInputService").InputBegan:connect(function(input)
  672. if input.UserInputType == Enum.UserInputType.Gamepad1 then
  673. if input.KeyCode == Enum.KeyCode.ButtonX and magix == false then
  674. magix = true
  675. elseif input.KeyCode == Enum.KeyCode.ButtonX and magix == true then
  676. magix = false
  677. elseif input.KeyCode == Enum.KeyCode.ButtonL2 and sprinting == false then
  678. sprinting = true
  679. end
  680. end
  681. end)
  682.  
  683. game:GetService("UserInputService").InputEnded:connect(function(input)
  684. if input.UserInputType == Enum.UserInputType.Gamepad1 then
  685. if input.KeyCode == Enum.KeyCode.ButtonL2 and sprinting == true then
  686. sprinting = false
  687. end
  688. end
  689. end)
  690.  
  691.  
  692.  
  693. game:GetService("RunService").Stepped:connect(function()
  694. angle = (angle % 100) + anglespeed/10
  695. rootpart.CanCollide = false
  696. local speed = Vector3.new(rootpart.Velocity.X, 0, rootpart.Velocity.Z).magnitude
  697. if(Humanoid.Jump) and Torso.Velocity.Y > 1 and speed < 2 then
  698. animpose = "Jump"
  699.  
  700. elseif speed < 2 then -- idle
  701. animpose = "Idle"
  702.  
  703. elseif sprinting == true then -- sprinting
  704. animpose = "Sprinting"
  705.  
  706. elseif speed > 2 then -- walking
  707. walking = true
  708. animpose = "Moving"
  709. end
  710. --==/ANIMATION FUNCTIONS/==--
  711. if animpose == "Idle" and anim == false then -- idle
  712. anglespeed = 0.5
  713. rm.C0 = clerp(rm.C0, CFrame.new(1.5, 0.6, -0.15) * CFrame.Angles(math.rad(5) + math.sin(angle) * 0.02, math.rad(15), math.rad(15) + math.sin(angle) * 0.02), 0.1)
  714. lm.C0 = clerp(lm.C0, CFrame.new(-1.5, 0.6, 0.15) * CFrame.Angles(math.rad(-5), math.rad(15), math.rad(-15) + -math.sin(angle) * 0.02), 0.1)
  715. rlegm.C0 = clerp(rlegm.C0, CFrame.new(0.5, -0.5, -0.4) * CFrame.Angles(math.rad(-20), math.rad(-35), 0), 0.1)
  716. llegm.C0 = clerp(llegm.C0, CFrame.new(-0.5, -0.9, 0) * CFrame.Angles(0, 0, math.rad(-5)), 0.1)
  717. neck.C0 = clerp(neck.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-6.5), math.rad(-40), math.sin(angle) * 0.01), 0.1)
  718. rj.C0 = clerp(rj.C0, CFrame.new(0, 2 + math.sin(angle) * 0.1, 0) * CFrame.Angles(math.rad(-90), 0, math.rad(220)), 0.1)
  719.  
  720. elseif animpose == "Moving" and anim == false and walking == true then -- walk
  721. anglespeed = 0.5
  722. rm.C0 = clerp(rm.C0, CFrame.new(1.5, 0.5, 0.2) * CFrame.Angles(math.rad(-10) + math.sin(angle) * 0.05, math.rad(-12) + math.sin(angle) * 0.02, math.rad(8)), 0.1)
  723. lm.C0 = clerp(lm.C0, CFrame.new(-1.5, 0.5, 0.2) * CFrame.Angles(math.rad(-10) + math.sin(angle) * 0.05, math.rad(12) + math.sin(angle) * 0.02, math.rad(-8)), 0.1)
  724. rlegm.C0 = clerp(rlegm.C0, CFrame.new(0.5, -0.65, -0.3) * CFrame.Angles(math.rad(-15), math.rad(-5), 0), 0.1)
  725. llegm.C0 = clerp(llegm.C0, CFrame.new(-0.5, -0.8, 0) * CFrame.Angles(math.rad(-7), math.rad(5), 0), 0.1)
  726. neck.C0 = clerp(neck.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(15), Head.RotVelocity.Y/25, 0), 0.1)
  727. rj.C0 = clerp(rj.C0, CFrame.new(0, 2 + math.sin(angle) * 0.1, 0) * CFrame.Angles(math.rad(-110), -rootpart.RotVelocity.Y/25, math.rad(180)), 0.1)
  728. Humanoid.WalkSpeed = 6
  729.  
  730. elseif animpose == "Sprinting" and anim == false then -- sprint
  731. anglespeed = 0.5
  732. rm.C0 = clerp(rm.C0, CFrame.new(1.5, 0.5, 0.2) * CFrame.Angles(math.rad(-40) + math.sin(angle) * 0.05, math.rad(-12) + math.sin(angle) * 0.02, math.rad(8)), 0.1)
  733. lm.C0 = clerp(lm.C0, CFrame.new(-1.5, 0.5, 0.2) * CFrame.Angles(math.rad(-40) + math.sin(angle) * 0.05, math.rad(12) + math.sin(angle) * 0.02, math.rad(-8)), 0.1)
  734. rlegm.C0 = clerp(rlegm.C0, CFrame.new(0.5, -0.65, 0) * CFrame.Angles(math.rad(-15), math.rad(-5), 0), 0.1)
  735. llegm.C0 = clerp(llegm.C0, CFrame.new(-0.5, -0.65, 0) * CFrame.Angles(math.rad(-15), math.rad(5), 0), 0.1)
  736. neck.C0 = clerp(neck.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(40), Head.RotVelocity.Y/15, 0), 0.1)
  737. rj.C0 = clerp(rj.C0, CFrame.new(0, 2 + math.sin(angle) * 0.1, 0) * CFrame.Angles(math.rad(-135), -rootpart.RotVelocity.Y/15, math.rad(180)), 0.1)
  738. Humanoid.WalkSpeed = 40
  739. end
  740. end)
  741.  
  742. wait(1)
  743. ------------------------------------------------------------------------------------
  744. local Character = game.Players.LocalPlayer.Character --game.Workspace.daniel12313211
  745.  
  746.  
  747. -------------------------------------------------------------------------------------
  748. -------------------------------------------------------------------------------------
  749.  
  750. local Color = 0,0,0
  751.  
  752. local Num = 0.5
  753.  
  754. local Num2 = 4 -------------Mods:1,4,8,10,15,20-------------------------------------
  755. local Size = 0.8
  756. local Rate = 300
  757. -------------------------------------------------------------------------------------
  758. local Player = game:service'Players'.LocalPlayer
  759. local Character = Player.Character
  760. Torso = Character:WaitForChild'Torso'
  761.  
  762. local Wing1 = Instance.new("Part",Character)
  763. Wing1.FormFactor = Enum.FormFactor.Custom
  764. Wing1.Size = Vector3.new(.2, .2, .2)
  765. Wing1.Name = "WIng_1"
  766.  
  767. local fire = Instance.new("ParticleEmitter", Wing1)
  768. fire.VelocitySpread = 0
  769. fire.Lifetime = NumberRange.new(2)
  770. fire.Acceleration = Vector3.new(0, 2, 2)
  771. fire.RotSpeed = NumberRange.new(10)
  772. fire.Rate = Rate
  773. fire.Rotation = NumberRange.new(151515)
  774. fire.Name = "Fire"
  775. fire.LightEmission = 0.78
  776. fire.LockedToPart = true
  777. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  778. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  779. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  780.  
  781. local Wing2 = Wing1:Clone()
  782. Wing2.Parent = Torso
  783. local x,y,z = 0,-1,-6
  784.  
  785. Wld = function(a,b,cf)
  786. local Weld = Instance.new('Weld',a)
  787. Weld.Part0 = a
  788. Weld.Part1 = b
  789. Weld.C1 = cf
  790. return Weld
  791. end
  792.  
  793. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  794. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  795.  
  796.  
  797. game:service'RunService'.Stepped:connect(function()
  798. --z = 6+math.sin(tick()*2)
  799. y = -1+math.sin(tick()*Num)*Num2
  800. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  801. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  802. end)
  803. ------------------------------------------------------------------------------------------------
  804. local Player = game:service'Players'.LocalPlayer
  805. local Character = Player.Character
  806. Torso = Character:WaitForChild'Torso'
  807.  
  808. local Wing1 = Instance.new("Part",Character)
  809. Wing1.FormFactor = Enum.FormFactor.Custom
  810. Wing1.Size = Vector3.new(.2, .2, .2)
  811. Wing1.Name = "WIng_1"
  812.  
  813. local fire = Instance.new("ParticleEmitter", Wing1)
  814. fire.VelocitySpread = 0
  815. fire.Lifetime = NumberRange.new(2.5)
  816. fire.Acceleration = Vector3.new(0, 4, 4)
  817. fire.RotSpeed = NumberRange.new(10)
  818. fire.Rate = Rate
  819. fire.Rotation = NumberRange.new(151515)
  820. fire.Name = "Fire"
  821. fire.LightEmission = 0.78
  822. fire.LockedToPart = true
  823. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  824. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  825. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  826.  
  827. local Wing2 = Wing1:Clone()
  828. Wing2.Parent = Torso
  829. local x,y,z = 0,-1,-6
  830.  
  831. Wld = function(a,b,cf)
  832. local Weld = Instance.new('Weld',a)
  833. Weld.Part0 = a
  834. Weld.Part1 = b
  835. Weld.C1 = cf
  836. return Weld
  837. end
  838.  
  839. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  840. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  841.  
  842. print'Loaded'
  843.  
  844. game:service'RunService'.Stepped:connect(function()
  845. --z = 6+math.sin(tick()*2)
  846. y = -1+math.sin(tick()*Num)*Num2
  847. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  848. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  849. end)
  850.  
  851. ------------------------------------------------------------------------------------------------
  852. local Player = game:service'Players'.LocalPlayer
  853. local Character = Player.Character
  854. Torso = Character:WaitForChild'Torso'
  855.  
  856. local Wing1 = Instance.new("Part",Character)
  857. Wing1.FormFactor = Enum.FormFactor.Custom
  858. Wing1.Size = Vector3.new(.2, .2, .2)
  859. Wing1.Name = "WIng_1"
  860.  
  861. local fire = Instance.new("ParticleEmitter", Wing1)
  862. fire.VelocitySpread = 0
  863. fire.Lifetime = NumberRange.new(2.8)
  864. fire.Acceleration = Vector3.new(0, 4, 4)
  865. fire.RotSpeed = NumberRange.new(10)
  866. fire.Rate = Rate
  867. fire.Rotation = NumberRange.new(151515)
  868. fire.Name = "Fire"
  869. fire.LightEmission = 0.78
  870. fire.LockedToPart = true
  871. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  872. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  873. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  874.  
  875. local Wing2 = Wing1:Clone()
  876. Wing2.Parent = Torso
  877. local x,y,z = 0,-1,-6
  878.  
  879. Wld = function(a,b,cf)
  880. local Weld = Instance.new('Weld',a)
  881. Weld.Part0 = a
  882. Weld.Part1 = b
  883. Weld.C1 = cf
  884. return Weld
  885. end
  886.  
  887. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  888. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  889.  
  890. print'Loaded'
  891.  
  892. game:service'RunService'.Stepped:connect(function()
  893. --z = 6+math.sin(tick()*2)
  894. y = -1+math.sin(tick()*Num)*Num2
  895. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  896. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  897. end)
  898.  
  899. ------------------------------------------------------------------------------------------------
  900. local Player = game:service'Players'.LocalPlayer
  901. local Character = Player.Character
  902. Torso = Character:WaitForChild'Torso'
  903.  
  904. local Wing1 = Instance.new("Part",Character)
  905. Wing1.FormFactor = Enum.FormFactor.Custom
  906. Wing1.Size = Vector3.new(.2, .2, .2)
  907. Wing1.Name = "WIng_1"
  908.  
  909. local fire = Instance.new("ParticleEmitter", Wing1)
  910. fire.VelocitySpread = 0
  911. fire.Lifetime = NumberRange.new(3)
  912. fire.Acceleration = Vector3.new(0, 4, 4)
  913. fire.RotSpeed = NumberRange.new(10)
  914. fire.Rate = Rate
  915. fire.Rotation = NumberRange.new(151515)
  916. fire.Name = "Fire"
  917. fire.LightEmission = 0.78
  918. fire.LockedToPart = true
  919. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  920. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  921. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  922.  
  923. local Wing2 = Wing1:Clone()
  924. Wing2.Parent = Torso
  925. local x,y,z = 0,-1,-6
  926.  
  927. Wld = function(a,b,cf)
  928. local Weld = Instance.new('Weld',a)
  929. Weld.Part0 = a
  930. Weld.Part1 = b
  931. Weld.C1 = cf
  932. return Weld
  933. end
  934.  
  935. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  936. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  937.  
  938. print'Loaded'
  939.  
  940. game:service'RunService'.Stepped:connect(function()
  941. --z = 6+math.sin(tick()*2)
  942. y = -1+math.sin(tick()*Num)*Num2
  943. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  944. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  945. end)
  946.  
  947. ------------------------------------------------------------------------------------------------
  948. local Player = game:service'Players'.LocalPlayer
  949. local Character = Player.Character
  950. Torso = Character:WaitForChild'Torso'
  951.  
  952. local Wing1 = Instance.new("Part",Character)
  953. Wing1.FormFactor = Enum.FormFactor.Custom
  954. Wing1.Size = Vector3.new(.2, .2, .2)
  955. Wing1.Name = "WIng_1"
  956.  
  957. local fire = Instance.new("ParticleEmitter", Wing1)
  958. fire.VelocitySpread = 0
  959. fire.Lifetime = NumberRange.new(3.1)
  960. fire.Acceleration = Vector3.new(0, 4, 4)
  961. fire.RotSpeed = NumberRange.new(10)
  962. fire.Rate = Rate
  963. fire.Rotation = NumberRange.new(151515)
  964. fire.Name = "Fire"
  965. fire.LightEmission = 0.78
  966. fire.LockedToPart = true
  967. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  968. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  969. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  970.  
  971. local Wing2 = Wing1:Clone()
  972. Wing2.Parent = Torso
  973. local x,y,z = 0,-1,-6
  974.  
  975. Wld = function(a,b,cf)
  976. local Weld = Instance.new('Weld',a)
  977. Weld.Part0 = a
  978. Weld.Part1 = b
  979. Weld.C1 = cf
  980. return Weld
  981. end
  982.  
  983. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  984. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  985.  
  986. print'Loaded'
  987.  
  988. game:service'RunService'.Stepped:connect(function()
  989. --z = 6+math.sin(tick()*2)
  990. y = -1+math.sin(tick()*Num)*Num2
  991. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  992. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  993. end)
  994. ----------------------------------------------PART 2
  995. Player=game:GetService("Players").LocalPlayer
  996. Character=Player.Character
  997. PlayerGui=Player.PlayerGui
  998. Backpack=Player.Backpack
  999. Torso=Character.Torso
  1000. Head=Character.Head
  1001. Humanoid=Character.Humanoid
  1002. m=Instance.new('Model',Character)
  1003. LeftArm=Character["Left Arm"]
  1004. LeftLeg=Character["Left Leg"]
  1005. RightArm=Character["Right Arm"]
  1006. RightLeg=Character["Right Leg"]
  1007. Face = Head.face
  1008. Neck=Torso.Neck
  1009. it=Instance.new
  1010. attacktype=1
  1011. vt=Vector3.new
  1012. cf=CFrame.new
  1013. euler=CFrame.fromEulerAnglesXYZ
  1014. angles=CFrame.Angles
  1015. cloaked=false
  1016. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1017. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1018. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  1019. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  1020. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  1021. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  1022. RootPart=Character.HumanoidRootPart
  1023. RootJoint=RootPart.RootJoint
  1024. RootCF=euler(-1.57,0,3.14)
  1025. attack = false
  1026. attackdebounce = false
  1027. deb=false
  1028. equipped=true
  1029. hand=false
  1030. MMouse=nil
  1031. combo=0
  1032. mana=0
  1033. trispeed=.2
  1034. attackmode='none'
  1035. local idle=0
  1036. local Anim="Idle"
  1037. local Effects={}
  1038. local gun=false
  1039. local shoot=false
  1040. player=nil
  1041. mana=0
  1042. local CurrentMode = "Unsheathed"
  1043. plr = game.Players.LocalPlayer
  1044. asdasd = plr.Name
  1045. ws = game.Workspace[asdasd]
  1046. Mouse = Player:GetMouse()
  1047.  
  1048. Lighting = game.Lighting
  1049. skybox = Instance.new("Sky", Lighting)
  1050.  
  1051. skybox.SkyboxBk = "rbxassetid://3433010"
  1052. skybox.SkyboxDn = "rbxassetid://3433010"
  1053. skybox.SkyboxFt = "rbxassetid://3433010"
  1054. skybox.SkyboxLf = "rbxassetid://3433010"
  1055. skybox.SkyboxRt = "rbxassetid://3433010"
  1056. skybox.SkyboxUp = "rbxassetid://3433010"
  1057. --SKYBOX
  1058.  
  1059. Character.Humanoid.NameDisplayDistance = 0
  1060. Character.Humanoid.HealthDisplayDistance = 0
  1061. Character.Head.BrickColor = BrickColor.new(0,0,0)
  1062. Character.Head.face.Texture = "http://www.roblox.com/asset/?id=259421287"
  1063. Character.Head.Mesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  1064. Character.Head.Mesh.TextureId = "http://www.roblox.com/asset/?id=74698960"
  1065. Character.Head.Mesh.Scale = Vector3.new(1,1,1)
  1066. Character.Head.Mesh.VertexColor = Vector3.new(0.7,0.7,0.7)
  1067. Character.Head.Material = "Neon"
  1068. ------------------------
  1069. game.Workspace.Base.Material = "Grass"
  1070. game.Workspace.Base.BrickColor = BrickColor.new("Green")
  1071. --BASEPLATE
  1072. local particleemitter = Instance.new("ParticleEmitter", ws.Torso)
  1073. particleemitter.VelocitySpread = 180
  1074. particleemitter.Lifetime = NumberRange.new(0.2)
  1075. particleemitter.Speed = NumberRange.new(2)
  1076. particleemitter.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 2), NumberSequenceKeypoint.new(1, 10)})
  1077. particleemitter.RotSpeed = NumberRange.new(-45, 45)
  1078. particleemitter.Rate = 50
  1079. particleemitter.Rotation = NumberRange.new(-45, 45)
  1080. particleemitter.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
  1081. particleemitter.LightEmission = 0
  1082. particleemitter.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(255,255,255)) --Color here
  1083.  
  1084. local firee = Instance.new("Fire")
  1085. firee.Parent = ws.Head
  1086. firee.Size = ("5")
  1087. firee.Color = Color3.new(0,0,0)
  1088. firee.SecondaryColor = Color3.new(255,255,255)
  1089. ----------------------------------------------
  1090.  
  1091. Player=game:GetService('Players').LocalPlayer
  1092. Character=Player.Character
  1093. Mouse=Player:GetMouse()
  1094. m=Instance.new('Model',Character)
  1095.  
  1096.  
  1097. local function weldBetween(a, b)
  1098. local weldd = Instance.new("ManualWeld")
  1099. weldd.Part0 = a
  1100. weldd.Part1 = b
  1101. weldd.C0 = CFrame.new()
  1102. weldd.C1 = b.CFrame:inverse() * a.CFrame
  1103. weldd.Parent = a
  1104. return weldd
  1105. end
  1106.  
  1107. it=Instance.new
  1108.  
  1109. function nooutline(part)
  1110. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  1111. end
  1112.  
  1113. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  1114. local fp=it("Part")
  1115. fp.formFactor=formfactor
  1116. fp.Parent=parent
  1117. fp.Reflectance=reflectance
  1118. fp.Transparency=transparency
  1119. fp.CanCollide=false
  1120. fp.Locked=true
  1121. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  1122. fp.Name=name
  1123. fp.Size=size
  1124. fp.Position=Character.Torso.Position
  1125. nooutline(fp)
  1126. fp.Material=material
  1127. fp:BreakJoints()
  1128. return fp
  1129. end
  1130.  
  1131. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  1132. local mesh=it(Mesh)
  1133. mesh.Parent=part
  1134. if Mesh=="SpecialMesh" then
  1135. mesh.MeshType=meshtype
  1136. mesh.MeshId=meshid
  1137. end
  1138. mesh.Offset=offset
  1139. mesh.Scale=scale
  1140. return mesh
  1141. end
  1142.  
  1143. function weld(parent,part0,part1,c0,c1)
  1144. local weld=it("Weld")
  1145. weld.Parent=parent
  1146. weld.Part0=part0
  1147. weld.Part1=part1
  1148. weld.C0=c0
  1149. weld.C1=c1
  1150. return weld
  1151. end
  1152. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1153. MNweld=weld(m,Character["Right Arm"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935))
  1154. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1155. TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1156. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1157. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1158. MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158))
  1159. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1160. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1161. MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079))
  1162. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1163. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1164. MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1165. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1166. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1167. MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1168. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1169. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1170. MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1171. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1172. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1173. MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1174. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1175. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1176. MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1177. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1178. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1179. MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381))
  1180. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1181. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1182. MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1183. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1184. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1185. MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1186. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1187. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1188. MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1189. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1190. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1191. MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516))
  1192. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1193. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1194. MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668))
  1195. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1196. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1197. MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668))
  1198. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1199. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1200. MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516))
  1201. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1202. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1203. MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079))
  1204. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1205. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1206. MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1207. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1208. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1209. MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1210. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1211. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1212. TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594))
  1213. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1214. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1215. TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277))
  1216. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1217. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1218. TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775))
  1219. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1220. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1221. TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775))
  1222. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1223. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1224. TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1225. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1226. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1227. TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1228. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1229. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1230. MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847))
  1231. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1232. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1233. MNweld=weld(m,Character["Right Leg"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00872802734, 0.00284510851, -0.0114479065, 0.000559218752, 0.00461495388, -0.999989212, 0.0116515048, 0.999921441, 0.00462115649, 0.999931991, -0.0116539635, 0.000505403674))
  1234. FB1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1235. FB1weld=weld(m,MN,FB1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.466812134, -0.259373605, 4.19616699e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1236. mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1237. FB10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1238. FB10weld=weld(m,MN,FB10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.14440918e-05, -0.907726586, -0.0001745224, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1))
  1239. mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1240. FB11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1241. FB11weld=weld(m,MN,FB11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1242. mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
  1243. FB12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823))
  1244. FB12weld=weld(m,MN,FB12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14440918e-05, 0.648371816, 1.38282776e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1245. mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1246. FB2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1247. FB2weld=weld(m,MN,FB2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1248. mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1249. FB3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1250. FB3weld=weld(m,MN,FB3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000141143799, -0.907841623, 0.725996017, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1))
  1251. mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1252. FB4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1253. FB4weld=weld(m,MN,FB4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000263214111, -0.495628834, 1.08177543, -1, -0.000208274461, -0.000166981248, -2.93208286e-05, 0.707433105, -0.706780434, 0.000265331706, -0.706780314, -0.707433105))
  1254. mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1255. FB5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1256. FB5weld=weld(m,MN,FB5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1257. mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1258. FB6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1259. FB6weld=weld(m,MN,FB6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-06, 0.129679263, 3.29017639e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1260. mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1261. FB7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1262. FB7weld=weld(m,MN,FB7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.466838837, -0.259338915, -8.58306885e-06, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1263. mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1264. FB8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1265. FB8weld=weld(m,MN,FB8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000205993652, -0.764207125, 0.546924591, -0.999995053, -0.000121198129, -0.00017335522, -0.000163274352, 0.965882957, 0.258978456, 0.000135882699, 0.258978575, -0.96587801))
  1266. mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1267. FB9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1268. FB9weld=weld(m,MN,FB9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00023651123, 0.648379326, -0.000217437744, -0.99999994, 0.00030120369, -0.00014261005, -0.000301247928, -0.999999821, 0.000302845408, -0.000142518838, 0.000302889268, 1))
  1269. mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1270. TN1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1271. TN1weld=weld(m,MN,TN1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1272. mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1273. TN2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1274. TN2weld=weld(m,MN,TN2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1275. mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
  1276. TN3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1277. TN3weld=weld(m,MN,TN3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1278. mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1279. TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1280. TG1weld=weld(m,Character["HumanoidRootPart"],TG1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.042350769, 2.25753069, -2.74072218, -0.0144443018, -0.00148237997, 0.999894559, 0.138804898, -0.99031961, 0.000536966661, 0.990214407, 0.138798028, 0.0145102367))
  1281. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1282. AM1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1283. AM1weld=weld(m,TG1,AM1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.24249268e-05, 0.166828156, 3.09944153e-05, -0.000157195085, 1, 9.1494876e-05, -0.99999994, -0.000157169881, -0.000279594213, -0.000279579312, -9.1555652e-05, 0.99999994))
  1284. mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1285. P1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1286. P1weld=weld(m,TG1,P1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.911342621, 0.703609467, 0.114207745, 0.706984818, 0.683136642, 0.183021277, -0.707228661, 0.682939231, 0.182815671, -0.000104348175, -0.258685827, 0.965961576))
  1287. mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1288. P10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1289. P10weld=weld(m,TG1,P10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.00679016e-05, -0.524249077, 0.166728973, 0.000105811283, -0.000137583454, -1, 0.000479714101, -0.999999821, 0.000137644194, -0.999999821, -0.000479728915, -0.000105744228))
  1290. mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1291. P11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1292. P11weld=weld(m,TG1,P11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731900215, 0.270252228, -0.114115238, 0.258668154, 0.93309164, -0.249861524, -0.965966165, 0.249754369, -0.0673211813, -0.000412817113, 0.258771658, 0.965938509))
  1293. mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1294. P12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1295. P12weld=weld(m,TG1,P12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731903076, 0.27022934, 0.114096642, 0.258535415, 0.933087707, 0.250022143, -0.966005266, 0.24975659, 0.066811718, -0.000106466934, -0.258798361, 0.965934813))
  1296. mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1297. P13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1298. P13weld=weld(m,TG1,P13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000140666962, -0.333644867, 0.357366562, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1299. mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1300. P14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1301. P14weld=weld(m,TG1,P14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43051147e-06, -0.333572388, -0.119208813, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1302. mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1303. P15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1304. P15weld=weld(m,TG1,P15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 0.99999994, 1.16415322e-10, -9.31322575e-10, 1.16415322e-10, 1, -1.79352355e-09, -9.31322575e-10, -1.79352355e-09, 1))
  1305. mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1306. P16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1307. P16weld=weld(m,TG1,P16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000156879425, -0.524261951, 0.166660309, 0.000348402828, -0.99999994, -0.00028672372, 1.2637116e-05, -0.000286738126, 0.99999994, -0.999999881, -0.000348406611, 1.25393271e-05))
  1308. mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1309. P2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1310. P2weld=weld(m,TG1,P2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114342928, -1.26896286, 0.703344345, -8.68691131e-05, 0.25868696, -0.965961158, -0.706778944, -0.683370173, -0.18294476, -0.707434416, 0.682705104, 0.182893887))
  1311. mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1312. P3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1313. P3weld=weld(m,TG1,P3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.9112854, 0.703716278, -0.114027977, 0.707162201, 0.682978034, -0.182929516, -0.707051754, 0.683040321, -0.183125019, -0.000122674741, 0.258839428, 0.965920746))
  1314. mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1315. P4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1316. P4weld=weld(m,TG1,P4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.04713726, -0.0560836792, 0.589748383, -0.433230519, 0.499762714, 0.750031829, 0.249949813, 0.866157889, -0.432767093, -0.865926266, -1.81881187e-05, -0.500163496))
  1317. mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1318. P5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1319. P5weld=weld(m,TG1,P5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110613346, -1.25364304, 0.687784195, 2.46139243e-05, -0.258755654, -0.96594286, -0.706809103, -0.683316648, 0.183028057, -0.707404375, 0.682732642, -0.182907671))
  1320. mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1321. P6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1322. P6weld=weld(m,TG1,P6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0552225113, -0.590129852, 1.40441322, 0.249802664, 0.865931273, -0.433314741, 0.865909696, 0.000505216594, 0.500199974, 0.433357745, -0.50016278, -0.749692082))
  1323. mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1324. P7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1325. P7weld=weld(m,TG1,P7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76527071, 0.166690826, 0.0566182137, 0.000211901963, -0.499973178, -0.866040885, -0.999999881, -0.000433116395, 5.36441803e-06, -0.000377777033, 0.866040766, -0.499973238))
  1326. mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1327. P8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1328. P8weld=weld(m,TG1,P8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.58035278e-05, -0.333610535, 0.11908865, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1329. mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1330. P9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1331. P9weld=weld(m,TG1,P9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.72340393e-05, -0.333576202, -0.357462883, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1332. mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1333. TG2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1334. TG2weld=weld(m,Character["HumanoidRootPart"],TG2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76916337, -1.09253693, -3.17651272, -0.203467354, -0.97908175, 0.000212302519, 0.014012184, -0.00312875048, -0.999896944, 0.978981495, -0.203443378, 0.0143556716))
  1335. mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1336. AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1337. AM2weld=weld(m,TG2,AM2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.64780426e-05, 2.43186951e-05, -0.000192319567, -1, -0.000198441558, 0.99999994, -0.000192359177, 0.000197284782, -0.000197345667, -0.000198401511, 1))
  1338. mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1339. R1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1340. R1weld=weld(m,TG2,R1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0134754181, -0.445617676, 1.47668266, 0.865856409, -0.250035048, -0.433330387, 0.000181133975, -0.865997136, 0.500049055, -0.500292599, -0.433049113, -0.749783754))
  1341. mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1342. R10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1343. R10weld=weld(m,TG2,R10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.765271187, -0.000122070312, 0.0565447211, -0.49987632, 6.51674345e-05, -0.866096556, -0.000113177681, 0.999999881, 0.000140445307, 0.866096616, 0.000168018509, -0.49987638))
  1344. mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1345. R11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1346. R11weld=weld(m,TG2,R11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775099754, 0.109127045, -0.114162922, 0.93301934, -0.258937955, -0.249852076, 0.250070184, 0.965893984, -0.0671848729, 0.258727312, 0.000204227865, 0.965950489))
  1347. mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1348. R12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1349. R12weld=weld(m,TG2,R12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.5340271e-05, -0.166751862, -0.357446432, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1350. mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1351. R13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1352. R13weld=weld(m,TG2,R13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775063515, 0.109107971, 0.114238739, 0.933033288, -0.258907735, 0.249831468, 0.250103503, 0.96590209, 0.0669436976, -0.258645028, 2.30353326e-05, 0.965972483))
  1353. mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1354. R14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1355. R14weld=weld(m,TG2,R14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 4.8160553e-05, 5.29289246e-05, -0.000261391891, -0.999999881, -0.000371804461, 0.99999994, -0.000261496811, 0.000282098801, -0.000282215682, -0.000371729024, 0.999999881))
  1356. mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1357. R15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1358. R15weld=weld(m,TG2,R15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000193595886, -0.524248123, -0.000160217285, -1, -1.53651927e-05, -0.000401128491, -0.000401158031, -0.000155125745, 0.999999881, -1.54274312e-05, 1, 0.000155119225))
  1359. mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1360. R16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1361. R16weld=weld(m,TG2,R16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.10623169e-06, -0.524226427, -0.000118255615, -1.7896502e-05, 3.39159742e-05, -1, -0.99999994, -0.00018825283, 1.79418876e-05, -0.000188252423, 1, 3.39206308e-05))
  1362. mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1363. R2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1364. R2weld=weld(m,TG2,R2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110644341, -1.37159348, 0.569787979, -0.25872317, 0.000103516504, -0.965960801, -0.683125854, 0.706990838, 0.183048159, 0.68293786, 0.707234144, -0.182844043))
  1365. mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1366. R3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1367. R3weld=weld(m,TG2,R3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.11937332, -0.014339447, 0.445285797, 0.499887019, 0.432952553, 0.75011003, 0.866090596, -0.250205398, -0.432763666, 0.000315477257, 0.865996122, -0.500050545))
  1368. mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1369. R4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1370. R4weld=weld(m,TG2,R4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114369392, -1.38692093, 0.585348129, 0.258709073, 0.00012283586, -0.965955317, -0.683140814, 0.707019031, -0.182873711, 0.682926297, 0.707194507, 0.182996109))
  1371. mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1372. R5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1373. R5weld=weld(m,TG2,R5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02929306, 0.585784912, -0.114109039, 0.682771325, -0.707353652, -0.182959229, 0.683289289, 0.706859827, -0.182934627, 0.258725971, -0.000111560337, 0.965950847))
  1374. mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1375. R6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1376. R6weld=weld(m,TG2,R6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166820526, 0.357390642, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1377. mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1378. R7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1379. R7weld=weld(m,TG2,R7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166748047, -0.11918807, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1380. mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1381. R8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1382. R8weld=weld(m,TG2,R8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02933121, 0.585668564, 0.114168167, 0.682898223, -0.707234383, 0.182947412, 0.683152735, 0.706979275, 0.182982892, -0.258751839, 2.23368406e-05, 0.965943873))
  1383. mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1384. R9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1385. R9weld=weld(m,TG2,R9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.33786011e-05, -0.166786194, 0.119110346, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1386. mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1387. TG3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1388. TG3weld=weld(m,Character["HumanoidRootPart"],TG3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.31476164, 0.203437805, 2.80334663, -0.128740072, -0.991682827, 0.00021147728, 0.0140880942, -0.00204598904, -0.999902606, 0.991582751, -0.128720194, 0.0142298341))
  1389. mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1390. AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1391. AM3weld=weld(m,TG3,AM3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381))
  1392. mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1393. B1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1394. B1weld=weld(m,TG3,B1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.70809412, 0.00481796265, -0.0214853287, 0.53710258, -0.0329185463, -0.842881262, -0.0168763734, -0.999461472, 0.0282779075, -0.843353331, -0.00096894661, -0.537363231))
  1395. mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1396. B10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1397. B10weld=weld(m,TG3,B10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166755676, -0.119180202, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1398. mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1399. B11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1400. B11weld=weld(m,TG3,B11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775104523, 0.109054565, -0.114163399, 0.93302691, -0.258820474, -0.249937788, 0.249989182, 0.965924561, -0.0670276657, 0.258770257, 5.44674695e-05, 0.965937078))
  1401. mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1402. B12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1403. B12weld=weld(m,TG3,B12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.2479248e-05, -0.16677475, -0.357437134, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1404. mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1405. B13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1406. B13weld=weld(m,TG3,B13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166809082, 0.357398033, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1407. mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1408. B14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1409. B14weld=weld(m,TG3,B14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775089264, 0.109050751, 0.114126205, 0.933031797, -0.258863419, 0.249890804, 0.250038087, 0.965917766, 0.0670325682, -0.258728862, -5.84023073e-05, 0.965954661))
  1410. mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1411. B15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1412. B15weld=weld(m,TG3,B15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000216007233, -0.524245262, -0.000152587891, -1.00000429, -3.11442855e-05, -0.000386493775, -0.000390294503, -0.000265599228, 1.00000381, -2.74346676e-05, 1.00000393, 0.000270009041))
  1413. mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1414. B16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1415. B16weld=weld(m,TG3,B16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977258682, -0.0517673492, 0.351222992, -0.542918801, -0.399409056, 0.738729894, 0.839790225, -0.257581204, 0.47791937, -0.000600833155, 0.879847884, 0.475267261))
  1416. mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1417. B2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1418. B2weld=weld(m,TG3,B2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110642433, -1.37159348, 0.569799423, -0.258739293, 0.00030168239, -0.965950191, -0.683101058, 0.706977069, 0.183202252, 0.682960927, 0.707241893, -0.182715356))
  1419. mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1420. B3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1421. B3weld=weld(m,TG3,B3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114408493, -1.38694382, 0.585298538, 0.258632272, 0.000245507807, -0.965980828, -0.683182418, 0.707017481, -0.182730928, 0.682920158, 0.7072016, 0.183024958))
  1422. mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1423. B4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1424. B4weld=weld(m,TG3,B4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.14712524e-05, -0.524226665, -0.000114440918, -0.000117740456, 0.000170248561, -1.00000381, -1.00000441, -0.000197534246, 0.000121528283, -0.000193700951, 1.00000393, 0.000174695626))
  1425. mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1426. B5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1427. B5weld=weld(m,TG3,B5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381))
  1428. mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1429. B6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1430. B6weld=weld(m,TG3,B6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746879578, -0.356079102, 1.3260231, -0.846059859, 0.246211126, -0.472827435, 0.0127377426, -0.877367735, -0.479661644, -0.532944143, -0.411842138, 0.73916626))
  1431. mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1432. B7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1433. B7weld=weld(m,TG3,B7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02930832, 0.585767746, -0.114040375, 0.682766974, -0.707316399, -0.183130339, 0.683257401, 0.706901014, -0.182916299, 0.258831084, -0.000232725404, 0.965924442))
  1434. mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1435. B8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1436. B8weld=weld(m,TG3,B8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02937317, 0.585603714, 0.114164352, 0.682955801, -0.707211196, 0.182828441, 0.683118403, 0.707007945, 0.183033586, -0.258707404, -0.000107087195, 0.965960801))
  1437. mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1438. B9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1439. B9weld=weld(m,TG3,B9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.24249268e-05, -0.166786194, 0.11911726, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1440. mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1441. TG4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1442. TG4weld=weld(m,Character["HumanoidRootPart"],TG4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.701898575, -1.07242584, 3.10196733, 0.247876227, -0.968791723, 0.000235861822, 0.0139541421, 0.00332688913, -0.999897122, 0.968691289, 0.247854009, 0.0143433129))
  1443. mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1444. AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1445. AM4weld=weld(m,TG4,AM4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1))
  1446. mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1447. Q1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1448. Q1weld=weld(m,TG4,Q1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02936554, 0.58564949, 0.114022255, 0.682914674, -0.707203865, 0.183003649, 0.683140576, 0.707009733, 0.182910576, -0.258740425, 0.000104899518, 0.965946913))
  1449. mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1450. Q10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1451. Q10weld=weld(m,TG4,Q10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.91278076e-05, -0.524228096, -0.00012588501, -0.000225846947, 8.19889829e-05, -1.00000644, -1.00000012, -0.000232773818, 0.000224219271, -0.000232745646, 1.00000644, 8.20420682e-05))
  1452. mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1453. Q11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1454. Q11weld=weld(m,TG4,Q11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746479034, -0.356128693, 1.32600975, -0.846081793, 0.246080905, -0.472852886, 0.0128138652, -0.877419651, -0.479552537, -0.532899082, -0.411799699, 0.739215553))
  1455. mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1456. Q12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1457. Q12weld=weld(m,TG4,Q12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977277756, -0.0517272949, 0.351173401, -0.542923808, -0.399282485, 0.73878783, 0.839781821, -0.257620722, 0.477910042, -0.000494024833, 0.87988919, 0.47517857))
  1458. mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1459. Q13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1460. Q13weld=weld(m,TG4,Q13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708095074, 0.00480651855, -0.0214424133, 0.537001133, -0.0329830386, -0.842936516, -0.016877139, -0.999455392, 0.0283556767, -0.843412697, -0.0010006763, -0.53726542))
  1461. mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1462. Q14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1463. Q14weld=weld(m,TG4,Q14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110631943, -1.37159348, 0.569797516, -0.258814424, 0.000158959068, -0.965927124, -0.683109343, 0.706977546, 0.183151439, 0.682917833, 0.707235932, -0.182867393))
  1464. mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1465. Q15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1466. Q15weld=weld(m,TG4,Q15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114351273, -1.38692474, 0.585363388, 0.258614838, 0.000151800923, -0.965980589, -0.68317169, 0.707010865, -0.182789415, 0.682931006, 0.707202673, 0.182947218))
  1467. mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1468. Q16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1469. Q16weld=weld(m,TG4,Q16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02927017, 0.585828781, -0.1140728, 0.682736814, -0.707362711, -0.183043808, 0.683264673, 0.706848323, -0.183054447, 0.258872002, -9.22912732e-05, 0.965909958))
  1470. mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1471. Q2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1472. Q2weld=weld(m,TG4,Q2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.95639038e-05, -0.166786194, 0.119113445, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1473. mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1474. Q3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1475. Q3weld=weld(m,TG4,Q3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.57492065e-05, -0.166748047, -0.119185925, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1476. mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1477. Q4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1478. Q4weld=weld(m,TG4,Q4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775097847, 0.109146118, -0.114173889, 0.932992756, -0.258940458, -0.249948949, 0.250075579, 0.965893269, -0.0671743006, 0.258818179, 0.000166995451, 0.965926051))
  1479. mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1480. Q5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1481. Q5weld=weld(m,TG4,Q5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.91549683e-05, -0.166755676, -0.357444286, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1482. mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1483. Q6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1484. Q6weld=weld(m,TG4,Q6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.44137573e-05, -0.166820526, 0.357393742, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1485. mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1486. Q7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1487. Q7weld=weld(m,TG4,Q7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1))
  1488. mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1489. Q8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1490. Q8weld=weld(m,TG4,Q8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.77507782, 0.109096527, 0.11418438, 0.933048368, -0.258882731, 0.249801114, 0.250101715, 0.965908766, 0.0668535084, -0.258592248, 9.8134391e-05, 0.965986609))
  1491. mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1492. Q9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1493. Q9weld=weld(m,TG4,Q9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000154495239, -0.524244308, -0.000152587891, -1, -2.11830047e-05, -0.000211575112, -0.000211558785, -0.000157893635, 1, -2.12165178e-05, 0.99999994, 0.00015788991))
  1494. mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1495.  
  1496.  
  1497.  
  1498. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1499. MNweld=weld(m,Character["Left Arm"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935))
  1500. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1501. TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1502. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1503. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1504. MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158))
  1505. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1506. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1507. MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079))
  1508. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1509. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1510. MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1511. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1512. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1513. MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1514. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1515. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1516. MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1517. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1518. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1519. MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1520. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1521. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1522. MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1523. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1524. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1525. MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381))
  1526. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1527. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1528. MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1529. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1530. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1531. MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1532. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1533. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1534. MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1535. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1536. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1537. MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516))
  1538. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1539. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1540. MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668))
  1541. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1542. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1543. MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668))
  1544. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1545. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1546. MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516))
  1547. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1548. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1549. MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079))
  1550. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1551. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1552. MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1553. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1554. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1555. MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1556. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1557. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1558. TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594))
  1559. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1560. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1561. TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277))
  1562. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1563. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1564. TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775))
  1565. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1566. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1567. TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775))
  1568. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1569. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1570. TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1571. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1572. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1573. TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1574. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1575. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1576. MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847))
  1577. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1578. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1579. MNweld=weld(m,Character["Left Leg"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00872802734, 0.00284510851, -0.0114479065, 0.000559218752, 0.00461495388, -0.999989212, 0.0116515048, 0.999921441, 0.00462115649, 0.999931991, -0.0116539635, 0.000505403674))
  1580. FB1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1581. FB1weld=weld(m,MN,FB1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.466812134, -0.259373605, 4.19616699e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1582. mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1583. FB10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1584. FB10weld=weld(m,MN,FB10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.14440918e-05, -0.907726586, -0.0001745224, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1))
  1585. mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1586. FB11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1587. FB11weld=weld(m,MN,FB11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1588. mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
  1589. FB12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823))
  1590. FB12weld=weld(m,MN,FB12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.14440918e-05, 0.648371816, 1.38282776e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1591. mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1592. FB2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1593. FB2weld=weld(m,MN,FB2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1594. mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1595. FB3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1596. FB3weld=weld(m,MN,FB3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000141143799, -0.907841623, 0.725996017, -1.00000012, -4.3686945e-05, -0.000145533413, -4.37181443e-05, 1, 0.00021532696, 0.000145524042, 0.000215333974, -1))
  1597. mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1598. FB4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1599. FB4weld=weld(m,MN,FB4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000263214111, -0.495628834, 1.08177543, -1, -0.000208274461, -0.000166981248, -2.93208286e-05, 0.707433105, -0.706780434, 0.000265331706, -0.706780314, -0.707433105))
  1600. mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1601. FB5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1602. FB5weld=weld(m,MN,FB5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1603. mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1604. FB6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1605. FB6weld=weld(m,MN,FB6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.81469727e-06, 0.129679263, 3.29017639e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1606. mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1607. FB7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1608. FB7weld=weld(m,MN,FB7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.466838837, -0.259338915, -8.58306885e-06, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1609. mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1610. FB8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1611. FB8weld=weld(m,MN,FB8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000205993652, -0.764207125, 0.546924591, -0.999995053, -0.000121198129, -0.00017335522, -0.000163274352, 0.965882957, 0.258978456, 0.000135882699, 0.258978575, -0.96587801))
  1612. mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1613. FB9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1614. FB9weld=weld(m,MN,FB9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00023651123, 0.648379326, -0.000217437744, -0.99999994, 0.00030120369, -0.00014261005, -0.000301247928, -0.999999821, 0.000302845408, -0.000142518838, 0.000302889268, 1))
  1615. mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1616. TN1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1617. TN1weld=weld(m,MN,TN1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.67028809e-05, 0.933657289, 6.19888306e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1618. mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1619. TN2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1620. TN2weld=weld(m,MN,TN2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.49278298, -0.518682957, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1621. mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
  1622. TN3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1623. TN3weld=weld(m,MN,TN3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.28881836e-05, 0.726178706, 4.57763672e-05, 1, 0, 5.82076609e-11, 0, 1, -2.07592166e-10, 5.82076609e-11, -2.07592166e-10, 1.00000012))
  1624. mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1625. TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1626. TG1weld=weld(m,Character["HumanoidRootPart"],TG1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.042350769, 2.25753069, -2.74072218, -0.0144443018, -0.00148237997, 0.999894559, 0.138804898, -0.99031961, 0.000536966661, 0.990214407, 0.138798028, 0.0145102367))
  1627. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1628. AM1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1629. AM1weld=weld(m,TG1,AM1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.24249268e-05, 0.166828156, 3.09944153e-05, -0.000157195085, 1, 9.1494876e-05, -0.99999994, -0.000157169881, -0.000279594213, -0.000279579312, -9.1555652e-05, 0.99999994))
  1630. mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1631. P1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1632. P1weld=weld(m,TG1,P1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.911342621, 0.703609467, 0.114207745, 0.706984818, 0.683136642, 0.183021277, -0.707228661, 0.682939231, 0.182815671, -0.000104348175, -0.258685827, 0.965961576))
  1633. mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1634. P10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1635. P10weld=weld(m,TG1,P10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.00679016e-05, -0.524249077, 0.166728973, 0.000105811283, -0.000137583454, -1, 0.000479714101, -0.999999821, 0.000137644194, -0.999999821, -0.000479728915, -0.000105744228))
  1636. mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1637. P11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1638. P11weld=weld(m,TG1,P11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731900215, 0.270252228, -0.114115238, 0.258668154, 0.93309164, -0.249861524, -0.965966165, 0.249754369, -0.0673211813, -0.000412817113, 0.258771658, 0.965938509))
  1639. mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1640. P12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1641. P12weld=weld(m,TG1,P12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.731903076, 0.27022934, 0.114096642, 0.258535415, 0.933087707, 0.250022143, -0.966005266, 0.24975659, 0.066811718, -0.000106466934, -0.258798361, 0.965934813))
  1642. mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1643. P13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1644. P13weld=weld(m,TG1,P13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000140666962, -0.333644867, 0.357366562, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1645. mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1646. P14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1647. P14weld=weld(m,TG1,P14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43051147e-06, -0.333572388, -0.119208813, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1648. mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1649. P15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1650. P15weld=weld(m,TG1,P15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 0.99999994, 1.16415322e-10, -9.31322575e-10, 1.16415322e-10, 1, -1.79352355e-09, -9.31322575e-10, -1.79352355e-09, 1))
  1651. mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1652. P16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1653. P16weld=weld(m,TG1,P16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000156879425, -0.524261951, 0.166660309, 0.000348402828, -0.99999994, -0.00028672372, 1.2637116e-05, -0.000286738126, 0.99999994, -0.999999881, -0.000348406611, 1.25393271e-05))
  1654. mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1655. P2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1656. P2weld=weld(m,TG1,P2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114342928, -1.26896286, 0.703344345, -8.68691131e-05, 0.25868696, -0.965961158, -0.706778944, -0.683370173, -0.18294476, -0.707434416, 0.682705104, 0.182893887))
  1657. mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1658. P3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1659. P3weld=weld(m,TG1,P3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.9112854, 0.703716278, -0.114027977, 0.707162201, 0.682978034, -0.182929516, -0.707051754, 0.683040321, -0.183125019, -0.000122674741, 0.258839428, 0.965920746))
  1660. mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1661. P4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1662. P4weld=weld(m,TG1,P4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.04713726, -0.0560836792, 0.589748383, -0.433230519, 0.499762714, 0.750031829, 0.249949813, 0.866157889, -0.432767093, -0.865926266, -1.81881187e-05, -0.500163496))
  1663. mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1664. P5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1665. P5weld=weld(m,TG1,P5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110613346, -1.25364304, 0.687784195, 2.46139243e-05, -0.258755654, -0.96594286, -0.706809103, -0.683316648, 0.183028057, -0.707404375, 0.682732642, -0.182907671))
  1666. mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1667. P6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1668. P6weld=weld(m,TG1,P6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0552225113, -0.590129852, 1.40441322, 0.249802664, 0.865931273, -0.433314741, 0.865909696, 0.000505216594, 0.500199974, 0.433357745, -0.50016278, -0.749692082))
  1669. mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1670. P7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1671. P7weld=weld(m,TG1,P7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76527071, 0.166690826, 0.0566182137, 0.000211901963, -0.499973178, -0.866040885, -0.999999881, -0.000433116395, 5.36441803e-06, -0.000377777033, 0.866040766, -0.499973238))
  1672. mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1673. P8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1674. P8weld=weld(m,TG1,P8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.58035278e-05, -0.333610535, 0.11908865, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1675. mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1676. P9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1677. P9weld=weld(m,TG1,P9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.72340393e-05, -0.333576202, -0.357462883, -0.0002978798, 0.000259431486, 0.999999881, 0.999991119, 0.000227510231, 0.000298896804, -0.000227348646, 0.999991298, -0.000258179527))
  1678. mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1679. TG2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1680. TG2weld=weld(m,Character["HumanoidRootPart"],TG2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.76916337, -1.09253693, -3.17651272, -0.203467354, -0.97908175, 0.000212302519, 0.014012184, -0.00312875048, -0.999896944, 0.978981495, -0.203443378, 0.0143556716))
  1681. mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1682. AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1683. AM2weld=weld(m,TG2,AM2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.64780426e-05, 2.43186951e-05, -0.000192319567, -1, -0.000198441558, 0.99999994, -0.000192359177, 0.000197284782, -0.000197345667, -0.000198401511, 1))
  1684. mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1685. R1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1686. R1weld=weld(m,TG2,R1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0134754181, -0.445617676, 1.47668266, 0.865856409, -0.250035048, -0.433330387, 0.000181133975, -0.865997136, 0.500049055, -0.500292599, -0.433049113, -0.749783754))
  1687. mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1688. R10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1689. R10weld=weld(m,TG2,R10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.765271187, -0.000122070312, 0.0565447211, -0.49987632, 6.51674345e-05, -0.866096556, -0.000113177681, 0.999999881, 0.000140445307, 0.866096616, 0.000168018509, -0.49987638))
  1690. mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1691. R11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1692. R11weld=weld(m,TG2,R11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775099754, 0.109127045, -0.114162922, 0.93301934, -0.258937955, -0.249852076, 0.250070184, 0.965893984, -0.0671848729, 0.258727312, 0.000204227865, 0.965950489))
  1693. mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1694. R12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1695. R12weld=weld(m,TG2,R12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.5340271e-05, -0.166751862, -0.357446432, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1696. mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1697. R13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1698. R13weld=weld(m,TG2,R13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775063515, 0.109107971, 0.114238739, 0.933033288, -0.258907735, 0.249831468, 0.250103503, 0.96590209, 0.0669436976, -0.258645028, 2.30353326e-05, 0.965972483))
  1699. mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1700. R14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1701. R14weld=weld(m,TG2,R14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 4.8160553e-05, 5.29289246e-05, -0.000261391891, -0.999999881, -0.000371804461, 0.99999994, -0.000261496811, 0.000282098801, -0.000282215682, -0.000371729024, 0.999999881))
  1702. mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1703. R15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1704. R15weld=weld(m,TG2,R15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000193595886, -0.524248123, -0.000160217285, -1, -1.53651927e-05, -0.000401128491, -0.000401158031, -0.000155125745, 0.999999881, -1.54274312e-05, 1, 0.000155119225))
  1705. mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1706. R16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1707. R16weld=weld(m,TG2,R16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.10623169e-06, -0.524226427, -0.000118255615, -1.7896502e-05, 3.39159742e-05, -1, -0.99999994, -0.00018825283, 1.79418876e-05, -0.000188252423, 1, 3.39206308e-05))
  1708. mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1709. R2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1710. R2weld=weld(m,TG2,R2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110644341, -1.37159348, 0.569787979, -0.25872317, 0.000103516504, -0.965960801, -0.683125854, 0.706990838, 0.183048159, 0.68293786, 0.707234144, -0.182844043))
  1711. mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1712. R3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1713. R3weld=weld(m,TG2,R3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.11937332, -0.014339447, 0.445285797, 0.499887019, 0.432952553, 0.75011003, 0.866090596, -0.250205398, -0.432763666, 0.000315477257, 0.865996122, -0.500050545))
  1714. mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1715. R4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1716. R4weld=weld(m,TG2,R4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114369392, -1.38692093, 0.585348129, 0.258709073, 0.00012283586, -0.965955317, -0.683140814, 0.707019031, -0.182873711, 0.682926297, 0.707194507, 0.182996109))
  1717. mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1718. R5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1719. R5weld=weld(m,TG2,R5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02929306, 0.585784912, -0.114109039, 0.682771325, -0.707353652, -0.182959229, 0.683289289, 0.706859827, -0.182934627, 0.258725971, -0.000111560337, 0.965950847))
  1720. mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1721. R6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1722. R6weld=weld(m,TG2,R6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166820526, 0.357390642, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1723. mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1724. R7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1725. R7weld=weld(m,TG2,R7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166748047, -0.11918807, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1726. mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1727. R8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1728. R8weld=weld(m,TG2,R8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02933121, 0.585668564, 0.114168167, 0.682898223, -0.707234383, 0.182947412, 0.683152735, 0.706979275, 0.182982892, -0.258751839, 2.23368406e-05, 0.965943873))
  1729. mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1730. R9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1731. R9weld=weld(m,TG2,R9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.33786011e-05, -0.166786194, 0.119110346, 0.000167457998, 0.000183601864, 0.99999994, -9.69851826e-05, -1, 0.000183618627, 0.99999994, -9.70162218e-05, -0.000167464168))
  1732. mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1733. TG3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1734. TG3weld=weld(m,Character["HumanoidRootPart"],TG3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.31476164, 0.203437805, 2.80334663, -0.128740072, -0.991682827, 0.00021147728, 0.0140880942, -0.00204598904, -0.999902606, 0.991582751, -0.128720194, 0.0142298341))
  1735. mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1736. AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1737. AM3weld=weld(m,TG3,AM3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381))
  1738. mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1739. B1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1740. B1weld=weld(m,TG3,B1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.70809412, 0.00481796265, -0.0214853287, 0.53710258, -0.0329185463, -0.842881262, -0.0168763734, -0.999461472, 0.0282779075, -0.843353331, -0.00096894661, -0.537363231))
  1741. mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1742. B10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1743. B10weld=weld(m,TG3,B10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, -0.166755676, -0.119180202, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1744. mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1745. B11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1746. B11weld=weld(m,TG3,B11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775104523, 0.109054565, -0.114163399, 0.93302691, -0.258820474, -0.249937788, 0.249989182, 0.965924561, -0.0670276657, 0.258770257, 5.44674695e-05, 0.965937078))
  1747. mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1748. B12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1749. B12weld=weld(m,TG3,B12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.2479248e-05, -0.16677475, -0.357437134, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1750. mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1751. B13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1752. B13weld=weld(m,TG3,B13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.6321106e-05, -0.166809082, 0.357398033, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1753. mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1754. B14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1755. B14weld=weld(m,TG3,B14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775089264, 0.109050751, 0.114126205, 0.933031797, -0.258863419, 0.249890804, 0.250038087, 0.965917766, 0.0670325682, -0.258728862, -5.84023073e-05, 0.965954661))
  1756. mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1757. B15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1758. B15weld=weld(m,TG3,B15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000216007233, -0.524245262, -0.000152587891, -1.00000429, -3.11442855e-05, -0.000386493775, -0.000390294503, -0.000265599228, 1.00000381, -2.74346676e-05, 1.00000393, 0.000270009041))
  1759. mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1760. B16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1761. B16weld=weld(m,TG3,B16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977258682, -0.0517673492, 0.351222992, -0.542918801, -0.399409056, 0.738729894, 0.839790225, -0.257581204, 0.47791937, -0.000600833155, 0.879847884, 0.475267261))
  1762. mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1763. B2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1764. B2weld=weld(m,TG3,B2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110642433, -1.37159348, 0.569799423, -0.258739293, 0.00030168239, -0.965950191, -0.683101058, 0.706977069, 0.183202252, 0.682960927, 0.707241893, -0.182715356))
  1765. mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1766. B3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1767. B3weld=weld(m,TG3,B3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114408493, -1.38694382, 0.585298538, 0.258632272, 0.000245507807, -0.965980828, -0.683182418, 0.707017481, -0.182730928, 0.682920158, 0.7072016, 0.183024958))
  1768. mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1769. B4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1770. B4weld=weld(m,TG3,B4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.14712524e-05, -0.524226665, -0.000114440918, -0.000117740456, 0.000170248561, -1.00000381, -1.00000441, -0.000197534246, 0.000121528283, -0.000193700951, 1.00000393, 0.000174695626))
  1771. mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1772. B5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1773. B5weld=weld(m,TG3,B5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.166828156, 3.67164612e-05, 1.04904175e-05, -0.000191303392, -1.00000393, -0.000253161415, 1.00000441, -0.000187523692, 0.000130466695, -0.000134325906, -0.000248713419, 1.00000381))
  1774. mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1775. B6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1776. B6weld=weld(m,TG3,B6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746879578, -0.356079102, 1.3260231, -0.846059859, 0.246211126, -0.472827435, 0.0127377426, -0.877367735, -0.479661644, -0.532944143, -0.411842138, 0.73916626))
  1777. mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1778. B7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1779. B7weld=weld(m,TG3,B7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02930832, 0.585767746, -0.114040375, 0.682766974, -0.707316399, -0.183130339, 0.683257401, 0.706901014, -0.182916299, 0.258831084, -0.000232725404, 0.965924442))
  1780. mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1781. B8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1782. B8weld=weld(m,TG3,B8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02937317, 0.585603714, 0.114164352, 0.682955801, -0.707211196, 0.182828441, 0.683118403, 0.707007945, 0.183033586, -0.258707404, -0.000107087195, 0.965960801))
  1783. mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1784. B9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1785. B9weld=weld(m,TG3,B9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.24249268e-05, -0.166786194, 0.11911726, 0.000214098938, 7.58497044e-05, 1.00000393, -5.36924927e-05, -1.00000405, 7.14352354e-05, 1.00000429, -4.98957525e-05, -0.000217909779))
  1786. mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1787. TG4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1788. TG4weld=weld(m,Character["HumanoidRootPart"],TG4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.701898575, -1.07242584, 3.10196733, 0.247876227, -0.968791723, 0.000235861822, 0.0139541421, 0.00332688913, -0.999897122, 0.968691289, 0.247854009, 0.0143433129))
  1789. mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1790. AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1791. AM4weld=weld(m,TG4,AM4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1))
  1792. mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1793. Q1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1794. Q1weld=weld(m,TG4,Q1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02936554, 0.58564949, 0.114022255, 0.682914674, -0.707203865, 0.183003649, 0.683140576, 0.707009733, 0.182910576, -0.258740425, 0.000104899518, 0.965946913))
  1795. mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1796. Q10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1797. Q10weld=weld(m,TG4,Q10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.91278076e-05, -0.524228096, -0.00012588501, -0.000225846947, 8.19889829e-05, -1.00000644, -1.00000012, -0.000232773818, 0.000224219271, -0.000232745646, 1.00000644, 8.20420682e-05))
  1798. mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1799. Q11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1800. Q11weld=weld(m,TG4,Q11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0746479034, -0.356128693, 1.32600975, -0.846081793, 0.246080905, -0.472852886, 0.0128138652, -0.877419651, -0.479552537, -0.532899082, -0.411799699, 0.739215553))
  1801. mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1802. Q12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1803. Q12weld=weld(m,TG4,Q12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.977277756, -0.0517272949, 0.351173401, -0.542923808, -0.399282485, 0.73878783, 0.839781821, -0.257620722, 0.477910042, -0.000494024833, 0.87988919, 0.47517857))
  1804. mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1805. Q13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1806. Q13weld=weld(m,TG4,Q13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708095074, 0.00480651855, -0.0214424133, 0.537001133, -0.0329830386, -0.842936516, -0.016877139, -0.999455392, 0.0283556767, -0.843412697, -0.0010006763, -0.53726542))
  1807. mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1808. Q14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1809. Q14weld=weld(m,TG4,Q14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.110631943, -1.37159348, 0.569797516, -0.258814424, 0.000158959068, -0.965927124, -0.683109343, 0.706977546, 0.183151439, 0.682917833, 0.707235932, -0.182867393))
  1810. mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1811. Q15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1812. Q15weld=weld(m,TG4,Q15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.114351273, -1.38692474, 0.585363388, 0.258614838, 0.000151800923, -0.965980589, -0.68317169, 0.707010865, -0.182789415, 0.682931006, 0.707202673, 0.182947218))
  1813. mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1814. Q16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1815. Q16weld=weld(m,TG4,Q16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.02927017, 0.585828781, -0.1140728, 0.682736814, -0.707362711, -0.183043808, 0.683264673, 0.706848323, -0.183054447, 0.258872002, -9.22912732e-05, 0.965909958))
  1816. mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1817. Q2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1818. Q2weld=weld(m,TG4,Q2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.95639038e-05, -0.166786194, 0.119113445, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1819. mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1820. Q3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1821. Q3weld=weld(m,TG4,Q3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.57492065e-05, -0.166748047, -0.119185925, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1822. mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1823. Q4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1824. Q4weld=weld(m,TG4,Q4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.775097847, 0.109146118, -0.114173889, 0.932992756, -0.258940458, -0.249948949, 0.250075579, 0.965893269, -0.0671743006, 0.258818179, 0.000166995451, 0.965926051))
  1825. mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1826. Q5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1827. Q5weld=weld(m,TG4,Q5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.91549683e-05, -0.166755676, -0.357444286, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1828. mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1829. Q6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1830. Q6weld=weld(m,TG4,Q6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(9.44137573e-05, -0.166820526, 0.357393742, 0.000289762218, 0.000152884051, 1, -6.89870794e-05, -1, 0.000152902678, 1.00000012, -6.90316083e-05, -0.000289731135))
  1831. mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1832. Q7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1833. Q7weld=weld(m,TG4,Q7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.16683197, 5.14984131e-05, 2.57492065e-05, -0.000262918446, -0.99999994, -0.000245724805, 1, -0.000262905785, -5.22979026e-05, 5.22422997e-05, -0.000245738775, 1))
  1834. mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1835. Q8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1836. Q8weld=weld(m,TG4,Q8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.77507782, 0.109096527, 0.11418438, 0.933048368, -0.258882731, 0.249801114, 0.250101715, 0.965908766, 0.0668535084, -0.258592248, 9.8134391e-05, 0.965986609))
  1837. mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1838. Q9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1839. Q9weld=weld(m,TG4,Q9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000154495239, -0.524244308, -0.000152587891, -1, -2.11830047e-05, -0.000211575112, -0.000211558785, -0.000157893635, 1, -2.12165178e-05, 0.99999994, 0.00015788991))
  1840. mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1841.  
  1842.  
  1843.  
  1844.  
  1845.  
  1846.  
  1847.  
  1848.  
  1849. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1850. MNweld=weld(m,Character["Torso"],MN,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0323486328, -0.0509860516, -0.00120401382, -0.00500982394, 0.00520668458, 0.999973893, -0.00739898486, 0.999958873, -0.00524367485, -0.999960065, -0.00742506143, -0.0049710935))
  1851. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1852. TR7weld=weld(m,MN,TR7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1853. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1854. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1855. MD9weld=weld(m,MN,MD9,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0.741846681, 0.199262142, 1.00000405, -6.92205504e-06, 0.000154254027, 4.65649646e-05, 0.965939224, -0.25876984, -0.000147186685, 0.258768767, 0.965943158))
  1856. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1857. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1858. MD1weld=weld(m,MN,MD1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.402763367, -0.974855185, 0.682875633, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079))
  1859. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1860. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1861. MD10weld=weld(m,MN,MD10,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1862. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1863. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1864. MD11weld=weld(m,MN,MD11,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.493839264, -0.274354219, 4.24385071e-05, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1865. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1866. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1867. MD12weld=weld(m,MN,MD12,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.493812561, -0.274300575, -0.000376224518, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1868. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1869. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1870. MD13weld=weld(m,MN,MD13,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.68582201, 0.000464439392, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1871. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1872. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1873. MD14weld=weld(m,MN,MD14,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-05, 0.603547096, 0.000416755676, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1874. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1875. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1876. MD15weld=weld(m,MN,MD15,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.62939453e-05, 0.137180567, -4.529953e-05, -1.0000037, -0.000862163957, 0.000179466791, -0.000862103421, 0.999999523, 0.000520790287, -0.000179945491, 0.000520619913, -1.00000381))
  1877. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1878. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1879. MD16weld=weld(m,MN,MD16,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.86645508e-05, 0.932742357, 0.000658988953, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1880. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1881. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1882. MD19weld=weld(m,MN,MD19,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1883. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1884. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1885. MD18weld=weld(m,MN,MD18,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1886. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1887. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1888. MD2weld=weld(m,MN,MD2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.392555237, -0.573539257, 1.09872949, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516))
  1889. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1890. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1891. MD3weld=weld(m,MN,MD3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.397964478, -0.817667723, 0.487944126, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668))
  1892. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1893. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1894. MD4weld=weld(m,MN,MD4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.422103882, -0.82026124, 0.507567406, 0.999890864, -0.0149886403, -0.00193861127, 0.0139457425, 0.964460015, -0.263861924, 0.00582473399, 0.26380372, 0.964563668))
  1895. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1896. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1897. MD5weld=weld(m,MN,MD5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.427509308, -0.557831764, 1.11046171, 0.999886394, -0.0152528733, -0.00162532134, 0.0119883548, 0.710953057, 0.70314008, -0.00956933573, -0.703074038, 0.71105516))
  1898. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1899. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1900. MD6weld=weld(m,MN,MD6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.417263031, -0.972257376, 0.702233315, 0.99988991, -0.0150081124, -0.00168980728, 0.0149988253, 0.999872923, -0.00539785437, 0.00177063467, 0.00537188631, 0.999988079))
  1901. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1902. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1903. MD7weld=weld(m,MN,MD7,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000442504883, 0.68581605, 0.000279426575, 1.00000381, 0.000690042973, -0.000169841573, 0.000690029934, -0.999999702, -0.000261242967, -0.000170052983, 0.000261111214, -1.00000393))
  1904. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1905. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1906. MD8weld=weld(m,MN,MD8,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1907. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1908. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1909. TR1weld=weld(m,MN,TR1,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548826218, 0.30154109, 4.57763672e-05, -0.000205519143, -0.0001726388, -1, -4.31765802e-05, 1, -0.00017263052, 1, 4.314119e-05, -0.000205526594))
  1910. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1911. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1912. TR2weld=weld(m,MN,TR2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, 0.741921067, 0.198978901, 1.00000405, -2.92747281e-05, -1.7457176e-05, 2.37242784e-05, 0.965939343, -0.258769363, 2.44602561e-05, 0.25876832, 0.965943277))
  1913. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1914. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1915. TR3weld=weld(m,MN,TR3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.81469727e-05, 0.603546381, 0.000186920166, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775))
  1916. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1917. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1918. TR4weld=weld(m,MN,TR4,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000106811523, 0.93274045, 0.000304222107, 1.00000787, -8.63452442e-05, -2.6775524e-07, 8.62879679e-05, 1, -2.05411197e-07, 2.68686563e-07, 2.3024586e-07, 1.00000775))
  1919. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1920. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1921. TR5weld=weld(m,MN,TR5,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.28881836e-05, -0.960148811, -0.000584125519, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1922. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1923. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1924. TR6weld=weld(m,MN,TR6,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-05, -0.246893644, -0.00013256073, 1.00000811, -2.88709998e-08, 3.02679837e-08, -2.93366611e-08, 0.99999994, 1.36606104e-08, 3.0733645e-08, 1.3564204e-08, 1.00000799))
  1925. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1926. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1927. MD21weld=weld(m,MN,MD21,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.548921585, 0.301375628, 0.000118255615, -0.000262488145, -9.39509191e-05, -1.00000393, -0.000154611655, 1, -9.38984886e-05, 1.00000393, 0.000154557638, -0.000262471847))
  1928. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1929. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1930.  
  1931.  
  1932.  
  1933.  
  1934. Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Handle",Vector3.new(0.399999976, 6.5999999, 0.800000012))
  1935. handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(0.0507202148, -2.52714539, 1.07002306, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005))
  1936. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1937. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 2.19999981))
  1938. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.66964722, 1.47541952, 0.999999821, -3.44649777e-007, -2.91872539e-006, 2.73044566e-006, -6.73997056e-005, 0.999999821, -3.44861661e-007, -0.999999821, -7.3311603e-005))
  1939. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1940. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 2.19999981))
  1941. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.66740417, -1.51460314, 0.999999821, -3.44649777e-007, -2.91872539e-006, 2.73044566e-006, -6.73997056e-005, 0.999999821, -3.44861661e-007, -0.999999821, -7.3311603e-005))
  1942. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1943. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3))
  1944. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000556945801, 7.2594986, -2.07578278, 0.999999821, -3.98708266e-008, -2.78470065e-006, 1.80762606e-006, -0.707154274, 0.707054794, -1.86429861e-006, -0.707058966, -0.707158446))
  1945. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1946. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3.79999995))
  1947. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.67505646, -0.444343567, 0.999999642, -5.20824486e-008, -2.79772325e-006, 2.0444179e-006, -0.601868689, 0.798591197, -1.58032435e-006, -0.798594832, -0.601873219))
  1948. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1949. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 1, 0.200000048))
  1950. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 0.0484619141, -7.28675842, 0.999999821, -5.98131294e-007, -3.56129613e-006, 1.96194651e-006, -0.707154334, 0.707054913, -2.80819268e-006, -0.707059085, -0.707158506))
  1951. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1952. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 1, 0.200000048))
  1953. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, -1.95571899, -7.67503357, -1.00000417, 1.01207308e-006, 2.75585353e-006, 2.3536104e-006, 0.798599243, 0.60187608, -1.44131911e-006, 0.601875842, -0.798596144))
  1954. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1955. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.99999994, 0.200000048))
  1956. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, -1.98649597, -7.69823456, 0.999999821, -4.62420445e-007, -3.67828466e-006, 1.73081651e-006, -0.798675954, 0.601756394, -3.06568472e-006, -0.601761043, -0.798679531))
  1957. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1958. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3))
  1959. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, 7.2868042, -2.04853058, -0.999999821, 3.65708871e-007, 2.25400572e-006, 1.71940098e-006, 0.707059085, 0.707158446, -1.20197456e-006, 0.707154274, -0.707054913))
  1960. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1961. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 1, 0.200000048))
  1962. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, 0.0756988525, -7.25950623, -1.00000417, 1.07557219e-006, 2.81106031e-006, 2.61523587e-006, 0.707061827, 0.707162321, -1.09386144e-006, 0.70716244, -0.707058728))
  1963. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1964. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
  1965. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000564575195, 7.92796326, 0.682914734, 0.999999821, -1.3379514e-007, -2.85678175e-006, 2.24400219e-006, -0.500058174, 0.865988493, -1.45030845e-006, -0.865991473, -0.5000633))
  1966. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1967. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3.79999995))
  1968. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000564575195, 7.69830322, -0.413574219, -0.999999583, 3.42691209e-007, 2.2613026e-006, 1.86686486e-006, 0.601761103, 0.798679531, -9.57987822e-007, 0.798675895, -0.601756394))
  1969. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1970. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
  1971. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.00057220459, 7.94728088, 0.716293335, -0.999999821, -1.33946315e-007, 2.85676219e-006, 2.24413407e-006, 0.499941558, 0.866061687, -1.45007982e-006, 0.866058707, -0.499936432))
  1972. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1973. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,1,"Black","Hitbox",Vector3.new(0.399999976, 2.95000029, 8.42000008))
  1974. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, -7.13064575, -0.259962082, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005))
  1975. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1976. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.32797241, 3.78292847, 0.999999821, -5.95495209e-008, -2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
  1977. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1978. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(4.20000029, 0.200000003, 1.19999993))
  1979. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.2829361, 0.000549316406, 7.62794495, 1.23406596e-006, 0.865991652, 0.50006336, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672))
  1980. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1981. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1982. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.32798767, 1.21704102, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
  1983. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1984. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1985. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -7.94722748, 3.81633759, 0.999999821, 5.96597474e-008, -2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
  1986. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1987. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1988. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.34732819, 3.81626892, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
  1989. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1990. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1991. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -7.92785645, 3.78297424, -0.999999821, 5.95495209e-008, 2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
  1992. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1993. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1994. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -7.94728851, 1.18369293, -0.999999821, -5.96597474e-008, 2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
  1995. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1996. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(4.20000029, 0.200000003, 1.19999993))
  1997. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.31630707, 0.000549316406, 7.64728546, -1.23383734e-006, 0.866058886, -0.499936491, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866))
  1998. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1999. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  2000. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.34729767, 1.18365479, 0.999999821, 5.96597474e-008, -2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
  2001. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2002. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  2003. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -7.92796326, 1.2170639, 0.999999821, -5.95495209e-008, -2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
  2004. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2005. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2006. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.22796631, 1.41705322, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
  2007. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2008. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2009. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000602722168, 8.04922485, 2.2826767, -0.999999821, -1.03368154e-006, 1.92164384e-006, 1.9565648e-006, -0.707154155, 0.707055032, 4.9492246e-007, 0.707059205, 0.707158327))
  2010. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2011. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(4.20000029, 0.200000003, 1.60000002))
  2012. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.2829361, 0.000564575195, 7.62794495, 1.23406596e-006, 0.865991652, 0.50006336, -0.999999821, 5.95495209e-008, 2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672))
  2013. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.980000019, 1))
  2014. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2015. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000541687012, -7.86872101, 4.7230072, 0.999999821, 6.18751557e-008, -2.79253641e-006, -7.33608772e-007, 0.965943217, -0.258748204, 2.49958407e-006, 0.258753926, 0.965944707))
  2016. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2017. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2018. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -8.02798462, 1.41706085, 0.999999821, -5.95495209e-008, -2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, 1.23406596e-006, 0.865991652, 0.50006336))
  2019. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2020. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2021. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -8.04729462, 1.38368225, -0.999999821, -5.96597474e-008, 2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
  2022. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2023. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2024. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -7.90600586, 4.71310425, -0.999999821, 6.17326492e-008, 2.79254573e-006, -7.33863715e-007, -0.965908289, -0.258889705, 2.49951563e-006, -0.258883983, 0.965906799))
  2025. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2026. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2027. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000579833984, -8.19786835, 3.0612793, -0.999999821, 1.67408443e-009, 3.03368324e-006, -1.42435294e-006, -0.865991592, -0.5000633, 2.46326499e-006, -0.500058234, 0.865988612))
  2028. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2029. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2030. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000610351563, 8.07653809, 2.25543213, 0.999999821, -1.03365596e-006, -1.9217955e-006, 1.95675148e-006, 0.707058907, 0.707158625, 4.94735673e-007, -0.707154453, 0.707054734))
  2031. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2032. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2033. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.24727631, 1.38367462, 0.999999821, 5.96597474e-008, -2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, 1.23383734e-006, -0.866058886, 0.499936491))
  2034. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2035. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2036. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.00057220459, -8.16441345, 3.08054352, 0.999999821, 1.84907067e-009, -3.03368279e-006, -1.42412443e-006, 0.866058826, -0.499936432, 2.46339664e-006, 0.499941558, 0.866061807))
  2037. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2038. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2039. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, 7.22822571, 3.98279572, 0.999999821, -5.95495209e-008, -2.55292593e-006, 2.01799162e-006, -0.500058293, 0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
  2040. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2041. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2042. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, -8.02787781, 3.98300171, -0.999999821, 5.95495209e-008, 2.55292593e-006, -2.01799162e-006, 0.500058293, -0.865988672, -1.23406596e-006, -0.865991652, -0.50006336))
  2043. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2044. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2045. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0.000549316406, 7.24758148, 4.0161438, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
  2046. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2047. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2048. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-0.000549316406, -8.04721832, 4.01631165, 0.999999821, 5.96597474e-008, -2.55291707e-006, -2.01812372e-006, -0.499941617, -0.866061866, -1.23383734e-006, 0.866058886, -0.499936491))
  2049. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2050. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(4.20000029, 0.200000003, 1.60000002))
  2051. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.31628418, 0.000564575195, 7.6472702, -1.23383734e-006, 0.866058886, -0.499936491, -0.999999821, -5.96597474e-008, 2.55291707e-006, 2.01812372e-006, 0.499941617, 0.866061866))
  2052. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.980000019, 1))
  2053. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.600000024, 0.600000083))
  2054. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -2.73671722, 2.73668671, -0.999999821, 9.49127994e-008, 2.40484042e-006, -1.63459686e-006, -0.707059026, -0.707158506, 1.50011931e-006, -0.707154334, 0.707054853))
  2055. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.800000012, 0.800000012))
  2056. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2057. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -4.79164124, 5.3915863, -0.999999821, 9.49127994e-008, 2.40484042e-006, -1.63459686e-006, -0.707059026, -0.707158506, 1.50011931e-006, -0.707154334, 0.707054853))
  2058. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2059. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2060. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 5.99164581, -5.39162445, -0.999999821, -9.50369241e-008, 2.90747721e-006, 1.85573333e-006, 0.707058907, 0.707158327, -1.98983753e-006, 0.707154155, -0.707054734))
  2061. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2062. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2063. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 4.79161072, 5.39163208, -0.999999821, -2.51380015e-007, 2.56118346e-006, 1.85554666e-006, -0.707154155, 0.707054734, 1.50030701e-006, 0.707058907, 0.707158327))
  2064. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2065. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 4))
  2066. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, -0.300024509, -5.0990448, 0.999999642, 8.86621194e-008, -2.71263866e-006, 8.84640485e-008, -0.999999642, -7.33413981e-005, -2.52439077e-006, 6.74295079e-005, -0.999999642))
  2067. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  2068. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 4))
  2069. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 0.299972534, -5.0990448, 0.999999642, 8.86621194e-008, -2.71263866e-006, 8.84640485e-008, -0.999999642, -7.33413981e-005, -2.52439077e-006, 6.74295079e-005, -0.999999642))
  2070. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  2071. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2072. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -5.99160767, -5.3916626, -0.999999821, 2.51255869e-007, 2.75113416e-006, -1.63441007e-006, 0.707154334, -0.707054853, -1.99002329e-006, -0.707059026, -0.707158506))
  2073. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2074. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 0.600000083))
  2075. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 1.99224091, 2.19223022, -0.999999821, -2.51380015e-007, 2.56118346e-006, 1.85554666e-006, -0.707154155, 0.707054734, 1.50030701e-006, 0.707058907, 0.707158327))
  2076. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.769999981))
  2077. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 0.600000083))
  2078. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -1.99222565, 2.1922226, -0.999999821, 9.49127994e-008, 2.40484042e-006, -1.63459686e-006, -0.707059026, -0.707158506, 1.50011931e-006, -0.707154334, 0.707054853))
  2079. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.769999981))
  2080. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2081. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.9855423, -1.52587891e-005, -5.18557739, -1.74497791e-006, 0.707154274, -0.707054913, 0.999999821, 6.20720975e-011, -2.65615972e-006, -1.74516435e-006, -0.707059085, -0.707158446))
  2082. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2083. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2084. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-4.78553772, -1.52587891e-005, -5.58559418, -1.74497791e-006, 0.707154274, -0.707054913, 0.999999821, 6.20720975e-011, -2.65615972e-006, -1.74516435e-006, -0.707059085, -0.707158446))
  2085. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2086. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2087. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.9855957, 1.52587891e-005, -5.58554077, -1.74516435e-006, -0.707059085, -0.707158446, -0.999999821, -6.20720975e-011, 2.65615972e-006, -1.74497791e-006, 0.707154274, -0.707054913))
  2088. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2089. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2090. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-4.7855835, 1.52587891e-005, -5.18553162, -1.74516435e-006, -0.707059085, -0.707158446, -0.999999821, -6.20720975e-011, 2.65615972e-006, -1.74497791e-006, 0.707154274, -0.707054913))
  2091. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2092. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2093. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, -7.84564209, 1.18071747, -0.999999821, 9.66749326e-007, 2.13135627e-006, -1.94302879e-006, 6.75486881e-005, -0.999999821, -9.6690826e-007, -0.999999821, -7.3460651e-005))
  2094. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2095. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2096. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, -7.84564209, 1.21925235, 0.999999821, -9.66678385e-007, -3.18110392e-006, -2.99277713e-006, 6.71314556e-005, -0.999999821, 9.66907237e-007, 0.999999821, 7.30434185e-005))
  2097. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2098. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2099. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 7.44563293, 1.21924734, -0.999999821, -9.66873472e-007, 3.18096318e-006, 2.99277804e-006, -6.75486881e-005, 0.999999821, -9.6664337e-007, 0.999999821, 7.3460651e-005))
  2100. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2101. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2102. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, -7.84564209, -0.419251919, -0.999999821, 9.66750008e-007, 2.13135809e-006, -1.94302993e-006, 6.75784904e-005, -0.999999821, -9.66909511e-007, -0.999999821, -7.34904534e-005))
  2103. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2104. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2105. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, -0.180722237, -8.0456543, -0.999999821, 5.24748202e-007, 3.62297351e-006, 5.25008204e-007, 0.999999821, 7.34904534e-005, -3.43467877e-006, 6.75784904e-005, -0.999999821))
  2106. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2107. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2108. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, 7.44563293, -0.419239521, 0.999999821, 9.66802304e-007, -2.13121507e-006, 1.94302902e-006, -6.71016533e-005, 0.999999821, 9.66643483e-007, -0.999999821, -7.30136162e-005))
  2109. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2110. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2111. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, 7.44564819, -0.380721092, -0.999999821, -9.66873017e-007, 3.18096227e-006, 2.99277667e-006, -6.75784904e-005, 0.999999821, -9.66642006e-007, 0.999999821, 7.34904534e-005))
  2112. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2113. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2114. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, 7.44563293, 1.18072891, 0.999999821, 9.66802418e-007, -2.1312153e-006, 1.9430297e-006, -6.71314556e-005, 0.999999821, 9.66644393e-007, -0.999999821, -7.30434185e-005))
  2115. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2116. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2117. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, -0.21928072, 8.84564209, -0.999999821, -5.24871439e-007, 1.68934548e-006, 5.24742063e-007, -0.999999821, -7.34904534e-005, 1.5011276e-006, -6.75784904e-005, 0.999999821))
  2118. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2119. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2120. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.219273567, -8.0456543, 0.999999821, -5.2487735e-007, -1.68942256e-006, -5.25005987e-007, -0.999999821, -7.30136162e-005, -1.50112783e-006, 6.71016533e-005, -0.999999821))
  2121. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2122. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2123. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, -0.180725098, 8.84564209, 0.999999821, 5.2500036e-007, -3.62289711e-006, -5.24742177e-007, 0.999999821, 7.29838139e-005, 3.43467877e-006, -6.70718509e-005, 0.999999821))
  2124. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2125. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2126. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, -0.219299316, -6.44563293, 0.999999821, -5.248761e-007, -1.68942245e-006, -5.25004509e-007, -0.999999821, -7.28646046e-005, -1.50112771e-006, 6.69526416e-005, -0.999999821))
  2127. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2128. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2129. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, -0.180696487, -6.44563293, -0.999999821, 5.24747293e-007, 3.62297396e-006, 5.25007465e-007, 0.999999821, 7.35649592e-005, -3.43467877e-006, 6.76529962e-005, -0.999999821))
  2130. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2131. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2132. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, -7.84564209, -0.380716801, 0.999999821, -9.66679295e-007, -3.18110324e-006, -2.99277576e-006, 6.71016533e-005, -0.999999821, 9.66908829e-007, 0.999999821, 7.30136162e-005))
  2133. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2134. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2135. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.219314575, 7.24563599, -0.999999821, -5.24872348e-007, 1.68934582e-006, 5.24742916e-007, -0.999999821, -7.35649592e-005, 1.50112783e-006, -6.76529962e-005, 0.999999821))
  2136. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2137. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2138. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, -0.180728436, 7.24563599, 0.999999821, 5.25001496e-007, -3.62289666e-006, -5.24743371e-007, 0.999999821, 7.29540116e-005, 3.43467809e-006, -6.70420486e-005, 0.999999821))
  2139. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2140. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2141. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.200022697, 3.69998169, -0.999999821, -6.20720975e-011, 2.65615972e-006, 1.31964842e-010, 0.999999821, 7.32520348e-005, -2.46790319e-006, 6.73400718e-005, -0.999999821))
  2142. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2143. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2144. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.199978352, 3.69998169, 0.999999821, 6.20720975e-011, -2.65615972e-006, -1.31964842e-010, -0.999999821, -7.32520348e-005, -2.46790319e-006, 6.73400718e-005, -0.999999821))
  2145. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2146. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.399999976))
  2147. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 2.5995636, 0.20001173, -0.999999821, -6.20720975e-011, 2.65615972e-006, 2.46790319e-006, -6.73400718e-005, 0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005))
  2148. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2149. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.399999976))
  2150. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 2.5995636, 0.199989319, 0.999999821, 6.20720975e-011, -2.65615972e-006, 2.46790319e-006, -6.73400718e-005, 0.999999821, -1.31964842e-010, -0.999999821, -7.32520348e-005))
  2151. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2152. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.600000024))
  2153. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, -4.89909363, 0.500017643, -0.999999821, 7.47743161e-006, 2.65699214e-006, -2.46814989e-006, 5.76073035e-005, -0.999999821, -7.47759987e-006, -0.999999821, -6.35192409e-005))
  2154. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2155. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.600000024))
  2156. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, -4.89909363, 0.50004673, 0.999999821, -7.4775262e-006, -2.65642279e-006, -2.4674348e-006, 7.70728439e-005, -0.999999821, 7.47774311e-006, 0.999999821, 8.2984785e-005))
  2157. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2158. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2159. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.34057617e-005, 0.100078583, 5.09907532, 0.999999821, 3.96872668e-009, -1.0130585e-005, -8.97625707e-009, 0.999999821, 8.29848068e-005, 9.94809852e-006, -7.70728439e-005, 0.999999821))
  2160. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2161. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 1.20000005))
  2162. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(3.81469727e-005, 0.699976921, -4.09957886, -0.999999821, 2.83815882e-009, 1.01304904e-005, -2.36349496e-009, 0.999999821, 6.35192628e-005, -9.94800394e-006, 5.76073035e-005, -0.999999821))
  2163. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2164. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2165. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, 0.499930382, -4.29948425, 0.999999821, -6.6497019e-010, 4.82133237e-006, -2.50907961e-010, -0.999999821, -8.29848068e-005, 5.00964597e-006, 7.70728439e-005, -0.999999821))
  2166. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2167. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2168. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(3.81469727e-005, 0.500016212, -4.29951477, -0.999999821, 2.83815882e-009, 1.01304904e-005, -2.36349496e-009, 0.999999821, 6.35192628e-005, -9.94800394e-006, 5.76073035e-005, -0.999999821))
  2169. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2170. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(1.80000007, 0.400000006, 0.799999952))
  2171. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.79954529, 1.52587891e-005, 1.90734863e-005, -2.46790319e-006, 6.73400718e-005, -0.999999821, -0.999999821, -6.20720975e-011, 2.65615972e-006, 1.31964842e-010, 0.999999821, 7.32520348e-005))
  2172. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2173. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2174. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, 0.100017548, 5.09906006, -0.999999821, -2.81154766e-009, -4.8182651e-006, 8.87377194e-009, -0.999999821, -6.35192628e-005, -5.00075112e-006, -5.76072998e-005, 0.999999821))
  2175. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2176. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 1.20000005))
  2177. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(2.28881836e-005, 0.69994545, -4.09954834, 0.999999821, -6.6497019e-010, 4.82133237e-006, -2.50907961e-010, -0.999999821, -8.29848068e-005, 5.00964597e-006, 7.70728439e-005, -0.999999821))
  2178. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2179. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2180. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.199980259, -3.09999084, -0.999999821, -6.20720975e-011, 2.65615972e-006, -1.31964842e-010, -0.999999821, -7.32520348e-005, 2.46790319e-006, -6.73400718e-005, 0.999999821))
  2181. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2182. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2183. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(0, -0.20002079, -3.09999084, 0.999999821, 6.20720975e-011, -2.65615972e-006, 1.31964842e-010, 0.999999821, 7.32520348e-005, 2.46790319e-006, -6.73400718e-005, 0.999999821))
  2184. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2185. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.800000072, 2.20000029))
  2186. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-5.34057617e-005, 1.33576965, -2.48857117, 0.999999821, 5.16932005e-007, -1.74312263e-005, 4.96099256e-006, -0.965943098, 0.258748472, -1.65219808e-005, -0.258754194, -0.965944588))
  2187. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2188. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.800000072, 2.20000029))
  2189. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, 1.39878464, -2.47839355, -0.999999821, -4.90805292e-007, -1.21189832e-005, -3.66019731e-006, 0.96590817, 0.258890003, 1.17606105e-005, 0.258884311, -0.96590668))
  2190. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2191. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 1.60000014))
  2192. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, 3.91101837, -1.28395081, -0.999999821, -6.39833274e-007, -1.18780463e-005, -8.98512008e-006, 0.707058847, 0.707158685, 8.07914512e-006, 0.707154512, -0.707054675))
  2193. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  2194. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 2.20000029))
  2195. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-4.57763672e-005, 4.64130402, 0.180419922, -0.999999821, -4.90812965e-007, -1.20061359e-005, -1.08064278e-005, 0.499941379, 0.866061985, 5.67143161e-006, 0.866059065, -0.499936253))
  2196. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
  2197. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 2.00000024))
  2198. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-3.05175781e-005, 2.76877594, -1.9785614, -0.999999821, -6.99441955e-007, -1.18177722e-005, -6.60940168e-006, 0.865991533, 0.500063479, 1.00473708e-005, 0.500058472, -0.865988493))
  2199. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2200. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 1.60000014))
  2201. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-6.86645508e-005, 3.86151886, -1.3242569, 0.999999821, 5.95436006e-007, -1.7190272e-005, 1.24424796e-005, -0.707154155, 0.707055032, -1.1602061e-005, -0.707059205, -0.707158327))
  2202. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  2203. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 2.00000024))
  2204. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-6.86645508e-005, 2.71051025, -2.0047226, 0.999999821, 6.41683698e-007, -1.71299907e-005, 9.02559623e-006, -0.866058826, 0.49993673, -1.43517545e-005, -0.499941796, -0.866061807))
  2205. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2206. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 2.20000029))
  2207. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-6.86645508e-005, 4.60388184, 0.128692627, 0.999999821, 4.28497856e-007, -1.73183871e-005, 1.50488149e-005, -0.500058055, 0.865988791, -8.19501111e-006, -0.865991771, -0.500063181))
  2208. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
  2209. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2210. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, 3.71121216, 2.82486343, -0.999999821, -1.97225904e-006, 2.36766391e-006, 2.61569949e-006, -0.258884281, 0.965906739, -1.34077732e-006, 0.965908229, 0.258890003))
  2211. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 1, 1))
  2212. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.4000001))
  2213. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, 2.19729614, 5.34124756, -0.999999821, -2.2279487e-006, 2.0706359e-006, 2.90644743e-006, -0.707154512, 0.707054675, -2.44128955e-007, 0.707058847, 0.707158685))
  2214. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  2215. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.4000001))
  2216. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-7.62939453e-006, 2.22851563, 5.3099823, 0.999999821, 1.58679245e-006, -2.07068274e-006, 2.09235395e-007, 0.707059264, 0.707158267, 2.45308138e-006, -0.707154095, 0.707055092))
  2217. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  2218. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2219. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(7.62939453e-006, 3.8639679, 0.922094584, -0.999999821, -1.58131888e-006, 2.41916155e-006, 2.2310212e-006, -6.75784904e-005, 0.999999821, -1.58114017e-006, 0.999999821, 7.34904606e-005))
  2220. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 1, 1))
  2221. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.60000014))
  2222. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(1.52587891e-005, 3.15304565, 4.29320526, -0.999999821, -1.68681856e-006, 2.48592164e-006, 2.83326176e-006, -0.500058532, 0.865988553, -3.1177467e-007, 0.865991533, 0.500063539))
  2223. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 1, 1))
  2224. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2225. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 3.86395264, 0.877912998, 0.999999821, 2.23347001e-006, -2.4191138e-006, 2.23102029e-006, -6.71016533e-005, 0.999999821, 2.23329266e-006, -0.999999821, -7.30136235e-005))
  2226. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 1, 1))
  2227. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.60000014))
  2228. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-2.28881836e-005, 3.17512512, 4.25492859, 0.999999821, 2.12797931e-006, -2.48588958e-006, 9.26044322e-007, 0.499941796, 0.866061747, 2.9916207e-006, -0.866058767, 0.49993673))
  2229. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 1, 1))
  2230. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2231. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 0.999999821, 6.20720975e-011, -2.65615972e-006, -2.46790319e-006, 6.73400718e-005, -0.999999821, 1.31964842e-010, 0.999999821, 7.32520348e-005),CFrame.new(-1.52587891e-005, 3.72265625, 2.78215027, 0.999999821, 1.84252258e-006, -2.36767346e-006, 1.62845026e-006, 0.258754224, 0.965944648, 2.34368144e-006, -0.965943158, 0.258748502))
  2232. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 1, 1))
  2233. --------------------------------------------------------Part4
  2234. local Face = Instance.new('Decal',Char.Head)
  2235. Face.Name = 'face'
  2236. if Char.Head:findFirstChild('face') then
  2237. Char.Head['face']:Destroy()
  2238. end
  2239. Face.Texture = 'rbxassetid://259421287'
  2240. --------------------------------------------------------Part5
  2241. local plr = game.Players.LocalPlayer
  2242. repeat wait() until plr and plr.Character and plr.Character:findFirstChild("Torso")
  2243. local torso = plr.Character.Torso
  2244. local p = Instance.new("Part", torso.Parent) p.Name = "EpicCape" p.Anchored = false
  2245. p.CanCollide = false p.TopSurface = 0 p.BottomSurface = 0 p.BrickColor = BrickColor.new("Black") local dec = Instance.new("Decal", p) dec.Face = 2 dec.Texture = "http://www.roblox.com/asset/?id=0" p.formFactor = "Custom"
  2246. p.Material = "Granite"
  2247. p.Size = Vector3.new(.2,.2,.2)
  2248. local msh = Instance.new("BlockMesh", p) msh.Scale = Vector3.new(9,17.5,.5)
  2249. local motor1 = Instance.new("Motor", p)
  2250. motor1.Part0 = p
  2251. motor1.Part1 = torso
  2252. motor1.MaxVelocity = .01
  2253. motor1.C0 = CFrame.new(0,1.75,0)*CFrame.Angles(0,math.rad(90),0)
  2254. motor1.C1 = CFrame.new(0,1,.45)*CFrame.Angles(0,math.rad(90),0)
  2255. local wave = false
  2256. repeat wait(1/44)
  2257. local ang = 0.1
  2258. local oldmag = torso.Velocity.magnitude
  2259. local mv = .002
  2260. if wave then ang = ang + ((torso.Velocity.magnitude/10)*.05)+.05 wave = false else wave = true end
  2261. ang = ang + math.min(torso.Velocity.magnitude/11, .5)
  2262. motor1.MaxVelocity = math.min((torso.Velocity.magnitude/111), .04) + mv
  2263. motor1.DesiredAngle = -ang
  2264. if motor1.CurrentAngle < -.2 and motor1.DesiredAngle > -.2 then motor1.MaxVelocity = .04 end
  2265. repeat wait() until motor1.CurrentAngle == motor1.DesiredAngle or math.abs(torso.Velocity.magnitude - oldmag) >= (torso.Velocity.magnitude/10) + 1
  2266. if torso.Velocity.magnitude < .1 then wait(.1) end
  2267. until not p or p.Parent ~= torso.Parent
  2268. script:Destroy()
  2269. -----------------------------------------------------------Part6
  2270. -- :)
  2271.  
  2272. local Target = "daniel12313211"
  2273.  
  2274. local Character = game.Workspace[Target]
  2275.  
  2276. local hat = Instance.new('Hat', Character)
  2277. hat.AttachmentPos = Vector3.new(0, 0.87, 0)
  2278.  
  2279. local handle = Instance.new('Part', hat)
  2280. handle.Name = 'Handle'
  2281.  
  2282. local mesh = Instance.new('SpecialMesh')
  2283. mesh.Parent = handle
  2284. mesh.MeshId = 'rbxassetid://20637493'
  2285. mesh.TextureId = 'rbxassetid://20637003'
  2286. --------------------------------------------------------Part7
  2287. --[[Fixed Celestial Wheel]]--
  2288. wait(1/60)
  2289.  
  2290. local skillcolorscheme = BrickColor.new("Black").Color
  2291. local skillcolorschemeCOLOR = "White"
  2292. local skillcolorschemeCOLOR2 = "Really black"
  2293.  
  2294. local sine = 0
  2295. change = 1
  2296. sine = sine + change
  2297.  
  2298. Player = game.Players.LocalPlayer
  2299. Character = Player.Character
  2300. PlayerGui = Player.PlayerGui
  2301. Backpack = Player.Backpack
  2302. Torso = Character.Torso
  2303. Head = Character.Head
  2304. Humanoid = Character.Humanoid
  2305. LeftArm = Character["Left Arm"]
  2306. LeftLeg = Character["Left Leg"]
  2307. RightArm = Character["Right Arm"]
  2308. RightLeg = Character["Right Leg"]
  2309. Character = Player.Character
  2310. PlayerGui = Player.PlayerGui
  2311. Backpack = Player.Backpack
  2312. Torso = Character.Torso
  2313. Head = Character.Head
  2314. Humanoid = Character.Humanoid
  2315. LeftArm = Character["Left Arm"]
  2316. LeftLeg = Character["Left Leg"]
  2317. RightArm = Character["Right Arm"]
  2318. RightLeg = Character["Right Leg"]
  2319. LS = Torso["Left Shoulder"]
  2320. LH = Torso["Left Hip"]
  2321. RS = Torso["Right Shoulder"]
  2322. RH = Torso["Right Hip"]
  2323. Neck = Torso.Neck
  2324. attacktype = 1
  2325. vt = Vector3.new
  2326. cf = CFrame.new
  2327. euler = CFrame.fromEulerAnglesXYZ
  2328. angles = CFrame.Angles
  2329. necko = cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2330. necko2 = cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2331. LHC0 = cf(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2332. LHC1 = cf(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2333. RHC0 = cf(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2334. RHC1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2335. RootPart = Character.HumanoidRootPart
  2336. RootJoint = RootPart.RootJoint
  2337. RootCF = euler(-1.57, 0, 3.14)
  2338. attack = false
  2339. equipped = true
  2340. local Anim = "Idle"
  2341. local Effects = {}
  2342. cam = workspace.CurrentCamera
  2343. ZTarget = nil
  2344. RocketTarget = nil
  2345. local RbxUtility = LoadLibrary("RbxUtility")
  2346. local Create = RbxUtility.Create
  2347. local m = Create("Model"){
  2348. Parent = Character,
  2349. Name = "WeaponModel",
  2350. }
  2351. mouse = Player:GetMouse()
  2352. RSH, LSH = nil, nil
  2353. LH = Torso["Left Hip"]
  2354. RH = Torso["Right Hip"]
  2355. RSH = Torso["Right Shoulder"]
  2356. LSH = Torso["Left Shoulder"]
  2357.  
  2358. RSH.Parent = nil
  2359. LSH.Parent = nil
  2360.  
  2361. RW = Create("Weld"){
  2362. Name = "Right Shoulder",
  2363. Part0 = Torso ,
  2364. C0 = cf(1.5, 0.5, 0),
  2365. C1 = cf(0, 0.5, 0),
  2366. Part1 = RightArm ,
  2367. Parent = Torso ,
  2368. }
  2369.  
  2370. LW = Create("Weld"){
  2371. Name = "Left Shoulder",
  2372. Part0 = Torso ,
  2373. C0 = cf(-1.5, 0.5, 0),
  2374. C1 = cf(0, 0.5, 0) ,
  2375. Part1 = LeftArm ,
  2376. Parent = Torso ,
  2377. }
  2378. ----------------------------------------------------Part7
  2379.  
  2380. ----------------------------------------------------Part8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement