Advertisement
Guest User

Untitled

a guest
Dec 29th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 263.61 KB | None | 0 0
  1. --[[User: TheDarkRevenant
  2. Script: Genkadda.txt
  3. Pass: E1IZVizJ]]
  4.  
  5.  
  6. --[[EDIT: Genkadda_Omega (WIP)]]
  7.  
  8. -- Messy atm, will clean up when finished
  9.  
  10. --[[Thank you to Fang and Asriel/Frisk for helping fix cero and adding the nightshift blast]]
  11. --[[Thanks to PixelFire for the gauntlet]]
  12.  
  13. --[[ TODO List:
  14.  
  15. Fix Cero beam angle (it's a bit off compared to the other one)
  16. Redo some animations entirely
  17. Make a toggle for turning future voice sfx on/off(?)
  18. More attacks, including alternate attacks when dashing
  19. Add a throw
  20. Fix animation while flying with someone grabbed
  21.  
  22.  
  23. Changes:
  24.  
  25. - Added a boosted/holy mode that can be toggled with H
  26. - While in this mode, attacks are more varied and powerful
  27. - Different dashing animation
  28. - Other effects, will make a complete list when
  29.  
  30. - Added Cero Beam and Nightshift Blast from Zerioth
  31. - Added other, larger beam
  32. - Made the standard two swipes with q actually hit both times
  33. - Probably more I forgot
  34.  
  35. Controls:
  36.  
  37. Q = Swing sword twice
  38. E = Slap
  39. R = Overhead downwards swing
  40. T = Pelvic thrust
  41. Y = Nightshift blast
  42. G = Spinning attack
  43. C = Cero beam
  44. V = Large beam
  45. Z = Grab
  46. Left Ctrl = Sprint/Dash
  47. F = Toggle flight
  48.  
  49. H = Switch between dark/light mode
  50.  
  51.  
  52. ]]
  53.  
  54.  
  55. local p = game.Players.LocalPlayer
  56. local char = p.Character
  57. local mouse = p:GetMouse()
  58. local larm = char["Left Arm"]
  59. local rarm = char["Right Arm"]
  60. local lleg = char["Left Leg"]
  61. local rleg = char["Right Leg"]
  62. local hed = char.Head
  63. local torso = char.Torso
  64. local hum = char.Humanoid
  65. local cam = game.Workspace.CurrentCamera
  66. local root = char.HumanoidRootPart
  67. local deb = false
  68. local CanAttack = true
  69. local shot = 0
  70. local animpose = "Idle"
  71. local lastanimpose = "Idle"
  72. local stanceToggle = "Normal"
  73. local l = game:GetService("Lighting")
  74. local rs = game:GetService("RunService").RenderStepped
  75. math.randomseed(os.time())
  76. hum.MaxHealth = 9001
  77. wait(1)
  78. hum.Health = 9001
  79.  
  80. for i,v in pairs (hed:GetChildren()) do
  81. if v:IsA("Sound") then
  82. v:Destroy()
  83. end
  84. end
  85. --game:service'InsertService':LoadAsset(16469427):children()[1].Parent = char
  86. --char.Reaper.Handle.Mesh.TextureId = "http://www.roblox.com/asset/?id=176349813"
  87.  
  88. ----------------------------------------------------
  89. --[[Additional Variables]]
  90.  
  91.  
  92.  
  93.  
  94.  
  95. local lightspeed = math.random(0.1,0.2)
  96. local holy = false -- Is in holy/angel of death form?
  97. local eColors = {"Really Blue", "Really Cyan"}
  98. local idz = {"161006212", "161006195"}
  99. local Effects={}
  100.  
  101.  
  102. hs = Instance.new("Sound",torso)
  103. hs.SoundId = "http://www.roblox.com/asset/?id=149560784"
  104. hs.Pitch = 1.2
  105. hs.Volume = 0
  106. hs.Looped = true
  107.  
  108. ds = Instance.new("Sound",torso)
  109. ds.SoundId = "http://roblox.com/asset/?id=149560784"
  110. ds.Pitch = 0.3
  111. ds.Volume = 0
  112. ds.Looped = true
  113.  
  114. ----------------------------------------------------
  115. z = Instance.new("Sound", torso)
  116. z.SoundId = "rbxassetid://381955589"-- Cartton Imortallity :381955589 -- My Heart: 154299074 -- Sao Crossing: 246056418 -- SAN HOLO DOnkeykong: 246056418 -- "Innocence" - Sword Art Online OP 2: 142357253 -- OnePunch Hero: 339250412 (Fav) -- Sethbling: 170902050
  117. z.Looped = true
  118. z.Volume = 1
  119. wait(.1)
  120. z:Play()
  121. ----------------------------------------------------
  122.  
  123.  
  124. ds:play()
  125.  
  126.  
  127. if holy == false then
  128. eColors = {"Deep oran
  129. ge", "Really black"}
  130. else if holy == true then
  131. eColors = {"Cyan"}
  132. end
  133. end
  134.  
  135.  
  136.  
  137.  
  138.  
  139. ----------------------------------------------------
  140. --[[Additional Functions]]
  141.  
  142. cf=CFrame.new
  143. vt=Vector3.new
  144.  
  145. function swait(num)
  146. if num==0 or num==nil then
  147. game:service'RunService'.Stepped:wait(0)
  148. else
  149. for i=0,num do
  150. game:service'RunService'.Stepped:wait(0)
  151. end
  152. end
  153. end
  154.  
  155. so = function(id,par,vol,pit)
  156. coroutine.resume(coroutine.create(function()
  157. local sou = Instance.new("Sound",par or workspace)
  158. sou.Volume=vol
  159. sou.Pitch=pit or 1
  160. sou.SoundId=id
  161. swait()
  162. sou:play()
  163. game:GetService("Debris"):AddItem(sou,6)
  164. end))
  165. end
  166.  
  167.  
  168.  
  169.  
  170.  
  171. ----------------------------------------------------
  172. Debounces = {
  173. CanAttack = true;
  174. CanJoke = true;
  175. NoIdl = false;
  176. Slashing = false;
  177. Slashed = false;
  178. Slapping = false;
  179. Slapped = false;
  180. ks = false;
  181. }
  182.  
  183. local Touche = {char.Name, }
  184. ----------------------------------------------------
  185. function HasntTouched(plrname)
  186. local ret = true
  187. for _, v in pairs(Touche) do
  188. if v == plrname then
  189. ret = false
  190. end
  191. end
  192. return ret
  193. end
  194. ----------------------------------------------------
  195. function weld5(part0, part1, c0, c1)
  196. weeld=Instance.new("Weld", part0)
  197. weeld.Part0=part0
  198. weeld.Part1=part1
  199. weeld.C0=c0
  200. weeld.C1=c1
  201. return weeld
  202. end
  203. ----------------------------------------------------
  204. mod=Instance.new('Model',char)
  205.  
  206. function Burst()
  207. part=Instance.new('Part',mod)
  208. part.Anchored=true
  209. part.CanCollide=false
  210. part.FormFactor='Custom'
  211. part.Size=Vector3.new(.2,.2,.2)
  212. part.CFrame=root.CFrame*CFrame.new(0,1,0)*CFrame.Angles(math.rad(90),0,0)
  213. part.Transparency=.7
  214.  
  215. if holy ~= true then
  216. part.BrickColor=BrickColor.new('Really black')
  217. else
  218. part.BrickColor=BrickColor.new('Cyan')
  219. end
  220.  
  221. mesh=Instance.new('SpecialMesh',part)
  222. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  223. mesh.Scale=Vector3.new(10,5,10)
  224. part2=part:clone()
  225. part2.Parent=mod
  226.  
  227. if holy ~= true then
  228. part2.BrickColor=BrickColor.new('Deep orange')
  229. else
  230. part2.BrickColor=BrickColor.new('Cyan')
  231. end
  232.  
  233. mesh2=mesh:clone()
  234. mesh2.Parent=part2
  235. mesh2.Scale=Vector3.new(5,2.5,5)
  236. coroutine.resume(coroutine.create(function()
  237. for i=0,1,0.1 do
  238. wait()
  239. part.CFrame=part.CFrame
  240. part.Transparency=i
  241. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  242. part2.CFrame=part2.CFrame
  243. part2.Transparency=i
  244. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  245. end
  246. part.Parent=nil
  247. part2.Parent=nil
  248. end))
  249. end
  250. ----------------------------------------------------
  251. mod4 = Instance.new("Model",char)
  252.  
  253. ptez = {0.7, 0.8, 0.9, 1}
  254.  
  255. function FindNearestTorso(Position,Distance,SinglePlayer)
  256. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  257. local List = {}
  258. for i,v in pairs(workspace:GetChildren())do
  259. if v:IsA("Model")then
  260. if v:findFirstChild("Torso")then
  261. if v ~= char then
  262. if(v.Torso.Position -Position).magnitude <= Distance then
  263. table.insert(List,v)
  264. end
  265. end
  266. end
  267. end
  268. end
  269. return List
  270. end
  271.  
  272. function Slam()
  273. part=Instance.new('Part',mod4)
  274. part.Anchored=true
  275. part.CanCollide=false
  276. part.FormFactor='Custom'
  277. part.Size=Vector3.new(.2,.2,.2)
  278. part.CFrame=root.CFrame*CFrame.new(0,-2.8,-1.4)*CFrame.Angles(math.rad(90),0,0)
  279. part.Transparency=.7
  280.  
  281. if holy ~= true then
  282. part.BrickColor=BrickColor.new('Really black')
  283. else
  284. part.BrickColor=BrickColor.new('Cyan')
  285. end
  286.  
  287. mesh=Instance.new('SpecialMesh',part)
  288. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  289. mesh.Scale=Vector3.new(3,3,3)
  290. part2=Instance.new('Part',mod4)
  291. part2.Anchored=true
  292. part2.CanCollide=false
  293. part2.FormFactor='Custom'
  294. part2.Size=Vector3.new(.2,.2,.2)
  295. part2.CFrame=root.CFrame*CFrame.new(0,-2.4,-1.6)
  296. part2.Transparency=.7
  297.  
  298. if holy ~= true then
  299. part2.BrickColor=BrickColor.new('Deep orange')
  300. else
  301. part2.BrickColor=BrickColor.new('Cyan')
  302. end
  303.  
  304. mesh2=Instance.new('SpecialMesh',part2)
  305. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  306. mesh2.Scale=Vector3.new(3,1.5,3)
  307. x = Instance.new("Sound",char)
  308. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  309. x.Pitch = ptez[math.random(1,#ptez)]
  310. x.Volume = 1
  311. wait(.1)
  312. x1 = Instance.new("Sound",char)
  313. x1.SoundId = "http://www.roblox.com/asset/?id=206082327"
  314. x1.Pitch = ptez[math.random(1,#ptez)]
  315. x1.Volume = 1
  316. wait(.1)
  317. x:Play()
  318. x1:Play()
  319. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  320. if v:FindFirstChild('Humanoid') then
  321. v.Humanoid:TakeDamage(math.random(99999999,99999999))
  322. end
  323. end
  324. coroutine.resume(coroutine.create(function()
  325. for i=0,0.62,0.13 do
  326. wait()
  327. part.CFrame=part.CFrame
  328. part.Transparency=i
  329. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  330. part2.CFrame=part2.CFrame
  331. part2.Transparency=i
  332. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  333. end
  334. part.Parent=nil
  335. part2.Parent=nil
  336. x:Destroy()
  337. end))
  338. end
  339. ----------------------------------------------------PUNCH FUNC
  340. function Punch()
  341. part=Instance.new('Part',mod4)
  342. part.Anchored=true
  343. part.CanCollide=false
  344. part.FormFactor='Custom'
  345. part.Size=Vector3.new(.2,.2,.2)
  346. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  347. part.Transparency=.7
  348.  
  349. part.BrickColor=BrickColor.new('Really black')
  350. mesh=Instance.new('SpecialMesh',part)
  351. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  352. mesh.Scale=Vector3.new(3,3,3)
  353. part2=Instance.new('Part',mod4)
  354. part2.Anchored=true
  355. part2.CanCollide=false
  356.  
  357. part2.FormFactor='Custom'
  358. part2.Size=Vector3.new(.2,.2,.2)
  359. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  360. part2.Transparency=.7
  361. part2.BrickColor=BrickColor.new('Deep orange')
  362. mesh2=Instance.new('SpecialMesh',part2)
  363. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  364. mesh2.Scale=Vector3.new(3,1.5,3)
  365. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  366. if v:FindFirstChild('Humanoid') then
  367. v.Humanoid:TakeDamage(math.random(2,6))
  368. end
  369. end
  370. coroutine.resume(coroutine.create(function()
  371. for i=0,0.62,0.4 do
  372. wait()
  373. part.CFrame=part.CFrame
  374. part.Transparency=i
  375. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  376. part2.CFrame=part2.CFrame
  377. part2.Transparency=i
  378. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  379. end
  380. part.Parent=nil
  381. part2.Parent=nil
  382. end))
  383. end
  384. ----------------------------------------------------
  385. GroundWave = function()
  386. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  387. local Colors = {"Deep orange", "Really black"}
  388. local wave = Instance.new("Part", torso)
  389.  
  390. if holy == false then
  391. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  392. else
  393. wave.BrickColor = BrickColor.new("Cyan")
  394. end
  395.  
  396. wave.Anchored = true
  397. wave.CanCollide = false
  398. wave.Material = "Neon"
  399. wave.Locked = true
  400. wave.Size = Vector3.new(1, 1, 1)
  401. wave.TopSurface = "Smooth"
  402. wave.BottomSurface = "Smooth"
  403. wave.Transparency = 0.35
  404. wave.CFrame = HandCF
  405. wm = Instance.new("SpecialMesh", wave)
  406. wm.MeshId = "rbxassetid://3270017"
  407. coroutine.wrap(function()
  408. for i = 1, 14, 1 do
  409. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  410. wave.Size = wm.Scale
  411. wave.CFrame = HandCF
  412. wave.Transparency = i/14
  413. wait()
  414. end
  415. wait()
  416. wave:Destroy()
  417. end)()
  418. end
  419. ----------------------------------------------------
  420. Magik = function()
  421. Spawn(function()
  422. local function lerp(a,b,c)
  423. return a+(b-a)*c
  424. end
  425. local function rndRange(rng)
  426. return math.random(-rng*1000,rng*1000)/1000
  427. end
  428. local magik = Instance.new("Part", larm)
  429. local Colors = {"Deep orange", "Really black"}
  430. magik.Anchored = true
  431. magik.Locked = true
  432. magik.Material = "Neon"
  433. magik.FormFactor = "Custom"
  434. magik.Size = Vector3.new(1.2, 1.2, 1.2)
  435. magik.TopSurface = "Smooth"
  436. magik.BottomSurface = "Smooth"
  437. magik.Transparency = 0
  438. magik.CanCollide = false
  439.  
  440. if holy == false then
  441. magik.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  442. else
  443. magik.BrickColor = BrickColor.new("Cyan")
  444. end
  445.  
  446. local mr = math.rad
  447. local rnx,rny,rnz = mr(rndRange(180)),mr(rndRange(180)),mr(rndRange(180))
  448. local cf = larm.CFrame * CFrame.new(0, -.8, 0) * CFrame.Angles(rnx,rny,rnz)
  449. magik.CFrame = cf
  450. for i = 0, 1, .05 do
  451. local newTrans = lerp(0.5, 1, i)
  452. local ns = lerp(1,1.2,i)
  453. magik.Transparency = newTrans
  454. magik.Size = Vector3.new(ns,ns,ns)
  455. magik.CFrame = cf
  456. rs:wait()
  457. end
  458. magik:Destroy()
  459. wait()
  460. end)
  461. end
  462. ----------------------------------------------------
  463. Magik2 = function()
  464. Spawn(function()
  465. if stanceToggle == "Melee" then
  466. local function lerp(a,b,c)
  467. return a+(b-a)*c
  468. end
  469. local function rndRange(rng)
  470. return math.random(-rng*1000,rng*1000)/1000
  471. end
  472. local magik2 = Instance.new("Part", rarm)
  473. local Colors = {"Deep orange", "Really black"}
  474. magik2.Anchored = true
  475. magik2.Locked = true
  476. magik2.FormFactor = "Custom"
  477. magik2.Size = Vector3.new(1.2, 1.2, 1.2)
  478. magik2.TopSurface = "Smooth"
  479. magik2.BottomSurface = "Smooth"
  480. magik2.Transparency = 0
  481. magik2.Material = "Neon"
  482. magik2.CanCollide = false
  483.  
  484. if holy == false then
  485. magik2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  486. else
  487. magik2.BrickColor = BrickColor.new("Cyan")
  488. end
  489.  
  490. local mr = math.rad
  491. local rnx,rny,rnz = mr(rndRange(180)),mr(rndRange(180)),mr(rndRange(180))
  492. local cf = rarm.CFrame * CFrame.new(0, -.8, 0) * CFrame.Angles(rnx,rny,rnz)
  493. magik2.CFrame = cf
  494. for i = 0, 1, .05 do
  495. local newTrans = lerp(0.5, 1, i)
  496. local ns = lerp(1,1.2,i)
  497. magik2.Transparency = newTrans
  498. magik2.Size = Vector3.new(ns,ns,ns)
  499. magik2.CFrame = cf
  500. rs:wait()
  501. end
  502. magik2:Destroy()
  503. elseif stanceToggle ~= "Melee" then
  504. wait()
  505. end
  506. end)
  507. end
  508. ----------------------------------------------------
  509. function lerp(a, b, t) -- Linear interpolation
  510. return a + (b - a)*t
  511. end
  512.  
  513. function slerp(a, b, t) --Spherical interpolation
  514. dot = a:Dot(b)
  515. if dot > 0.99999 or dot < -0.99999 then
  516. return t <= 0.5 and a or b
  517. else
  518. r = math.acos(dot)
  519. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  520. end
  521. end
  522.  
  523. function matrixInterpolate(a, b, t)
  524. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  525. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  526. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  527. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  528. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  529. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  530. local t = v1:Dot(v2)
  531. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  532. return CFrame.new()
  533. end
  534. return CFrame.new(
  535. v0.x, v0.y, v0.z,
  536. v1.x, v1.y, v1.z,
  537. v2.x, v2.y, v2.z,
  538. v3.x, v3.y, v3.z)
  539. end
  540. ----------------------------------------------------
  541. function genWeld(a,b)
  542. local w = Instance.new("Weld",a)
  543. w.Part0 = a
  544. w.Part1 = b
  545. return w
  546. end
  547. function weld(a, b)
  548. local weld = Instance.new("Weld")
  549. weld.Name = "W"
  550. weld.Part0 = a
  551. weld.Part1 = b
  552. weld.C0 = a.CFrame:inverse() * b.CFrame
  553. weld.Parent = a
  554. return weld;
  555. end
  556. ----------------------------------------------------
  557. function Lerp(c1,c2,al)
  558. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  559. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  560. for i,v in pairs(com1) do
  561. com1[i] = v+(com2[i]-v)*al
  562. end
  563. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  564. end
  565. ----------------------------------------------------[[Dissolve function]]
  566. function Dissolve(ret)
  567.  
  568. ret.BrickColor = BrickColor.new("Really black")
  569. for i = 1, 10 do wait()
  570. for i,v in pairs(ret:GetChildren()) do
  571. if v:IsA("Part") or v:IsA("WedgePart") then
  572. v.Transparency = v.Transparency + 0.1
  573.  
  574. end
  575. end
  576. end
  577. ret:Destroy()
  578. end
  579.  
  580. ----------------------------------------------------
  581. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  582. local wld = Instance.new("Weld", wp1)
  583. wld.Part0 = wp0
  584. wld.Part1 = wp1
  585. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  586. end
  587. ----------------------------------------------------
  588. newWeld(torso, larm, -1.5, 0.5, 0)
  589. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  590. newWeld(torso, rarm, 1.5, 0.5, 0)
  591. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  592. newWeld(torso, hed, 0, 1.5, 0)
  593. newWeld(torso, lleg, -0.5, -1, 0)
  594. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  595. newWeld(torso, rleg, 0.5, -1, 0)
  596. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  597. newWeld(root, torso, 0, -1, 0)
  598. torso.Weld.C1 = CFrame.new(0, -1, 0)
  599. ----------------------------------------------------
  600. --local SIDz = {"167985102, 163752916"}--181449739, 167161785, 148274436, 167985102, 163752916
  601. z = Instance.new("Sound",char) --music
  602. z.SoundId = "rbxassetid://0"--..SIDz[math.random(1,#SIDz)]
  603. z.Looped = true
  604. z.Volume = 1
  605. z.Pitch = .72
  606. wait(1)
  607. z:Play()
  608. hum.WalkSpeed = 10
  609.  
  610.  
  611.  
  612.  
  613.  
  614. --[[partic = Instance.new("ParticleEmitter",hed)
  615. partic.Color = ColorSequence.new(Color3.new(15/225,0,225/45),Color3.new(20/255,0,205/255))
  616. partic.LightEmission = .95
  617. partic.VelocityInheritance = 0
  618. partic.Rate = 300
  619. partic.Texture = "rbxassetid:// 241650934" --56561915392079955
  620. partic.Lifetime = NumberRange.new(0.1,0.2)
  621. partic.RotSpeed = NumberRange.new(100,100)
  622. partic.Speed = NumberRange.new(2,6)
  623. partic.Enabled = true
  624. partic.LockedToPart = true]]
  625.  
  626. --Nah
  627.  
  628. ----------------------------------------------------
  629.  
  630. ----------------------------------------------------
  631. local m = Instance.new("Model")
  632. m.Name = "Genkadda"
  633. p1 = Instance.new("Part", m)
  634. p1.Material = "Metal"
  635. p1.BrickColor = BrickColor.new("Really black")
  636. p1.Name = "BladePart"
  637. p1.FormFactor = Enum.FormFactor.Symmetric
  638. p1.Size = Vector3.new(1, 1, 1)
  639. p1.CFrame = CFrame.new(103.003883, 10.755723, -7.61905956, 5.61699271e-005, -7.1823597e-006, 0.999998987, -0.984785616, -0.173714966, 3.55839729e-005, 0.173720747, -0.984761655, 5.9530139e-006)
  640. p1.CanCollide = false
  641. p1.Locked = true
  642. p1.Elasticity = 0
  643. p1.BottomSurface = Enum.SurfaceType.Smooth
  644. p1.TopSurface = Enum.SurfaceType.Smooth
  645. b1 = Instance.new("BlockMesh", p1)
  646. b1.Name = "Mesh"
  647. b1.Scale = Vector3.new(0.299999923, 1, 0.120000005)
  648. p2 = Instance.new("Part", m)
  649. p2.Material = "Metal"
  650. p2.BrickColor = BrickColor.new("Really black")
  651. p2.FormFactor = Enum.FormFactor.Symmetric
  652. p2.Size = Vector3.new(1, 1, 1)
  653. p2.CFrame = CFrame.new(103.00399, 10.7255898, -6.52608919, 0.00135809346, 0.00169118668, -0.999996662, 0.965820193, 0.259168088, 0.0017684648, 0.259154975, -0.965800881, -0.00130418094)
  654. p2.CanCollide = false
  655. p2.Locked = true
  656. p2.Elasticity = 0
  657. p2.BottomSurface = Enum.SurfaceType.Smooth
  658. p2.TopSurface = Enum.SurfaceType.Smooth
  659. b2 = Instance.new("BlockMesh", p2)
  660. b2.Name = "Mesh"
  661. b2.Scale = Vector3.new(0.099999927, 0.699999928, 0.099999927)
  662. p3 = Instance.new("Part", m)
  663. p3.Material = "Metal"
  664. p3.BrickColor = BrickColor.new("Really black")
  665. p3.FormFactor = Enum.FormFactor.Symmetric
  666. p3.Size = Vector3.new(1, 2, 1)
  667. p3.CFrame = CFrame.new(103.004028, 11.1456547, -6.819067, 1.43263023e-005, -2.88564479e-006, 0.999998987, -0.882936299, -0.469471544, -7.18829688e-006, 0.469469696, -0.882911503, 1.35099981e-005)
  668. p3.CanCollide = false
  669. p3.Locked = true
  670. p3.Elasticity = 0
  671. p3.BottomSurface = Enum.SurfaceType.Smooth
  672. p3.TopSurface = Enum.SurfaceType.Smooth
  673. b3 = Instance.new("BlockMesh", p3)
  674. b3.Name = "Mesh"
  675. b3.Scale = Vector3.new(0.099999927, 0.699999928, 0.099999927)
  676. p4 = Instance.new("Part", m)
  677. p4.Material = "Metal"
  678. p4.BrickColor = BrickColor.new("Really black")
  679. p4.Name = "BladePart"
  680. p4.FormFactor = Enum.FormFactor.Symmetric
  681. p4.Size = Vector3.new(1, 1, 1)
  682. p4.CFrame = CFrame.new(103.003372, 10.965373, -6.66876507, 1.57370523e-005, -6.04354591e-006, 0.999996603, -0.965898931, -0.25886938, -7.14969246e-006, 0.258875549, -0.965874314, 1.58735529e-005)
  683. p4.CanCollide = false
  684. p4.Locked = true
  685. p4.Elasticity = 0
  686. p4.BottomSurface = Enum.SurfaceType.Smooth
  687. p4.TopSurface = Enum.SurfaceType.Smooth
  688. b4 = Instance.new("BlockMesh", p4)
  689. b4.Name = "Mesh"
  690. b4.Scale = Vector3.new(0.299999923, 1, 0.120000005)
  691. p5 = Instance.new("Part", m)
  692. p5.Material = "Metal"
  693. p5.BrickColor = BrickColor.new("Really black")
  694. p5.Name = "Hilt"
  695. p5.FormFactor = Enum.FormFactor.Custom
  696. p5.Size = Vector3.new(1, 0.400000006, 1.60000014)
  697. p5.CFrame = CFrame.new(103.003395, 11.0653381, -6.1687479, -0.99999404, 5.54991711e-005, -0.000617815298, -0.000594727404, -0.000124425016, 0.999983907, 2.66434654e-005, 0.999962509, 0.000109782166)
  698. p5.CanCollide = false
  699. p5.Locked = true
  700. p5.BottomSurface = Enum.SurfaceType.Smooth
  701. p5.TopSurface = Enum.SurfaceType.Smooth
  702. b5 = Instance.new("BlockMesh", p5)
  703. b5.Name = "Mesh"
  704. b5.Scale = Vector3.new(0.299999923, 0.399999917, 0.799999952)
  705. p6 = Instance.new("Part", m)
  706. p6.Material = "Metal"
  707. p6.BrickColor = BrickColor.new("Really black")
  708. p6.Name = "Handle"
  709. p6.FormFactor = Enum.FormFactor.Custom
  710. p6.Size = Vector3.new(1.29999995, 1, 1)
  711. p6.CFrame = CFrame.new(103.000061, 11.0688219, -5.5480547, -1.23393656e-005, -1.36360759e-005, 0.999994218, 5.37017331e-006, 0.999984086, -9.45257489e-006, -0.999962509, -9.28580994e-006, 1.64470257e-005)
  712. p6.CanCollide = false
  713. p6.Locked = true
  714. p6.BottomSurface = Enum.SurfaceType.Smooth
  715. p6.TopSurface = Enum.SurfaceType.Smooth
  716. b6 = Instance.new("SpecialMesh", p6)
  717. b6.MeshType = Enum.MeshType.Cylinder
  718. b6.Name = "Mesh"
  719. b6.Scale = Vector3.new(1, 0.200000003, 0.200000003)
  720. p7 = Instance.new("Part", m)
  721. p7.Material = "Metal"
  722. p7.BrickColor = BrickColor.new("Really black")
  723. p7.FormFactor = Enum.FormFactor.Symmetric
  724. p7.Size = Vector3.new(1, 1, 1)
  725. p7.CFrame = CFrame.new(103.000099, 11.0688391, -4.79808855, -0.000332629686, 0.00429873355, -0.99998492, -4.5920292e-006, 0.999974728, 0.00432178052, 0.999962449, -8.49941443e-006, -0.000361445156)
  726. p7.CanCollide = false
  727. p7.Locked = true
  728. b7 = Instance.new("SpecialMesh", p7)
  729. b7.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  730. b7.TextureId = ""
  731. b7.MeshType = Enum.MeshType.FileMesh
  732. b7.Name = "Mesh"
  733. b7.Scale = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  734. p8 = Instance.new("Part", m)
  735. p8.Material = "Metal"
  736. p8.BrickColor = BrickColor.new("Really black")
  737. p8.Name = "BladePart"
  738. p8.FormFactor = Enum.FormFactor.Symmetric
  739. p8.Size = Vector3.new(1, 1, 1)
  740. p8.CFrame = CFrame.new(103.003326, 10.6254845, -8.59870911, -2.92104669e-005, -1.10579058e-005, 0.999994218, -0.996175766, -0.0871899351, -5.3152442e-005, 0.0872026458, -0.996152997, 2.03179661e-005)
  741. p8.CanCollide = false
  742. p8.Locked = true
  743. p8.Elasticity = 0
  744. p8.BottomSurface = Enum.SurfaceType.Smooth
  745. p8.TopSurface = Enum.SurfaceType.Smooth
  746. b8 = Instance.new("BlockMesh", p8)
  747. b8.Name = "Mesh"
  748. b8.Scale = Vector3.new(0.299999923, 1, 0.120000005)
  749. p9 = Instance.new("Part", m)
  750. p9.Material = "Metal"
  751. p9.BrickColor = BrickColor.new("Really black")
  752. p9.Name = "BladePart"
  753. p9.FormFactor = Enum.FormFactor.Symmetric
  754. p9.Size = Vector3.new(1, 1, 1)
  755. p9.CFrame = CFrame.new(103.003311, 10.625597, -9.51878738, -2.59891603e-005, -1.34348729e-005, 0.999994218, -0.996185422, 0.087079078, -4.78096408e-005, -0.0870626047, -0.996165276, 1.31400229e-005)
  756. p9.CanCollide = false
  757. p9.Locked = true
  758. p9.Elasticity = 0
  759. p9.BottomSurface = Enum.SurfaceType.Smooth
  760. p9.TopSurface = Enum.SurfaceType.Smooth
  761. b9 = Instance.new("BlockMesh", p9)
  762. b9.Name = "Mesh"
  763. b9.Scale = Vector3.new(0.299999923, 1, 0.120000005)
  764. p10 = Instance.new("Part", m)
  765. p10.Material = "Metal"
  766. p10.BrickColor = BrickColor.new("Really black")
  767. p10.Name = "BladeTip"
  768. p10.FormFactor = Enum.FormFactor.Symmetric
  769. p10.Size = Vector3.new(1, 1, 2)
  770. p10.CFrame = CFrame.new(103.00309, 11.1081867, -11.6109829, -0.999994099, -0.000455793255, 4.643387e-005, 0.00045133481, -0.965918779, -0.25878337, 0.000134008093, -0.258763671, 0.965901971)
  771. p10.CanCollide = false
  772. p10.Locked = true
  773. p10.Elasticity = 0
  774. p10.BottomSurface = Enum.SurfaceType.Smooth
  775. p10.TopSurface = Enum.SurfaceType.Smooth
  776. b10 = Instance.new("SpecialMesh", p10)
  777. b10.MeshType = Enum.MeshType.Wedge
  778. b10.Name = "Mesh"
  779. b10.Scale = Vector3.new(0.119999997, 0.299999923, 0.699999928)
  780. p11 = Instance.new("Part", m)
  781. p11.Material = "Metal"
  782. p11.BrickColor = BrickColor.new("Really black")
  783. p11.Name = "BladePart"
  784. p11.FormFactor = Enum.FormFactor.Symmetric
  785. p11.Size = Vector3.new(1, 1, 1)
  786. p11.CFrame = CFrame.new(103.003296, 10.7956495, -10.4587727, 2.83485351e-005, -1.54050977e-005, 0.999994218, -0.96592474, 0.258761972, 8.27970416e-006, -0.258742362, -0.965907693, 2.1241216e-005)
  787. p11.CanCollide = false
  788. p11.Locked = true
  789. p11.Elasticity = 0
  790. p11.BottomSurface = Enum.SurfaceType.Smooth
  791. p11.TopSurface = Enum.SurfaceType.Smooth
  792. b11 = Instance.new("BlockMesh", p11)
  793. b11.Name = "Mesh"
  794. b11.Scale = Vector3.new(0.299999923, 1, 0.120000005)
  795. p12 = Instance.new("Part", m)
  796. p12.Material = "Metal"
  797. p12.BrickColor = BrickColor.new("Really black")
  798. p12.Name = "BladeTip2"
  799. p12.FormFactor = Enum.FormFactor.Custom
  800. p12.Size = Vector3.new(1, 1, 2.4000001)
  801. p12.CFrame = CFrame.new(102.999977, 10.6319504, -10.4398403, -0.999994218, -5.5769262e-005, 6.55075928e-005, 4.61044419e-006, 0.882887006, 0.469551951, -0.000112806956, 0.469529003, -0.882874727)
  802. p12.CanCollide = false
  803. p12.Locked = true
  804. p12.Elasticity = 0
  805. p12.BottomSurface = Enum.SurfaceType.Smooth
  806. p12.TopSurface = Enum.SurfaceType.Smooth
  807. b12 = Instance.new("SpecialMesh", p12)
  808. b12.MeshType = Enum.MeshType.Wedge
  809. b12.Name = "Mesh"
  810. b12.Scale = Vector3.new(0.119999997, 0.239999995, 0.699999928)
  811. p13 = Instance.new("Part", m)
  812. p13.Material = "Metal"
  813. p13.BrickColor = BrickColor.new("Medium stone grey")
  814. p13.Transparency = 1
  815. p13.Name = "HitBox"
  816. p13.FormFactor = Enum.FormFactor.Custom
  817. p13.Size = Vector3.new(6.0999999, 0.400000006, 1.5999999)
  818. p13.CFrame = CFrame.new(103.009995, 10.9988394, -9.2679081, 1.22519814e-005, -0.999994218, 1.36361559e-005, -5.27501106e-006, 9.45320426e-006, -0.999984264, 0.999962687, -1.65344682e-005, 9.20891762e-006)
  819. p13.CanCollide = false
  820. p13.Locked = true
  821. p13.BottomSurface = Enum.SurfaceType.Smooth
  822. p13.TopSurface = Enum.SurfaceType.Smooth
  823. w1 = Instance.new("Weld", p1)
  824. w1.Name = "Part_Weld"
  825. w1.Part0 = p1
  826. w1.C0 = CFrame.new(11.9124546, -5.63626003, -103.00383, 4.33940659e-005, -0.984795153, 0.173719674, 1.85460614e-009, -0.173719659, -0.984795094, 1, 4.27345876e-005, -7.53657105e-006)
  827. w1.Part1 = p2
  828. w1.C1 = CFrame.new(-8.80891991, -9.26009178, 102.975845, 0.00136663229, 0.965830803, 0.259170175, 0.00170310249, 0.25916782, -0.965830863, -0.999997616, 0.00176132878, -0.00129072159)
  829. w2 = Instance.new("Weld", p2)
  830. w2.Name = "Part_Weld"
  831. w2.Part0 = p2
  832. w2.C0 = CFrame.new(-8.80891991, -9.26009178, 102.975845, 0.00136663229, 0.965830803, 0.259170175, 0.00170310249, 0.25916782, -0.965830863, -0.999997616, 0.00176132878, -0.00129072159)
  833. w2.Part1 = p3
  834. w2.C1 = CFrame.new(13.0439634, -0.78926897, -103.003448, -4.37113883e-008, -0.88294369, 0.469478935, 0, -0.469478935, -0.88294369, 1, -3.85946954e-008, 2.05215755e-008)
  835. w3 = Instance.new("Weld", p3)
  836. w3.Name = "BladePart_Weld"
  837. w3.Part0 = p3
  838. w3.C0 = CFrame.new(13.0439634, -0.78926897, -103.003448, -4.37113883e-008, -0.88294369, 0.469478935, 0, -0.469478935, -0.88294369, 1, -3.85946954e-008, 2.05215755e-008)
  839. w3.Part1 = p4
  840. w3.C1 = CFrame.new(12.3193283, -3.60437131, -103.003067, 2.38418579e-006, -0.965907753, 0.258877277, 0, -0.258874893, -0.965907753, 0.999997616, 0, 2.38418579e-006)
  841. w4 = Instance.new("Weld", p4)
  842. w4.Name = "Hilt_Weld"
  843. w4.Part0 = p4
  844. w4.C0 = CFrame.new(12.3193283, -3.60437131, -103.003067, 2.38418579e-006, -0.965907753, 0.258877277, 0, -0.258874893, -0.965907753, 0.999997616, 0, 2.38418579e-006)
  845. w4.Part1 = p5
  846. w4.C1 = CFrame.new(103.010277, 6.16758585, -11.003541, -0.999999821, -0.00060418935, 4.31301851e-005, 4.32021443e-005, -0.000119086159, 1, -0.000604184228, 0.999999821, 0.000119112243)
  847. w5 = Instance.new("Weld", p5)
  848. w5.Name = "Handle_Weld"
  849. w5.Part0 = p5
  850. w5.C0 = CFrame.new(103.010277, 6.16758585, -11.003541, -0.999999821, -0.00060418935, 4.31301851e-005, 4.32021443e-005, -0.000119086159, 1, -0.000604184228, 0.999999821, 0.000119112243)
  851. w5.Part1 = p6
  852. w5.C1 = CFrame.new(-5.54999733, -11.0699978, -103, -4.37113883e-008, 2.98366913e-008, -1, 0, 1, 2.98366913e-008, 1, 1.3042032e-015, -4.37113883e-008)
  853. w6 = Instance.new("Weld", p6)
  854. w6.Name = "Part_Weld"
  855. w6.Part0 = p6
  856. w6.C0 = CFrame.new(-5.54999733, -11.0699978, -103, -4.37113883e-008, 2.98366913e-008, -1, 0, 1, 2.98366913e-008, 1, 1.3042032e-015, -4.37113883e-008)
  857. w6.Part1 = p7
  858. w6.C1 = CFrame.new(4.83552647, -11.5140886, 102.949669, -0.000344927335, 7.4505806e-007, 0.99999994, 0.00431239465, 0.999990702, 7.4505806e-007, -0.999990642, 0.00431239465, -0.000344927335)
  859. w7 = Instance.new("Weld", p7)
  860. w7.Name = "BladePart_Weld"
  861. w7.Part0 = p7
  862. w7.C0 = CFrame.new(4.83552647, -11.5140886, 102.949669, -0.000344927335, 7.4505806e-007, 0.99999994, 0.00431239465, 0.999990702, 7.4505806e-007, -0.999990642, 0.00431239465, -0.000344927335)
  863. w7.Part1 = p8
  864. w7.C1 = CFrame.new(11.3406382, -7.6414094, -103.0028, -4.38670977e-005, -0.996191144, 0.0871966407, 1.91451011e-009, -0.0871966407, -0.996191144, 1, -4.36998489e-005, 3.82696771e-006)
  865. w8 = Instance.new("Weld", p8)
  866. w8.Name = "BladePart_Weld"
  867. w8.Part0 = p8
  868. w8.C0 = CFrame.new(11.3406382, -7.6414094, -103.0028, -4.38670977e-005, -0.996191144, 0.0871966407, 1.91451011e-009, -0.0871966407, -0.996191144, 1, -4.36998489e-005, 3.82696771e-006)
  869. w8.Part1 = p9
  870. w8.C1 = CFrame.new(9.76131344, -10.4100504, -103.002922, -3.85031162e-005, -0.996201694, -0.0870751292, 1.47589729e-009, 0.0870751366, -0.996201754, 1, -3.83570004e-005, -3.35119148e-006)
  871. w9 = Instance.new("Weld", p9)
  872. w9.Name = "BladeTip_Weld"
  873. w9.Part0 = p9
  874. w9.C0 = CFrame.new(9.76131344, -10.4100504, -103.002922, -3.85031162e-005, -0.996201694, -0.0870751292, 1.47589729e-009, 0.0870751366, -0.996201754, 1, -3.83570004e-005, -3.35119148e-006)
  875. w9.Part1 = p10
  876. w9.C1 = CFrame.new(102.999939, 7.7735939, 14.0892649, -0.999999881, 0.000441889424, 0.000150508567, -0.000465785735, -0.965935588, -0.258782327, 3.10284122e-005, -0.258782327, 0.965935647)
  877. w10 = Instance.new("Weld", p10)
  878. w10.Name = "BladePart_Weld"
  879. w10.Part0 = p10
  880. w10.C0 = CFrame.new(102.999939, 7.7735939, 14.0892649, -0.999999881, 0.000441889424, 0.000150508567, -0.000465785735, -0.965935588, -0.258782327, 3.10284122e-005, -0.258782327, 0.965935647)
  881. w10.Part1 = p11
  882. w10.C1 = CFrame.new(7.72030354, -12.8984127, -103.003448, 1.83585671e-005, -0.965941429, -0.258760989, 3.25545535e-010, 0.258760959, -0.96594137, 1, 1.77332167e-005, 4.7507956e-006)
  883. w11 = Instance.new("Weld", p11)
  884. w11.Name = "BladeTip2_Weld"
  885. w11.Part0 = p11
  886. w11.C0 = CFrame.new(7.72030354, -12.8984127, -103.003448, 1.83585671e-005, -0.965941429, -0.258760989, 3.25545535e-010, 0.258760959, -0.96594137, 1, 1.77332167e-005, 4.7507956e-006)
  887. w11.Part1 = p12
  888. w11.C1 = CFrame.new(102.999031, -4.47981405, -14.2206001, -1, -4.84334305e-006, -9.63198472e-005, -4.95036402e-005, 0.882903397, 0.469554722, 8.27668991e-005, 0.469554722, -0.882903397)
  889. w12 = Instance.new("Weld", p12)
  890. w12.Name = "HitBox_Weld"
  891. w12.Part0 = p12
  892. w12.C0 = CFrame.new(102.999031, -4.47981405, -14.2206001, -1, -4.84334305e-006, -9.63198472e-005, -4.95036402e-005, 0.882903397, 0.469554722, 8.27668991e-005, 0.469554722, -0.882903397)
  893. w12.Part1 = p13
  894. w12.C1 = CFrame.new(9.27000427, 103.009995, 10.9999933, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008)
  895. w13 = Instance.new("Weld", p13)
  896. w13.Name = "Weld"
  897. w13.Part0 = p13
  898. w13.C0 = CFrame.new(9.27000427, 103.009995, 10.9999933, -4.37113883e-008, -4.37113883e-008, 1, -1, 1.91068547e-015, -4.37113883e-008, 0, -1, -4.37113883e-008)
  899. m.Parent = char
  900. m:MakeJoints()
  901. ----------------------------------------------------
  902. local cor = Instance.new("Part", char.Genkadda)
  903. cor.Name = "Thingy"
  904. cor.Locked = true
  905. cor.BottomSurface = 0
  906. cor.CanCollide = false
  907. cor.Size = Vector3.new(1, 9, 1)
  908. cor.Transparency = 1
  909. cor.TopSurface = 0
  910. corw = Instance.new("Weld", cor)
  911. corw.Part0 = rarm
  912. corw.Part1 = cor
  913. corw.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(90))
  914. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  915. weld1 = Instance.new("Weld", char.Genkadda)
  916. weld1.Part0 = cor
  917. weld1.Part1 = p6
  918. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  919. ---------------------------------------------------- Gauntlet
  920.  
  921. m=Instance.new('Model',char)
  922. m.Parent = char
  923.  
  924. local function weldBetween(a, b)
  925. local weldd = Instance.new("ManualWeld")
  926. weldd.Part0 = a
  927. weldd.Part1 = b
  928. weldd.C0 = CFrame.new()
  929. weldd.C1 = b.CFrame:inverse() * a.CFrame
  930. weldd.Parent = a
  931. return weldd
  932. end
  933.  
  934. it=Instance.new
  935.  
  936. function nooutline(part)
  937. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  938. end
  939.  
  940. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  941. local fp=it("Part")
  942. fp.formFactor=formfactor
  943. fp.Parent=parent
  944. fp.Reflectance=reflectance
  945. fp.Transparency=transparency
  946. fp.CanCollide=false
  947. fp.Locked=true
  948. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  949. fp.Name=name
  950. fp.Size=size
  951. fp.Position=char.Torso.Position
  952. nooutline(fp)
  953. fp.Material=material
  954. fp:BreakJoints()
  955. return fp
  956. end
  957.  
  958. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  959. local mesh=it(Mesh)
  960. mesh.Parent=part
  961. if Mesh=="SpecialMesh" then
  962. mesh.MeshType=meshtype
  963. mesh.MeshId=meshid
  964. end
  965. mesh.Offset=offset
  966. mesh.Scale=scale
  967. return mesh
  968. end
  969.  
  970. function weld(parent,part0,part1,c0,c1)
  971. local weld=it("Weld")
  972. weld.Parent=parent
  973. weld.Part0=part0
  974. weld.Part1=part1
  975. weld.C0=c0
  976. weld.C1=c1
  977. return weld
  978. end
  979.  
  980.  
  981.  
  982. MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  983. MNweld=weld(m,char["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))
  984. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  985. 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))
  986. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  987. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  988. 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))
  989. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  990. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  991. 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))
  992. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  993. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  994. 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))
  995. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  996. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  997. 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))
  998. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  999. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1000. 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))
  1001. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1002. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1003. 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))
  1004. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1005. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1006. 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))
  1007. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1008. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1009. 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))
  1010. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1011. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1012. 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))
  1013. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1014. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1015. 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))
  1016. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1017. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1018. 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))
  1019. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1020. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1021. 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))
  1022. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1023. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1024. 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))
  1025. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1026. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1027. 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))
  1028. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1029. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1030. 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))
  1031. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1032. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1033. 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))
  1034. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1035. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1036. 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))
  1037. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1038. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1039. 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))
  1040. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1041. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1042. 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))
  1043. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1044. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1045. 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))
  1046. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1047. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1048. 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))
  1049. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1050. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1051. 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))
  1052. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1053. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1054. 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))
  1055. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1056. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1057. 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))
  1058. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1059. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1060. 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))
  1061. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1062.  
  1063.  
  1064. MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1065. MNweld=weld(m,char["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))
  1066. FB1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1067. 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))
  1068. mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1069. FB10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1070. 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))
  1071. mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1072. FB11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1073. 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))
  1074. mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
  1075. FB12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823))
  1076. 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))
  1077. mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1078. FB2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1079. 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))
  1080. mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1081. FB3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1082. 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))
  1083. mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1084. FB4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1085. 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))
  1086. mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1087. FB5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1088. 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))
  1089. mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1090. FB6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1091. 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))
  1092. mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1093. FB7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1094. 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))
  1095. mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1096. FB8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1097. 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))
  1098. mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1099. FB9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1100. 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))
  1101. mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1102. TN1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1103. 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))
  1104. mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1105. TN2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1106. 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))
  1107. mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
  1108. TN3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1109. 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))
  1110. mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1111.  
  1112.  
  1113. TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1114. TG1weld=weld(m,char["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))
  1115. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1116. AM1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1117. 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))
  1118. mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1119. P1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1120. 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))
  1121. mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1122. P10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1123. 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))
  1124. mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1125. P11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1126. 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))
  1127. mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1128. P12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1129. 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))
  1130. mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1131. P13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1132. 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))
  1133. mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1134. P14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1135. 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))
  1136. mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1137. P15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1138. 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))
  1139. mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1140. P16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1141. 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))
  1142. mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1143. P2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1144. 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))
  1145. mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1146. P3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1147. 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))
  1148. mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1149. P4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1150. 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))
  1151. mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1152. P5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1153. 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))
  1154. mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1155. P6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1156. 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))
  1157. mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1158. P7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1159. 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))
  1160. mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1161. P8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1162. 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))
  1163. mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1164. P9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1165. 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))
  1166. mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1167.  
  1168.  
  1169. TG2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1170. TG2weld=weld(m,char["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))
  1171. mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1172. AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1173. 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))
  1174. mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1175. R1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1176. 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))
  1177. mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1178. R10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1179. 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))
  1180. mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1181. R11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1182. 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))
  1183. mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1184. R12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1185. 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))
  1186. mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1187. R13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1188. 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))
  1189. mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1190. R14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1191. 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))
  1192. mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1193. R15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1194. 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))
  1195. mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1196. R16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1197. 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))
  1198. mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1199. R2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1200. 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))
  1201. mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1202. R3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1203. 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))
  1204. mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1205. R4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1206. 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))
  1207. mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1208. R5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1209. 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))
  1210. mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1211. R6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1212. 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))
  1213. mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1214. R7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1215. 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))
  1216. mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1217. R8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1218. 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))
  1219. mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1220. R9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1221. 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))
  1222. mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1223.  
  1224.  
  1225. TG3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1226. TG3weld=weld(m,char["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))
  1227. mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1228. AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1229. 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))
  1230. mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1231. B1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1232. 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))
  1233. mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1234. B10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1235. 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))
  1236. mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1237. B11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1238. 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))
  1239. mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1240. B12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1241. 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))
  1242. mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1243. B13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1244. 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))
  1245. mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1246. B14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1247. 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))
  1248. mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1249. B15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1250. 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))
  1251. mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1252. B16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1253. 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))
  1254. mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1255. B2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1256. 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))
  1257. mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1258. B3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1259. 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))
  1260. mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1261. B4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1262. 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))
  1263. mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1264. B5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1265. 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))
  1266. mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1267. B6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1268. 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))
  1269. mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1270. B7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1271. 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))
  1272. mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1273. B8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1274. 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))
  1275. mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1276. B9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1277. 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))
  1278. mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1279.  
  1280.  
  1281. TG4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1282. TG4weld=weld(m,char["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))
  1283. mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1284. AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1285. 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))
  1286. mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1287. Q1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1288. 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))
  1289. mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1290. Q10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1291. 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))
  1292. mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1293. Q11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1294. 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))
  1295. mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1296. Q12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1297. 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))
  1298. mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1299. Q13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1300. 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))
  1301. mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1302. Q14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1303. 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))
  1304. mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1305. Q15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1306. 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))
  1307. mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1308. Q16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1309. 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))
  1310. mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1311. Q2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1312. 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))
  1313. mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1314. Q3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1315. 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))
  1316. mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1317. Q4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1318. 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))
  1319. mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1320. Q5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1321. 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))
  1322. mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1323. Q6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1324. 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))
  1325. mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1326. Q7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1327. 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))
  1328. mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1329. Q8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1330. 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))
  1331. mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1332. Q9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1333. 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))
  1334. mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1335.  
  1336.  
  1337. MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1338. MNweld=weld(m,char["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))
  1339. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1340. 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))
  1341. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1342. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1343. 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))
  1344. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1345. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1346. 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))
  1347. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1348. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1349. 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))
  1350. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1351. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1352. 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))
  1353. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1354. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1355. 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))
  1356. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1357. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1358. 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))
  1359. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1360. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1361. 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))
  1362. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1363. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1364. 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))
  1365. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1366. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1367. 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))
  1368. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1369. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1370. 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))
  1371. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1372. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1373. 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))
  1374. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1375. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1376. 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))
  1377. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1378. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1379. 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))
  1380. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1381. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1382. 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))
  1383. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1384. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1385. 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))
  1386. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1387. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1388. 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))
  1389. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1390. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1391. 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))
  1392. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1393. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1394. 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))
  1395. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1396. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1397. 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))
  1398. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1399. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1400. 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))
  1401. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1402. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1403. 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))
  1404. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1405. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1406. 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))
  1407. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1408. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1409. 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))
  1410. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1411. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1412. 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))
  1413. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1414. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1415. 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))
  1416. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1417.  
  1418.  
  1419. MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1420. MNweld=weld(m,char["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))
  1421. FB1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB1",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1422. 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))
  1423. mesh("SpecialMesh",FB1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1424. FB10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB10",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1425. 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))
  1426. mesh("SpecialMesh",FB10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1427. FB11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB11",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1428. 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))
  1429. mesh("SpecialMesh",FB11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 0.415454417))
  1430. FB12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB12",Vector3.new(1.03740847, 0.778056443, 1.03740823))
  1431. 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))
  1432. mesh("SpecialMesh",FB12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1433. FB2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB2",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1434. 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))
  1435. mesh("SpecialMesh",FB2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1436. FB3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB3",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1437. 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))
  1438. mesh("SpecialMesh",FB3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1439. FB4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB4",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1440. 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))
  1441. mesh("SpecialMesh",FB4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1442. FB5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","FB5",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1443. 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))
  1444. mesh("SpecialMesh",FB5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.415454417, 1.04999995))
  1445. FB6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB6",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1446. 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))
  1447. mesh("SpecialMesh",FB6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1448. FB7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB7",Vector3.new(0.252201617, 1.03740871, 0.622444928))
  1449. 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))
  1450. mesh("SpecialMesh",FB7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1451. FB8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB8",Vector3.new(1.03740847, 0.259352177, 0.518704116))
  1452. 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))
  1453. mesh("SpecialMesh",FB8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1454. FB9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","FB9",Vector3.new(1.03740847, 0.259352177, 1.03740823))
  1455. 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))
  1456. mesh("SpecialMesh",FB9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1457. TN1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN1",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1458. 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))
  1459. mesh("SpecialMesh",TN1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1460. TN2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN2",Vector3.new(0.518704236, 0.778056443, 0.252201557))
  1461. 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))
  1462. mesh("SpecialMesh",TN2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.899999917, 0.899999917, 0.419567823))
  1463. TN3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TN3",Vector3.new(1.03740847, 0.252201647, 1.03740823))
  1464. 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))
  1465. mesh("SpecialMesh",TN3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.205670506, 1.05999994))
  1466.  
  1467.  
  1468. TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1469. TG1weld=weld(m,char["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))
  1470. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1471. AM1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","AM1",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1472. 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))
  1473. mesh("SpecialMesh",AM1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1474. P1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1475. 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))
  1476. mesh("SpecialMesh",P1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1477. P10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1478. 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))
  1479. mesh("SpecialMesh",P10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1480. P11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1481. 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))
  1482. mesh("SpecialMesh",P11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1483. P12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1484. 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))
  1485. mesh("SpecialMesh",P12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1486. P13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1487. 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))
  1488. mesh("SpecialMesh",P13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1489. P14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P14",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1490. 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))
  1491. mesh("SpecialMesh",P14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1492. P15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P15",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1493. 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))
  1494. mesh("SpecialMesh",P15,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1495. P16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1496. 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))
  1497. mesh("SpecialMesh",P16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1498. P2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1499. 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))
  1500. mesh("SpecialMesh",P2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1501. P3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1502. 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))
  1503. mesh("SpecialMesh",P3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1504. P4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1505. 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))
  1506. mesh("SpecialMesh",P4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1507. P5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P5",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1508. 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))
  1509. mesh("SpecialMesh",P5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1510. P6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","P6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1511. 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))
  1512. mesh("SpecialMesh",P6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1513. P7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1514. 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))
  1515. mesh("SpecialMesh",P7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1516. P8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P8",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1517. 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))
  1518. mesh("SpecialMesh",P8,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1519. P9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","P9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1520. 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))
  1521. mesh("SpecialMesh",P9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1522.  
  1523.  
  1524. TG2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1525. TG2weld=weld(m,char["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))
  1526. mesh("SpecialMesh",TG2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1527. AM2=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM2",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1528. 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))
  1529. mesh("SpecialMesh",AM2,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1530. R1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R1",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1531. 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))
  1532. mesh("SpecialMesh",R1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1533. R10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R10",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1534. 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))
  1535. mesh("SpecialMesh",R10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1536. R11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1537. 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))
  1538. mesh("SpecialMesh",R11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1539. R12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1540. 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))
  1541. mesh("SpecialMesh",R12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1542. R13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1543. 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))
  1544. mesh("SpecialMesh",R13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1545. R14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R14",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1546. 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))
  1547. mesh("SpecialMesh",R14,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1548. R15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1549. 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))
  1550. mesh("SpecialMesh",R15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1551. R16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R16",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1552. 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))
  1553. mesh("SpecialMesh",R16,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1554. R2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1555. 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))
  1556. mesh("SpecialMesh",R2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1557. R3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R3",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1558. 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))
  1559. mesh("SpecialMesh",R3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1560. R4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R4",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1561. 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))
  1562. mesh("SpecialMesh",R4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1563. R5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R5",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1564. 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))
  1565. mesh("SpecialMesh",R5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1566. R6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1567. 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))
  1568. mesh("SpecialMesh",R6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1569. R7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R7",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1570. 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))
  1571. mesh("SpecialMesh",R7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1572. R8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","R8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1573. 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))
  1574. mesh("SpecialMesh",R8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1575. R9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","R9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1576. 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))
  1577. mesh("SpecialMesh",R9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1578.  
  1579.  
  1580. TG3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1581. TG3weld=weld(m,char["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))
  1582. mesh("SpecialMesh",TG3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1583. AM3=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM3",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1584. 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))
  1585. mesh("SpecialMesh",AM3,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1586. B1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1587. 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))
  1588. mesh("SpecialMesh",B1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1589. B10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1590. 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))
  1591. mesh("SpecialMesh",B10,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1592. B11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B11",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1593. 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))
  1594. mesh("SpecialMesh",B11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1595. B12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B12",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1596. 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))
  1597. mesh("SpecialMesh",B12,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1598. B13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B13",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1599. 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))
  1600. mesh("SpecialMesh",B13,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1601. B14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B14",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1602. 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))
  1603. mesh("SpecialMesh",B14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1604. B15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B15",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1605. 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))
  1606. mesh("SpecialMesh",B15,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1607. B16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1608. 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))
  1609. mesh("SpecialMesh",B16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1610. B2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B2",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1611. 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))
  1612. mesh("SpecialMesh",B2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1613. B3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B3",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1614. 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))
  1615. mesh("SpecialMesh",B3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1616. B4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B4",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1617. 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))
  1618. mesh("SpecialMesh",B4,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1619. B5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B5",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1620. 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))
  1621. mesh("SpecialMesh",B5,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1622. B6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B6",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1623. 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))
  1624. mesh("SpecialMesh",B6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1625. B7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B7",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1626. 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))
  1627. mesh("SpecialMesh",B7,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1628. B8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","B8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1629. 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))
  1630. mesh("SpecialMesh",B8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1631. B9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","B9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1632. 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))
  1633. mesh("SpecialMesh",B9,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1634.  
  1635.  
  1636.  
  1637. TG4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Handle",Vector3.new(0.953130484, 0.238282651, 0.953130603))
  1638. TG4weld=weld(m,char["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))
  1639. mesh("SpecialMesh",TG4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1640. AM4=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","AM4",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1641. 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))
  1642. mesh("SpecialMesh",AM4,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))
  1643. Q1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q1",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1644. 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))
  1645. mesh("SpecialMesh",Q1,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1646. Q10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q10",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1647. 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))
  1648. mesh("SpecialMesh",Q10,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1649. Q11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q11",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1650. 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))
  1651. mesh("SpecialMesh",Q11,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1652. Q12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q12",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1653. 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))
  1654. mesh("SpecialMesh",Q12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1655. Q13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q13",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1656. 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))
  1657. mesh("SpecialMesh",Q13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1658. Q14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q14",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1659. 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))
  1660. mesh("SpecialMesh",Q14,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1661. Q15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q15",Vector3.new(0.238282621, 0.238282651, 0.238282651))
  1662. 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))
  1663. mesh("SpecialMesh",Q15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1664. Q16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q16",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1665. 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))
  1666. mesh("SpecialMesh",Q16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.10000002, 1.10000002, 1.10000002))
  1667. Q2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q2",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1668. 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))
  1669. mesh("SpecialMesh",Q2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1670. Q3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q3",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1671. 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))
  1672. mesh("SpecialMesh",Q3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1673. Q4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q4",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1674. 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))
  1675. mesh("SpecialMesh",Q4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1676. Q5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q5",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1677. 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))
  1678. mesh("SpecialMesh",Q5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1679. Q6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q6",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1680. 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))
  1681. mesh("SpecialMesh",Q6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.415454328, 1.00999999))
  1682. Q7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Q7",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1683. 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))
  1684. mesh("SpecialMesh",Q7,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.700000048, 0.700000048))
  1685. Q8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q8",Vector3.new(0.476565242, 0.238282651, 0.238282651))
  1686. 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))
  1687. mesh("SpecialMesh",Q8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1688. Q9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Q9",Vector3.new(0.953130484, 0.231713057, 0.238282651))
  1689. 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))
  1690. mesh("SpecialMesh",Q9,Enum.MeshType.Torso,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.411340922, 1))
  1691.  
  1692.  
  1693.  
  1694.  
  1695.  
  1696. MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.09732866, 2.19465828, 1.09732854))
  1697. MNweld=weld(m,char["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))
  1698. TR7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1699. 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))
  1700. mesh("SpecialMesh",TR7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1701. MD9=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD9",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1702. 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))
  1703. mesh("SpecialMesh",MD9,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1704. MD1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD1",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1705. 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))
  1706. mesh("SpecialMesh",MD1,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1707. MD10=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD10",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1708. 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))
  1709. mesh("SpecialMesh",MD10,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1710. MD11=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD11",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1711. 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))
  1712. mesh("SpecialMesh",MD11,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1713. MD12=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD12",Vector3.new(0.266768694, 1.09732914, 0.658397138))
  1714. 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))
  1715. mesh("SpecialMesh",MD12,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 1, 1.00999999))
  1716. MD13=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD13",Vector3.new(1.09732866, 0.822996795, 1.09732854))
  1717. 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))
  1718. mesh("SpecialMesh",MD13,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1719. MD14=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD14",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1720. 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))
  1721. mesh("SpecialMesh",MD14,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1722. MD15=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD15",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1723. 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))
  1724. mesh("SpecialMesh",MD15,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1725. MD16=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD16",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1726. 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))
  1727. mesh("SpecialMesh",MD16,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.04999995, 0.411340922, 1.04999995))
  1728. MD19=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD19",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1729. 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))
  1730. mesh("SpecialMesh",MD19,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1731. MD18=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD18",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1732. 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))
  1733. mesh("SpecialMesh",MD18,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.411340922, 1.01999998))
  1734. MD2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD2",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1735. 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))
  1736. mesh("SpecialMesh",MD2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1737. MD3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD3",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1738. 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))
  1739. mesh("SpecialMesh",MD3,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1740. MD4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD4",Vector3.new(0.247408509, 0.259352177, 0.518704116))
  1741. 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))
  1742. mesh("SpecialMesh",MD4,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1743. MD5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD5",Vector3.new(0.2574085, 0.259352177, 0.518704116))
  1744. 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))
  1745. mesh("SpecialMesh",MD5,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1746. MD6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD6",Vector3.new(0.237408489, 0.259352177, 0.518704116))
  1747. 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))
  1748. mesh("SpecialMesh",MD6,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1.00999999))
  1749. MD7=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","MD7",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1750. 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))
  1751. mesh("SpecialMesh",MD7,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1.00999999, 1.00999999))
  1752. MD8=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","MD8",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1753. 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))
  1754. mesh("SpecialMesh",MD8,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.5, 1.01999998, 1.01999998))
  1755. TR1=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR1",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1756. 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))
  1757. mesh("SpecialMesh",TR1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.700000048, 0.700000048))
  1758. TR2=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR2",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1759. 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))
  1760. mesh("SpecialMesh",TR2,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1761. TR3=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR3",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1762. 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))
  1763. mesh("SpecialMesh",TR3,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1764. TR4=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR4",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1765. 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))
  1766. mesh("SpecialMesh",TR4,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.05999994, 0.0822681859, 1.05999994))
  1767. TR5=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR5",Vector3.new(1.09732866, 0.274332285, 1.09732854))
  1768. 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))
  1769. mesh("SpecialMesh",TR5,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(0.200000003, 1.02999997, 1.02999997))
  1770. TR6=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","TR6",Vector3.new(1.09732866, 0.266768783, 1.09732854))
  1771. 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))
  1772. mesh("SpecialMesh",TR6,Enum.MeshType.Brick,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.0822681859, 1.02999997))
  1773. MD21=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Dark stone grey","MD21",Vector3.new(0.266768694, 0.54866457, 0.548664272))
  1774. 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))
  1775. mesh("SpecialMesh",MD21,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.411340952, 0.900000036, 0.900000036))
  1776. MN=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Deep orange","Handle",Vector3.new(1.03740847, 2.07481742, 1.03740823))
  1777.  
  1778.  
  1779. --[[TG1=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Deep orange","Handle",Vector3.new(0.231713057, 0.953130603, 0.953130603))
  1780. TG1weld=weld(m,char["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))
  1781. mesh("SpecialMesh",TG1,Enum.MeshType.Cylinder,"",Vector3.new(0, 0, 0),Vector3.new(0.415454358, 0.5, 0.5))]]
  1782.  
  1783.  
  1784. local edit = function(name,mat,col)
  1785. name.Material = mat
  1786. name.BrickColor = BrickColor.new(col)
  1787. end
  1788.  
  1789. local dark = function()
  1790. edit(TR1,"Neon","Deep orange")
  1791. edit(TR2,"Neon","Deep orange")
  1792. edit(TR3,"Neon","Deep orange")
  1793. edit(TR4,"Neon","Deep orange")
  1794. edit(TR5,"Neon","Deep orange")
  1795. edit(TR6,"Neon","Deep orange")
  1796. edit(TR7,"Neon","Deep orange")
  1797. edit(MN,"Neon","Deep orange")
  1798. --
  1799.  
  1800.  
  1801. end
  1802. local light = function()
  1803. edit(TR1,"Neon","Cyan")
  1804. edit(TR2,"Neon","Cyan")
  1805. edit(TR3,"Neon","Cyan")
  1806. edit(TR4,"Neon","Cyan")
  1807. edit(TR5,"Neon","Cyan")
  1808. edit(TR6,"Neon","Cyan")
  1809. edit(TR7,"Neon","Cyan")
  1810. edit(MN,"Neon","Cyan")
  1811. --
  1812.  
  1813. end
  1814.  
  1815.  
  1816. dark()
  1817.  
  1818. --Messy
  1819.  
  1820. ----------------------------------------------------
  1821. function Vanish()
  1822. for i = 1, 10 do wait()
  1823. for i,v in pairs(char.Genkadda:GetChildren()) do
  1824. if v:IsA("Part") or v:IsA("WedgePart") then
  1825. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  1826. v.Transparency = v.Transparency + 0.1
  1827. end
  1828. end
  1829. end
  1830. end
  1831. end
  1832. ----------------------------------------------------
  1833. function Appear()
  1834. for i = 1, 10 do wait()
  1835. for i,v in pairs(char.Genkadda:GetChildren()) do
  1836. if v:IsA("Part") or v:IsA("WedgePart") then
  1837. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  1838. v.Transparency = v.Transparency - 0.1
  1839. end
  1840. end
  1841. end
  1842. end
  1843. end
  1844. ----------------------------------------------------
  1845. local player = game.Players.LocalPlayer
  1846. local pchar = player.Character
  1847. local mouse = player:GetMouse()
  1848. local cam = workspace.CurrentCamera
  1849.  
  1850. local rad = math.rad
  1851.  
  1852. local keysDown = {}
  1853. local flySpeed = 0
  1854. local MAX_FLY_SPEED = 150
  1855.  
  1856. local canFly = false
  1857. local flyToggled = false
  1858.  
  1859. local forward, side = 0, 0
  1860. local lastForward, lastSide = 0, 0
  1861.  
  1862. local floatBP = Instance.new("BodyPosition")
  1863. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  1864. local flyBV = Instance.new("BodyVelocity")
  1865. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1866. local turnBG = Instance.new("BodyGyro")
  1867. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1868.  
  1869. mouse.KeyDown:connect(function(key)
  1870. keysDown[key] = true
  1871.  
  1872. if key == "f" then
  1873. flyToggled = not flyToggled
  1874.  
  1875. if not flyToggled then
  1876. stanceToggle = "Normal"
  1877. floatBP.Parent = nil
  1878. flyBV.Parent = nil
  1879. turnBG.Parent = nil
  1880. root.Velocity = Vector3.new()
  1881. pchar.Humanoid.PlatformStand = false
  1882. end
  1883. end
  1884.  
  1885. end)
  1886. mouse.KeyUp:connect(function(key)
  1887. keysDown[key] = nil
  1888. end)
  1889.  
  1890. local function updateFly()
  1891.  
  1892. if not flyToggled then return end
  1893.  
  1894. lastForward = forward
  1895. lastSide = side
  1896.  
  1897. forward = 0
  1898. side = 0
  1899.  
  1900. if keysDown.w then
  1901. forward = forward + 1
  1902. end
  1903. if keysDown.s then
  1904. forward = forward - 1
  1905. end
  1906. if keysDown.a then
  1907. side = side - 1
  1908. end
  1909. if keysDown.d then
  1910. side = side + 1
  1911. end
  1912.  
  1913.  
  1914. canFly = (forward ~= 0 or side ~= 0)
  1915.  
  1916. if canFly then
  1917. stanceToggle = "Floating"
  1918. turnBG.Parent = root
  1919. floatBP.Parent = nil
  1920. flyBV.Parent = root
  1921.  
  1922. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  1923. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  1924. else
  1925. floatBP.position = root.Position
  1926. floatBP.Parent = root
  1927.  
  1928. flySpeed = flySpeed - 1
  1929. if flySpeed < 0 then flySpeed = 0 end
  1930. end
  1931.  
  1932. local camCF = cam.CoordinateFrame
  1933. local in_forward = canFly and forward or lastForward
  1934. local in_side = canFly and side or lastSide
  1935.  
  1936. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  1937. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  1938.  
  1939. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  1940. 0)
  1941. end
  1942.  
  1943. game:service'RunService'.RenderStepped:connect(function()
  1944. if flyToggled then
  1945. pchar.Humanoid.PlatformStand = true
  1946. end
  1947. updateFly()
  1948. end)
  1949. ----------------------------------------------------
  1950. p13.Touched:connect(function(ht)
  1951. hit = ht.Parent
  1952. if ht and hit:IsA("Model") then
  1953. if hit:FindFirstChild("Humanoid") then
  1954. if hit.Name ~= p.Name then
  1955. if Debounces.Slashing == true and Debounces.Slashed == false then
  1956. Debounces.Slashed = true
  1957. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(20,25))
  1958. wait(.3)
  1959. Debounces.Slashed = false
  1960. end
  1961. end
  1962. end
  1963. elseif ht and hit:IsA("Hat") then
  1964. if hit.Parent.Name ~= p.Name then
  1965. if hit.Parent:FindFirstChild("Humanoid") then
  1966. if Debounces.Slashing == true and Debounces.Slashed == false then
  1967. Debounces.Slashed = true
  1968. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(20,25))
  1969. wait(.3)
  1970. Debounces.Slashed = false
  1971. end
  1972. end
  1973. end
  1974. end
  1975. end)
  1976. ----------------------------------------------------
  1977. local ptz = {0.7, 0.8, 0.9, 1}
  1978. ptz2 = {1.5, 1.6, 1.7, 1.8, 1.9, 2}
  1979. idz = {"161006212", "161006195"}
  1980. mouse.KeyDown:connect(function(key)
  1981. if key == "q" then
  1982. if Debounces.CanAttack == true then
  1983. Debounces.CanAttack = false
  1984. Debounces.NoIdl = true
  1985. Debounces.on = true
  1986.  
  1987. if holy == true then
  1988. for i = 1, 8 do
  1989. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad (60),math.rad(70),math.rad(70)), 0.2)
  1990. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0) *CFrame.Angles(math.rad(-20),math.rad(0),math.rad (-40)), 0.2)
  1991. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50), math.rad(0)), 0.2)
  1992. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(-.4, -1, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.2)
  1993. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.2)
  1994. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.2)
  1995. if Debounces.on == false then break end
  1996. rs:wait(2)
  1997. end
  1998. else
  1999. for i = 1, 20 do
  2000. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad (60),math.rad(70),math.rad(70)), 0.2)
  2001. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0) *CFrame.Angles(math.rad(-20),math.rad(0),math.rad (-40)), 0.2)
  2002. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50), math.rad(0)), 0.2)
  2003. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(-.4, -1, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.2)
  2004. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.2)
  2005. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.2)
  2006. if Debounces.on == false then break end
  2007. rs:wait(2)
  2008. end
  2009. end
  2010.  
  2011. z = Instance.new("Sound", hed)
  2012. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  2013. z.Pitch = ptz[math.random(1,#ptz)]
  2014. z.Volume = 1
  2015. wait(.01)
  2016. z:Play()
  2017.  
  2018. if holy == true then
  2019. --so("http://roblox.com/asset/?id=231917788",hed,1,1.7)
  2020. so("http://roblox.com/asset/?id=200633077",hed,1,ptz2[math.random(1,#ptz2)])
  2021. else
  2022. so("http://roblox.com/asset/?id=200633029",hed,1,ptz2[math.random(1,#ptz2)])
  2023. end
  2024.  
  2025. Debounces.Slashing = true
  2026.  
  2027. if holy == true then
  2028.  
  2029. for i = 1, 5 do
  2030. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.65, 0) * CFrame.Angles(math.rad(-40),math.rad(-20),math.rad(40)), 0.3)
  2031. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.65, -.3) * CFrame.Angles(math.rad(65),math.rad(-20),math.rad(30)), 0.3)
  2032. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-9),math.rad(35), math.rad(0)), 0.3)
  2033. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 1) * CFrame.Angles(math.rad(0), math.rad(-65), math.rad(0)), 0.3)
  2034. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-10)), 0.3)
  2035. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.3)
  2036. if Debounces.on == false then break end
  2037. rs:wait(2)
  2038. end
  2039.  
  2040. else
  2041.  
  2042. for i = 1, 20 do
  2043. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.65, 0) * CFrame.Angles(math.rad(-40),math.rad(-20),math.rad(40)), 0.3)
  2044. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.65, -.3) * CFrame.Angles(math.rad(65),math.rad(-20),math.rad(30)), 0.3)
  2045. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-9),math.rad(35), math.rad(0)), 0.3)
  2046. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 1) * CFrame.Angles(math.rad(0), math.rad(-65), math.rad(0)), 0.3)
  2047. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-10)), 0.3)
  2048. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.3)
  2049. if Debounces.on == false then break end
  2050. rs:wait(2)
  2051. end
  2052.  
  2053. end
  2054. z1 = Instance.new("Sound", hed)
  2055. z1.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  2056. z1.Pitch = ptz[math.random(1,#ptz)]
  2057. z1.Volume = 1
  2058. wait(.01)
  2059. z1:Play()
  2060.  
  2061. if holy == true then
  2062. --so("http://roblox.com/asset/?id=231917788",hed,1,1.7)
  2063. so("http://roblox.com/asset/?id=200633077",hed,1,ptz2[math.random(1,#ptz2)])
  2064. else
  2065. so("http://roblox.com/asset/?id=200633029",hed,1,ptz2[math.random(1,#ptz2)])
  2066. end
  2067.  
  2068.  
  2069.  
  2070.  
  2071. Debounces.Slashing = true
  2072. for i = 1, 26 do
  2073. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad (90),math.rad(-40),math.rad(80)), 0.35)
  2074. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0) *CFrame.Angles(math.rad(0),math.rad(0),math.rad (- 70)), 0.35)
  2075. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-90), math.rad(0)), 0.35)
  2076. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -1) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.35)
  2077. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles (math.rad(-10), 0, math.rad(-10)), 0.35)
  2078. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles (math.rad(10), 0, math.rad(10)), 0.35)
  2079. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles (math.rad(0), math.rad(-30), math.rad(0)), 0.35)
  2080. if Debounces.on == false then break end
  2081. rs:wait(2)
  2082. end
  2083.  
  2084. Debounces.Slashing = false
  2085. z:Destroy()
  2086. z1:Destroy()
  2087. cor.Weld.C1 = CFrame.Angles(0,0,0)
  2088. if Debounces.CanAttack == false then
  2089. Debounces.CanAttack = true
  2090. Debounces.NoIdl = false
  2091. Debounces.on = false
  2092. end
  2093. end
  2094. end
  2095. end)
  2096. -------------------------------
  2097. pts = {4, 4.2, 4.4, 4.6, 4.8, 5, 5.2, 5.4}
  2098. mouse.KeyDown:connect(function(key)
  2099. if key == "e" then
  2100. if Debounces.CanAttack == true then
  2101. Debounces.CanAttack = false
  2102. Debounces.NoIdl = true
  2103. Debounces.on = true
  2104. Debounces.ks = true
  2105. larm.Touched:connect(function(ht)
  2106. hit = ht.Parent
  2107. if ht and hit:IsA("Model") then
  2108. if hit:FindFirstChild("Humanoid") then
  2109. if hit.Name ~= p.Name then
  2110. if Debounces.Slapping == true and Debounces.Slapped == false then
  2111. Debounces.Slapped = true
  2112. if Debounces.ks==true then
  2113. z = Instance.new("Sound",hed)
  2114. z.SoundId = "rbxassetid://169380525"
  2115. z.Volume = 1
  2116. z:Play()
  2117. z1 = Instance.new("Sound",char)
  2118. z1.SoundId = "rbxassetid://261010715"
  2119. z1.Pitch = pts[math.random(1,#pts)]
  2120. z1.Volume = 1
  2121. z2 = Instance.new("Sound",char)
  2122. z2.SoundId = "rbxassetid://261010715"
  2123. z2.Pitch = z1.Pitch
  2124. z2.Volume = 1
  2125. z3 = Instance.new("Sound",char)
  2126. z3.SoundId = "rbxassetid://261010715"
  2127. z3.Pitch = z1.Pitch
  2128. z3.Volume = 1
  2129. z1:Play()
  2130. z2:Play()
  2131. z3:Play()
  2132. Debounces.ks=false
  2133. end
  2134. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  2135. hit:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 90
  2136. wait(.5)
  2137. Debounces.Slapped = false
  2138. z:Destroy()
  2139. z1:Destroy()
  2140. z2:Destroy()
  2141. z3:Destroy()
  2142. end
  2143. end
  2144. end
  2145. elseif ht and hit:IsA("Hat") then
  2146. if hit.Parent.Name ~= p.Name then
  2147. if hit.Parent:FindFirstChild("Humanoid") then
  2148. if Debounces.Slapping == true and Debounces.Slapped == false then
  2149. Debounces.Slapped = true
  2150. if Debounces.ks==true then
  2151. z = Instance.new("Sound",hed)
  2152. z.SoundId = "rbxassetid://169380525"
  2153. z.Volume = 1
  2154. z:Play()
  2155. z1 = Instance.new("Sound",char)
  2156. z1.SoundId = "rbxassetid://261010715"
  2157. z1.Pitch = pts[math.random(1,#pts)]
  2158. z1.Volume = 1
  2159. z2 = Instance.new("Sound",char)
  2160. z2.SoundId = "rbxassetid://261010715"
  2161. z2.Pitch = z1.Pitch
  2162. z2.Volume = 1
  2163. z3 = Instance.new("Sound",char)
  2164. z3.SoundId = "rbxassetid://261010715"
  2165. z3.Pitch = z1.Pitch
  2166. z3.Volume = 1
  2167. z1:Play()
  2168. z2:Play()
  2169. z3:Play()
  2170. Debounces.ks=false
  2171. end
  2172. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  2173. wait(.5)
  2174. Debounces.Slapped = false
  2175. z:Destroy()
  2176. z1:Destroy()
  2177. z2:Destroy()
  2178. z3:Destroy()
  2179. end
  2180. end
  2181. end
  2182. end
  2183. end)
  2184. for i = 1, 14 do
  2185. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.5, -.3) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.5)
  2186. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.5)
  2187. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2188. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0)), 0.5)
  2189. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
  2190. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.5)
  2191. if Debounces.on==false then break end
  2192. rs:wait(2)
  2193. end
  2194. Debounces.Slapping = true
  2195. for i = 1, 20 do
  2196. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3, 0.7, .3) * CFrame.Angles(math.rad(50), 0, math.rad(-110)), 0.6)
  2197. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(40)), 0.6)
  2198. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-70), math.rad(0)), 0.6)
  2199. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(0), math.rad(70), math.rad(0)), 0.6)
  2200. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  2201. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.6)
  2202. if Debounces.on==false then break end
  2203. rs:wait(2)
  2204. end
  2205. Debounces.Slapping = false
  2206. if Debounces.CanAttack == false then
  2207. Debounces.CanAttack = true
  2208. Debounces.NoIdl = false
  2209. Debounces.on = false
  2210. end
  2211. end
  2212. end
  2213. end)
  2214. -------------------------------
  2215. ptz2 = {1.5, 1.6, 1.7, 1.8, 1.9, 2}
  2216. mouse.KeyDown:connect(function(key)
  2217. if key == "r" then
  2218. if Debounces.CanAttack == true then
  2219. Debounces.CanAttack = false
  2220. Debounces.NoIdl = true
  2221. Debounces.on = true
  2222. if holy ~= true then
  2223. for i = 1, 20 do
  2224. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(40)), 0.3)
  2225. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(-40)), 0.3)
  2226. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), 0, 0), 0.3)
  2227. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(50), 0, 0), 0.3)
  2228. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2229. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.2, -.5) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  2230. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(0), math.rad(0)), 0.35)
  2231. if Debounces.on==false then break end
  2232. rs:wait(2)
  2233. end
  2234. else
  2235. for i = 1, 10 do
  2236. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(40)), 0.3)
  2237. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(130), 0, math.rad(-40)), 0.3)
  2238. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), 0, 0), 0.3)
  2239. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(50), 0, 0), 0.3)
  2240. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2241. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.2, -.5) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  2242. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(0), math.rad(0)), 0.35)
  2243. if Debounces.on==false then break end
  2244. rs:wait(2)
  2245. end
  2246. end
  2247. Debounces.Slashing = true
  2248.  
  2249.  
  2250.  
  2251. z = Instance.new("Sound",hed)
  2252. z.SoundId = "rbxassetid://206083107"
  2253. z.Pitch = .75
  2254. z.Volume = .65
  2255. wait(0.1)
  2256. z:Play()
  2257. z1 = Instance.new("Sound", hed)
  2258. z1.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  2259. z1.Pitch = ptz[math.random(1,#ptz)]
  2260. z1.Volume = 1
  2261. wait(.01)
  2262. z1:Play()
  2263.  
  2264. if holy == true then
  2265. so("http://roblox.com/asset/?id=200633077",hed,1,ptz2[math.random(1,#ptz2)])
  2266. else
  2267. so("http://roblox.com/asset/?id=200633029",hed,1,ptz2[math.random(1,#ptz2)])
  2268. end
  2269.  
  2270. if holy ~= true then
  2271. for i = 1, 20 do
  2272. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.3)
  2273. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(-40)), 0.3)
  2274. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2275. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.3)
  2276. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -.7) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2277. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-40), 0, 0), 0.3)
  2278. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(-20), math.rad(20)), 0.35)
  2279. if Debounces.on==false then break end
  2280. rs:wait(2)
  2281. end
  2282. else
  2283. for i = 1, 10 do
  2284. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(40)), 0.3)
  2285. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(50), 0, math.rad(-40)), 0.3)
  2286. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2287. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.3)
  2288. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -.7) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2289. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-40), 0, 0), 0.3)
  2290. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, -.2, 0) * CFrame.Angles (math.rad(40), math.rad(-20), math.rad(20)), 0.35)
  2291. if Debounces.on==false then break end
  2292. rs:wait(2)
  2293. end
  2294. end
  2295. Debounces.Slashing = false
  2296. cor.Weld.C1 = CFrame.Angles(0,0,0)
  2297. if Debounces.CanAttack == false then
  2298. Debounces.CanAttack = true
  2299. Debounces.NoIdl = false
  2300. Debounces.on = false
  2301. end
  2302. end
  2303. end
  2304. end)
  2305. -------------------------------
  2306. mouse.KeyDown:connect(function(key)
  2307. if key == "t" then
  2308. if Debounces.CanAttack == true then
  2309. Debounces.CanAttack = false
  2310. Debounces.on = true
  2311. Debounces.NoIdl = true
  2312. for i = 1,20 do
  2313. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(0)), 0.2)
  2314. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(0)), 0.2)
  2315. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(0),0), 0.2)
  2316. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, .4) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.2)
  2317. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-10)), 0.2)
  2318. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.2)
  2319. if Debounces.on==false then break end
  2320. rs:wait(2)
  2321. end
  2322. for i = 1,20 do
  2323. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(0)), 0.2)
  2324. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(0)), 0.2)
  2325. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-20),math.rad(0),0), 0.2)
  2326. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, -.4) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  2327. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-10)), 0.2)
  2328. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(10)), 0.2)
  2329. if Debounces.on==false then break end
  2330. rs:wait(2)
  2331. end
  2332. if Debounces.CanAttack == false then
  2333. Debounces.CanAttack = true
  2334. Debounces.on = false
  2335. Debounces.NoIdl = false
  2336. end
  2337. end
  2338. end
  2339. end)
  2340. -------------------------------
  2341. local ptz3 = {0.5, 0.6, 0.7}
  2342. mouse.KeyDown:connect(function(key)
  2343. if key == "g" then
  2344. if Debounces.CanAttack == true then
  2345. Debounces.CanAttack = false
  2346. Debounces.NoIdl = true
  2347. Debounces.on = true
  2348. Debounces.Slashing = true
  2349.  
  2350. z = Instance.new("Sound", hed)
  2351. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  2352. z.Pitch = ptz[math.random(1,#ptz)]
  2353. z.Volume = 1
  2354.  
  2355.  
  2356. if holy == true then
  2357. eColors = {"Cyan"}
  2358.  
  2359.  
  2360. for i,v in pairs(char.m:GetChildren()) do
  2361. if v:IsA("Part") or v:IsA("WedgePart") then
  2362. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  2363. v.BrickColor = BrickColor.new("Cyan")
  2364. v.Material = "Neon"
  2365. end
  2366. end
  2367. end
  2368.  
  2369. for i,v in pairs(char.m:GetChildren()) do
  2370. v.BrickColor = BrickColor.new("Cyan")
  2371. v.Material = "Neon"
  2372. end
  2373.  
  2374.  
  2375. for i,v in pairs(char.m:GetChildren()) do
  2376. if v:IsA("Part") or v:IsA("WedgePart") then
  2377. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  2378. v.BrickColor = BrickColor.new("Cyan")
  2379. v.Material = "Neon"
  2380. end
  2381. end
  2382. end
  2383.  
  2384. for i,v in pairs(char.m:GetChildren()) do
  2385. v.BrickColor = BrickColor.new("Cyan")
  2386. v.Material = "Neon"
  2387. end
  2388.  
  2389.  
  2390.  
  2391. char.Humanoid.WalkSpeed = 50
  2392.  
  2393. GroundWave()
  2394. so("http://roblox.com/asset/?id=200633077",hed,1,ptz3[math.random(1,#ptz3)])
  2395. so("http://www.roblox.com/asset/?id=241816017",hed,1,0.5)
  2396. so("http://www.roblox.com/asset/?id=241816017",hed,1,1)
  2397.  
  2398.  
  2399. else
  2400. so("http://roblox.com/asset/?id=200633029",hed,1,0.9)
  2401. end
  2402.  
  2403.  
  2404. for i = 1, 8 do
  2405. z:play()
  2406. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-90)), 0.8)
  2407. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), 0, math.rad(90)), 0.8)
  2408. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, 0, 0), 0.8)
  2409. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(0, 0, 0), 0.8)
  2410. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.8)
  2411. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.8)
  2412. if Debounces.on==false then break end
  2413. rs:wait(2)
  2414. end
  2415. for i = 1, 2880, 48 do
  2416. torso.Weld.C1 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(i), math.rad(0))
  2417. rs:wait(4)
  2418. end
  2419.  
  2420.  
  2421.  
  2422.  
  2423.  
  2424.  
  2425.  
  2426. torso.Weld.C1 = CFrame.new(0, -1, 0)
  2427. Debounces.Slashing = false
  2428.  
  2429. if Debounces.CanAttack == false then
  2430. Debounces.CanAttack = true
  2431. Debounces.NoIdl = false
  2432. Debounces.on = false
  2433.  
  2434.  
  2435.  
  2436.  
  2437. char.Humanoid.WalkSpeed = 10
  2438.  
  2439.  
  2440. end
  2441.  
  2442.  
  2443.  
  2444. end
  2445.  
  2446.  
  2447.  
  2448. end
  2449.  
  2450.  
  2451. end)
  2452. ----------------------------------------------------
  2453. pt = {6.6, 6.8, 7, 7.2, 7.4}
  2454. mouse.KeyDown:connect(function(key)
  2455. if key == "l" then
  2456. if Debounces.CanJoke == true then
  2457. Debounces.CanJoke = false
  2458. u = Instance.new("Sound",char)
  2459. u.SoundId = "http://www.roblox.com/asset/?id=261303790"
  2460. u.Pitch = pt[math.random(1,#pt)]
  2461. u.Volume = 1
  2462. u2 = Instance.new("Sound",char)
  2463. u2.SoundId = "http://www.roblox.com/asset/?id=261303790"
  2464. u2.Pitch = u.Pitch
  2465. u2.Volume = 1
  2466. u3 = Instance.new("Sound",char)
  2467. u3.SoundId = "http://www.roblox.com/asset/?id=261303790"
  2468. u3.Pitch = u.Pitch
  2469. u3.Volume = 1
  2470. wait(.01)
  2471. u:Play()
  2472. u2:Play()
  2473. u3:Play()
  2474. wait(1.5)
  2475. u:Destroy()
  2476. u2:Destroy()
  2477. u3:Destroy()
  2478. if Debounces.CanJoke == false then
  2479. Debounces.CanJoke = true
  2480. end
  2481. end
  2482. end
  2483. end)
  2484.  
  2485. ------------------------------- BEGIN GRABPUNCH
  2486. mouse.KeyDown:connect(function(key)
  2487. if key == "x" then
  2488. Debounces.on = true
  2489. Debounces.NoIdl = true
  2490. Debounces.ks = true
  2491. if Grab == false then
  2492. gp = nil
  2493.  
  2494. if Melee == false then
  2495. Melee = true
  2496. Vanish()
  2497. stanceToggle = "Melee"
  2498. elseif Melee == true then
  2499. Melee = false
  2500. Appear()
  2501. stanceToggle = "Normal"
  2502. end
  2503.  
  2504. for i = 1, 20 do
  2505. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  2506. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  2507. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2508. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2509. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  2510. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  2511. if Debounces.on == false then break end
  2512. rs:wait()
  2513. end
  2514. con1=larm.Touched:connect(function(hit) -- this is grab
  2515. ht = hit.Parent
  2516. hum1=ht:FindFirstChild('Humanoid')
  2517. if hum1 ~= nil then
  2518. if Debounces.ks==true then
  2519. z = Instance.new("Sound",hed)
  2520. z.SoundId = "rbxassetid://169380525"
  2521. z.Volume = 1
  2522. z:Play()
  2523. Debounces.ks=false
  2524. end
  2525. hum1.PlatformStand=true
  2526. gp = ht
  2527. Grab = true
  2528. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  2529. asd.Parent = larm
  2530. asd.Name = "asd"
  2531. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  2532. --[[elseif hum1 == nil then
  2533. con1:disconnect()
  2534. wait() return]]--
  2535. end
  2536. end)
  2537. for i = 1, 20 do
  2538. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  2539. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  2540. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  2541. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2542. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  2543. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  2544. if Debounces.on == false then break end
  2545. rs:wait()
  2546. end
  2547. if hum1 == nil then
  2548. Debounces.on = false
  2549. Debounces.NoIdl = false
  2550. end
  2551. con1:disconnect()
  2552. elseif Grab == true then
  2553. Grab = false
  2554. Punch()
  2555. z = Instance.new("Sound",hed)
  2556. z.SoundId = "rbxassetid://169380525"
  2557. z.Pitch = ptz[math.random(1,#ptz)]
  2558. z.Volume = 1
  2559. z:Play()
  2560. for i = 1, 10 do
  2561. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2562. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2563. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2564. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2565. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2566. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2567. if Debounces.on == false then break end
  2568. rs:wait()
  2569. end
  2570. Punch()
  2571. z = Instance.new("Sound",hed)
  2572. z.SoundId = "rbxassetid://169380525"
  2573. z.Pitch = ptz[math.random(1,#ptz)]
  2574. z.Volume = 1
  2575. z:Play()
  2576. for i = 1, 10 do
  2577. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2578. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2579. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2580. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2581. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2582. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2583. if Debounces.on == false then break end
  2584. rs:wait()
  2585. end
  2586. Punch()
  2587. z = Instance.new("Sound",hed)
  2588. z.SoundId = "rbxassetid://169380525"
  2589. z.Pitch = ptz[math.random(1,#ptz)]
  2590. z.Volume = 1
  2591. z:Play()
  2592. for i = 1, 10 do
  2593. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2594. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2595. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2596. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2597. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2598. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2599. if Debounces.on == false then break end
  2600. rs:wait()
  2601. end
  2602. Punch()
  2603. z = Instance.new("Sound",hed)
  2604. z.SoundId = "rbxassetid://169380525"
  2605. z.Pitch = ptz[math.random(1,#ptz)]
  2606. z.Volume = 1
  2607. z:Play()
  2608. for i = 1, 10 do
  2609. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2610. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2611. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2612. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2613. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2614. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2615. if Debounces.on == false then break end
  2616. rs:wait()
  2617. end
  2618. Punch()
  2619. z = Instance.new("Sound",hed)
  2620. z.SoundId = "rbxassetid://169380525"
  2621. z.Pitch = ptz[math.random(1,#ptz)]
  2622. z.Volume = 1
  2623. z:Play()
  2624. for i = 1, 10 do
  2625. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2626. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2627. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2628. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2629. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2630. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2631. if Debounces.on == false then break end
  2632. rs:wait()
  2633. end
  2634. Punch()
  2635. z = Instance.new("Sound",hed)
  2636. z.SoundId = "rbxassetid://169380525"
  2637. z.Pitch = ptz[math.random(1,#ptz)]
  2638. z.Volume = 1
  2639. z:Play()
  2640. for i = 1, 10 do
  2641. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2642. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2643. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2644. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2645. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2646. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2647. if Debounces.on == false then break end
  2648. rs:wait()
  2649. end
  2650. Punch()
  2651. z = Instance.new("Sound",hed)
  2652. z.SoundId = "rbxassetid://169380525"
  2653. z.Pitch = ptz[math.random(1,#ptz)]
  2654. z.Volume = 1
  2655. z:Play()
  2656. for i = 1, 10 do
  2657. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2658. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2659. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2660. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2661. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2662. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2663. if Debounces.on == false then break end
  2664. rs:wait()
  2665. end
  2666. Punch()
  2667. z = Instance.new("Sound",hed)
  2668. z.SoundId = "rbxassetid://169380525"
  2669. z.Pitch = ptz[math.random(1,#ptz)]
  2670. z.Volume = 1
  2671. z:Play()
  2672. for i = 1, 10 do
  2673. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2674. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2675. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2676. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2677. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2678. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2679. if Debounces.on == false then break end
  2680. rs:wait()
  2681. end
  2682. Punch()
  2683. z = Instance.new("Sound",hed)
  2684. z.SoundId = "rbxassetid://169380525"
  2685. z.Pitch = ptz[math.random(1,#ptz)]
  2686. z.Volume = 1
  2687. z:Play()
  2688. for i = 1, 10 do
  2689. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2690. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2691. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2692. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2693. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2694. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2695. if Debounces.on == false then break end
  2696. rs:wait()
  2697. end
  2698. Punch()
  2699. z = Instance.new("Sound",hed)
  2700. z.SoundId = "rbxassetid://169380525"
  2701. z.Pitch = ptz[math.random(1,#ptz)]
  2702. z.Volume = 1
  2703. z:Play()
  2704. for i = 1, 10 do
  2705. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2706. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2707. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2708. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2709. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2710. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2711. if Debounces.on == false then break end
  2712. rs:wait()
  2713. end
  2714. Punch()
  2715. z = Instance.new("Sound",hed)
  2716. z.SoundId = "rbxassetid://169380525"
  2717. z.Pitch = ptz[math.random(1,#ptz)]
  2718. z.Volume = 1
  2719. z:Play()
  2720. for i = 1, 10 do
  2721. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  2722. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  2723. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  2724. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  2725. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2726. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2727. if Debounces.on == false then break end
  2728. rs:wait()
  2729. end
  2730. Punch()
  2731. z = Instance.new("Sound",hed)
  2732. z.SoundId = "rbxassetid://169380525"
  2733. z.Pitch = ptz[math.random(1,#ptz)]
  2734. z.Volume = 1
  2735. z:Play()
  2736. for i = 1, 10 do
  2737. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  2738. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  2739. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  2740. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  2741. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  2742. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  2743. if Debounces.on == false then break end
  2744. rs:wait()
  2745. end
  2746. con1:disconnect()
  2747. Debounces.on = false
  2748. Debounces.NoIdl = false
  2749. if gp ~= nil then
  2750. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  2751. for i,v in pairs(larm:GetChildren()) do
  2752. if v.Name == "asd" and v:IsA("Weld") then
  2753. v:Remove()
  2754. end
  2755. end
  2756. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  2757. bv.maxForce = Vector3.new(400000, 400000, 400000)
  2758. bv.P = 125000
  2759. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  2760. hum1=nil
  2761. ht=nil
  2762. Debounces.on = false
  2763. Debounces.NoIdl = false
  2764. elseif ht == nil then wait()
  2765. Grab = false
  2766. Debounces.on = false
  2767. Debounces.NoIdl = false
  2768. end
  2769. end
  2770. end
  2771. end)
  2772.  
  2773.  
  2774. -------------------------------------------------
  2775.  
  2776.  
  2777.  
  2778.  
  2779. ----------------------------------------------------Cero
  2780. mouse.KeyDown:connect(function(key)
  2781. if key == "c" then
  2782. if Debounces.CanAttack == true then
  2783. Debounces.CanAttack = false
  2784. Debounces.NoIdl = true
  2785. Debounces.on = true
  2786. char.Humanoid.WalkSpeed = .01
  2787. Debounces.on = true
  2788. Vanish()
  2789.  
  2790. xx = Instance.new("Sound")
  2791. xx.SoundId = "http://www.roblox.com/asset/?id=199145659"
  2792. xx.Parent = char.Head
  2793. xx.Looped = false
  2794. xx.Pitch = .88
  2795. xx.Volume = 1
  2796. wait(.1)
  2797. xx:Play()
  2798.  
  2799. if holy == true then
  2800. so("http://roblox.com/asset/?id=231917788",hed,1,1)
  2801. else
  2802. end
  2803.  
  2804.  
  2805. if holy ~= true then
  2806. for i = 1, 20 do
  2807. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-18), 0, math.rad(-20)), 0.3)
  2808. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(65), 0, math.rad(-40)), 0.3)
  2809. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.3)
  2810. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(8), 0, math.rad(10)), 0.3)
  2811. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(-70), 0), 0.6)
  2812. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(84), 0), 0.4)
  2813. if Debounces.on==false then break end
  2814. wait()
  2815. end
  2816. wait(1)
  2817. else
  2818. for i = 1, 5 do
  2819. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-18), 0, math.rad(-20)), 0.3)
  2820. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(65), 0, math.rad(-40)), 0.3)
  2821. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.3)
  2822. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(8), 0, math.rad(10)), 0.3)
  2823. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(-70), 0), 0.6)
  2824. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(84), 0), 0.4)
  2825. if Debounces.on==false then break end
  2826. wait()
  2827. end
  2828. wait(1)
  2829. end
  2830.  
  2831. x = Instance.new("Sound")
  2832. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2833. x2 = Instance.new("Sound")
  2834. x2.SoundId = "http://www.roblox.com/asset/?id=183763506"
  2835. x.Parent = char.Head
  2836. x2.Parent = char.Head
  2837. x.Looped = false
  2838. x2.Looped = false
  2839. x.Pitch = .88
  2840. x.Volume = 1
  2841. x2.Pitch = .88
  2842. x2.Volume = 1
  2843. wait(.1)
  2844. x:Play()
  2845. x2:Play()
  2846. Debounces.on = false
  2847. Debounces.Here = false
  2848.  
  2849. for i = 1, 6 do
  2850. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-12)), 0.4)
  2851. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(90), 0, math.rad(101)), 0.4)
  2852. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-6)), 0.4)
  2853. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(6)), 0.4)
  2854. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-8), math.rad(-84), 0), 0.4)
  2855. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.4)
  2856. wait()
  2857. end
  2858. local rng = Instance.new("Part", char)
  2859. rng.Anchored = true
  2860.  
  2861. if holy ~= true then
  2862. rng.BrickColor = BrickColor.new("Really black")
  2863. else
  2864. rng.BrickColor = BrickColor.new("Cyan")
  2865. end
  2866.  
  2867. rng.CanCollide = false
  2868. rng.FormFactor = 3
  2869. rng.Name = "Ring"
  2870. rng.Size = Vector3.new(1, 1, 1)
  2871. rng.Transparency = 0.35
  2872. rng.TopSurface = 0
  2873. rng.BottomSurface = 0
  2874. rng.Material = "Neon"
  2875. local rngm = Instance.new("SpecialMesh", rng)
  2876. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2877. rngm.Scale = Vector3.new(10, 10, 1)
  2878. local bem = Instance.new("Part", char)
  2879. bem.Anchored = true
  2880.  
  2881. if holy ~= true then
  2882. bem.BrickColor = BrickColor.new("Really black")
  2883. else
  2884. bem.BrickColor = BrickColor.new("Cyan")
  2885. end
  2886.  
  2887. bem.Material = "Neon"
  2888. bem.CanCollide = false
  2889. bem.FormFactor = 3
  2890. bem.Name = "Beam" .. shot
  2891. bem.Size = Vector3.new(1, 1, 1)
  2892. bem.Transparency = 0.35
  2893. bem.TopSurface = 0
  2894. bem.BottomSurface = 0
  2895. local bemm = Instance.new("SpecialMesh", bem)
  2896. bemm.MeshType = 4
  2897. bemm.Scale = Vector3.new(1, 4, 4)
  2898. local out = Instance.new("Part", char)
  2899. out.Anchored = true
  2900.  
  2901. if holy ~= true then
  2902. out.BrickColor = BrickColor.new("Really black")
  2903. else
  2904. out.BrickColor = BrickColor.new("Cyan")
  2905. end
  2906.  
  2907. out.Material = "Neon"
  2908. out.CanCollide = false
  2909. out.FormFactor = 3
  2910. out.Name = "Out"
  2911. out.Size = Vector3.new(1, 1, 1)
  2912. out.Transparency = 0.35
  2913. out.TopSurface = 0
  2914. out.BottomSurface = 0
  2915. local outm = Instance.new("SpecialMesh", out)
  2916. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2917. outm.Scale = Vector3.new(2, 2, 2)
  2918. local bnd = Instance.new("Part", char)
  2919. bnd.Anchored = true
  2920.  
  2921. if holy ~= true then
  2922. bnd.BrickColor = BrickColor.new("Really black")
  2923. else
  2924. bnd.BrickColor = BrickColor.new("Cyan")
  2925. end
  2926.  
  2927. bnd.Material = "Neon"
  2928. bnd.CanCollide = false
  2929. bnd.FormFactor = 3
  2930. bnd.Name = "BEnd"
  2931. bnd.Size = Vector3.new(1, 1, 1)
  2932. bnd.Transparency = 0.35
  2933. bnd.TopSurface = 0
  2934. bnd.BottomSurface = 0
  2935. local bndm = Instance.new("SpecialMesh", bnd)
  2936. bndm.MeshType = 3
  2937. bndm.Scale = Vector3.new(4, 4, 4)
  2938. out.CFrame = rarm.CFrame * CFrame.new(0, -1.75, 0)
  2939. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2940. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2941. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2942. Debounces.Shewt = true
  2943. coroutine.wrap(function()
  2944. for i = 1, 20, 0.2 do
  2945. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2946. rng.Transparency = i/20
  2947. wait()
  2948. end
  2949. wait()
  2950. rng:Destroy()
  2951. end)()
  2952. if Debounces.Shewt == true then
  2953. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht) --Here
  2954. print("Hit")
  2955. hit = ht.Parent
  2956. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2957. print("Yes")
  2958. if HasntTouched(hit.Name) == true and deb == false then
  2959. deb = true
  2960. coroutine.wrap(function()
  2961. hit:FindFirstChild("Humanoid").PlatformStand = true
  2962. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 140
  2963. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(18,63))
  2964. wait(1)
  2965. hit:FindFirstChild("Humanoid").PlatformStand = false
  2966. end)()
  2967. table.insert(Touche, hit.Name)
  2968. deb = false
  2969. end
  2970. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2971. print("Yes")
  2972. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2973. deb = true
  2974. coroutine.wrap(function()
  2975. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2976. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 140
  2977. wait(1)
  2978. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2979. end)()
  2980. table.insert(Touche, hit.Parent.Name)
  2981. deb = false
  2982. for i, v in pairs(Touche) do
  2983. print(v)
  2984. end
  2985. end
  2986. end
  2987. end)
  2988. end
  2989. for i = 0, 200, 7 do
  2990. bem.Size = Vector3.new(i, 1, 1)
  2991. bem.CFrame = rarm.CFrame * CFrame.new(0, -2.5 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2992. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 0)
  2993. wait()
  2994. end
  2995. wait()
  2996. Debounces.Shewt = false
  2997. bem:Destroy()
  2998. out:Destroy()
  2999. bnd:Destroy()
  3000. char.Humanoid.WalkSpeed = 10
  3001. Debounces.Ready = false
  3002. for i, v in pairs(Touche) do
  3003. table.remove(Touche, i)
  3004. end
  3005. wait()
  3006. table.insert(Touche, char.Name)
  3007. Debounces.NoIdl = false
  3008. if Debounces.CanAttack == false then
  3009. Debounces.CanAttack = true
  3010. cor.Weld.C1 = CFrame.Angles(0,0,0)
  3011.  
  3012.  
  3013. Debounces.on = false
  3014. Appear()
  3015. end
  3016. end
  3017. end
  3018. end)
  3019. -------------------------------
  3020.  
  3021. ----------------------------------------------------EDIT END
  3022. Grab = false
  3023. mouse.KeyDown:connect(function(key)
  3024. if key == "z" then
  3025. Debounces.on = true
  3026. Debounces.NoIdl = true
  3027. Debounces.ks = true
  3028. if Grab == false then
  3029. gp = nil
  3030. for i = 1, 20 do
  3031. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  3032. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-80)), 0.2)
  3033. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-70),0), 0.2)
  3034. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(70), 0), 0.2)
  3035. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  3036. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  3037. if Debounces.on == false then break end
  3038. rs:wait(2)
  3039. end
  3040. con1=larm.Touched:connect(function(hit) -- this is grab
  3041. ht = hit.Parent
  3042. hum1=ht:FindFirstChild('Humanoid')
  3043. if hum1 ~= nil then
  3044. if Debounces.ks==true then
  3045. z = Instance.new("Sound",hed)
  3046. z.SoundId = "rbxassetid://169380525"
  3047. z.Volume = 1
  3048. z:Play()
  3049. Debounces.ks=false
  3050. end
  3051. hum1.PlatformStand=true
  3052. gp = ht
  3053. Grab = true
  3054. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-1,1.5),CFrame.new(0,0,0))
  3055. asd.Parent = larm
  3056. asd.Name = "asd"
  3057. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),math.rad(180),0)
  3058. stanceToggle = "Grabbed"
  3059. --[[elseif hum1 == nil then
  3060. con1:disconnect()
  3061. wait() return]]--
  3062. end
  3063. end)
  3064. for i = 1, 20 do
  3065. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.2)
  3066. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  3067. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(30),0), 0.2)
  3068. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-30), 0), 0.2)
  3069. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  3070. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  3071. if Debounces.on == false then break end
  3072. rs:wait(2)
  3073. end
  3074. con1:disconnect()
  3075. Debounces.on = false
  3076. Debounces.NoIdl = false
  3077. elseif Grab == true then
  3078. Grab = false
  3079. --[[for i = 1, 16 do
  3080. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(60)), 0.3)
  3081. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.5)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-60)), 0.3)
  3082. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14),math.rad(70),0), 0.3)
  3083. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  3084. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  3085. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  3086. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), 0), 0.3)
  3087. if Debounces.on == false then end
  3088. rs:wait()
  3089. end]]--
  3090. for i = 1, 16 do
  3091. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.3)
  3092. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(140),math.rad(0),math.rad(-50)), 0.3)
  3093. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(20),math.rad(-60),0), 0.3)
  3094. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.3)
  3095. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(-20)), 0.3)
  3096. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  3097. if Debounces.on == false then end
  3098. rs:wait()
  3099. end
  3100. Slam()
  3101. if gp ~= nil then
  3102. for i,v in pairs(larm:GetChildren()) do
  3103. if v.Name == "asd" and v:IsA("Weld") then
  3104. v:Remove()
  3105. end
  3106. end
  3107. for i = 1, 16 do
  3108. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.3)
  3109. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,-.4)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.3)
  3110. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.3)
  3111. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-60), math.rad(-30), 0), 0.3)
  3112. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(80), math.rad(30), math.rad(-20)), 0.3)
  3113. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(70), math.rad(-15), math.rad(20)), 0.3)
  3114. if Debounces.on == false then end
  3115. rs:wait()
  3116. end
  3117. stanceToggle = "Normal"
  3118. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3119. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3120. bv.P = 125000
  3121. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  3122. ht=nil
  3123. Debounces.on = false
  3124. Debounces.NoIdl = false
  3125. elseif ht == nil then wait()
  3126. Grab = false
  3127. Debounces.on = false
  3128. Debounces.NoIdl = false
  3129. end
  3130. end
  3131. end
  3132. end)
  3133. ----------------------------------------------------
  3134. Charging = false
  3135. chargewait = false
  3136. mouse.KeyDown:connect(function(key)
  3137. if key == "h" then
  3138. if Charging == false and chargewait == false then
  3139. Charging = true
  3140. chargewait = true
  3141. if Debounces.CanAttack == true then
  3142. Debounces.CanAttack = false
  3143. Debounces.NoIdl = true
  3144. Debounces.on = true
  3145.  
  3146.  
  3147. if holy ~= true then
  3148. holy = true
  3149. else holy = false
  3150. end
  3151.  
  3152.  
  3153. for i = 1,20 do
  3154. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  3155. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  3156. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  3157. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  3158. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  3159. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  3160. if Debounces.on == false then break end
  3161. rs:wait()
  3162. end
  3163. pt=Instance.new('Part',torso)
  3164. pt.Anchored=true
  3165. pt.CanCollide=false
  3166. pt.Locked = true
  3167. pt.Material = "Neon"
  3168. pt.FormFactor='Custom'
  3169. pt.Size=Vector3.new(1,1,1)
  3170. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3171. pt.Transparency=.6
  3172.  
  3173. if holy == true then
  3174. pt.BrickColor=BrickColor.new('Cyan')
  3175. else
  3176. pt.BrickColor = BrickColor.new("Really black")
  3177. end
  3178.  
  3179. msh=Instance.new('SpecialMesh',pt)
  3180. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3181. msh.Scale=Vector3.new(8,4,8)
  3182. pt2=pt:clone()
  3183. pt2.Parent = torso
  3184. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3185.  
  3186. if holy == true then
  3187. pt2.BrickColor=BrickColor.new('Cyan')
  3188. else
  3189. pt2.BrickColor = BrickColor.new("Deep orange")
  3190. end
  3191.  
  3192.  
  3193. msh2=msh:clone()
  3194. msh2.Parent=pt2
  3195. msh2.Scale=Vector3.new(10,5,10)
  3196.  
  3197. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  3198.  
  3199. bl = Instance.new("Part", char)
  3200. bl.Locked = true
  3201. bl.Name = "Shell"
  3202.  
  3203. if holy == true then
  3204. bl.BrickColor = BrickColor.new("Cyan")
  3205. else
  3206. bl.BrickColor = BrickColor.new("Really black")
  3207. end
  3208.  
  3209. bl.Anchored = true
  3210. bl.Material = "Neon"
  3211. bl.CanCollide = false
  3212. bl.Transparency = 0
  3213. bl.Reflectance = 0
  3214. bl.BottomSurface = 0
  3215. bl.TopSurface = 0
  3216. bl.Shape = 0
  3217. blm = Instance.new("SpecialMesh",bl)
  3218. blm.MeshType = "Sphere"
  3219. blm.Scale = Vector3.new(1,1,1)
  3220.  
  3221. so("http://www.roblox.com/asset/?id=340722848",hed,2,1.2)
  3222. so("http://www.roblox.com/asset/?id=340722848",torso,0.5,0.8)
  3223. so("http://roblox.com/asset/?id=168586621",torso,1,0.5)
  3224.  
  3225.  
  3226.  
  3227.  
  3228. if holy == true then
  3229. light()
  3230. ds:stop()
  3231. hs:play()
  3232. eColors = {"Cyan"}
  3233. for i,v in pairs(char:GetChildren()) do
  3234. if v:IsA("Part") or v:IsA("WedgePart") then
  3235. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  3236. v.BrickColor = BrickColor.new("Cyan")
  3237. v.Material = "Neon"
  3238. end
  3239. end
  3240. end
  3241.  
  3242.  
  3243. for i,v in pairs(char.m:GetChildren()) do
  3244. if v:IsA("Part") or v:IsA("WedgePart") then
  3245. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  3246. v.BrickColor = BrickColor.new("Cyan")
  3247. v.Material = "Neon"
  3248. end
  3249. end
  3250. end
  3251.  
  3252. for i,v in pairs(char.m:GetChildren()) do
  3253. v.BrickColor = BrickColor.new("Cyan")
  3254. v.Material = "Neon"
  3255. end
  3256.  
  3257.  
  3258.  
  3259. else
  3260. dark()
  3261. hs:stop()
  3262. ds:play()
  3263. eColors = {"Deep orange", "Really black"}
  3264. for i,v in pairs(char:GetChildren()) do
  3265. if v:IsA("Part") or v:IsA("WedgePart") then
  3266. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  3267. v.BrickColor = BrickColor.new("Really black")
  3268. v.Material = "Metal"
  3269. end
  3270. end
  3271. end
  3272.  
  3273.  
  3274. for i,v in pairs(char.m:GetChildren()) do
  3275. if v:IsA("Part") or v:IsA("WedgePart") then
  3276. if v.Name ~= "HitBox" or v.Name ~= "Thingy" then
  3277. v.BrickColor = BrickColor.new("Deep orange")
  3278. v.Material = "Metal"
  3279. end
  3280. end
  3281. end
  3282.  
  3283.  
  3284. end
  3285.  
  3286. coroutine.resume(coroutine.create(function()
  3287. for i=1, math.huge, 4 do
  3288. if Charging == true then
  3289. rs:wait()
  3290. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  3291. blm.Scale = blm.Scale + Vector3.new(0.5, 0.5, 0.5)
  3292. bl.Transparency = bl.Transparency + 0.05
  3293. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  3294. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  3295. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  3296. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  3297. elseif Charging == false then break
  3298. end
  3299. end
  3300. end))
  3301.  
  3302.  
  3303. repeat
  3304. local p = Instance.new('Part',torso)
  3305. p.formFactor = 'Custom'
  3306. p.Size = Vector3.new(1,1,1)
  3307.  
  3308. if holy == true then
  3309. p.BrickColor = BrickColor.new("Cyan")
  3310. else
  3311. p.BrickColor = BrickColor.new("Really black")
  3312. end
  3313.  
  3314. p.CanCollide = false
  3315. p.Transparency = 0
  3316. p.Anchored = true
  3317. p.Locked=true
  3318. p.Material = "Neon"
  3319. s = math.random(1,40)/10
  3320. local m = Instance.new("BlockMesh",p)
  3321. m.Scale = Vector3.new(s,s,s)
  3322. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  3323. --[[coroutine.wrap(function()
  3324. wait(2)
  3325. while Charging == true do
  3326. wait(2)
  3327. GroundWave1()
  3328. wait(2)
  3329. end
  3330. end)()]]--
  3331. Spawn(function()
  3332. while rs:wait() do
  3333. if Charging == true then
  3334. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  3335. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  3336. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  3337. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  3338. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  3339. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  3340. elseif Charging == false then break
  3341. end
  3342. end
  3343. end)
  3344. Spawn(function()
  3345. while rs:wait() do
  3346. if p.Transparency >= 1 then p:Destroy() break end
  3347. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  3348. p.Transparency = p.Transparency+0.01
  3349. end
  3350. end)
  3351. wait(.3)
  3352.  
  3353.  
  3354. until Charging == false
  3355. end
  3356. end
  3357. end
  3358. end)
  3359.  
  3360. ----------------------------------------------------
  3361. mouse.KeyUp:connect(function(key)
  3362. if key == "h" then
  3363. if Charging == true and chargewait == true then
  3364. chargewait = false
  3365. wait(1)
  3366. Charging = false
  3367.  
  3368. --[[for i,v in pairs (torso:GetChildren()) do
  3369. if v:IsA("Sound") then
  3370. v:Destroy()
  3371. end
  3372. end]]
  3373.  
  3374.  
  3375. --so("http://roblox.com/asset/?id=160867463",torso,1,0.7)
  3376.  
  3377. pt:Destroy()
  3378. pt2:Destroy()
  3379. bl:Destroy()
  3380. if Debounces.CanAttack == false then
  3381. Debounces.CanAttack = true
  3382. Debounces.NoIdl = false
  3383. Debounces.on = false
  3384. Debounces.grab = false
  3385.  
  3386. end
  3387. end
  3388. end
  3389. end)
  3390. ----------------------------------------------------
  3391. Sit = false
  3392. mouse.KeyDown:connect(function(key)
  3393. if key == "b" then
  3394. if Sit == false then
  3395. Sit = true
  3396. hum.WalkSpeed = 0.1
  3397. stanceToggle = "Sitting"
  3398. elseif Sit == true then
  3399. Sit = false
  3400. hum.WalkSpeed = 7
  3401. stanceToggle = "Normal"
  3402. end
  3403. end
  3404. end)
  3405. -------------------------------
  3406. Melee = false
  3407. mouse.KeyDown:connect(function(key)
  3408. if key == "m" then
  3409. if Melee == false then
  3410. Melee = true
  3411. Vanish()
  3412. stanceToggle = "Melee"
  3413. elseif Melee == true then
  3414. Melee = false
  3415. Appear()
  3416. stanceToggle = "Normal"
  3417. end
  3418. end
  3419. end)
  3420. -------------------------------
  3421. ----------------------------------------------------
  3422. mouse.KeyDown:connect(function(key)
  3423. if key == "n" then
  3424. if Debounces.CanAttack == true then
  3425. Debounces.CanAttack = false
  3426. Debounces.on = true
  3427. Debounces.NoIdl = true
  3428. hum.WalkSpeed = 50
  3429.  
  3430. BV = Instance.new("BodyVelocity", torso)
  3431. BV.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  3432. BV.P = 300000
  3433. BV.Velocity = Vector3.new(0,200,0)
  3434. game:GetService("Debris"):AddItem(BV,.07)
  3435.  
  3436. for i = 1, 20 do
  3437. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  3438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  3439. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.53,0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  3440. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.53,0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  3441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  3442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  3443. if Debounces.on == false then break end
  3444. wait()
  3445. end
  3446. BV:Destroy()
  3447. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  3448. for i = 1, 30 do
  3449. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  3450. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  3451. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.53,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  3452. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.53,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  3453. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 1)
  3454. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 1)
  3455. if Debounces.on == false then break end
  3456. wait()
  3457. end
  3458. end
  3459.  
  3460.  
  3461.  
  3462.  
  3463. hum.WalkSpeed = 16
  3464. Debounces.on = false
  3465. Debounces.NoIdl = false
  3466. if Debounces.CanAttack == false then
  3467. Debounces.CanAttack = true
  3468. end
  3469. end
  3470. end
  3471. end)
  3472. ----------------------------------------------------
  3473. mouse.KeyDown:connect(function(key)
  3474. if string.byte(key) == 50 then
  3475. if Debounces.CanAttack == true then
  3476. if stanceToggle ~= "Floating" then
  3477. char.Humanoid.WalkSpeed = 60
  3478. Burst()
  3479. elseif Debounces.CanAttack == false then
  3480. elseif stanceToggle == "Floating" then
  3481. wait()
  3482. end
  3483. end
  3484. end
  3485. end)
  3486. mouse.KeyUp:connect(function(key)
  3487. if string.byte(key) == 50 then
  3488. char.Humanoid.WalkSpeed = 9
  3489. end
  3490. end)
  3491. -------------------------------
  3492. mouse.KeyDown:connect(function(key)
  3493. if key == "p" then
  3494. if CanAttack == true then
  3495. CanAttack = false
  3496. Debounces.NoIdl = true
  3497. Debounces.on = true
  3498. for i = 1, 20 do
  3499. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.2, -2.75) * CFrame.Angles(math.rad(90), math.rad(40), math.rad(0)), 0.6)
  3500. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, 1, -.5) * CFrame.Angles(math.rad(130), math.rad(0), math.rad(40)), 0.3)
  3501. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, 1, -.5) * CFrame.Angles(math.rad(130), math.rad(0), math.rad(-40)), 0.3)
  3502. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.6)
  3503. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(10)), 0.6)
  3504. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.6)
  3505. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 12, 0) * CFrame.Angles(math.rad(30), math.rad(0), math.rad(0)), 0.2)
  3506. if Debounces.on == false then
  3507. break
  3508. end
  3509. wait()
  3510. end
  3511. wait()
  3512. z = Instance.new("Sound")
  3513. z.SoundId = "http://www.roblox.com/asset/?id=159218913"
  3514. z.Parent = char.Head
  3515. z.Looped = false
  3516. z.Pitch = 1
  3517. z.Volume = 1
  3518. wait(.01)
  3519. z:Play()
  3520. Debounces.Slashing = true
  3521. for i = 1, 20 do
  3522. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.2, -2.75) * CFrame.Angles(math.rad(90), math.rad(40), math.rad(0)), 0.6)
  3523. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1, .5, -.5) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(40)), 0.6)
  3524. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1, .5, -.5) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-40)), 0.6)
  3525. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1.5, -.5) * CFrame.Angles(math.rad(-90), 0, math.rad(0)), 0.6)
  3526. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -.5, -1) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.6)
  3527. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.6)
  3528. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(0), math.rad(0), 0), 0.6)
  3529. wait()
  3530. if Debounces.on == false then
  3531. break
  3532. end
  3533. wait()
  3534. end
  3535. Debounces.Slashing = false
  3536. Debounces.NoIdl = false
  3537. wait()
  3538. if CanAttack == false then
  3539. CanAttack = true
  3540. end
  3541. end
  3542. end
  3543. end)
  3544. --------------------------------
  3545. ----------------------------------------------------
  3546. mouse.KeyDown:connect(function(key)
  3547. if key == "v" then
  3548. if Debounces.CanAttack == true then
  3549. Debounces.CanAttack = false
  3550. Debounces.on = true
  3551. Debounces.NoIdl = true
  3552. for i = 1, 15 do
  3553. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  3554. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  3555. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3556. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  3557. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3558. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3559. if Debounces.on == false then break end
  3560. rs:wait(2.7)
  3561. end
  3562. so("http://roblox.com/asset/?id=231917788",hed,1,0.7)
  3563. x = Instance.new("Sound",char.Head)
  3564. x.SoundId = "rbxassetid://183763515"
  3565. x.Pitch = 0.7
  3566. x.Volume = .8
  3567. x3 = Instance.new("Sound",char.Head)
  3568. x3.SoundId = "rbxassetid://183763487"
  3569. x3.Pitch = 1
  3570. x3.Volume = .8
  3571. wait(.1)
  3572. x:Play()
  3573. x3:Play()
  3574.  
  3575. if holy == true then
  3576. so("http://roblox.com/asset/?id=233091161",hed,1,0.6)
  3577. so("http://roblox.com/asset/?id=2233091183",hed,1,1)
  3578. else
  3579. end
  3580.  
  3581. Debounces.on = false
  3582. Debounces.Here = false
  3583. shot = shot + 1
  3584. local rng = Instance.new("Part", larm)
  3585. rng.Anchored = true
  3586.  
  3587. if holy ~= true then
  3588. rng.BrickColor = BrickColor.new("Deep orange")
  3589. else
  3590. rng.BrickColor = BrickColor.new("Cyan")
  3591. end
  3592.  
  3593. rng.Material = "Neon"
  3594. rng.CanCollide = false
  3595. rng.FormFactor = 3
  3596. rng.Name = "Ring"
  3597. rng.Size = Vector3.new(1, 1, 1)
  3598. rng.Transparency = 0.35
  3599. rng.TopSurface = 0
  3600. rng.BottomSurface = 0
  3601. rng2 = rng:clone()
  3602. rng3 = rng2:clone()
  3603. rng4 = rng2:clone()
  3604. local rngm = Instance.new("SpecialMesh", rng)
  3605. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3606. rngm.Scale = Vector3.new(10, 10, 1)
  3607. rngm2 = rngm:clone()
  3608. rngm2.Scale = Vector3.new(5, 5, 3)
  3609. rngm3=rngm2:clone()
  3610. rngm3.Parent = rng3
  3611. rngm3.Scale = Vector3.new(8, 8, 1)
  3612. rngm4 = rngm2:clone()
  3613. rngm4.Parent = rng4
  3614. rngm4.Scale = Vector3.new(6, 6, 1)
  3615. local bem = Instance.new("Part", larm)
  3616. bem.Anchored = true
  3617.  
  3618. if holy == false then
  3619. bem.BrickColor = BrickColor.new("Really black")
  3620. else
  3621. bem.BrickColor = BrickColor.new("Cyan")
  3622. end
  3623.  
  3624. bem.CanCollide = false
  3625. bem.Material = "Neon"
  3626. bem.FormFactor = 3
  3627. bem.Name = "Beam" .. shot
  3628. bem.Size = Vector3.new(1, 1, 1)
  3629. bem.Transparency = 0.35
  3630. bem.TopSurface = 0
  3631. bem.BottomSurface = 0
  3632. local bemm = Instance.new("SpecialMesh", bem)
  3633. bemm.MeshType = 4
  3634. bemm.Scale = Vector3.new(1, 4, 4)
  3635. local out = Instance.new("Part", larm)
  3636. out.Anchored = true
  3637. out.Material = "Neon"
  3638.  
  3639. if holy == false then
  3640. out.BrickColor = BrickColor.new("Really black")
  3641. else
  3642. out.BrickColor = BrickColor.new("Cyan")
  3643. end
  3644.  
  3645. out.CanCollide = false
  3646. out.FormFactor = 3
  3647. out.Name = "Out"
  3648. out.Size = Vector3.new(4, 4, 4)
  3649. out.Transparency = 0.35
  3650. out.TopSurface = 0
  3651. out.BottomSurface = 0
  3652. local outm = Instance.new("SpecialMesh", out)
  3653. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3654. outm.Scale = Vector3.new(6, 4, 6)
  3655. local bnd = Instance.new("Part", larm)
  3656. bnd.Anchored = true
  3657. bnd.BrickColor = BrickColor.new("Really red")
  3658. bnd.CanCollide = false
  3659. bnd.FormFactor = 3
  3660. bnd.Name = "Bend"
  3661. bnd.Size = Vector3.new(1, 1, 1)
  3662. bnd.Transparency = 1
  3663. bnd.TopSurface = 0
  3664. bnd.BottomSurface = 0
  3665. local bndm = Instance.new("SpecialMesh", bnd)
  3666. bndm.MeshType = 3
  3667. bndm.Scale = Vector3.new(8, 8, 8)
  3668. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3669. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3670. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3671. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3672. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3673. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3674. Debounces.Shewt = true
  3675. coroutine.wrap(function()
  3676. for i = 1, 20, 0.2 do
  3677. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3678. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3679. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3680. rng.Transparency = i/20
  3681. rng3.Transparency = 1/24
  3682. rng4.Transparency = i/26
  3683. wait()
  3684. end
  3685. wait()
  3686. rng:Destroy()
  3687. end)()
  3688. if Debounces.Shewt == true then
  3689. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  3690. hit = ht.Parent
  3691. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  3692. if HasntTouched(hit.Name) == true and deb == false then
  3693. deb = true
  3694. coroutine.wrap(function()
  3695. hit:FindFirstChild("Humanoid").PlatformStand = true
  3696. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  3697. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  3698. end)()
  3699. table.insert(Touche, hit.Name)
  3700. deb = false
  3701. end
  3702. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  3703. if HasntTouched(hit.Parent.Name) == true and deb == false then
  3704. deb = true
  3705. coroutine.wrap(function()
  3706. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  3707. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  3708. wait(1)
  3709. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  3710. end)()
  3711. table.insert(Touche, hit.Parent.Name)
  3712. deb = false
  3713. for i, v in pairs(Touche) do
  3714. print(v)
  3715. end
  3716. end
  3717. end
  3718. end)
  3719. end
  3720. for i = 0, 260, 8 do
  3721. bem.Size = Vector3.new(i, 3, 3)
  3722. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3723. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  3724. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  3725. bnd.Size = Vector3.new(1,1,1)
  3726. bndm.Scale = Vector3.new(8,8,8)
  3727. if i % 10 == 0 then
  3728. local newRng = rng2:Clone()
  3729. newRng.Parent = larm
  3730. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  3731. local newRngm = rngm2:clone()
  3732. newRngm.Parent=newRng
  3733. coroutine.wrap(function()
  3734. for i = 1, 10, 0.2 do
  3735. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  3736. newRng.Transparency = i/10
  3737. wait()
  3738. end
  3739. wait()
  3740. newRng:Destroy()
  3741. end)()
  3742. end
  3743. wait()
  3744. end
  3745. wait()
  3746. Debounces.Shewt = false
  3747. bem:Destroy()
  3748. out:Destroy()
  3749. bnd:Destroy()
  3750. Debounces.Ready = false
  3751. for i, v in pairs(Touche) do
  3752. table.remove(Touche, i)
  3753. end
  3754. wait()
  3755. table.insert(Touche, char.Name)
  3756. Debounces.NoIdl = false
  3757. if Debounces.CanAttack == false then
  3758. Debounces.CanAttack = true
  3759. end
  3760. end
  3761. end
  3762. end)
  3763. ----------------------------------------------------
  3764. ----------------------------------------------------
  3765. mouse.KeyDown:connect(function(key)
  3766. if key == "y" then
  3767. if CanAttack == true then
  3768. CanAttack = false
  3769. Debounces.NoIdl = true
  3770. Debounces.on = true
  3771. for i = 1, 20 do
  3772. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.2)
  3773. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.2)
  3774. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, 0.5, -1) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3775. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, 0.5, -1) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3776. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-26), math.rad(0), 0), 0.2)
  3777. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  3778. if Debounces.on == false then
  3779. break
  3780. end
  3781. wait()
  3782. end
  3783. wait()
  3784. if Daytime == true then
  3785. Daytime = false
  3786. l.TimeOfDay = 24
  3787. else
  3788. Daytime = true
  3789. l.TimeOfDay = 12
  3790. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  3791. end
  3792. char.Humanoid.MaxHealth = math.huge
  3793. c = Instance.new("Sound")
  3794. c.SoundId = "http://www.roblox.com/asset/?id=152758283"
  3795. c.Parent = m
  3796. c.Looped = false
  3797. if Daytime == true then
  3798. c.Pitch = -1
  3799. elseif Daytime == false then
  3800. c.Pitch = 1.12
  3801. end
  3802. c.Volume = 1
  3803. wait(.01)
  3804. c:Play()
  3805. local Shockwave = function()
  3806. local Wave = Instance.new("Part", game.Workspace--[[?]])
  3807. Wave.Name = "Shockwave"
  3808. Wave.BrickColor = BrickColor.new("Really black")
  3809. Wave.Size = Vector3.new(1, 1, 1)
  3810. Wave.Shape = "Ball"
  3811. Wave.CanCollide = false
  3812. Wave.Anchored = true
  3813. Wave.TopSurface = 0
  3814. Wave.BottomSurface = 0
  3815. Wave.Touched:connect(function(hit)
  3816. print(hit.Name)
  3817. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  3818. if hit.Parent.Name ~= char.Name then
  3819. print("Damaged " .. hit.Parent.Name)
  3820. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  3821. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  3822. end
  3823. end
  3824. end)
  3825.  
  3826. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  3827.  
  3828. Delay(0, function()
  3829. --
  3830. -- Okay.
  3831. if Daytime == false then
  3832. for i = 1, 38, 1 do
  3833. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  3834. Wave.CFrame = char.Torso.CFrame
  3835. local t = i / 38
  3836. Wave.Transparency = t
  3837. wait()
  3838. end
  3839. else
  3840. for i = 38, 1, -1 do
  3841. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  3842. Wave.CFrame = char.Torso.CFrame
  3843. local t = i / 38
  3844. Wave.Transparency = t
  3845. wait()
  3846. end
  3847. end
  3848. Wave:Destroy()
  3849. end)
  3850. Delay(0, function()
  3851. while wait() do
  3852. if Wave ~= nil then
  3853. Wave.CFrame = char.Torso.CFrame
  3854. else
  3855. break
  3856. end
  3857. end
  3858. end)
  3859. end
  3860.  
  3861. Shockwave()
  3862.  
  3863. for i = 1, 20 do
  3864. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(-100)), 0.6)
  3865. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, .5, 0) * CFrame.Angles(math.rad(120), 0, math.rad(100)), 0.6)
  3866. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-20)), 0.6)
  3867. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(20)), 0.6)
  3868. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(35), math.rad(0), 0), 0.6)
  3869. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.6)
  3870. wait()
  3871. if Debounces.on == false then
  3872. break
  3873. end
  3874. wait()
  3875. end
  3876. wait(2)
  3877. Debounces.NoIdl = false
  3878. if CanAttack == false then
  3879. CanAttack = true
  3880. wait()
  3881. end
  3882. end -- for the canattack thing
  3883. end
  3884. end)
  3885. -------------------------------
  3886. local animpose = "Idle"
  3887. local lastanimpose = "Idle"
  3888. local grab = false
  3889. local sine = 0
  3890. local change = 1
  3891. local val = 0
  3892. local ffing = false
  3893. local jump = false
  3894. -------------------------------
  3895. --[[if stanceToggle == "Sitting" then
  3896. if wait(math.random(1,2)) == 1 then
  3897. stanceToggle = "Sitting2"
  3898. wait(8)
  3899. stanceToggle = "Sitting"
  3900. end
  3901. end]]--
  3902. -------------------------------
  3903. game:GetService("RunService").RenderStepped:connect(function()
  3904. if char.Humanoid.Jump == true then
  3905. jump = true
  3906. else
  3907. jump = false
  3908. end
  3909. char.Humanoid.FreeFalling:connect(function(f)
  3910. if f then
  3911. ffing = true
  3912. else
  3913. ffing = false
  3914. end
  3915. end)
  3916. sine = sine + change
  3917. if jump == true then
  3918. animpose = "Jumping"
  3919. elseif ffing == true then
  3920. animpose = "Freefalling"
  3921. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3922. animpose = "Idle"
  3923. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3924. animpose = "Walking"
  3925. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3926. animpose = "Running"
  3927. end
  3928. if animpose ~= lastanimpose then
  3929. sine = 0
  3930. if Debounces.NoIdl == false then
  3931. if stanceToggle == "Normal" and holy ~= true then
  3932. for i = 1, 2 do
  3933. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40)), 0.2)
  3934. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20)), 0.2)
  3935. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.2)
  3936. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  3937. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  3938. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(20)), 0.2)
  3939. cor.Weld.C1 = Lerp(cor.Weld.C1, CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0), 0.3)
  3940. end
  3941. elseif stanceToggle == "Sitting" then
  3942. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/30),0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20+2*math.cos(sine/30))), 0.2)
  3943. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.5, -.54) * CFrame.Angles(math.rad(88), 0, math.rad(48)), 0.6)
  3944. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  3945. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-20), math.sin(sine/60)/3, 0), 0.3)
  3946. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1) * CFrame.Angles(math.rad(-6), 0, 0), 0.3)
  3947. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56), 0, 0), 0.3)
  3948. elseif stanceToggle == "Floating" then
  3949. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4)
  3950. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4)
  3951. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3952. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.4*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3953. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3954. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3955. wait()
  3956. end
  3957. else
  3958. end
  3959. end
  3960. lastanimpose = animpose
  3961. if Debounces.NoIdl == false then
  3962. if animpose == "Idle" then
  3963. if stanceToggle == "Normal" and holy ~= true then
  3964. change = 0.5
  3965. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  3966. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20-2*math.cos(sine/14))), 0.2)
  3967. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(50),0), 0.2)
  3968. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.2)
  3969. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  3970. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(20)), 0.2)
  3971. elseif stanceToggle == "Normal" and holy == true then
  3972. change = 0.8
  3973. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4)
  3974. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4)
  3975. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3976. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3977. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3978. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3979. elseif stanceToggle == "Melee" and holy ~= true then
  3980. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(20+2*math.cos(sine/14))), 0.2)
  3981. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20-2*math.cos(sine/14))), 0.2)
  3982. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-20+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3983. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3984. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3985. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3986. elseif stanceToggle == "Melee" and holy == true then
  3987. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4)
  3988. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4)
  3989. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3990. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3991. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3992. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3993. elseif stanceToggle == "Sitting" then
  3994. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20)), 0.2)
  3995. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2, 0.5, -.54) * CFrame.Angles(math.rad(88), 0, math.rad(48)), 0.6)
  3996. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.3)
  3997. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5-0.06*math.cos(sine/25), -.2) * CFrame.Angles(math.rad(0-20*math.cos(sine/25)/2), math.sin(sine/50)/2.4, 0), 0.3)
  3998. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1) * CFrame.Angles(math.rad(-6), 0, 0), 0.3)
  3999. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-56), 0, 0), 0.3)
  4000. elseif stanceToggle == "Floating" then
  4001. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.4)
  4002. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.4)
  4003. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  4004. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.4*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  4005. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  4006. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  4007. elseif stanceToggle == "Grabbed" and holy ~= true then
  4008. grab = true
  4009. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  4010. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(130+4*math.cos(sine/14)),math.rad(0),math.rad(-60+4*math.cos(sine/14))), 0.3)
  4011. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
  4012. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-70), 0), 0.3)
  4013. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.3)
  4014. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.3)
  4015. elseif stanceToggle == "Grabbed" and holy == true then
  4016. grab = true
  4017. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(40+2*math.cos(sine/14))), 0.2)
  4018. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/14),-.5)*CFrame.Angles(math.rad(130+4*math.cos(sine/14)),math.rad(0),math.rad(-60+4*math.cos(sine/14))), 0.3)
  4019. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(14+2*math.cos(sine/14)),math.rad(70-4*math.cos(sine/14)),0), 0.3)
  4020. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4021. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4022. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  4023. end
  4024. elseif animpose == "Walking" then
  4025. if stanceToggle == "Normal" and holy ~= true then
  4026. change = 1
  4027. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5, 0)*CFrame.Angles(math.rad(-20), math.rad(-20),math.rad(40)), 0.2)
  4028. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6, -math.sin(sine/8)/2.8)*CFrame.Angles(math.sin(sine/8)/4, -math.sin(sine/8)/2, math.rad(-10)), 0.2)
  4029. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/4)), math.rad(0), math.rad(0)),0.2)
  4030. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/4), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/4)), 0, math.rad(0)), 0.2)
  4031. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.14*math.cos(sine/8)/2.8, -0.05 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + -math.sin(sine/8)/2.3, 0, 0), .4)
  4032. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.14*math.cos(sine/8)/2.8, -0.05 + -math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + math.sin(sine/8)/2.3, 0, 0), .4)
  4033. elseif stanceToggle == "Normal" and holy == true then
  4034. for i = 1, 2 do
  4035. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4036. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4037. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  4038. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4039. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4040. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  4041. end
  4042. elseif stanceToggle == "Melee" and holy ~= true then
  4043. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5-.05*math.cos(sine/4), math.sin(sine/8)/4) * CFrame.Angles(-math.sin(sine/8)/2.8, -math.sin(sine/8)/3, math.rad(10+2*math.cos(sine/4))), 0.2)
  4044. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5+.05*math.cos(sine/4), -math.sin(sine/8)/4)*CFrame.Angles(math.sin(sine/8)/2.8, -math.sin(sine/8)/3, math.rad(-10-2*math.cos(sine/4))), 0.2)
  4045. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/4)), math.rad(0), math.rad(0)),0.2)
  4046. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.07*math.cos(sine/4), 0) * CFrame.Angles(math.rad(-4+1*math.cos(sine/4)), 0, math.rad(0)), 0.2)
  4047. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.14*math.cos(sine/8)/2.8, -0.05 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + -math.sin(sine/8)/2.3, 0, 0), .4)
  4048. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.14*math.cos(sine/8)/2.8, -0.05 + -math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + math.sin(sine/8)/2.3, 0, 0), .4)
  4049. elseif stanceToggle == "Melee" and holy == true then
  4050. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4051. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4052. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  4053. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4054. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4055. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  4056. elseif stanceToggle == "Floating" then
  4057. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4058. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4059. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0), 0.4)
  4060. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-8*math.cos(sine/14)), 0, math.rad(-8)), 0.4)
  4061. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(1-9*math.cos(sine/13)), 0, math.rad(8)), 0.4)
  4062. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.2*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4063. elseif stanceToggle == "Grabbed" and holy ~= true then
  4064. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5, 0)*CFrame.Angles(math.rad(-20), math.rad(-20),math.rad(40)), 0.2)
  4065. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-30)), 0.3)
  4066. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/4)), math.rad(0), math.rad(0)),0.2)
  4067. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/4), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/4)), 0, math.rad(0)), 0.2)
  4068. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1-0.14*math.cos(sine/8)/2.8, -0.05 + math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + -math.sin(sine/8)/2.3, 0, 0), .4)
  4069. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1+0.14*math.cos(sine/8)/2.8, -0.05 + -math.sin(sine/8)/3.4) * CFrame.Angles(math.rad(-10) + math.sin(sine/8)/2.3, 0, 0), .4)
  4070. elseif stanceToggle == "Grabbed" and holy == true then
  4071. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5, 0)*CFrame.Angles(math.rad(-20), math.rad(-20),math.rad(40)), 0.2)
  4072. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(-30)), 0.3)
  4073. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0), 0.4)
  4074. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-8*math.cos(sine/14)), 0, math.rad(-8)), 0.4)
  4075. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(1-9*math.cos(sine/13)), 0, math.rad(8)), 0.4)
  4076. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4077. end
  4078. elseif animpose == "Running" then
  4079. if stanceToggle == "Normal" and holy ~= true then
  4080. change = 1
  4081. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles (math.rad(44), math.rad (0), math.rad(0)), 0.15)
  4082. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), -1) * CFrame.Angles(math.rad(- 80), math.rad(0), 0), 0.15)
  4083. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad (0), math.rad(50), math.rad(-40)), 0.15)
  4084. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(40)), 0.15)
  4085. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(- 10)), .15)
  4086. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(8), math.rad(0), math.rad(10)), .15)
  4087. elseif stanceToggle == "Normal" and holy == true then
  4088. change = 1
  4089. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(250),math.rad(350),math.rad(-30+2*math.cos(sine/14))), 0.2)--cfawm
  4090. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  4091. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  4092. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  4093. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  4094. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  4095. elseif stanceToggle == "Floating" then
  4096. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4097. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4098. hed.Weld.C0 = CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  4099. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  4100. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  4101. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1-0.4*math.cos(sine/14), -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  4102. end
  4103. end
  4104. end
  4105. end)
  4106.  
  4107. Spawn(function()
  4108. while wait() do
  4109. updateFly()
  4110. end
  4111. end)
  4112.  
  4113. Spawn(function()
  4114. while wait(.1) do
  4115. Magik()
  4116. end
  4117. end)
  4118.  
  4119. Spawn(function()
  4120. while wait(.1) do
  4121. Magik2()
  4122. end
  4123. end)
  4124.  
  4125. Spawn(function()
  4126. while wait(4) do
  4127. GroundWave()
  4128. end
  4129. end)
  4130.  
  4131.  
  4132.  
  4133.  
  4134.  
  4135. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  4136. --[[Part0 = Vector3 (Start pos)
  4137. Part1 = Vector3 (End pos)
  4138. Times = number (Amount of lightning parts)
  4139. Offset = number (Offset)
  4140. Color = color (brickcolor value)
  4141. Thickness = number (thickness)
  4142. Trans = number (transparency)
  4143. ]]--
  4144. local magz = (Part0 - Part1).magnitude
  4145. local curpos = Part0
  4146. local trz = {-Offset,Offset}
  4147. for i=1,Times do
  4148. local li = Instance.new("Part", torso)
  4149. li.Name = "Lightning"
  4150. li.TopSurface =0
  4151. li.Material = "Neon"
  4152. li.BottomSurface = 0
  4153. li.Anchored = true
  4154. li.Locked = true
  4155. li.Transparency = Trans or 0.4
  4156. li.BrickColor = BrickColor.new(Color)
  4157. li.formFactor = "Custom"
  4158. li.CanCollide = false
  4159. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  4160. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  4161. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  4162. if Times == i then
  4163. local magz2 = (curpos - Part1).magnitude
  4164. li.Size = Vector3.new(Thickness,Thickness,magz2)
  4165. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  4166. else
  4167. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  4168. end
  4169. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  4170. game.Debris:AddItem(li,.1)
  4171. end
  4172. end
  4173.  
  4174. BodyParts = {} -- Parts to emit lightning effects from
  4175. for _, v in pairs(char.Genkadda:GetChildren()) do
  4176. if v:IsA("Part") and v.Name ~= "HitBox" and v.Name ~= "Thingy" then
  4177. table.insert(BodyParts, v)
  4178. end
  4179. end
  4180.  
  4181. Bounding = {} -- Calculate the bounding boxes
  4182. for _, v in pairs(BodyParts) do
  4183. local temp = {X=nil, Y=nil, Z=nil}
  4184. temp.X = v.Size.X/2 * 10
  4185. temp.Y = v.Size.Y/2 * 10
  4186. temp.Z = v.Size.Z/2 * 10
  4187. Bounding[v.Name] = temp
  4188. --table.insert(Bounding, v.Name, temp)
  4189. end
  4190.  
  4191.  
  4192.  
  4193. while wait(lightspeed) do -- Emit the Lightning effects randomly, original was (1,10)/10
  4194.  
  4195. if Melee ~= true then --[[Make sure we only see the lightning when holding our sword]]
  4196.  
  4197. if holy == true then
  4198. lightspeed = math.random(0.1,0.2)
  4199. else
  4200. lightspeed = math.random(0.5,1)
  4201. end
  4202.  
  4203. local Body1 = BodyParts[math.random(#BodyParts)]
  4204. local Body2 = BodyParts[math.random(#BodyParts)]
  4205. local Pos1 = Vector3.new(
  4206. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  4207. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  4208. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  4209. )
  4210. local Pos2 = Vector3.new(
  4211. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  4212. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  4213. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  4214. )
  4215. local SPos1 = Body1.Position + Pos1
  4216. local SPos2 = Body2.Position + Pos2
  4217.  
  4218.  
  4219.  
  4220. Lightning(SPos1, SPos2, 4, 3, eColors[math.random(1,#eColors)], .2, .56)
  4221.  
  4222.  
  4223. end
  4224. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement