Guest User

Untitled

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