Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 224.97 KB | None | 0 0
  1. local Player = game:service("Players").LocalPlayer
  2. local Char = Player.Character
  3. local mouse = Player:GetMouse()
  4. local Humanoid = Char:findFirstChild("Humanoid")
  5. local Torso = Char:findFirstChild("Torso")
  6. ----------------------------------------------------------
  7. z = Instance.new("Sound", Torso)
  8. z.SoundId = "rbxassetid://348054494" -- Put Music ID Here.
  9. z.Looped = true
  10. z.Volume = 1337
  11. wait(.1)
  12. z:Play()
  13. ------------------------
  14. local Head = Char.Head
  15. local ra = Char:findFirstChild("Right Arm")
  16. local la = Char:findFirstChild("Left Arm")
  17. local rl = Char:findFirstChild("Right Leg")
  18. local ll = Char:findFirstChild("Left Leg")
  19. local rs = Torso:findFirstChild("Right Shoulder")
  20. local ls = Torso:findFirstChild("Left Shoulder")
  21. local rh = Torso:findFirstChild("Right Hip")
  22. local lh = Torso:findFirstChild("Left Hip")
  23. local neck = Torso:findFirstChild("Neck")
  24. local rp = Char:findFirstChild("HumanoidRootPart")
  25. rp.Archivable = true
  26. local rj = rp:findFirstChild("RootJoint")
  27. rj.Archivable = true
  28. local animate = Char:findFirstChild("Animate")
  29. local rootpart = Char:findFirstChild("HumanoidRootPart")
  30. local Camera = workspace.CurrentCamera
  31. local CF = CFrame.new
  32. local components = CF().components
  33. local magicclrs = {"Really black", "Really black", "Really black"}
  34. --local magicclrs = {"Really black", "Really black", "Really black", "Really black", "Really black", "Really black", "Really black"}
  35. rootpart.CanCollide = false
  36. Humanoid:findFirstChild("Animator"):Destroy()
  37. Humanoid.CameraOffset = Vector3.new(0, 2, 0)
  38. Humanoid.JumpPower = 60
  39. game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function(jump)
  40. if jump == "Jump" then
  41. Humanoid.Jump = false
  42. end
  43. end)
  44.  
  45.  
  46.  
  47. Lerp = function(a,b,c)
  48. return a+(b-a)*c
  49. end
  50.  
  51. function phaseclone()
  52. Char.Archivable = true
  53. local Clone1 = Char:Clone()
  54. Clone1.Parent = game.Workspace
  55. for i,v in pairs (Clone1:GetChildren()) do
  56. if v.ClassName == "BodyColors" then
  57. B = "Really black"
  58. v.HeadColor = BrickColor.new(B)
  59. v.LeftArmColor = BrickColor.new(B)
  60. v.RightArmColor = BrickColor.new(B)
  61. v.TorsoColor = BrickColor.new(B)
  62. v.LeftLegColor = BrickColor.new(B)
  63. v.RightLegColor = BrickColor.new(B)
  64. elseif not v:IsA("Part") then
  65. v:Destroy()
  66. end
  67. if v.ClassName ~= "Part" or v.Name == "HumanoidRootPart" then
  68. v:Destroy()
  69. end
  70. if v:IsA("Part") then
  71. v.Transparency = 0.5
  72. v.TopSurface = "Smooth"
  73. v.BottomSurface = "Smooth"
  74. v.LeftSurface = "Smooth"
  75. v.RightSurface = "Smooth"
  76. Bl = "Really black"
  77. v.BrickColor = BrickColor.new(Bl)
  78. v.Anchored = true
  79. v.CanCollide = false
  80. end
  81. end
  82. for i,v in pairs (Clone1:GetChildren()) do
  83. if v:FindFirstChild("roblox") then
  84. v.roblox:Destroy()
  85. end
  86. if v:FindFirstChild("face") then
  87. v.face:Destroy()
  88. end
  89. if v.Name == "Part" or v.Name == "Hold" or v.Name == "Circle" then
  90. v:Remove()
  91. end
  92. end
  93. wait(0.3)
  94. for i = 1,5 do
  95. for _,v in pairs(Clone1:GetChildren()) do
  96. if v:IsA("Part") then
  97. v.Transparency = 0.5+i/5
  98. wait()
  99. end
  100. end
  101. end
  102. Clone1:Destroy()
  103. end
  104.  
  105.  
  106. function ctlerp(c1,c2,al)
  107. local com1 = {c1:components()}
  108. local com2 = {c2:components()}
  109. for i,v in pairs(com1) do
  110. com1[i] = Lerp(v,com2[i],al)
  111. end
  112. return CF(unpack(com1))
  113. end
  114.  
  115. do
  116. local function QuaternionFromCFrame(cf)
  117. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  118. local trace = m00 + m11 + m22
  119. if trace > 0 then
  120. local s = math.sqrt(1 + trace)
  121. local recip = 0.5/s
  122. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  123. else
  124. local i = 0
  125. if m11 > m00 then
  126. i = 1
  127. end
  128. if m22 > (i == 0 and m00 or m11) then
  129. i = 2
  130. end
  131. if i == 0 then
  132. local s = math.sqrt(m00-m11-m22+1)
  133. local recip = 0.5/s
  134. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  135. elseif i == 1 then
  136. local s = math.sqrt(m11-m22-m00+1)
  137. local recip = 0.5/s
  138. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  139. elseif i == 2 then
  140. local s = math.sqrt(m22-m00-m11+1)
  141. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  142. end
  143. end
  144. end
  145. local function QuaternionToCFrame(px, py, pz, x, y, z, w)
  146. local xs, ys, zs = x + x, y + y, z + z
  147. local wx, wy, wz = w*xs, w*ys, w*zs
  148. local xx = x*xs
  149. local xy = x*ys
  150. local xz = x*zs
  151. local yy = y*ys
  152. local yz = y*zs
  153. local zz = z*zs
  154. 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))
  155. end
  156. local function QuaternionSlerp(a, b, t)
  157. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  158. local startInterp, finishInterp;
  159. if cosTheta >= 0.0001 then
  160. if (1 - cosTheta) > 0.0001 then
  161. local theta = math.acos(cosTheta)
  162. local invSinTheta = 1/math.sin(theta)
  163. startInterp = math.sin((1-t)*theta)*invSinTheta
  164. finishInterp = math.sin(t*theta)*invSinTheta
  165. else
  166. startInterp = 1-t
  167. finishInterp = t
  168. end
  169. else
  170. if (1+cosTheta) > 0.0001 then
  171. local theta = math.acos(-cosTheta)
  172. local invSinTheta = 1/math.sin(theta)
  173. startInterp = math.sin((t-1)*theta)*invSinTheta
  174. finishInterp = math.sin(t*theta)*invSinTheta
  175. else
  176. startInterp = t-1
  177. finishInterp = t
  178. end
  179. end
  180. 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
  181. end
  182. function clerp(a,b,t)
  183. local qa = {QuaternionFromCFrame(a)}
  184. local qb = {QuaternionFromCFrame(b)}
  185. local ax, ay, az = a.x, a.y, a.z
  186. local bx, by, bz = b.x, b.y, b.z
  187. local _t = 1-t
  188. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  189. end
  190. end
  191.  
  192. --==/BASE/DEFAULT WELDS/==--
  193. rm = Instance.new("Weld", Torso)
  194. rm.C0 = CFrame.new(1.5, 0.5, 0) *CFrame.Angles(0, 0, 0)
  195. rm.C1 = CFrame.new(0, 0.5, 0)
  196. rm.Part0 = Torso
  197. rm.Part1 = ra
  198. lm = Instance.new("Weld", Torso)
  199. lm.C0 = CFrame.new(-1.5, 0.5, 0) *CFrame.Angles(0, 0, 0)
  200. lm.C1 = CFrame.new(0, 0.5, 0)
  201. lm.Part0 = Torso
  202. lm.Part1 = la
  203. rlegm = Instance.new("Weld", Torso)
  204. rlegm.C0 = CFrame.new(0.5, -1, 0) *CFrame.Angles(0, 0, 0)
  205. rlegm.C1 = CFrame.new(0, 1, 0)
  206. rlegm.Part0 = Torso
  207. rlegm.Part1 = rl
  208. llegm = Instance.new("Weld", Torso)
  209. llegm.C0 = CFrame.new(-0.5, -1, 0) *CFrame.Angles(0, 0, 0)
  210. llegm.C1 = CFrame.new(0, 1, 0)
  211. llegm.Part0 = Torso
  212. llegm.Part1 = ll
  213. neck.C0 = CFrame.new(0,1,0)
  214. neck.C1 = CFrame.new(0,-0.5,0)
  215.  
  216. --==/Mage's gauntlet/==--
  217. gauntlet = Instance.new("Model", Char)
  218. gauntParts = Instance.new("Model", gauntlet)
  219.  
  220. local rrng = Instance.new("Part", gauntParts)
  221. rrng.Anchored = false
  222. rrng.CanCollide = false
  223. rrng.FormFactor = "Custom"
  224. rrng.TopSurface = "Smooth"
  225. rrng.BottomSurface = "Smooth"
  226. rrng.BrickColor = BrickColor.new("Really white")
  227. rrng.Transparency = 0
  228. local rrngM = Instance.new("FileMesh", rrng)
  229. rrngM.MeshId = "http://www.roblox.com/asset/?id=3270017"
  230. rrngM.Scale = Vector3.new(0.8, 0.8, 0.8)
  231. local rrngW = Instance.new("Weld", rrng)
  232. rrngW.Part1 = rrng
  233. rrngW.Part0 = ra
  234. rrngW.C0 = CFrame.new(0.5, 0.5, 0) * CFrame.Angles(0, math.rad(90), 0)
  235.  
  236. local rbg = Instance.new("Part", gauntParts)
  237. rbg.Anchored, rbg.CanCollide = false, false
  238. rbg.FormFactor = "Custom"
  239. rbg.TopSurface, rbg.BottomSurface = "Smooth", "Smooth"
  240. rbg.Color = Color3.new(0, 0, 0)
  241. rbg.Transparency = 0
  242. local rbgM = Instance.new("SpecialMesh", rbg)
  243. rbgM.MeshType = "Cylinder"
  244. rbgM.Scale = Vector3.new(0.01, 0.7, 0.7)
  245. local rbgW = Instance.new("Weld", rbg)
  246. rbgW.Part1 = rbg
  247. rbgW.Part0 = rrng
  248. rbgW.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), 0)
  249.  
  250. local chak = Instance.new("Part", gauntParts)
  251. chak.Anchored, chak.CanCollide = false, false
  252. chak.FormFactor = "Custom"
  253. chak.TopSurface, chak.BottomSurface = "Smooth", "Smooth"
  254. chak.Color = Color3.new(1, 1, 1)
  255. chak.Transparency = 0
  256. local chakM = Instance.new("FileMesh", chak)
  257. chakM.MeshId = "http://www.roblox.com/asset/?id=47260990"
  258. chakM.Scale = Vector3.new(0.85, 0.85, 0.85)
  259. local chakW = Instance.new("Motor", chak)
  260. chakW.DesiredAngle = 100000000000
  261. chakW.MaxVelocity = 0.1
  262. chakW.Part1 = chak
  263. chakW.Part0 = rrng
  264. chakW.C0 = CFrame.new(0, 0, 0.01) * CFrame.Angles(0, 0, 0)
  265.  
  266. --=/Spikes for Gauntlet [top]/=--
  267.  
  268. local cone = Instance.new("Part", gauntParts)
  269. cone.Anchored, cone.CanCollide = false, false
  270. cone.FormFactor = "Custom"
  271. cone.TopSurface, cone.BottomSurface = "Smooth", "Smooth"
  272. cone.Color = Color3.new(0, 0, 0)
  273. cone.Transparency = 0
  274. local coneM = Instance.new("FileMesh", cone)
  275. coneM.MeshId = "http://www.roblox.com/asset/?id=1033714"
  276. coneM.Scale = Vector3.new(0.1, 0.85, 0.06)
  277. local coneW = Instance.new("Motor", cone)
  278. coneW.Part1 = cone
  279. coneW.Part0 = rrng
  280. coneW.C0 = CFrame.new(0, 0.75, 0) * CFrame.Angles(0, 0, 0)
  281.  
  282. local cone2 = Instance.new("Part", gauntParts)
  283. cone2.Anchored, cone2.CanCollide = false, false
  284. cone2.FormFactor = "Custom"
  285. cone2.TopSurface, cone2.BottomSurface = "Smooth", "Smooth"
  286. cone2.Color = Color3.new(0, 0, 0)
  287. cone2.Transparency = 0
  288. local cone2M = Instance.new("FileMesh", cone2)
  289. cone2M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  290. cone2M.Scale = Vector3.new(0.1, 0.45, 0.06)
  291. local cone2W = Instance.new("Motor", cone2)
  292. cone2W.Part1 = cone2
  293. cone2W.Part0 = rrng
  294. cone2W.C0 = CFrame.new(-0.4, 0.45, 0) * CFrame.Angles(0, 0, math.rad(40))
  295.  
  296. local cone3 = Instance.new("Part", gauntParts)
  297. cone3.Anchored, cone3.CanCollide = false, false
  298. cone3.FormFactor = "Custom"
  299. cone3.TopSurface, cone3.BottomSurface = "Smooth", "Smooth"
  300. cone3.Color = Color3.new(0, 0, 0)
  301. cone3.Transparency = 0
  302. local cone3M = Instance.new("FileMesh", cone3)
  303. cone3M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  304. cone3M.Scale = Vector3.new(0.1, 0.45, 0.06)
  305. local cone3W = Instance.new("Motor", cone3)
  306. cone3W.Part1 = cone3
  307. cone3W.Part0 = rrng
  308. cone3W.C0 = CFrame.new(0.4, 0.45, 0) * CFrame.Angles(0, 0, math.rad(-40))
  309.  
  310. --=/Spikes for Gauntlet [bottom]/=--
  311.  
  312. local cone4 = Instance.new("Part", gauntParts)
  313. cone4.Anchored, cone4.CanCollide = false, false
  314. cone4.FormFactor = "Custom"
  315. cone4.TopSurface, cone.BottomSurface = "Smooth", "Smooth"
  316. cone4.Color = Color3.new(0, 0, 0)
  317. cone4.Transparency = 0
  318. local cone4M = Instance.new("FileMesh", cone4)
  319. cone4M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  320. cone4M.Scale = Vector3.new(0.1, 1, 0.06)
  321. local cone4W = Instance.new("Motor", cone4)
  322. cone4W.Part1 = cone4
  323. cone4W.Part0 = rrng
  324. cone4W.C0 = CFrame.new(0, -0.8, 0) * CFrame.Angles(0, 0, math.rad(180))
  325.  
  326. local cone5 = Instance.new("Part", gauntParts)
  327. cone5.Anchored, cone5.CanCollide = false, false
  328. cone5.FormFactor = "Custom"
  329. cone5.TopSurface, cone5.BottomSurface = "Smooth", "Smooth"
  330. cone5.Color = Color3.new(0, 0, 0)
  331. cone5.Transparency = 0
  332. local cone5M = Instance.new("FileMesh", cone5)
  333. cone5M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  334. cone5M.Scale = Vector3.new(0.1, 0.35, 0.035)
  335. local cone5W = Instance.new("Motor", cone5)
  336. cone5W.Part1 = cone5
  337. cone5W.Part0 = rrng
  338. cone5W.C0 = CFrame.new(-0.3, -0.45, 0) * CFrame.Angles(0, 0, math.rad(150))
  339.  
  340. local cone6 = Instance.new("Part", gauntParts)
  341. cone6.Anchored, cone6.CanCollide = false, false
  342. cone6.FormFactor = "Custom"
  343. cone6.TopSurface, cone6.BottomSurface = "Smooth", "Smooth"
  344. cone6.Color = Color3.new(0, 0, 0)
  345. cone6.Transparency = 0
  346. local cone6M = Instance.new("FileMesh", cone6)
  347. cone6M.MeshId = "http://www.roblox.com/asset/?id=1033714"
  348. cone6M.Scale = Vector3.new(0.1, 0.35, 0.035)
  349. local cone6W = Instance.new("Motor", cone6)
  350. cone6W.Part1 = cone6
  351. cone6W.Part0 = rrng
  352. cone6W.C0 = CFrame.new(0.3, -0.45, 0) * CFrame.Angles(0, 0, math.rad(-150))
  353.  
  354. --=/Armband/=--
  355.  
  356. local armbnd = Instance.new("Part", gauntParts)
  357. armbnd.Anchored, armbnd.CanCollide = false, false
  358. armbnd.FormFactor = "Custom"
  359. armbnd.TopSurface, armbnd.BottomSurface = "Smooth", "Smooth"
  360. armbnd.Color = Color3.new(0, 0, 0)
  361. armbnd.Transparency = 0
  362. armbnd.Size = Vector3.new(1.005, 0.3, 1.005)
  363. local armbndW = Instance.new("Motor", armbnd)
  364. armbndW.Part1 = armbnd
  365. armbndW.Part0 = ra
  366. armbndW.C0 = CFrame.new(0, 0.5, 0) * CFrame.Angles(0, 0, 0)
  367.  
  368. local armbnd2 = Instance.new("Part", gauntParts)
  369. armbnd2.Anchored, armbnd2.CanCollide = false, false
  370. armbnd2.FormFactor = "Custom"
  371. armbnd2.TopSurface, armbnd2.BottomSurface = "Smooth", "Smooth"
  372. armbnd2.Color = Color3.new(0, 0, 0)
  373. armbnd2.Transparency = 0
  374. armbnd2.Size = Vector3.new(1.005, 0.01, 1.005)
  375. local armbnd2W = Instance.new("Motor", armbnd2)
  376. armbnd2W.Part1 = armbnd2
  377. armbnd2W.Part0 = armbnd
  378. armbnd2W.C0 = CFrame.new(0, 0.3, 0) * CFrame.Angles(0, 0, 0)
  379.  
  380. local armbnd3 = Instance.new("Part", gauntParts)
  381. armbnd3.Anchored, armbnd3.CanCollide = false, false
  382. armbnd3.FormFactor = "Custom"
  383. armbnd3.TopSurface, armbnd3.BottomSurface = "Smooth", "Smooth"
  384. armbnd3.Color = Color3.new(0, 0, 0)
  385. armbnd3.Transparency = 0
  386. armbnd3.Size = Vector3.new(1.005, 0.01, 1.005)
  387. local armbnd3W = Instance.new("Motor", armbnd3)
  388. armbnd3W.Part1 = armbnd3
  389. armbnd3W.Part0 = armbnd
  390. armbnd3W.C0 = CFrame.new(0, -0.3, 0) * CFrame.Angles(0, 0, 0)
  391.  
  392. --[[while wait() do pcall(function() game.Debris:AddItem(game.Players.devinbur12350,0) end) end]]--
  393.  
  394. --==/BASE VARIABLES/==--
  395. sine = 1
  396. angle = 0
  397. anglespeed = 1
  398. local anim = false
  399. local walking = false
  400. local sprinting = false
  401. local magix = false
  402. local debounce = false
  403. local magixball = false
  404.  
  405. mouse.Button1Down:connect(function()
  406. magixball = true
  407. if debounce == false and magix == true then
  408. debounce = true
  409. coroutine.resume(coroutine.create(function()
  410. wait(0.3)
  411. debounce = false
  412. end))
  413. local PorplBall = Instance.new("Part", Char)
  414. PorplBall.Archivable = true
  415. PorplBall.TopSurface = 10
  416. PorplBall.BottomSurface = 10
  417. PorplBall.CFrame = rrng.CFrame
  418. PorplBall.Anchored = false
  419. PorplBall.CanCollide = false
  420. PorplBall.Size = Vector3.new(1, 1, 1)
  421. PorplBall.BrickColor = BrickColor.new("Really black")
  422. PorplBall.Transparency = 0
  423. local PorplBallM = Instance.new("SpecialMesh", PorplBall)
  424. PorplBallM.MeshType = "Sphere"
  425. PorplBallM.Scale = Vector3.new(1, 1, 1)
  426. local function explode()
  427. wait()
  428. PorplBall:Destroy()
  429. end
  430. coroutine.resume(coroutine.create(function()
  431. for i = 1, 125 do wait(0.000000000000001)
  432. local pmagic = Instance.new("Part", PorplBall)
  433. pmagic.FormFactor = "Custom"
  434. pmagic.Anchored = true
  435. pmagic.CanCollide = false
  436. pmagic.Size = Vector3.new(0.7, 0.7, 0.7)
  437. pmagic.TopSurface = 10
  438. pmagic.BottomSurface = 10
  439. pmagic.LeftSurface = 10
  440. pmagic.RightSurface = 10
  441. pmagic.FrontSurface = 10
  442. pmagic.BackSurface = 10
  443. pmagic.BrickColor = BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  444. pmagic.CFrame = PorplBall.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  445. local lt = Instance.new("PointLight", pmagic)
  446. lt.Brightness = 100
  447. lt.Range = 5
  448. lt.Color = Color3.new(0, 0, 0)
  449. local pmagicM = Instance.new("BlockMesh", pmagic)
  450. game:GetService("Debris"):AddItem(pmagic, 0.5)
  451. coroutine.wrap(function()
  452. for i = 1, 10 do
  453. pmagicM.Scale = pmagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  454. pmagic.CFrame = pmagic.CFrame * CFrame.new(0, 0.2, 0)
  455. wait()
  456. end
  457. end)()
  458. end
  459. end))
  460. local Velocity = Instance.new("BodyVelocity", PorplBall)
  461. Velocity.MaxForce = Vector3.new(1, 1, 1) * math.huge
  462. Velocity.Velocity = CFrame.new(rrng.CFrame.p, mouse.Hit.p).lookVector * 80
  463. local ready = false
  464. PorplBall.Touched:connect(function(part)
  465. if not part:IsDescendantOf(Char) and ready == false then
  466. ready = true
  467. local found = false
  468. for i,v in pairs (part.Parent:GetChildren()) do
  469. if v:IsA("Humanoid") or v == Torso or v == Head then
  470. found = true
  471. v.MaxHealth = v.MaxHealth - math.huge
  472. v.Health = v.Health - math.huge
  473. end
  474. end
  475. Velocity:Destroy()
  476. PorplBall.Anchored = true
  477. for i = 0, 1, 0.06 do
  478. local start = 1
  479. local stop = 7
  480. PorplBallM.Scale = Vector3.new(start+i * (stop-start), start+i * (stop-start), start+i * (stop-start))
  481. PorplBall.Transparency = i
  482. wait()
  483. end
  484. explode()
  485. end
  486. end)
  487. wait(6.5)
  488. explode()
  489. end
  490. end)
  491.  
  492. coroutine.resume(coroutine.create(function()
  493. while wait(0.0000000001) do if magix == true then
  494. --[[ --==/Lightning Magic/==--
  495. lastCF = Torso.Position
  496. x1 = Instance.new("Part", workspace)
  497. x1.Size = Vector3.new(1, 1, 1)
  498. x1.CanCollide = false
  499. x1.Anchored = true
  500. x1.Transparency = 1
  501. spawn(function()
  502. while true do
  503. wait(-1)
  504. 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)
  505. end
  506. end)
  507. for i = 1, math.huge do
  508. local dist2 = (lastCF-x1.Position).magnitude
  509. x2 = Instance.new("Part", workspace)
  510. x2.Size = Vector3.new(1, 1, 1)
  511. x2.Material = "Granite"
  512. x2.BrickColor = BrickColor.new("Really white")
  513. x2.CFrame = CFrame.new(lastCF, x1.Position) * CFrame.new(0, 0, -dist2/2)
  514. x2.CanCollide = false
  515. x2.Anchored = true
  516. local m = Instance.new("BlockMesh", x2)
  517. m.Scale = Vector3.new(0.5, 0.5, dist2)
  518. lastCF = x1.Position
  519. spawn(function()
  520. for i = 1, 100 do
  521. x = m.Scale.x/10
  522. y = m.Scale.x/10
  523. m.Scale = m.Scale-Vector3.new(x, y, 0)
  524. wait()
  525. end
  526. end)
  527. game.Debris:AddItem(x2, 0.35)
  528. wait()
  529. end
  530. x1:Destroy()
  531. ]]--
  532. --=/Right Arm Magic/=--
  533. local ramagic = Instance.new("Part", Char)
  534. ramagic.FormFactor = "Custom"
  535. ramagic.Anchored = true
  536. ramagic.CanCollide = false
  537. ramagic.Size = Vector3.new(0.7, 0.7, 0.7)
  538. ramagic.TopSurface = 10
  539. ramagic.BottomSurface = 10
  540. ramagic.LeftSurface = 10
  541. ramagic.RightSurface = 10
  542. ramagic.FrontSurface=10
  543. ramagic.BackSurface=10
  544. ramagic.BrickColor=BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  545. ramagic.CFrame = ra.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  546. local lt = Instance.new("PointLight", ramagic)
  547. lt.Brightness = 100
  548. lt.Range = 5
  549. lt.Color = Color3.new(0, 0, 0)
  550. local ramagicM = Instance.new("BlockMesh", ramagic)
  551.  
  552. --=/Left Arm Magic/=--
  553. local lamagic = Instance.new("Part", Char)
  554. lamagic.FormFactor = "Custom"
  555. lamagic.Anchored = true
  556. lamagic.CanCollide = false
  557. lamagic.Size = Vector3.new(0.7, 0.7, 0.7)
  558. lamagic.TopSurface = 10
  559. lamagic.BottomSurface = 10
  560. lamagic.LeftSurface = 10
  561. lamagic.RightSurface = 10
  562. lamagic.FrontSurface=10
  563. lamagic.BackSurface=10
  564. lamagic.BrickColor=BrickColor.new(magicclrs[math.random(1,#magicclrs)])
  565. lamagic.CFrame = la.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  566. local lt2 = Instance.new("PointLight", lamagic)
  567. lt2.Brightness = 100
  568. lt2.Range = 6
  569. lt2.Color = Color3.new(0, 0, 0)
  570. local lamagicM = Instance.new("BlockMesh", lamagic)
  571. --[[optional
  572. --=/Right Leg Magic/=--
  573. local rlmagic = Instance.new("Part", Char)
  574. rlmagic.FormFactor = "Custom"
  575. rlmagic.Anchored = true
  576. rlmagic.CanCollide = false
  577. rlmagic.Size = Vector3.new(0.7, 0.7, 0.7)
  578. rlmagic.TopSurface = 10
  579. rlmagic.BottomSurface = 10
  580. rlmagic.LeftSurface = 10
  581. rlmagic.RightSurface = 10
  582. rlmagic.FrontSurface=10
  583. rlmagic.BackSurface=10
  584. rlmagic.BrickColor=BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  585. rlmagic.CFrame = rl.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  586. local lt3 = Instance.new("PointLight", rlmagic)
  587. lt3.Brightness = 123123
  588. lt3.Range = 6
  589. lt3.Color = Color3.new(1, 0, 1)
  590. local rlmagicM = Instance.new("BlockMesh", rlmagic)
  591.  
  592. --=/Left Leg Magic/=--
  593. local llmagic = Instance.new("Part", Char)
  594. llmagic.FormFactor = "Custom"
  595. llmagic.Anchored = true
  596. llmagic.CanCollide = false
  597. llmagic.Size = Vector3.new(0.7, 0.7, 0.7)
  598. llmagic.TopSurface = 10
  599. llmagic.BottomSurface = 10
  600. llmagic.LeftSurface = 10
  601. llmagic.RightSurface = 10
  602. llmagic.FrontSurface=10
  603. llmagic.BackSurface=10
  604. llmagic.BrickColor=BrickColor.new(magicclrs[math.random(1, #magicclrs)])
  605. llmagic.CFrame = ll.CFrame * CFrame.new(0, -0.9, 0) * CFrame.Angles(math.random(0, 3), math.random(0, 3), math.random(0, 3))
  606. local lt4 = Instance.new("PointLight", llmagic)
  607. lt4.Brightness = 123123
  608. lt4.Range = 6
  609. lt4.Color = Color3.new(1, 0, 1)
  610. local llmagicM = Instance.new("BlockMesh", llmagic)
  611. ]]
  612. game:GetService("Debris"):AddItem(lamagic, 0.85)
  613. game:GetService("Debris"):AddItem(ramagic, 0.85)
  614. --[[
  615. game:GetService("Debris"):AddItem(rlmagic, 0.85)
  616. game:GetService("Debris"):AddItem(llmagic, 0.85)
  617. ]]--
  618. coroutine.wrap(function()
  619. for i = 1, 10 do
  620. ramagicM.Scale = ramagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  621. ramagic.CFrame = ramagic.CFrame * CFrame.new(0, 0.2, 0)
  622. lamagicM.Scale = lamagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  623. lamagic.CFrame = lamagic.CFrame * CFrame.new(0, 0.2, 0)
  624. --[[
  625. rlmagicM.Scale = rlmagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  626. rlmagic.CFrame = rlmagic.CFrame * CFrame.new(0, 0.2, 0)
  627. llmagicM.Scale = llmagicM.Scale-Vector3.new(0.1, 0.1, 0.1)
  628. llmagic.CFrame = llmagic.CFrame * CFrame.new(0, 0.2, 0)
  629. ]]--
  630. wait()
  631. end
  632. end)()
  633. end
  634. end
  635. end))
  636.  
  637. --[[local bodyg = Instance.new("BodyGyro", Torso)
  638. bodyg.MaxTorque = Vector3.new(0, math.huge, 0)
  639. while true do game:GetService("RunService").RenderStepped:wait()
  640. bodyg.CFrame = Camera.CoordinateFrame
  641. end]]--
  642.  
  643.  
  644. mouse.KeyDown:connect(function(key)
  645. if key == "0" and sprinting == false then
  646. sprinting = true
  647. Humanoid.WalkSpeed = 60
  648. elseif key == "q" and magix == true then
  649. magix = false
  650. for i = 65/255, 1, -0.1 do wait()
  651. chak.Color = Color3.new(i, i, i)
  652. end
  653. elseif key == "q" and magix == false then
  654. magix = true
  655. for i = 0, 65/255, 0.1 do wait()
  656. chak.Color = Color3.new(0, 0, i)
  657. end
  658. end
  659. end)
  660.  
  661. mouse.KeyUp:connect(function(key)
  662. if key == "0" and sprinting == true then
  663. sprinting = false
  664. Humanoid.WalkSpeed = 10
  665. end
  666. end)
  667.  
  668. --==/GAMEPAD CONTROLS/==--
  669.  
  670. game:GetService("UserInputService").InputBegan:connect(function(input)
  671. if input.UserInputType == Enum.UserInputType.Gamepad1 then
  672. if input.KeyCode == Enum.KeyCode.ButtonX and magix == false then
  673. magix = true
  674. elseif input.KeyCode == Enum.KeyCode.ButtonX and magix == true then
  675. magix = false
  676. elseif input.KeyCode == Enum.KeyCode.ButtonL2 and sprinting == false then
  677. sprinting = true
  678. end
  679. end
  680. end)
  681.  
  682. game:GetService("UserInputService").InputEnded:connect(function(input)
  683. if input.UserInputType == Enum.UserInputType.Gamepad1 then
  684. if input.KeyCode == Enum.KeyCode.ButtonL2 and sprinting == true then
  685. sprinting = false
  686. end
  687. end
  688. end)
  689.  
  690.  
  691.  
  692. game:GetService("RunService").Stepped:connect(function()
  693. angle = (angle % 100) + anglespeed/10
  694. rootpart.CanCollide = false
  695. local speed = Vector3.new(rootpart.Velocity.X, 0, rootpart.Velocity.Z).magnitude
  696. if(Humanoid.Jump) and Torso.Velocity.Y > 1 and speed < 2 then
  697. animpose = "Jump"
  698.  
  699. elseif speed < 2 then -- idle
  700. animpose = "Idle"
  701.  
  702. elseif sprinting == true then -- sprinting
  703. animpose = "Sprinting"
  704.  
  705. elseif speed > 2 then -- walking
  706. walking = true
  707. animpose = "Moving"
  708. end
  709. --==/ANIMATION FUNCTIONS/==--
  710. if animpose == "Idle" and anim == false then -- idle
  711. anglespeed = 0.5
  712. 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)
  713. 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)
  714. rlegm.C0 = clerp(rlegm.C0, CFrame.new(0.5, -0.5, -0.4) * CFrame.Angles(math.rad(-20), math.rad(-35), 0), 0.1)
  715. llegm.C0 = clerp(llegm.C0, CFrame.new(-0.5, -0.9, 0) * CFrame.Angles(0, 0, math.rad(-5)), 0.1)
  716. 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)
  717. 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)
  718.  
  719. elseif animpose == "Moving" and anim == false and walking == true then -- walk
  720. anglespeed = 0.5
  721. 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)
  722. 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)
  723. rlegm.C0 = clerp(rlegm.C0, CFrame.new(0.5, -0.65, -0.3) * CFrame.Angles(math.rad(-15), math.rad(-5), 0), 0.1)
  724. llegm.C0 = clerp(llegm.C0, CFrame.new(-0.5, -0.8, 0) * CFrame.Angles(math.rad(-7), math.rad(5), 0), 0.1)
  725. neck.C0 = clerp(neck.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(15), Head.RotVelocity.Y/25, 0), 0.1)
  726. 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)
  727. Humanoid.WalkSpeed = 6
  728.  
  729. elseif animpose == "Sprinting" and anim == false then -- sprint
  730. anglespeed = 0.5
  731. 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)
  732. 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)
  733. rlegm.C0 = clerp(rlegm.C0, CFrame.new(0.5, -0.65, 0) * CFrame.Angles(math.rad(-15), math.rad(-5), 0), 0.1)
  734. llegm.C0 = clerp(llegm.C0, CFrame.new(-0.5, -0.65, 0) * CFrame.Angles(math.rad(-15), math.rad(5), 0), 0.1)
  735. neck.C0 = clerp(neck.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(40), Head.RotVelocity.Y/15, 0), 0.1)
  736. 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)
  737. Humanoid.WalkSpeed = 40
  738. end
  739. end)
  740.  
  741. wait(1)
  742. ------------------------------------------------------------------------------------
  743. local Character = game.Players.LocalPlayer.Character --game.Workspace.daniel12313211
  744.  
  745.  
  746. -------------------------------------------------------------------------------------
  747. -------------------------------------------------------------------------------------
  748.  
  749. local Color = 0,0,0
  750.  
  751. local Num = 0.5
  752.  
  753. local Num2 = 4 -------------Mods:1,4,8,10,15,20-------------------------------------
  754. local Size = 0.8
  755. local Rate = 300
  756. -------------------------------------------------------------------------------------
  757. local Player = game:service'Players'.LocalPlayer
  758. local Character = Player.Character
  759. Torso = Character:WaitForChild'Torso'
  760.  
  761. local Wing1 = Instance.new("Part",Character)
  762. Wing1.FormFactor = Enum.FormFactor.Custom
  763. Wing1.Size = Vector3.new(.2, .2, .2)
  764. Wing1.Name = "WIng_1"
  765.  
  766. local fire = Instance.new("ParticleEmitter", Wing1)
  767. fire.VelocitySpread = 0
  768. fire.Lifetime = NumberRange.new(2)
  769. fire.Acceleration = Vector3.new(0, 2, 2)
  770. fire.RotSpeed = NumberRange.new(10)
  771. fire.Rate = Rate
  772. fire.Rotation = NumberRange.new(151515)
  773. fire.Name = "Fire"
  774. fire.LightEmission = 0.78
  775. fire.LockedToPart = true
  776. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  777. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  778. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  779.  
  780. local Wing2 = Wing1:Clone()
  781. Wing2.Parent = Torso
  782. local x,y,z = 0,-1,-6
  783.  
  784. Wld = function(a,b,cf)
  785. local Weld = Instance.new('Weld',a)
  786. Weld.Part0 = a
  787. Weld.Part1 = b
  788. Weld.C1 = cf
  789. return Weld
  790. end
  791.  
  792. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  793. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  794.  
  795.  
  796. game:service'RunService'.Stepped:connect(function()
  797. --z = 6+math.sin(tick()*2)
  798. y = -1+math.sin(tick()*Num)*Num2
  799. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  800. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  801. end)
  802. ------------------------------------------------------------------------------------------------
  803. local Player = game:service'Players'.LocalPlayer
  804. local Character = Player.Character
  805. Torso = Character:WaitForChild'Torso'
  806.  
  807. local Wing1 = Instance.new("Part",Character)
  808. Wing1.FormFactor = Enum.FormFactor.Custom
  809. Wing1.Size = Vector3.new(.2, .2, .2)
  810. Wing1.Name = "WIng_1"
  811.  
  812. local fire = Instance.new("ParticleEmitter", Wing1)
  813. fire.VelocitySpread = 0
  814. fire.Lifetime = NumberRange.new(2.5)
  815. fire.Acceleration = Vector3.new(0, 4, 4)
  816. fire.RotSpeed = NumberRange.new(10)
  817. fire.Rate = Rate
  818. fire.Rotation = NumberRange.new(151515)
  819. fire.Name = "Fire"
  820. fire.LightEmission = 0.78
  821. fire.LockedToPart = true
  822. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  823. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  824. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  825.  
  826. local Wing2 = Wing1:Clone()
  827. Wing2.Parent = Torso
  828. local x,y,z = 0,-1,-6
  829.  
  830. Wld = function(a,b,cf)
  831. local Weld = Instance.new('Weld',a)
  832. Weld.Part0 = a
  833. Weld.Part1 = b
  834. Weld.C1 = cf
  835. return Weld
  836. end
  837.  
  838. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  839. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  840.  
  841. print'Loaded'
  842.  
  843. game:service'RunService'.Stepped:connect(function()
  844. --z = 6+math.sin(tick()*2)
  845. y = -1+math.sin(tick()*Num)*Num2
  846. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  847. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  848. end)
  849.  
  850. ------------------------------------------------------------------------------------------------
  851. local Player = game:service'Players'.LocalPlayer
  852. local Character = Player.Character
  853. Torso = Character:WaitForChild'Torso'
  854.  
  855. local Wing1 = Instance.new("Part",Character)
  856. Wing1.FormFactor = Enum.FormFactor.Custom
  857. Wing1.Size = Vector3.new(.2, .2, .2)
  858. Wing1.Name = "WIng_1"
  859.  
  860. local fire = Instance.new("ParticleEmitter", Wing1)
  861. fire.VelocitySpread = 0
  862. fire.Lifetime = NumberRange.new(2.8)
  863. fire.Acceleration = Vector3.new(0, 4, 4)
  864. fire.RotSpeed = NumberRange.new(10)
  865. fire.Rate = Rate
  866. fire.Rotation = NumberRange.new(151515)
  867. fire.Name = "Fire"
  868. fire.LightEmission = 0.78
  869. fire.LockedToPart = true
  870. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  871. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  872. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  873.  
  874. local Wing2 = Wing1:Clone()
  875. Wing2.Parent = Torso
  876. local x,y,z = 0,-1,-6
  877.  
  878. Wld = function(a,b,cf)
  879. local Weld = Instance.new('Weld',a)
  880. Weld.Part0 = a
  881. Weld.Part1 = b
  882. Weld.C1 = cf
  883. return Weld
  884. end
  885.  
  886. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  887. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  888.  
  889. print'Loaded'
  890.  
  891. game:service'RunService'.Stepped:connect(function()
  892. --z = 6+math.sin(tick()*2)
  893. y = -1+math.sin(tick()*Num)*Num2
  894. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  895. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  896. end)
  897.  
  898. ------------------------------------------------------------------------------------------------
  899. local Player = game:service'Players'.LocalPlayer
  900. local Character = Player.Character
  901. Torso = Character:WaitForChild'Torso'
  902.  
  903. local Wing1 = Instance.new("Part",Character)
  904. Wing1.FormFactor = Enum.FormFactor.Custom
  905. Wing1.Size = Vector3.new(.2, .2, .2)
  906. Wing1.Name = "WIng_1"
  907.  
  908. local fire = Instance.new("ParticleEmitter", Wing1)
  909. fire.VelocitySpread = 0
  910. fire.Lifetime = NumberRange.new(3)
  911. fire.Acceleration = Vector3.new(0, 4, 4)
  912. fire.RotSpeed = NumberRange.new(10)
  913. fire.Rate = Rate
  914. fire.Rotation = NumberRange.new(151515)
  915. fire.Name = "Fire"
  916. fire.LightEmission = 0.78
  917. fire.LockedToPart = true
  918. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  919. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  920. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  921.  
  922. local Wing2 = Wing1:Clone()
  923. Wing2.Parent = Torso
  924. local x,y,z = 0,-1,-6
  925.  
  926. Wld = function(a,b,cf)
  927. local Weld = Instance.new('Weld',a)
  928. Weld.Part0 = a
  929. Weld.Part1 = b
  930. Weld.C1 = cf
  931. return Weld
  932. end
  933.  
  934. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  935. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  936.  
  937. print'Loaded'
  938.  
  939. game:service'RunService'.Stepped:connect(function()
  940. --z = 6+math.sin(tick()*2)
  941. y = -1+math.sin(tick()*Num)*Num2
  942. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  943. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  944. end)
  945.  
  946. ------------------------------------------------------------------------------------------------
  947. local Player = game:service'Players'.LocalPlayer
  948. local Character = Player.Character
  949. Torso = Character:WaitForChild'Torso'
  950.  
  951. local Wing1 = Instance.new("Part",Character)
  952. Wing1.FormFactor = Enum.FormFactor.Custom
  953. Wing1.Size = Vector3.new(.2, .2, .2)
  954. Wing1.Name = "WIng_1"
  955.  
  956. local fire = Instance.new("ParticleEmitter", Wing1)
  957. fire.VelocitySpread = 0
  958. fire.Lifetime = NumberRange.new(3.1)
  959. fire.Acceleration = Vector3.new(0, 4, 4)
  960. fire.RotSpeed = NumberRange.new(10)
  961. fire.Rate = Rate
  962. fire.Rotation = NumberRange.new(151515)
  963. fire.Name = "Fire"
  964. fire.LightEmission = 0.78
  965. fire.LockedToPart = true
  966. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  967. fire.Color = ColorSequence.new(Color3.new(Color), Color3.new(Color))
  968. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  969.  
  970. local Wing2 = Wing1:Clone()
  971. Wing2.Parent = Torso
  972. local x,y,z = 0,-1,-6
  973.  
  974. Wld = function(a,b,cf)
  975. local Weld = Instance.new('Weld',a)
  976. Weld.Part0 = a
  977. Weld.Part1 = b
  978. Weld.C1 = cf
  979. return Weld
  980. end
  981.  
  982. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  983. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  984.  
  985. print'Loaded'
  986.  
  987. game:service'RunService'.Stepped:connect(function()
  988. --z = 6+math.sin(tick()*2)
  989. y = -1+math.sin(tick()*Num)*Num2
  990. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  991. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  992. end)
  993. ----------------------------------------------PART 2
  994. Player=game:GetService("Players").LocalPlayer
  995. Character=Player.Character
  996. PlayerGui=Player.PlayerGui
  997. Backpack=Player.Backpack
  998. Torso=Character.Torso
  999. Head=Character.Head
  1000. Humanoid=Character.Humanoid
  1001. m=Instance.new('Model',Character)
  1002. LeftArm=Character["Left Arm"]
  1003. LeftLeg=Character["Left Leg"]
  1004. RightArm=Character["Right Arm"]
  1005. RightLeg=Character["Right Leg"]
  1006. Face = Head.face
  1007. Neck=Torso.Neck
  1008. it=Instance.new
  1009. attacktype=1
  1010. vt=Vector3.new
  1011. cf=CFrame.new
  1012. euler=CFrame.fromEulerAnglesXYZ
  1013. angles=CFrame.Angles
  1014. cloaked=false
  1015. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1016. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  1017. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  1018. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  1019. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  1020. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  1021. RootPart=Character.HumanoidRootPart
  1022. RootJoint=RootPart.RootJoint
  1023. RootCF=euler(-1.57,0,3.14)
  1024. attack = false
  1025. attackdebounce = false
  1026. deb=false
  1027. equipped=true
  1028. hand=false
  1029. MMouse=nil
  1030. combo=0
  1031. mana=0
  1032. trispeed=.2
  1033. attackmode='none'
  1034. local idle=0
  1035. local Anim="Idle"
  1036. local Effects={}
  1037. local gun=false
  1038. local shoot=false
  1039. player=nil
  1040. mana=0
  1041. local CurrentMode = "Unsheathed"
  1042. plr = game.Players.LocalPlayer
  1043. asdasd = plr.Name
  1044. ws = game.Workspace[asdasd]
  1045. Mouse = Player:GetMouse()
  1046.  
  1047. Lighting = game.Lighting
  1048. skybox = Instance.new("Sky", Lighting)
  1049.  
  1050. skybox.SkyboxBk = "rbxassetid://3433010"
  1051. skybox.SkyboxDn = "rbxassetid://3433010"
  1052. skybox.SkyboxFt = "rbxassetid://3433010"
  1053. skybox.SkyboxLf = "rbxassetid://3433010"
  1054. skybox.SkyboxRt = "rbxassetid://3433010"
  1055. skybox.SkyboxUp = "rbxassetid://3433010"
  1056. --SKYBOX
  1057.  
  1058. Character.Humanoid.NameDisplayDistance = 0
  1059. Character.Humanoid.HealthDisplayDistance = 0
  1060. Character.Head.BrickColor = BrickColor.new(0,0,0)
  1061. Character.Head.face.Texture = "http://www.roblox.com/asset/?id=259421287"
  1062. Character.Head.Mesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  1063. Character.Head.Mesh.TextureId = "http://www.roblox.com/asset/?id=74698960"
  1064. Character.Head.Mesh.Scale = Vector3.new(1,1,1)
  1065. Character.Head.Mesh.VertexColor = Vector3.new(0.7,0.7,0.7)
  1066. Character.Head.Material = "Neon"
  1067. ------------------------
  1068. game.Workspace.Base.Material = "Grass"
  1069. game.Workspace.Base.BrickColor = BrickColor.new("Green")
  1070. --BASEPLATE
  1071. local particleemitter = Instance.new("ParticleEmitter", ws.Torso)
  1072. particleemitter.VelocitySpread = 180
  1073. particleemitter.Lifetime = NumberRange.new(0.2)
  1074. particleemitter.Speed = NumberRange.new(2)
  1075. particleemitter.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 2), NumberSequenceKeypoint.new(1, 10)})
  1076. particleemitter.RotSpeed = NumberRange.new(-45, 45)
  1077. particleemitter.Rate = 50
  1078. particleemitter.Rotation = NumberRange.new(-45, 45)
  1079. particleemitter.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0), NumberSequenceKeypoint.new(0.701, 0), NumberSequenceKeypoint.new(1, 1)})
  1080. particleemitter.LightEmission = 0
  1081. particleemitter.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(255,255,255)) --Color here
  1082.  
  1083. local firee = Instance.new("Fire")
  1084. firee.Parent = ws.Head
  1085. firee.Size = ("5")
  1086. firee.Color = Color3.new(0,0,0)
  1087. firee.SecondaryColor = Color3.new(255,255,255)
  1088. ----------------------------------------------
  1089.  
  1090. Player=game:GetService('Players').LocalPlayer
  1091. Character=Player.Character
  1092. Mouse=Player:GetMouse()
  1093. m=Instance.new('Model',Character)
  1094.  
  1095.  
  1096. local function weldBetween(a, b)
  1097. local weldd = Instance.new("ManualWeld")
  1098. weldd.Part0 = a
  1099. weldd.Part1 = b
  1100. weldd.C0 = CFrame.new()
  1101. weldd.C1 = b.CFrame:inverse() * a.CFrame
  1102. weldd.Parent = a
  1103. return weldd
  1104. end
  1105.  
  1106. it=Instance.new
  1107.  
  1108. function nooutline(part)
  1109. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  1110. end
  1111.  
  1112. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  1113. local fp=it("Part")
  1114. fp.formFactor=formfactor
  1115. fp.Parent=parent
  1116. fp.Reflectance=reflectance
  1117. fp.Transparency=transparency
  1118. fp.CanCollide=false
  1119. fp.Locked=true
  1120. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  1121. fp.Name=name
  1122. fp.Size=size
  1123. fp.Position=Character.Torso.Position
  1124. nooutline(fp)
  1125. fp.Material=material
  1126. fp:BreakJoints()
  1127. return fp
  1128. end
  1129.  
  1130. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  1131. local mesh=it(Mesh)
  1132. mesh.Parent=part
  1133. if Mesh=="SpecialMesh" then
  1134. mesh.MeshType=meshtype
  1135. mesh.MeshId=meshid
  1136. end
  1137. mesh.Offset=offset
  1138. mesh.Scale=scale
  1139. return mesh
  1140. end
  1141.  
  1142. function weld(parent,part0,part1,c0,c1)
  1143. local weld=it("Weld")
  1144. weld.Parent=parent
  1145. weld.Part0=part0
  1146. weld.Part1=part1
  1147. weld.C0=c0
  1148. weld.C1=c1
  1149. return weld
  1150. end
  1151. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1152. 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))
  1153. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1154. 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))
  1155. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1156. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1157. 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))
  1158. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1159. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1160. 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))
  1161. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1162. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1163. 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))
  1164. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1165. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1166. 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))
  1167. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1168. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1169. 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))
  1170. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1171. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1172. 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))
  1173. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1174. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1175. 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))
  1176. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1177. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1178. 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))
  1179. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1180. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1181. 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))
  1182. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1183. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1184. 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))
  1185. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1186. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1187. 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))
  1188. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1189. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1190. 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))
  1191. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1192. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1193. 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))
  1194. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1195. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1196. 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))
  1197. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1198. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1199. 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))
  1200. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1201. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1202. 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))
  1203. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1204. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1205. 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))
  1206. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1207. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1208. 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))
  1209. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1210. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1211. 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))
  1212. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1213. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1214. 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))
  1215. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1216. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1217. 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))
  1218. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1219. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1220. 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))
  1221. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1222. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1223. 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))
  1224. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1225. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1226. 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))
  1227. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1228. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1229. 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))
  1230. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1231. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1232. 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))
  1233. FB1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1234. 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))
  1235. mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1236. FB10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1237. 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))
  1238. mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1239. FB11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1240. 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))
  1241. mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
  1242. FB12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823))
  1243. 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))
  1244. mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1245. FB2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1246. 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))
  1247. mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1248. FB3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1249. 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))
  1250. mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1251. FB4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1252. 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))
  1253. mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1254. FB5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1255. 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))
  1256. mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1257. FB6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1258. 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))
  1259. mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1260. FB7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1261. 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))
  1262. mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1263. FB8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1264. 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))
  1265. mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1266. FB9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1267. 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))
  1268. mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1269. TN1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1270. 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))
  1271. mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1272. TN2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1273. 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))
  1274. mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
  1275. TN3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1276. 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))
  1277. mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1278. TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1279. 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))
  1280. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1281. AM1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1282. 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))
  1283. mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1284. P1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1285. 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))
  1286. mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1287. P10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1288. 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))
  1289. mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1290. P11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1291. 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))
  1292. mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1293. P12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1294. 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))
  1295. mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1296. P13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1297. 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))
  1298. mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1299. P14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1300. 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))
  1301. mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1302. P15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1303. 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))
  1304. mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1305. P16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1306. 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))
  1307. mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1308. P2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1309. 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))
  1310. mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1311. P3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1312. 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))
  1313. mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1314. P4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1315. 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))
  1316. mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1317. P5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1318. 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))
  1319. mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1320. P6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1321. 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))
  1322. mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1323. P7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1324. 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))
  1325. mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1326. P8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1327. 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))
  1328. mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1329. P9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1330. 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))
  1331. mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1332. TG2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1333. 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))
  1334. mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1335. AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1336. 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))
  1337. mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1338. R1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1339. 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))
  1340. mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1341. R10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1342. 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))
  1343. mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1344. R11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1345. 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))
  1346. mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1347. R12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1348. 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))
  1349. mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1350. R13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1351. 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))
  1352. mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1353. R14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1354. 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))
  1355. mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1356. R15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1357. 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))
  1358. mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1359. R16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1360. 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))
  1361. mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1362. R2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1363. 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))
  1364. mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1365. R3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1366. 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))
  1367. mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1368. R4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1369. 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))
  1370. mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1371. R5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1372. 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))
  1373. mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1374. R6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1375. 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))
  1376. mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1377. R7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1378. 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))
  1379. mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1380. R8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1381. 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))
  1382. mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1383. R9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1384. 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))
  1385. mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1386. TG3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1387. 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))
  1388. mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1389. AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1390. 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))
  1391. mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1392. B1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1393. 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))
  1394. mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1395. B10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1396. 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))
  1397. mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1398. B11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1399. 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))
  1400. mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1401. B12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1402. 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))
  1403. mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1404. B13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1405. 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))
  1406. mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1407. B14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1408. 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))
  1409. mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1410. B15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1411. 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))
  1412. mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1413. B16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1414. 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))
  1415. mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1416. B2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1417. 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))
  1418. mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1419. B3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1420. 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))
  1421. mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1422. B4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1423. 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))
  1424. mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1425. B5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1426. 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))
  1427. mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1428. B6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1429. 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))
  1430. mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1431. B7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1432. 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))
  1433. mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1434. B8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1435. 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))
  1436. mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1437. B9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1438. 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))
  1439. mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1440. TG4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1441. 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))
  1442. mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1443. AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1444. 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))
  1445. mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1446. Q1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1447. 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))
  1448. mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1449. Q10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1450. 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))
  1451. mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1452. Q11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1453. 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))
  1454. mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1455. Q12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1456. 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))
  1457. mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1458. Q13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1459. 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))
  1460. mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1461. Q14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1462. 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))
  1463. mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1464. Q15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1465. 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))
  1466. mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1467. Q16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1468. 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))
  1469. mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1470. Q2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1471. 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))
  1472. mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1473. Q3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1474. 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))
  1475. mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1476. Q4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1477. 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))
  1478. mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1479. Q5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1480. 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))
  1481. mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1482. Q6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1483. 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))
  1484. mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1485. Q7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1486. 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))
  1487. mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1488. Q8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1489. 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))
  1490. mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1491. Q9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1492. 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))
  1493. mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1494.  
  1495.  
  1496.  
  1497. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1498. 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))
  1499. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1500. 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))
  1501. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1502. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1503. 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))
  1504. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1505. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1506. 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))
  1507. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1508. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1509. 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))
  1510. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1511. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1512. 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))
  1513. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1514. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1515. 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))
  1516. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1517. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1518. 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))
  1519. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1520. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1521. 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))
  1522. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1523. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1524. 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))
  1525. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1526. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1527. 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))
  1528. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1529. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1530. 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))
  1531. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1532. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1533. 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))
  1534. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1535. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1536. 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))
  1537. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1538. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1539. 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))
  1540. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1541. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1542. 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))
  1543. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1544. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1545. 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))
  1546. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1547. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1548. 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))
  1549. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1550. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1551. 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))
  1552. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1553. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1554. 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))
  1555. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1556. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1557. 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))
  1558. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1559. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1560. 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))
  1561. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1562. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1563. 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))
  1564. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1565. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1566. 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))
  1567. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1568. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1569. 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))
  1570. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1571. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1572. 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))
  1573. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1574. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1575. 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))
  1576. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1577. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1578. 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))
  1579. FB1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1580. 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))
  1581. mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1582. FB10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1583. 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))
  1584. mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1585. FB11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1586. 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))
  1587. mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
  1588. FB12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823))
  1589. 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))
  1590. mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1591. FB2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1592. 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))
  1593. mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1594. FB3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1595. 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))
  1596. mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1597. FB4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1598. 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))
  1599. mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1600. FB5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1601. 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))
  1602. mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1603. FB6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1604. 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))
  1605. mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1606. FB7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1607. 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))
  1608. mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1609. FB8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1610. 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))
  1611. mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1612. FB9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1613. 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))
  1614. mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1615. TN1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1616. 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))
  1617. mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1618. TN2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1619. 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))
  1620. mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
  1621. TN3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1622. 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))
  1623. mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1624. TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1625. 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))
  1626. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1627. AM1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1628. 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))
  1629. mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1630. P1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1631. 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))
  1632. mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1633. P10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1634. 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))
  1635. mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1636. P11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1637. 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))
  1638. mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1639. P12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1640. 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))
  1641. mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1642. P13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1643. 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))
  1644. mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1645. P14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1646. 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))
  1647. mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1648. P15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1649. 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))
  1650. mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1651. P16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1652. 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))
  1653. mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1654. P2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1655. 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))
  1656. mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1657. P3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1658. 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))
  1659. mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1660. P4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1661. 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))
  1662. mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1663. P5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1664. 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))
  1665. mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1666. P6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1667. 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))
  1668. mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1669. P7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1670. 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))
  1671. mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1672. P8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1673. 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))
  1674. mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1675. P9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1676. 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))
  1677. mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1678. TG2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1679. 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))
  1680. mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1681. AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1682. 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))
  1683. mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1684. R1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1685. 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))
  1686. mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1687. R10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1688. 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))
  1689. mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1690. R11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1691. 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))
  1692. mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1693. R12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1694. 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))
  1695. mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1696. R13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1697. 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))
  1698. mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1699. R14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1700. 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))
  1701. mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1702. R15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1703. 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))
  1704. mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1705. R16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1706. 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))
  1707. mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1708. R2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1709. 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))
  1710. mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1711. R3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1712. 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))
  1713. mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1714. R4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1715. 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))
  1716. mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1717. R5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1718. 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))
  1719. mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1720. R6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1721. 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))
  1722. mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1723. R7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1724. 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))
  1725. mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1726. R8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1727. 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))
  1728. mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1729. R9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1730. 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))
  1731. mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1732. TG3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1733. 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))
  1734. mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1735. AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1736. 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))
  1737. mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1738. B1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1739. 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))
  1740. mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1741. B10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1742. 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))
  1743. mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1744. B11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1745. 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))
  1746. mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1747. B12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1748. 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))
  1749. mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1750. B13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1751. 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))
  1752. mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1753. B14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1754. 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))
  1755. mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1756. B15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1757. 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))
  1758. mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1759. B16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1760. 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))
  1761. mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1762. B2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1763. 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))
  1764. mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1765. B3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1766. 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))
  1767. mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1768. B4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1769. 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))
  1770. mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1771. B5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1772. 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))
  1773. mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1774. B6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1775. 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))
  1776. mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1777. B7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1778. 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))
  1779. mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1780. B8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1781. 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))
  1782. mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1783. B9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1784. 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))
  1785. mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1786. TG4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1787. 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))
  1788. mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1789. AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1790. 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))
  1791. mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1792. Q1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1793. 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))
  1794. mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1795. Q10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1796. 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))
  1797. mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1798. Q11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1799. 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))
  1800. mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1801. Q12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1802. 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))
  1803. mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1804. Q13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1805. 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))
  1806. mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1807. Q14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1808. 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))
  1809. mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1810. Q15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1811. 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))
  1812. mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1813. Q16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1814. 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))
  1815. mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1816. Q2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1817. 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))
  1818. mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1819. Q3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1820. 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))
  1821. mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1822. Q4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1823. 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))
  1824. mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1825. Q5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1826. 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))
  1827. mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1828. Q6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1829. 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))
  1830. mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1831. Q7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1832. 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))
  1833. mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1834. Q8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1835. 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))
  1836. mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1837. Q9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1838. 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))
  1839. mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1840.  
  1841.  
  1842.  
  1843.  
  1844.  
  1845.  
  1846.  
  1847.  
  1848. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1849. 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))
  1850. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1851. 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))
  1852. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1853. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1854. 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))
  1855. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1856. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1857. 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))
  1858. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1859. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1860. 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))
  1861. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1862. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1863. 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))
  1864. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1865. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1866. 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))
  1867. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1868. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1869. 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))
  1870. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1871. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1872. 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))
  1873. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1874. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1875. 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))
  1876. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1877. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1878. 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))
  1879. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1880. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1881. 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))
  1882. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1883. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1884. 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))
  1885. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1886. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1887. 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))
  1888. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1889. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1890. 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))
  1891. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1892. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1893. 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))
  1894. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1895. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1896. 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))
  1897. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1898. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1899. 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))
  1900. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1901. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1902. 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))
  1903. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1904. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1905. 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))
  1906. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1907. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1908. 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))
  1909. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1910. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1911. 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))
  1912. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1913. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1914. 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))
  1915. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1916. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1917. 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))
  1918. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1919. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1920. 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))
  1921. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1922. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1923. 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))
  1924. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1925. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1926. 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))
  1927. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1928. MN=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Black","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1929.  
  1930.  
  1931.  
  1932.  
  1933. Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Handle",Vector3.new(0.399999976, 6.5999999, 0.800000012))
  1934. 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))
  1935. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1936. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 2.19999981))
  1937. 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))
  1938. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1939. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 2.19999981))
  1940. 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))
  1941. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1942. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3))
  1943. 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))
  1944. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1945. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3.79999995))
  1946. 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))
  1947. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1948. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 1, 0.200000048))
  1949. 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))
  1950. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1951. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 1, 0.200000048))
  1952. 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))
  1953. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1954. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.99999994, 0.200000048))
  1955. 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))
  1956. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1957. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3))
  1958. 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))
  1959. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1960. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 1, 0.200000048))
  1961. 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))
  1962. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 0.300000012))
  1963. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
  1964. 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))
  1965. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1966. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 3.79999995))
  1967. 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))
  1968. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1969. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.200000003, 4.5999999))
  1970. 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))
  1971. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  1972. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,1,"Black","Hitbox",Vector3.new(0.399999976, 2.95000029, 8.42000008))
  1973. 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))
  1974. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1975. 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))
  1976. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1977. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(4.20000029, 0.200000003, 1.19999993))
  1978. 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))
  1979. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1980. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1981. 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))
  1982. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1983. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1984. 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))
  1985. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1986. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1987. 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))
  1988. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1989. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1990. 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))
  1991. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1992. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1993. 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))
  1994. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1995. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(4.20000029, 0.200000003, 1.19999993))
  1996. 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))
  1997. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1998. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  1999. 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))
  2000. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2001. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 0.800000191))
  2002. 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))
  2003. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2004. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2005. 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))
  2006. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2007. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2008. 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))
  2009. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2010. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(4.20000029, 0.200000003, 1.60000002))
  2011. 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))
  2012. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.980000019, 1))
  2013. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2014. 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))
  2015. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2016. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2017. 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))
  2018. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2019. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2020. 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))
  2021. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2022. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2023. 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))
  2024. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2025. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2026. 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))
  2027. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2028. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2029. 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))
  2030. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2031. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2032. 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))
  2033. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2034. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.600000024, 2.20000029))
  2035. 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))
  2036. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 1, 1))
  2037. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2038. 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))
  2039. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2040. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2041. 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))
  2042. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2043. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2044. 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))
  2045. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2046. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.200000003, 0.800000012, 1.20000017))
  2047. 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))
  2048. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2049. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(4.20000029, 0.200000003, 1.60000002))
  2050. 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))
  2051. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.980000019, 1))
  2052. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.600000024, 0.600000083))
  2053. 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))
  2054. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.800000012, 0.800000012))
  2055. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2056. 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))
  2057. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2058. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2059. 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))
  2060. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2061. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2062. 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))
  2063. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2064. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 4))
  2065. 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))
  2066. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  2067. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 4))
  2068. 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))
  2069. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 1))
  2070. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 1.4000001))
  2071. 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))
  2072. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.899999976))
  2073. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 0.600000083))
  2074. 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))
  2075. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.769999981))
  2076. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.400000006, 0.200000003, 0.600000083))
  2077. 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))
  2078. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.300000012, 0.769999981))
  2079. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2080. 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))
  2081. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2082. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2083. 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))
  2084. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2085. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2086. 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))
  2087. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2088. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.399999976, 0.400000006, 1.20000005))
  2089. 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))
  2090. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2091. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2092. 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))
  2093. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2094. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2095. 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))
  2096. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2097. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2098. 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))
  2099. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2100. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2101. 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))
  2102. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2103. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2104. 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))
  2105. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2106. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2107. 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))
  2108. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2109. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2110. 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))
  2111. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2112. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2113. 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))
  2114. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2115. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2116. 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))
  2117. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2118. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2119. 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))
  2120. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2121. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2122. 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))
  2123. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2124. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2125. 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))
  2126. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2127. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 1.00000012))
  2128. 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))
  2129. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2130. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2131. 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))
  2132. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2133. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2134. 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))
  2135. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2136. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 0.600000143))
  2137. 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))
  2138. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2139. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2140. 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))
  2141. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2142. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2143. 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))
  2144. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2145. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.399999976))
  2146. 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))
  2147. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2148. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.600000024, 0.399999976))
  2149. 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))
  2150. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2151. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.600000024))
  2152. 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))
  2153. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2154. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.600000024))
  2155. 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))
  2156. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2157. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2158. 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))
  2159. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2160. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 1.20000005))
  2161. 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))
  2162. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2163. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2164. 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))
  2165. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2166. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2167. 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))
  2168. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2169. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(1.80000007, 0.400000006, 0.799999952))
  2170. 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))
  2171. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2172. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 0.800000072))
  2173. 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))
  2174. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2175. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.200000033, 1.20000005))
  2176. 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))
  2177. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2178. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2179. 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))
  2180. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2181. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Granite,0,0,"Really black","Part",Vector3.new(0.400000006, 0.400000036, 0.599999964))
  2182. 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))
  2183. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2184. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.800000072, 2.20000029))
  2185. 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))
  2186. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2187. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.800000072, 2.20000029))
  2188. 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))
  2189. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  2190. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 1.60000014))
  2191. 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))
  2192. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  2193. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 2.20000029))
  2194. 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))
  2195. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
  2196. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 2.00000024))
  2197. 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))
  2198. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2199. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 1.60000014))
  2200. 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))
  2201. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 1))
  2202. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.600000024, 2.00000024))
  2203. 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))
  2204. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.980000019, 1, 1))
  2205. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Marble,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000036, 2.20000029))
  2206. 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))
  2207. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.970000029, 1, 1))
  2208. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2209. 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))
  2210. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 1, 1))
  2211. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.4000001))
  2212. 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))
  2213. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  2214. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.4000001))
  2215. 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))
  2216. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  2217. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2218. 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))
  2219. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 1, 1))
  2220. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.60000014))
  2221. 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))
  2222. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 1, 1))
  2223. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2224. 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))
  2225. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.03999996, 1, 1))
  2226. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.60000014))
  2227. 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))
  2228. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 1, 1))
  2229. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Black","Part",Vector3.new(0.200000003, 0.400000006, 1.80000019))
  2230. 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))
  2231. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 1, 1))
  2232. --------------------------------------------------------Part4
  2233. local Face = Instance.new('Decal',Char.Head)
  2234. Face.Name = 'face'
  2235. if Char.Head:findFirstChild('face') then
  2236. Char.Head['face']:Destroy()
  2237. end
  2238. Face.Texture = 'rbxassetid://259421287'
  2239. --------------------------------------------------------Part5
  2240. local plr = game.Players.LocalPlayer
  2241. repeat wait() until plr and plr.Character and plr.Character:findFirstChild("Torso")
  2242. local torso = plr.Character.Torso
  2243. local p = Instance.new("Part", torso.Parent) p.Name = "EpicCape" p.Anchored = false
  2244. 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"
  2245. p.Material = "Granite"
  2246. p.Size = Vector3.new(.2,.2,.2)
  2247. local msh = Instance.new("BlockMesh", p) msh.Scale = Vector3.new(9,17.5,.5)
  2248. local motor1 = Instance.new("Motor", p)
  2249. motor1.Part0 = p
  2250. motor1.Part1 = torso
  2251. motor1.MaxVelocity = .01
  2252. motor1.C0 = CFrame.new(0,1.75,0)*CFrame.Angles(0,math.rad(90),0)
  2253. motor1.C1 = CFrame.new(0,1,.45)*CFrame.Angles(0,math.rad(90),0)
  2254. local wave = false
  2255. repeat wait(1/44)
  2256. local ang = 0.1
  2257. local oldmag = torso.Velocity.magnitude
  2258. local mv = .002
  2259. if wave then ang = ang + ((torso.Velocity.magnitude/10)*.05)+.05 wave = false else wave = true end
  2260. ang = ang + math.min(torso.Velocity.magnitude/11, .5)
  2261. motor1.MaxVelocity = math.min((torso.Velocity.magnitude/111), .04) + mv
  2262. motor1.DesiredAngle = -ang
  2263. if motor1.CurrentAngle < -.2 and motor1.DesiredAngle > -.2 then motor1.MaxVelocity = .04 end
  2264. repeat wait() until motor1.CurrentAngle == motor1.DesiredAngle or math.abs(torso.Velocity.magnitude - oldmag) >= (torso.Velocity.magnitude/10) + 1
  2265. if torso.Velocity.magnitude < .1 then wait(.1) end
  2266. until not p or p.Parent ~= torso.Parent
  2267. script:Destroy()
  2268. -----------------------------------------------------------Part6
  2269. -- :)
  2270.  
  2271. local Target = "daniel12313211"
  2272.  
  2273. local Character = game.Workspace[Target]
  2274.  
  2275. local hat = Instance.new('Hat', Character)
  2276. hat.AttachmentPos = Vector3.new(0, 0.87, 0)
  2277.  
  2278. local handle = Instance.new('Part', hat)
  2279. handle.Name = 'Handle'
  2280.  
  2281. local mesh = Instance.new('SpecialMesh')
  2282. mesh.Parent = handle
  2283. mesh.MeshId = 'rbxassetid://20637493'
  2284. mesh.TextureId = 'rbxassetid://20637003'
  2285. --------------------------------------------------------Part7
  2286. --[[Fixed Celestial Wheel]]--
  2287. wait(1/60)
  2288.  
  2289. local skillcolorscheme = BrickColor.new("Black").Color
  2290. local skillcolorschemeCOLOR = "White"
  2291. local skillcolorschemeCOLOR2 = "Really black"
  2292.  
  2293. local sine = 0
  2294. change = 1
  2295. sine = sine + change
  2296.  
  2297. Player = game.Players.LocalPlayer
  2298. Character = Player.Character
  2299. PlayerGui = Player.PlayerGui
  2300. Backpack = Player.Backpack
  2301. Torso = Character.Torso
  2302. Head = Character.Head
  2303. Humanoid = Character.Humanoid
  2304. LeftArm = Character["Left Arm"]
  2305. LeftLeg = Character["Left Leg"]
  2306. RightArm = Character["Right Arm"]
  2307. RightLeg = Character["Right Leg"]
  2308. Character = Player.Character
  2309. PlayerGui = Player.PlayerGui
  2310. Backpack = Player.Backpack
  2311. Torso = Character.Torso
  2312. Head = Character.Head
  2313. Humanoid = Character.Humanoid
  2314. LeftArm = Character["Left Arm"]
  2315. LeftLeg = Character["Left Leg"]
  2316. RightArm = Character["Right Arm"]
  2317. RightLeg = Character["Right Leg"]
  2318. LS = Torso["Left Shoulder"]
  2319. LH = Torso["Left Hip"]
  2320. RS = Torso["Right Shoulder"]
  2321. RH = Torso["Right Hip"]
  2322. Neck = Torso.Neck
  2323. attacktype = 1
  2324. vt = Vector3.new
  2325. cf = CFrame.new
  2326. euler = CFrame.fromEulerAnglesXYZ
  2327. angles = CFrame.Angles
  2328. necko = cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2329. necko2 = cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  2330. LHC0 = cf(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2331. LHC1 = cf(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  2332. RHC0 = cf(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2333. RHC1 = cf(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  2334. RootPart = Character.HumanoidRootPart
  2335. RootJoint = RootPart.RootJoint
  2336. RootCF = euler(-1.57, 0, 3.14)
  2337. attack = false
  2338. equipped = true
  2339. local Anim = "Idle"
  2340. local Effects = {}
  2341. cam = workspace.CurrentCamera
  2342. ZTarget = nil
  2343. RocketTarget = nil
  2344. local RbxUtility = LoadLibrary("RbxUtility")
  2345. local Create = RbxUtility.Create
  2346. local m = Create("Model"){
  2347. Parent = Character,
  2348. Name = "WeaponModel",
  2349. }
  2350. mouse = Player:GetMouse()
  2351. RSH, LSH = nil, nil
  2352. LH = Torso["Left Hip"]
  2353. RH = Torso["Right Hip"]
  2354. RSH = Torso["Right Shoulder"]
  2355. LSH = Torso["Left Shoulder"]
  2356.  
  2357. RSH.Parent = nil
  2358. LSH.Parent = nil
  2359.  
  2360. RW = Create("Weld"){
  2361. Name = "Right Shoulder",
  2362. Part0 = Torso ,
  2363. C0 = cf(1.5, 0.5, 0),
  2364. C1 = cf(0, 0.5, 0),
  2365. Part1 = RightArm ,
  2366. Parent = Torso ,
  2367. }
  2368.  
  2369. LW = Create("Weld"){
  2370. Name = "Left Shoulder",
  2371. Part0 = Torso ,
  2372. C0 = cf(-1.5, 0.5, 0),
  2373. C1 = cf(0, 0.5, 0) ,
  2374. Part1 = LeftArm ,
  2375. Parent = Torso ,
  2376. }
  2377. ----------------------------------------------------Part7
  2378.  
  2379. ----------------------------------------------------Part8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement