klops

Light Sword

Oct 28th, 2017
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 97.65 KB | None | 0 0
  1. Player=game:GetService("Players").LocalPlayer
  2. Character=Player.Character
  3. PlayerGui=Player.PlayerGui
  4. Backpack=Player.Backpack
  5. Torso=Character.Torso
  6. Head=Character.Head
  7. Humanoid=Character.Humanoid
  8. LeftArm=Character["Left Arm"]
  9. LeftLeg=Character["Left Leg"]
  10. RightArm=Character["Right Arm"]
  11. RightLeg=Character["Right Leg"]
  12. LS=Torso["Left Shoulder"]
  13. LH=Torso["Left Hip"]
  14. RS=Torso["Right Shoulder"]
  15. RH=Torso["Right Hip"]
  16. Face = Head.face
  17. Neck=Torso.Neck
  18. it=Instance.new
  19. attacktype=1
  20. vt=Vector3.new
  21. cf=CFrame.new
  22. euler=CFrame.fromEulerAnglesXYZ
  23. angles=CFrame.Angles
  24. cloaked=false
  25. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  26. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  27. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  28. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  29. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  30. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  31. RootPart=Character.HumanoidRootPart
  32. RootJoint=RootPart.RootJoint
  33. RootCF=euler(-1.57,0,3.14)
  34. attack = false
  35. attackdebounce = false
  36. deb=false
  37. equipped=true
  38. hand=false
  39. MMouse=nil
  40. combo=0
  41. mana=0
  42. trispeed=.2
  43. attackmode='none'
  44. local idle=0
  45. local Anim="Idle"
  46. local Effects={}
  47. local gun=false
  48. local shoot=false
  49. player=nil
  50. mana=0
  51. cam = workspace.CurrentCamera
  52. ZTarget = nil
  53. RocketTarget = nil
  54. local m = Instance.new("Model",Character)
  55. m.Name = "WeaponModel"
  56.  
  57. mouse=Player:GetMouse()
  58. --save shoulders
  59. RSH, LSH=nil, nil
  60. --welds
  61. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  62. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  63. LH=Torso["Left Hip"]
  64. RH=Torso["Right Hip"]
  65. TorsoColor=Torso.BrickColor
  66. function NoOutline(Part)
  67. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  68. end
  69. player=Player
  70. ch=Character
  71. RSH=ch.Torso["Right Shoulder"]
  72. LSH=ch.Torso["Left Shoulder"]
  73. --
  74. RSH.Parent=nil
  75. LSH.Parent=nil
  76. --
  77. RW.Name="Right Shoulder"
  78. RW.Part0=ch.Torso
  79. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  80. RW.C1=cf(0, 0.5, 0)
  81. RW.Part1=ch["Right Arm"]
  82. RW.Parent=ch.Torso
  83. --
  84. LW.Name="Left Shoulder"
  85. LW.Part0=ch.Torso
  86. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  87. LW.C1=cf(0, 0.5, 0)
  88. LW.Part1=ch["Left Arm"]
  89. LW.Parent=ch.Torso
  90.  
  91. function swait(num)
  92. if num==0 or num==nil then
  93. game:service'RunService'.Stepped:wait(0)
  94. else
  95. for i=0,num do
  96. game:service'RunService'.Stepped:wait(0)
  97. end
  98. end
  99. end
  100.  
  101. function nooutline(part)
  102. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  103. end
  104.  
  105. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  106. local fp=it("Part")
  107. fp.formFactor=formfactor
  108. fp.Parent=parent
  109. fp.Reflectance=reflectance
  110. fp.Transparency=transparency
  111. fp.CanCollide=false
  112. fp.Locked=true
  113. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  114. fp.Name=name
  115. fp.Size=size
  116. fp.Position=Character.Torso.Position
  117. nooutline(fp)
  118. fp.Material=material
  119. fp:BreakJoints()
  120. return fp
  121. end
  122.  
  123. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  124. local mesh=it(Mesh)
  125. mesh.Parent=part
  126. if Mesh=="SpecialMesh" then
  127. mesh.MeshType=meshtype
  128. mesh.MeshId=meshid
  129. end
  130. mesh.Offset=offset
  131. mesh.Scale=scale
  132. return mesh
  133. end
  134.  
  135. function weld(parent,part0,part1,c0,c1)
  136. local weld=it("Weld")
  137. weld.Parent=parent
  138. weld.Part0=part0
  139. weld.Part1=part1
  140. weld.C0=c0
  141. weld.C1=c1
  142. return weld
  143. end
  144.  
  145.  
  146. local function CFrameFromTopBack(at, top, back)
  147. local right = top:Cross(back)
  148. return CFrame.new(at.x, at.y, at.z,
  149. right.x, top.x, back.x,
  150. right.y, top.y, back.y,
  151. right.z, top.z, back.z)
  152. end
  153.  
  154. function Triangle(a, b, c)
  155. local edg1 = (c-a):Dot((b-a).unit)
  156. local edg2 = (a-b):Dot((c-b).unit)
  157. local edg3 = (b-c):Dot((a-c).unit)
  158. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  159. a, b, c = a, b, c
  160. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  161. a, b, c = b, c, a
  162. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  163. a, b, c = c, a, b
  164. else
  165. assert(false, "unreachable")
  166. end
  167.  
  168. local len1 = (c-a):Dot((b-a).unit)
  169. local len2 = (b-a).magnitude - len1
  170. local width = (a + (b-a).unit*len1 - c).magnitude
  171.  
  172. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  173.  
  174. local list = {}
  175.  
  176. local TrailColor = ("Navy blue")
  177.  
  178. if len1 > 0.01 then
  179. local w1 = Instance.new('WedgePart', m)
  180. game:GetService("Debris"):AddItem(w1,5)
  181. w1.Material = "SmoothPlastic"
  182. w1.FormFactor = 'Custom'
  183. w1.BrickColor = BrickColor.new(TrailColor)
  184. w1.Transparency = 0
  185. w1.Reflectance = 0
  186. w1.Material = "Neon"
  187. w1.CanCollide = false
  188. NoOutline(w1)
  189. local sz = Vector3.new(0.2, width, len1)
  190. w1.Size = sz
  191. local sp = Instance.new("SpecialMesh",w1)
  192. sp.MeshType = "Wedge"
  193. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  194. w1:BreakJoints()
  195. w1.Anchored = true
  196. w1.Parent = workspace
  197. w1.Transparency = 0.7
  198. table.insert(Effects,{w1,"Disappear",.01})
  199. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  200. table.insert(list,w1)
  201. end
  202.  
  203. if len2 > 0.01 then
  204. local w2 = Instance.new('WedgePart', m)
  205. game:GetService("Debris"):AddItem(w2,5)
  206. w2.Material = "SmoothPlastic"
  207. w2.FormFactor = 'Custom'
  208. w2.BrickColor = BrickColor.new(TrailColor)
  209. w2.Transparency = 0
  210. w2.Reflectance = 0
  211. w2.Material = "Neon"
  212. w2.CanCollide = false
  213. NoOutline(w2)
  214. local sz = Vector3.new(0.2, width, len2)
  215. w2.Size = sz
  216. local sp = Instance.new("SpecialMesh",w2)
  217. sp.MeshType = "Wedge"
  218. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  219. w2:BreakJoints()
  220. w2.Anchored = true
  221. w2.Parent = workspace
  222. w2.Transparency = 0.7
  223. table.insert(Effects,{w2,"Disappear",.01})
  224. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  225. table.insert(list,w2)
  226. end
  227. return unpack(list)
  228. end
  229.  
  230.  
  231. so = function(id,par,vol,pit)
  232. coroutine.resume(coroutine.create(function()
  233. local sou = Instance.new("Sound",par or workspace)
  234. sou.Volume=vol
  235. sou.Pitch=pit or 1
  236. sou.SoundId=id
  237. swait()
  238. sou:play()
  239. game:GetService("Debris"):AddItem(sou,6)
  240. end))
  241. end
  242.  
  243. function clerp(a,b,t)
  244. local qa = {QuaternionFromCFrame(a)}
  245. local qb = {QuaternionFromCFrame(b)}
  246. local ax, ay, az = a.x, a.y, a.z
  247. local bx, by, bz = b.x, b.y, b.z
  248. local _t = 1-t
  249. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  250. end
  251.  
  252. function QuaternionFromCFrame(cf)
  253. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  254. local trace = m00 + m11 + m22
  255. if trace > 0 then
  256. local s = math.sqrt(1 + trace)
  257. local recip = 0.5/s
  258. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  259. else
  260. local i = 0
  261. if m11 > m00 then
  262. i = 1
  263. end
  264. if m22 > (i == 0 and m00 or m11) then
  265. i = 2
  266. end
  267. if i == 0 then
  268. local s = math.sqrt(m00-m11-m22+1)
  269. local recip = 0.5/s
  270. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  271. elseif i == 1 then
  272. local s = math.sqrt(m11-m22-m00+1)
  273. local recip = 0.5/s
  274. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  275. elseif i == 2 then
  276. local s = math.sqrt(m22-m00-m11+1)
  277. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  278. end
  279. end
  280. end
  281.  
  282. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  283. local xs, ys, zs = x + x, y + y, z + z
  284. local wx, wy, wz = w*xs, w*ys, w*zs
  285. local xx = x*xs
  286. local xy = x*ys
  287. local xz = x*zs
  288. local yy = y*ys
  289. local yz = y*zs
  290. local zz = z*zs
  291. return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy))
  292. end
  293.  
  294. function QuaternionSlerp(a, b, t)
  295. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  296. local startInterp, finishInterp;
  297. if cosTheta >= 0.0001 then
  298. if (1 - cosTheta) > 0.0001 then
  299. local theta = math.acos(cosTheta)
  300. local invSinTheta = 1/math.sin(theta)
  301. startInterp = math.sin((1-t)*theta)*invSinTheta
  302. finishInterp = math.sin(t*theta)*invSinTheta
  303. else
  304. startInterp = 1-t
  305. finishInterp = t
  306. end
  307. else
  308. if (1+cosTheta) > 0.0001 then
  309. local theta = math.acos(-cosTheta)
  310. local invSinTheta = 1/math.sin(theta)
  311. startInterp = math.sin((t-1)*theta)*invSinTheta
  312. finishInterp = math.sin(t*theta)*invSinTheta
  313. else
  314. startInterp = t-1
  315. finishInterp = t
  316. end
  317. end
  318. return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp
  319. end
  320.  
  321. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  322. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  323. end
  324.  
  325. Damagefunc=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  326. if hit.Parent==nil then
  327. return
  328. end
  329. local h=hit.Parent:FindFirstChild("Humanoid")
  330. for _,v in pairs(hit.Parent:children()) do
  331. if v:IsA("Humanoid") then
  332. h=v
  333. end
  334. end
  335. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  336. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  337. end
  338. if hit.Parent.className=="Hat" then
  339. hit=hit.Parent.Parent:findFirstChild("Head")
  340. end
  341. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  342. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  343. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  344. return
  345. end]]
  346. -- hs(hit,1.2)
  347. local c=Instance.new("ObjectValue")
  348. c.Name="creator"
  349. c.Value=game:service("Players").LocalPlayer
  350. c.Parent=h
  351. game:GetService("Debris"):AddItem(c,.5)
  352. local Damage=math.random(minim,maxim)
  353. -- h:TakeDamage(Damage)
  354. local blocked=false
  355. local block=hit.Parent:findFirstChild("Block")
  356. if block~=nil then
  357. print(block.className)
  358. if block.className=="NumberValue" then
  359. if block.Value>0 then
  360. blocked=true
  361. if decreaseblock==nil then
  362. block.Value=block.Value-1
  363. end
  364. end
  365. end
  366. if block.className=="IntValue" then
  367. if block.Value>0 then
  368. blocked=true
  369. if decreaseblock~=nil then
  370. block.Value=block.Value-1
  371. end
  372. end
  373. end
  374. end
  375. if blocked==false then
  376. -- h:TakeDamage(Damage)
  377. h.Health=h.Health-Damage
  378. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  379. else
  380. h.Health=h.Health-(Damage/2)
  381. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Bright blue").Color)
  382. end
  383. if Type=="Knockdown" then
  384. local hum=hit.Parent.Humanoid
  385. hum.PlatformStand=true
  386. coroutine.resume(coroutine.create(function(HHumanoid)
  387. swait(1)
  388. HHumanoid.PlatformStand=false
  389. end),hum)
  390. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  391. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  392. local bodvol=Instance.new("BodyVelocity")
  393. bodvol.velocity=angle*knockback
  394. bodvol.P=5000
  395. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  396. bodvol.Parent=hit
  397. local rl=Instance.new("BodyAngularVelocity")
  398. rl.P=3000
  399. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  400. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  401. rl.Parent=hit
  402. game:GetService("Debris"):AddItem(bodvol,.5)
  403. game:GetService("Debris"):AddItem(rl,.5)
  404. elseif Type=="Normal" then
  405. local vp=Instance.new("BodyVelocity")
  406. vp.P=500
  407. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  408. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  409. if KnockbackType==1 then
  410. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  411. elseif KnockbackType==2 then
  412. vp.velocity=Property.CFrame.lookVector*knockback
  413. end
  414. if knockback>0 then
  415. vp.Parent=hit.Parent.Torso
  416. end
  417. game:GetService("Debris"):AddItem(vp,.5)
  418. elseif Type=="Up" then
  419. local bodyVelocity=Instance.new("BodyVelocity")
  420. bodyVelocity.velocity=vt(0,60,0)
  421. bodyVelocity.P=5000
  422. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  423. bodyVelocity.Parent=hit
  424. game:GetService("Debris"):AddItem(bodyVelocity,1)
  425. local rl=Instance.new("BodyAngularVelocity")
  426. rl.P=3000
  427. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  428. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  429. rl.Parent=hit
  430. game:GetService("Debris"):AddItem(rl,.5)
  431. elseif Type=="Snare" then
  432. local bp=Instance.new("BodyPosition")
  433. bp.P=2000
  434. bp.D=100
  435. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  436. bp.position=hit.Parent.Torso.Position
  437. bp.Parent=hit.Parent.Torso
  438. game:GetService("Debris"):AddItem(bp,1)
  439. elseif Type=="Target" then
  440. local Targetting = false
  441. if Targetting==false then
  442. ZTarget=hit.Parent.Torso
  443. coroutine.resume(coroutine.create(function(Part)
  444. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  445. swait(5)
  446. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  447. end),ZTarget)
  448. local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  449. local targetgui=Instance.new("BillboardGui")
  450. targetgui.Parent=ZTarget
  451. targetgui.Size=UDim2.new(10,100,10,100)
  452. local targ=Instance.new("ImageLabel")
  453. targ.Parent=targetgui
  454. targ.BackgroundTransparency=1
  455. targ.Image="rbxassetid://4834067"
  456. targ.Size=UDim2.new(1,0,1,0)
  457. cam.CameraType="Scriptable"
  458. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  459. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  460. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  461. Targetting=true
  462. RocketTarget=ZTarget
  463. for i=1,Property do
  464. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  465. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  466. swait()
  467. end
  468. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  469. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  470. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  471. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  472. end
  473. Targetting=false
  474. RocketTarget=nil
  475. targetgui.Parent=nil
  476. cam.CameraType="Custom"
  477. end
  478. end
  479. local debounce=Instance.new("BoolValue")
  480. debounce.Name="DebounceHit"
  481. debounce.Parent=hit.Parent
  482. debounce.Value=true
  483. game:GetService("Debris"):AddItem(debounce,Delay)
  484. c=Instance.new("ObjectValue")
  485. c.Name="creator"
  486. c.Value=Player
  487. c.Parent=h
  488. game:GetService("Debris"):AddItem(c,.5)
  489. end
  490. end
  491.  
  492.  
  493. function ShowDamage(Pos, Text, Time, Color)
  494. local Rate = (1 / 30)
  495. local Pos = (Pos or Vector3.new(0, 0, 0))
  496. local Text = (Text or "")
  497. local Time = (Time or 2)
  498. local Color = (Color or Color3.new(1, 0, 0))
  499. local EffectPart = part("Custom",workspace,"SmoothPlastic",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
  500. EffectPart.Anchored = true
  501. local BillboardGui = Instance.new("BillboardGui")
  502. BillboardGui.Size = UDim2.new(3, 0, 3, 0)
  503. BillboardGui.Adornee = EffectPart
  504. local TextLabel = Instance.new("TextLabel")
  505. TextLabel.BackgroundTransparency = 1
  506. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  507. TextLabel.Text = Text
  508. TextLabel.TextColor3 = Color
  509. TextLabel.TextScaled = true
  510. TextLabel.Font = Enum.Font.ArialBold
  511. TextLabel.Parent = BillboardGui
  512. BillboardGui.Parent = EffectPart
  513. game.Debris:AddItem(EffectPart, (Time + 0.1))
  514. EffectPart.Parent = game:GetService("Workspace")
  515. Delay(0, function()
  516. local Frames = (Time / Rate)
  517. for Frame = 1, Frames do
  518. wait(Rate)
  519. local Percent = (Frame / Frames)
  520. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  521. TextLabel.TextTransparency = Percent
  522. end
  523. if EffectPart and EffectPart.Parent then
  524. EffectPart:Destroy()
  525. end
  526. end)
  527. end
  528.  
  529. Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Handle",Vector3.new(0.226392448, 3.47665358, 0.230657101))
  530. HandleWeld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999994874, 0, 0, 0, 1),CFrame.new(-1.00372314, 0.134414673, 0.0259094238, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  531. mesh("BlockMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.794521511, 1, 1.00999999))
  532. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.233241379, 0.794054151, 0.476820409))
  533. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.000305175781, -9.53594971, 0.245666504, -0.999203622, 0.0399030223, -5.10000282e-005, 0.000446393824, 0.00990002323, -0.999950886, -0.0399005562, -0.999154508, -0.00990995113))
  534. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  535. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  536. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Hitbox",Vector3.new(0.964624286, 7.02056265, 0.230657101))
  537. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.00939941406, -5.6335907, 0.000305175781, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  538. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.233241379, 0.791469693, 0.486511916))
  539. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.00204467773, -9.54089355, 0.226913452, 0.999200344, -0.0399830155, 0.000214000072, 0.000572016928, 0.00894299801, -0.999959886, 0.0399794951, 0.999160349, 0.00895871688))
  540. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  541. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  542. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 3.65382504, 0.230657101))
  543. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.000137329102, 0.0888366699, 3.05175781e-005, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  544. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.993151784, 1, 1))
  545. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.266838193, 0.230657101))
  546. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(2.25485229, -0.627677917, -0.00048828125, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  547. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194063991, 1, 1.03999996))
  548. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.246163338, 0.248747498, 0.230657101))
  549. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.28954315, -1.97512817, -0.000610351563, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  550. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  551. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.246163338, 0.248747498, 0.230657101))
  552. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.06056976, -1.74359131, -0.000579833984, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  553. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  554. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.246163338, 0.248747498, 0.230657101))
  555. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.97199249, -1.29611206, -0.000122070313, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  556. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  557. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.246163338, 0.248747498, 0.230657101))
  558. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.74330902, -1.06454468, -0.000122070313, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  559. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  560. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.346954614, 0.329509705, 0.230657101))
  561. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.479019165, -2.147995, 0.000274658203, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  562. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  563. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.580842137, 0.22639285, 0.230657101))
  564. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.922775269, -2.28977966, 0.000366210938, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  565. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.174086183, 1.00999999))
  566. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  567. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.0993881226, -0.0986938477, 0, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  568. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  569. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.255854517, 0.230657101))
  570. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.74230957, -2.36911011, -0.000823974609, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  571. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  572. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.255854517, 0.230657101))
  573. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.516242981, 2.36096191, 0.000366210938, 0.0286370032, 0.700032055, 0.713537037, -0.0291169863, -0.71294266, 0.700617492, 0.999165773, -0.0408396348, -3.37182901e-005))
  574. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  575. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  576. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.546989441, 0.547393799, 0.000213623047, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  577. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  578. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  579. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.165649414, 0.166137695, 0.000122070313, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  580. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  581. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  582. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.293708801, 0.294067383, 0.000122070313, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  583. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  584. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.266838193, 0.230657101))
  585. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.534851074, -2.35520935, -0.000701904297, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  586. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194063991, 1, 1.03999996))
  587. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  588. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.0378341675, 0.0383300781, 0, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  589. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  590. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.266838193, 0.230657101))
  591. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.47576904, 0.628616333, -0.000671386719, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  592. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194063991, 1, 1.03999996))
  593. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  594. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.421569824, 0.422119141, 0.000152587891, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  595. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  596. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.255854517, 0.230657101))
  597. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.46892548, -0.648162842, 0.000244140625, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  598. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  599. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 3.08837771, 0.230657101))
  600. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.024810791, -0.07862854, 6.10351563e-005, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  601. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.235160127, 1, 1.01999998))
  602. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  603. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.501152039, -0.500610352, -0.000183105469, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  604. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  605. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  606. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.757072449, -0.756530762, -0.000213623047, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  607. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  608. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  609. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.629348755, -0.628631592, -0.000152587891, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  610. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  611. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  612. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.373474121, -0.37286377, -6.10351563e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  613. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  614. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  615. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.803016663, 0.803192139, 0.000244140625, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  616. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  617. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  618. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.247932434, -0.247436523, -3.05175781e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  619. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  620. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  621. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.894340515, -0.893615723, -0.000244140625, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  622. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  623. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  624. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.03632355, 1.03488159, 0.000427246094, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  625. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  626. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.346954614, 0.329509705, 0.230657101))
  627. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.35247803, -1.35478973, -0.000549316406, 0.028436996, 0.712727964, -0.700863957, 0.0274780076, 0.700325191, 0.713294923, 0.999217868, -0.0395423099, 0.000330800423))
  628. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  629. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  630. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.26455688, 1.26376343, 0.000793457031, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  631. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.479452342, 0.470889479, 1.05999994))
  632. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  633. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.28997803, -1.29336548, -0.00048828125, 0.028436996, 0.712727964, -0.700863957, 0.0274780076, 0.700325191, 0.713294923, 0.999217868, -0.0395423099, 0.000330800423))
  634. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.03999996))
  635. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  636. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.924201965, 0.924560547, 0.000335693359, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  637. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  638. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  639. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.33953857, -1.34622955, -0.00048828125, 0.028436996, 0.712727964, -0.700863957, 0.0274780076, 0.700325191, 0.713294923, 0.999217868, -0.0395423099, 0.000330800423))
  640. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.01999998))
  641. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  642. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.19348145, 1.19529724, 0.000701904297, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  643. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.05999994))
  644. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.346954614, 0.329509705, 0.230657101))
  645. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.29403687, -1.29959869, -0.000518798828, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  646. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  647. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  648. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.677398682, 0.67791748, 0.000244140625, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  649. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  650. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.266838193, 0.230657101))
  651. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.756072998, 2.35659027, 0.00143432617, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  652. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194063991, 1, 1.03999996))
  653. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.255854517, 0.230657101))
  654. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(2.24343872, 0.64074707, -0.000305175781, 0.0286370032, 0.700032055, 0.713537037, -0.0291169863, -0.71294266, 0.700617492, 0.999165773, -0.0408396348, -3.37182901e-005))
  655. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  656. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  657. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.30319214, -1.29423523, -0.00048828125, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  658. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.01999998))
  659. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  660. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.52413177, -1.35296631, -0.000274658203, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  661. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.693493783, 0.14269343, 1.03999996))
  662. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.346954614, 0.329509705, 0.230657101))
  663. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.17831421, 1.18121338, 0.000762939453, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  664. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  665. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  666. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.53320313, 1.3394928, 0.000274658203, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  667. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.693493783, 0.14269343, 1.03999996))
  668. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.233241379, 0.791469693, 0.255854875))
  669. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.000610351563, -2.57305908, 0.119415283, 0.999200344, -0.0399830155, 0.000214000072, 0.000572016928, 0.00894299801, -0.999959886, 0.0399794951, 0.999160349, 0.00895871688))
  670. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  671. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  672. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  673. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.19140625, 1.18958282, 0.000732421875, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  674. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.01999998))
  675. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  676. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.39938354, 0.596641541, -0.000640869141, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  677. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.556507409, 0.582190752, 1.03999996))
  678. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  679. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.49490356, 1.48503113, 0.000427246094, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  680. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.03999996))
  681. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.580842137, 0.22639285, 0.230657101))
  682. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.928939819, -2.29045105, -0.000183105469, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  683. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.174086183, 1.00999999))
  684. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  685. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.616607666, 2.38282013, 0.00149536133, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  686. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.556507409, 0.582190752, 1.03999996))
  687. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.233241379, 0.791469693, 0.255854875))
  688. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-9.15527344e-005, -2.5688324, 0.132644653, -0.999203622, 0.0399030223, -5.10000282e-005, 0.000446393824, 0.00990002323, -0.999950886, -0.0399005562, -0.999154508, -0.00990995113))
  689. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  690. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  691. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  692. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.36398315, -1.35218811, -0.00048828125, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  693. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.03999996))
  694. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  695. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.33740234, 1.33893585, 0.000823974609, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  696. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.05999994))
  697. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.39379311, 0.22639285, 0.230657101))
  698. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.00364685059, -2.21582031, 9.15527344e-005, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  699. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.465181798, 1.00999999))
  700. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 2.25423455, 0.230657101))
  701. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.08901978, -0.00997924805, -0.000244140625, 0.000237, 0.00926900003, -0.999957025, 0.0403669998, 0.999141991, 0.00927101262, 0.999184906, -0.040367458, -0.000137365059))
  702. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  703. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  704. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.14356995, -1.14282227, -0.000274658203, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  705. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  706. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.255854517, 0.230657101))
  707. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.64407349, 1.51643372, 0.000427246094, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  708. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  709. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.346954614, 0.329509705, 0.230657101))
  710. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.483734131, -2.14515686, -3.05175781e-005, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005))
  711. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  712. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 2.25294209, 0.230657101))
  713. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.14993286, -0.00918579102, -0.000244140625, 0.000237, 0.00926900003, -0.999957025, 0.0403669998, 0.999141991, 0.00927101262, 0.999184906, -0.040367458, -0.000137365059))
  714. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.188356221, 1, 1.03999996))
  715. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.256500632, 0.230657101))
  716. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.63208008, -1.53475952, -0.000396728516, -0.0282179993, -0.699832976, -0.713748991, 0.0284940023, 0.713180065, -0.700401664, 0.999195635, -0.0401014946, -0.000183471566))
  717. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.194063991, 1, 1.03999996))
  718. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  719. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.018013, -1.01739502, -0.000335693359, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  720. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.436644375, 0.430934638, 1.01999998))
  721. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  722. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.24066162, 1.24261475, 0.000732421875, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  723. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.03999996))
  724. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  725. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.247741699, -0.247131348, -3.05175781e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  726. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  727. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  728. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.500968933, -0.500488281, -0.000152587891, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  729. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  730. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  731. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.0379333496, 0.0385742188, 6.10351563e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  732. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  733. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  734. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.421897888, 0.422241211, 0.000213623047, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  735. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  736. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  737. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.293830872, 0.294342041, 9.15527344e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  738. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  739. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  740. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.547264099, 0.547607422, 0.000183105469, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  741. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  742. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  743. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.0990753174, -0.0984802246, 0, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  744. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  745. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  746. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.166122437, 0.166412354, 3.05175781e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  747. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  748. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  749. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.629104614, -0.628387451, -0.000122070313, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  750. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  751. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  752. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.894119263, -0.893432617, -0.000183105469, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  753. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  754. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  755. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.756942749, -0.756286621, -0.000213623047, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  756. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  757. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  758. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.373260498, -0.372619629, -6.10351563e-005, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  759. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  760. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  761. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.677711487, 0.678039551, 0.000213623047, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  762. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  763. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  764. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.924423218, 0.924835205, 0.000305175781, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  765. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  766. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  767. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(0.803123474, 0.803527832, 0.000305175781, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  768. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  769. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  770. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.03664398, 1.03518677, 0.000366210938, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  771. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  772. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  773. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.01774597, -1.01708984, -0.000183105469, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  774. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  775. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Smoky grey","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  776. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.14334869, -1.14257813, -0.000305175781, -0.0280899964, -0.699775934, -0.713809967, 0.0283620134, 0.713246346, -0.700339496, 0.999203026, -0.039917618, -0.000188032849))
  777. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.322488964, 0.316779464, 1.02999997))
  778. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  779. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.660736084, 2.35415649, 0.00143432617, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  780. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.996005654, 0.970318258, 1.02999997))
  781. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  782. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.897750854, 1.55277252, 0.000518798828, -0.035006009, -0.869685173, 0.492364109, -0.0200600121, -0.49195534, -0.870389342, 0.99918586, -0.0403456874, -0.000224501884))
  783. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.04999995))
  784. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  785. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.41744995, 0.579910278, -0.000671386719, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  786. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.556507409, 0.582190752, 1.04999995))
  787. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  788. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.54940796, 0.893287659, 0.00158691406, -0.0199290011, -0.50723207, 0.86157912, -0.0354949981, -0.86084801, -0.507622659, 0.999171138, -0.0406981595, -0.00084836164))
  789. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.04999995))
  790. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  791. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.31561279, -1.31996918, -0.000549316406, 0.028436996, 0.712727964, -0.700863957, 0.0274780076, 0.700325191, 0.713294923, 0.999217868, -0.0395423099, 0.000330800423))
  792. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.02999997))
  793. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.289451867, 0.287513345, 0.230657101))
  794. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.35595703, -1.35126495, -0.000549316406, 0.028436996, 0.712727964, -0.700863957, 0.0274780076, 0.700325191, 0.713294923, 0.999217868, -0.0395423099, 0.000330800423))
  795. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  796. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.289451867, 0.287513345, 0.230657101))
  797. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.17471313, 1.18474579, 0.000701904297, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  798. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  799. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  800. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.464355469, 1.72952271, 0.000793457031, -0.0386740044, -0.967418134, 0.250213027, -0.0104150195, -0.249996483, -0.96819073, 0.999197662, -0.0400497839, -0.000407313666))
  801. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.04999995))
  802. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  803. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.36499023, 0.63104248, -0.000671386719, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  804. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.996005654, 0.970318258, 1.02999997))
  805. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.289451867, 0.287513345, 0.230657101))
  806. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.2975769, -1.29597473, -0.000518798828, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  807. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1.00999999))
  808. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  809. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.26565552, -1.26226807, -0.000457763672, 0.028436996, 0.712727964, -0.700863957, 0.0274780076, 0.700325191, 0.713294923, 0.999217868, -0.0395423099, 0.000330800423))
  810. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.37671268, 0.368149936, 1.07000005))
  811. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  812. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.598419189, 2.40036011, 0.00152587891, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  813. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.556507409, 0.582190752, 1.04999995))
  814. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  815. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.73196411, 0.462905884, 0.00189208984, -0.00988499634, -0.267072916, 0.963625669, -0.0393939838, -0.962820649, -0.267253906, 0.999174893, -0.0406028554, -0.00100358657))
  816. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.04999995))
  817. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  818. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.26574707, 1.26467133, 0.000793457031, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  819. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.04999995))
  820. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  821. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-0.00109863281, 1.79016113, 0.000396728516, -0.0403799973, -0.999145865, -0.0087839989, 0.000205993623, 0.00878284313, -0.999961495, 0.999184489, -0.0403802469, -0.000148833482))
  822. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.593607783, 0.585044622, 1.04999995))
  823. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  824. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.21511841, 1.21607971, 0.000732421875, -0.028531, -0.712845027, 0.700740993, -0.0285710189, -0.700158417, -0.713415682, 0.999184489, -0.0403753445, -0.000390489848))
  825. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.02999997))
  826. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  827. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.51022339, 1.49951172, 0.00048828125, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  828. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.996005654, 0.970318258, 1.02999997))
  829. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  830. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.47467041, 1.4640274, 0.000396728516, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  831. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.996005654, 0.970318258, 1.02999997))
  832. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 2.25100422, 0.230657101))
  833. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-2.11976624, -0.0090637207, -0.000213623047, 0.000237, 0.00926900003, -0.999957025, 0.0403669998, 0.999141991, 0.00927101262, 0.999184906, -0.040367458, -0.000137365059))
  834. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0913241953, 1, 1.02999997))
  835. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  836. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(-1.39797974, 1.38890839, 0.000366210938, 0.0284409914, 0.71268177, -0.700910747, 0.0276640262, 0.700364709, 0.713249028, 0.999212623, -0.0396755189, 0.000203420335))
  837. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.722032726, 0.710615277, 1.04999995))
  838. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.226392448, 0.22639285, 0.230657101))
  839. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, -0.040218018, -0.999149501, -0.00911000464, 0.000409995089, 0.00910087768, -0.999958515, 0.999190867, -0.0402200818, 4.36271257e-005),CFrame.new(1.33560181, -1.32666016, -0.000457763672, -0.0287740082, -0.712836206, 0.700740159, -0.0286889896, -0.700152695, -0.713416636, 0.999174237, -0.0406313837, -0.000304350368))
  840. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.878996372, 0.870432496, 1.02999997))
  841.  
  842. function MagniDamage(Hit,Part,magni,mindam,maxdam,knock,Type)
  843. for _,c in pairs(workspace:children()) do
  844. local hum=c:findFirstChild("Humanoid")
  845. if hum~=nil then
  846. local head=c:findFirstChild("Torso")
  847. if head~=nil then
  848. local targ=head.Position-Part.Position
  849. local mag=targ.magnitude
  850. if mag<=magni and c.Name~=Player.Name then
  851. Damagefunc(Hit,head,mindam,maxdam,knock,Type,RootPart,.2,1,3)
  852. end
  853. end
  854. end
  855. end
  856. end
  857.  
  858. function magicring(brickcolor,cframe,x1,y1,z1,x3,y3,z3)
  859. local prt=part(3,workspace,"SmoothPlastic",0,0,brickcolor,"Effect",Vector3.new(0.5,0.5,0.5))
  860. prt.Anchored=true
  861. prt.CFrame=cframe
  862. prt.Touched:connect(function(hit) end)
  863. local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=3270017",Vector3.new(0,0,0),Vector3.new(x1,y1,z1))
  864. local ref = Instance.new("Part",workspace)
  865. ref.Anchored = true
  866. ref.Size = Vector3.new(5,5,5)
  867. ref.CFrame = Torso.CFrame*CFrame.new(-5,0,0)
  868. ref.CanCollide = false
  869. ref.Transparency = 1
  870. MagniDamage(prt,ref,10,5,10,0,"Knockdown")
  871. coroutine.resume(coroutine.create(function(Part,Mesh)
  872. for i=0,1,0.03 do
  873. wait()
  874. Part.CFrame=Part.CFrame
  875. Part.Transparency=i
  876. Mesh.Scale=Mesh.Scale+Vector3.new(x3,y3,z3)
  877. end
  878. Part.Parent=nil
  879. ref.Parent = nil
  880. end),prt,msh)
  881. end
  882.  
  883. function attackone()
  884. attack = true
  885. for i = 0,1,0.1 do
  886. swait()
  887. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  888. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  889. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(10)),.3)
  890. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  891. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  892. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  893. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  894. end
  895. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  896. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  897. for i = 0,1,0.1 do
  898. swait()
  899. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  900. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  901. local h = 5
  902. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  903. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  904. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  905. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  906. scfr = blcf
  907. elseif not scfr then
  908. scfr = blcf
  909. end
  910. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  911. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  912. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-90), math.rad(-130)),.3)
  913. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-20)),.3)
  914. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  915. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  916. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.3)
  917. end
  918. for i = 0,1,0.1 do
  919. swait()
  920. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  921. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  922. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(90), math.rad(50)),.3)
  923. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)),.3)
  924. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  925. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  926. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  927. end
  928. so("http://roblox.com/asset/?id=199146359",Hitbox,1,1)
  929. for i = 0,1,0.1 do
  930. swait()
  931. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  932. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  933. local h = 5
  934. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  935. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  936. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  937. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  938. scfr = blcf
  939. elseif not scfr then
  940. scfr = blcf
  941. end
  942. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  943. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(50)),.3)
  944. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(130)),.3)
  945. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)),.3)
  946. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  947. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  948. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-40),math.rad(0),math.rad(0)),.3)
  949. end
  950. attack = false
  951. con:disconnect()
  952. scfr = nil
  953. end
  954.  
  955. function attacktwo()
  956. attack = true
  957. for i = 0,1,0.1 do
  958. swait()
  959. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  960. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  961. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-90), math.rad(-90)),.3)
  962. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  963. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  964. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  965. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  966. end
  967. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  968. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  969. for i = 0,1,0.1 do
  970. swait()
  971. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  972. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  973. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-190), math.rad(-90)),.3)
  974. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  975. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  976. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  977. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.3)
  978. end
  979. for i = 0,1,0.1 do
  980. swait()
  981. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  982. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  983. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(120), math.rad(90)),.3)
  984. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  985. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  986. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  987. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  988. end
  989. so("http://roblox.com/asset/?id=199150686",Hitbox,1,.9)
  990. for i = 0,1,0.1 do
  991. swait()
  992. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  993. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  994. local h = 5
  995. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  996. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  997. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  998. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  999. scfr = blcf
  1000. elseif not scfr then
  1001. scfr = blcf
  1002. end
  1003. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1004. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1005. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-20), math.rad(90)),.3)
  1006. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1007. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1008. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1009. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1010. end
  1011. for i = 0,1,0.1 do
  1012. swait()
  1013. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1014. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  1015. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(150), math.rad(0), math.rad(0)),.3)
  1016. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1017. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1018. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1019. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1020. end
  1021. so("http://roblox.com/asset/?id=199146359",Hitbox,1,.9)
  1022. for i = 0,1,0.1 do
  1023. swait()
  1024. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1025. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1026. local h = 5
  1027. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1028. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1029. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1030. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1031. scfr = blcf
  1032. elseif not scfr then
  1033. scfr = blcf
  1034. end
  1035. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(20)),.3)
  1036. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-20)),.3)
  1037. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)),.3)
  1038. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-30)),.3)
  1039. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1040. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1041. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1042. end
  1043. attack = false
  1044. con:disconnect()
  1045. scfr = nil
  1046. end
  1047.  
  1048. function Spin()
  1049. attack=true
  1050. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1051. for i=0,1,0.1 do
  1052. swait()
  1053. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1054. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1055. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(50), math.rad(120)),.3)
  1056. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-50)),.3)
  1057. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1058. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1059. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1060. end
  1061. Humanoid.Jump = true
  1062. for i=0,1,1 do
  1063. so("http://roblox.com/asset/?id=234365573",Torso,1,1)
  1064. swait()
  1065. for i=0,1,0.1 do
  1066. swait()
  1067. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1068. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1069. local h = 5
  1070. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  1071. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1072. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  1073. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1074. scfr = blcf
  1075. elseif not scfr then
  1076. scfr = blcf
  1077. end
  1078. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,2)*euler(0,-1.2,6*i),.3)
  1079. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1080. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(80)),.3)
  1081. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-70)),.3)
  1082. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(60),math.rad(-10)),.3)
  1083. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(10)),.3)
  1084. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,-1,-1)*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
  1085. end
  1086. end
  1087. attack=false
  1088. con:disconnect()
  1089. scfr = nil
  1090. end
  1091.  
  1092. function StunTarget()
  1093. attack = true
  1094. for i = 0,1,0.05 do
  1095. swait()
  1096. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-80)),.3)
  1097. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1098. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(10)),.3)
  1099. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-90)),.3)
  1100. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1101. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1102. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1103. end
  1104. so("http://roblox.com/asset/?id=228343249",Torso,1,1)
  1105. for i = 1,2 do
  1106. magicring(BrickColor.new("Navy blue"),Torso.CFrame*CFrame.new(-5,0,0)*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50)),1,1,0.1,1,1,0.05)
  1107. magicring(BrickColor.new("Navy blue"),Torso.CFrame*CFrame.new(-5,0,0)*CFrame.Angles(math.random(-50,50),math.random(-50,50),math.random(-50,50)),1,1,0.1,1,1,0.05)
  1108. end
  1109. attack = false
  1110. end
  1111.  
  1112. mouse.Button1Down:connect(function()
  1113. if attack == false and attacktype == 1 then
  1114. attacktype = 2
  1115. attackone()
  1116. elseif attack == false and attacktype == 2 then
  1117. attacktype = 1
  1118. attacktwo()
  1119. end
  1120. end)
  1121.  
  1122. mouse.KeyDown:connect(function(k)
  1123. k=k:lower()
  1124. if attack == false and k == 'q' then
  1125. Spin()
  1126. elseif attack == false and k == 'e' then
  1127. StunTarget()
  1128. end
  1129. end)
  1130.  
  1131.  
  1132. local sine = 0
  1133. local change = 1
  1134. local val = 0
  1135.  
  1136. while true do
  1137. swait()
  1138. sine = sine + change
  1139. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  1140. local velderp=RootPart.Velocity.y
  1141. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  1142. if equipped==true or equipped==false then
  1143. if attack==false then
  1144. idle=idle+1
  1145. else
  1146. idle=0
  1147. end
  1148. if idle>=500 then
  1149. if attack==false then
  1150. --Sheath()
  1151. end
  1152. end
  1153. if RootPart.Velocity.y > 1 and hitfloor==nil then
  1154. if attack==false then
  1155. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
  1156. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1157. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(20)),.2)
  1158. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-20)),.2)
  1159. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.2)
  1160. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-20)),.2)
  1161. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1162. end
  1163. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  1164. Anim="Fall"
  1165. if attack==false then
  1166. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
  1167. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  1168. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(40)),.2)
  1169. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-40)),.2)
  1170. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.2)
  1171. LH.C0=clerp(LH.C0,cf(-1,-.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(10)),.2)
  1172. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1173. end
  1174. elseif torvel<1 and hitfloor~=nil then
  1175. Anim="Idle"
  1176. if attack==false then
  1177. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-40)),.2)
  1178. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(40)),.2)
  1179. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(10)),.2)
  1180. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-10)),.2)
  1181. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.2)
  1182. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.2)
  1183. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-5),math.rad(0),math.rad(0)),.2)
  1184. end
  1185. elseif torvel>2 and hitfloor~=nil then
  1186. Anim="Walk"
  1187. if attack==false then
  1188. change=3
  1189. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(0)),.2)
  1190. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.2)
  1191. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(10)),.2)
  1192. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-15)),.2)
  1193. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(10)),.2)
  1194. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(10)),.2)
  1195. HandleWeld.C0=clerp(HandleWeld.C0,cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.2)
  1196. end
  1197. end
  1198. end
  1199. if #Effects>0 then
  1200. for e=1,#Effects do
  1201. if Effects[e]~=nil then
  1202. local Thing=Effects[e]
  1203. if Thing~=nil then
  1204. local Part=Thing[1]
  1205. local Mode=Thing[2]
  1206. local Delay=Thing[3]
  1207. local IncX=Thing[4]
  1208. local IncY=Thing[5]
  1209. local IncZ=Thing[6]
  1210. if Thing[1].Transparency<=1 then
  1211. if Thing[2]=="Block1" then
  1212. Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1213. Mesh=Thing[1].Mesh
  1214. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1215. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1216. elseif Thing[2]=="Cylinder" then
  1217. Mesh=Thing[1].Mesh
  1218. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1219. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1220. elseif Thing[2]=="Blood" then
  1221. Mesh=Thing[7]
  1222. Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
  1223. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1224. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1225. elseif Thing[2]=="Elec" then
  1226. Mesh=Thing[1].Mesh
  1227. Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
  1228. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1229. elseif Thing[2]=="Disappear" then
  1230. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1231. end
  1232. else
  1233. Part.Parent=nil
  1234. table.remove(Effects,e)
  1235. end
  1236. end
  1237. end
  1238. end
  1239. end
  1240. end
Add Comment
Please, Sign In to add comment