Advertisement
ghostteen14

Untitled

Jun 10th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 168.32 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. --The Color of the Attack and Sword--
  153. tclr = "Really red"
  154.  
  155.  
  156.  
  157.  
  158. Player=game:GetService("Players").LocalPlayer
  159. Character=Player.Character
  160. PlayerGui=Player.PlayerGui
  161. Backpack=Player.Backpack
  162. Torso=Character.Torso
  163. it=Instance.new
  164. attacktype=1
  165. vt=Vector3.new
  166. cf=CFrame.new
  167. euler=CFrame.fromEulerAnglesXYZ
  168. angles=CFrame.Angles
  169. cloaked=false
  170. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  171. necko2=cf(0, -0.5, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  172. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  173. LHC1=cf(-0.5,1,0,-0,-0,-1,0,1,0,1,0,0)
  174. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  175. RHC1=cf(0.5,1,0,0,0,1,0,1,0,-1,-0,-0)
  176. RootPart=Character.HumanoidRootPart
  177. RootJoint=RootPart.RootJoint
  178. RootCF=euler(-1.57,0,3.14)
  179. attack = false
  180. attackdebounce = false
  181. deb=false
  182. equipped=true
  183. hand=false
  184. MMouse=nil
  185. combo=0
  186. mana=0
  187. trispeed=.2
  188. attackmode='none'
  189. local idle=0
  190. local Anim="Idle"
  191. local Effects={}
  192. local gun=false
  193. local shoot=false
  194.  
  195. player=nil
  196. mana=0
  197. cam = workspace.CurrentCamera
  198. ZTarget = nil
  199. RocketTarget = nil
  200. local m = Instance.new("Model",Character)
  201. m.Name = "WeaponModel"
  202.  
  203. mouse=Player:GetMouse()
  204. --save shoulders
  205. RSH, LSH=nil, nil
  206. --welds
  207. RW, LW=Instance.new("Weld"), Instance.new("Weld")
  208. RW.Name="Right Shoulder" LW.Name="Left Shoulder"
  209. LH=Torso["Left Hip"]
  210. RH=Torso["Right Hip"]
  211. TorsoColor=Torso.BrickColor
  212. function NoOutline(Part)
  213. Part.TopSurface,Part.BottomSurface,Part.LeftSurface,Part.RightSurface,Part.FrontSurface,Part.BackSurface = 10,10,10,10,10,10
  214. end
  215. player=Player
  216. ch=Character
  217. RSH=ch.Torso["Right Shoulder"]
  218. LSH=ch.Torso["Left Shoulder"]
  219. --
  220. RSH.Parent=nil
  221. LSH.Parent=nil
  222. --
  223. RW.Name="Right Shoulder"
  224. RW.Part0=ch.Torso
  225. RW.C0=cf(1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.3, 0, -0.5)
  226. RW.C1=cf(0, 0.5, 0)
  227. RW.Part1=ch["Right Arm"]
  228. RW.Parent=ch.Torso
  229. --
  230. LW.Name="Left Shoulder"
  231. LW.Part0=ch.Torso
  232. LW.C0=cf(-1.5, 0.5, 0) --* CFrame.fromEulerAnglesXYZ(1.7, 0, 0.8)
  233. LW.C1=cf(0, 0.5, 0)
  234. LW.Part1=ch["Left Arm"]
  235. LW.Parent=ch.Torso
  236.  
  237. function swait(num)
  238. if num==0 or num==nil then
  239. game:service'RunService'.Stepped:wait(0)
  240. else
  241. for i=0,num do
  242. game:service'RunService'.Stepped:wait(0)
  243. end
  244. end
  245. end
  246.  
  247. function nooutline(part)
  248. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  249. end
  250.  
  251. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  252. local fp=it("Part")
  253. fp.formFactor=formfactor
  254. fp.Parent=parent
  255. fp.Reflectance=reflectance
  256. fp.Transparency=transparency
  257. fp.CanCollide=false
  258. fp.Locked=true
  259. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  260. fp.Name=name
  261. fp.Size=size
  262. fp.Position=Character.Torso.Position
  263. nooutline(fp)
  264. fp.Material=material
  265. fp:BreakJoints()
  266. return fp
  267. end
  268.  
  269. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  270. local mesh=it(Mesh)
  271. mesh.Parent=part
  272. if Mesh=="SpecialMesh" then
  273. mesh.MeshType=meshtype
  274. mesh.MeshId=meshid
  275. end
  276. mesh.Offset=offset
  277. mesh.Scale=scale
  278. return mesh
  279. end
  280.  
  281. function weld(parent,part0,part1,c0,c1)
  282. local weld=it("Weld")
  283. weld.Parent=parent
  284. weld.Part0=part0
  285. weld.Part1=part1
  286. weld.C0=c0
  287. weld.C1=c1
  288. return weld
  289. end
  290.  
  291.  
  292. local function CFrameFromTopBack(at, top, back)
  293. local right = top:Cross(back)
  294. return CFrame.new(at.x, at.y, at.z,
  295. right.x, top.x, back.x,
  296. right.y, top.y, back.y,
  297. right.z, top.z, back.z)
  298. end
  299.  
  300. function Triangle(a, b, c)
  301. local edg1 = (c-a):Dot((b-a).unit)
  302. local edg2 = (a-b):Dot((c-b).unit)
  303. local edg3 = (b-c):Dot((a-c).unit)
  304. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  305. a, b, c = a, b, c
  306. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  307. a, b, c = b, c, a
  308. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  309. a, b, c = c, a, b
  310. else
  311. assert(false, "unreachable")
  312. end
  313.  
  314. local len1 = (c-a):Dot((b-a).unit)
  315. local len2 = (b-a).magnitude - len1
  316. local width = (a + (b-a).unit*len1 - c).magnitude
  317.  
  318. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  319.  
  320. local list = {}
  321.  
  322. local TrailColor = tclr
  323.  
  324. if len1 > 0.01 then
  325. local w1 = Instance.new('WedgePart', m)
  326. game:GetService("Debris"):AddItem(w1,5)
  327. w1.Material = "SmoothPlastic"
  328. w1.FormFactor = 'Custom'
  329. w1.BrickColor = BrickColor.new(TrailColor)
  330. w1.Transparency = 0
  331. w1.Reflectance = 0
  332. w1.Material = "Neon"
  333. w1.CanCollide = false
  334. NoOutline(w1)
  335. local sz = Vector3.new(0.2, width, len1)
  336. w1.Size = sz
  337. local sp = Instance.new("SpecialMesh",w1)
  338. sp.MeshType = "Wedge"
  339. sp.Scale = Vector3.new(0,1,1) * sz/w1.Size
  340. w1:BreakJoints()
  341. w1.Anchored = true
  342. w1.Parent = workspace
  343. w1.Transparency = 0.7
  344. table.insert(Effects,{w1,"Disappear",.01})
  345. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  346. table.insert(list,w1)
  347. end
  348.  
  349. if len2 > 0.01 then
  350. local w2 = Instance.new('WedgePart', m)
  351. game:GetService("Debris"):AddItem(w2,5)
  352. w2.Material = "SmoothPlastic"
  353. w2.FormFactor = 'Custom'
  354. w2.BrickColor = BrickColor.new(TrailColor)
  355. w2.Transparency = 0
  356. w2.Reflectance = 0
  357. w2.Material = "Neon"
  358. w2.CanCollide = false
  359. NoOutline(w2)
  360. local sz = Vector3.new(0.2, width, len2)
  361. w2.Size = sz
  362. local sp = Instance.new("SpecialMesh",w2)
  363. sp.MeshType = "Wedge"
  364. sp.Scale = Vector3.new(0,1,1) * sz/w2.Size
  365. w2:BreakJoints()
  366. w2.Anchored = true
  367. w2.Parent = workspace
  368. w2.Transparency = 0.7
  369. table.insert(Effects,{w2,"Disappear",.01})
  370. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  371. table.insert(list,w2)
  372. end
  373. return unpack(list)
  374. end
  375.  
  376.  
  377. so = function(id,par,vol,pit)
  378. coroutine.resume(coroutine.create(function()
  379. local sou = Instance.new("Sound",par or workspace)
  380. sou.Volume=vol
  381. sou.Pitch=pit or 1
  382. sou.SoundId=id
  383. swait()
  384. sou:play()
  385. game:GetService("Debris"):AddItem(sou,6)
  386. end))
  387. end
  388.  
  389. function clerp(a,b,t)
  390. local qa = {QuaternionFromCFrame(a)}
  391. local qb = {QuaternionFromCFrame(b)}
  392. local ax, ay, az = a.x, a.y, a.z
  393. local bx, by, bz = b.x, b.y, b.z
  394. local _t = 1-t
  395. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  396. end
  397.  
  398. function QuaternionFromCFrame(cf)
  399. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  400. local trace = m00 + m11 + m22
  401. if trace > 0 then
  402. local s = math.sqrt(1 + trace)
  403. local recip = 0.5/s
  404. return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5
  405. else
  406. local i = 0
  407. if m11 > m00 then
  408. i = 1
  409. end
  410. if m22 > (i == 0 and m00 or m11) then
  411. i = 2
  412. end
  413. if i == 0 then
  414. local s = math.sqrt(m00-m11-m22+1)
  415. local recip = 0.5/s
  416. return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip
  417. elseif i == 1 then
  418. local s = math.sqrt(m11-m22-m00+1)
  419. local recip = 0.5/s
  420. return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip
  421. elseif i == 2 then
  422. local s = math.sqrt(m22-m00-m11+1)
  423. local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip
  424. end
  425. end
  426. end
  427.  
  428. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  429. local xs, ys, zs = x + x, y + y, z + z
  430. local wx, wy, wz = w*xs, w*ys, w*zs
  431. local xx = x*xs
  432. local xy = x*ys
  433. local xz = x*zs
  434. local yy = y*ys
  435. local yz = y*zs
  436. local zz = z*zs
  437. 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))
  438. end
  439.  
  440. function QuaternionSlerp(a, b, t)
  441. local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4]
  442. local startInterp, finishInterp;
  443. if cosTheta >= 0.0001 then
  444. if (1 - cosTheta) > 0.0001 then
  445. local theta = math.acos(cosTheta)
  446. local invSinTheta = 1/math.sin(theta)
  447. startInterp = math.sin((1-t)*theta)*invSinTheta
  448. finishInterp = math.sin(t*theta)*invSinTheta
  449. else
  450. startInterp = 1-t
  451. finishInterp = t
  452. end
  453. else
  454. if (1+cosTheta) > 0.0001 then
  455. local theta = math.acos(-cosTheta)
  456. local invSinTheta = 1/math.sin(theta)
  457. startInterp = math.sin((t-1)*theta)*invSinTheta
  458. finishInterp = math.sin(t*theta)*invSinTheta
  459. else
  460. startInterp = t-1
  461. finishInterp = t
  462. end
  463. end
  464. 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
  465. end
  466.  
  467. function rayCast(Pos, Dir, Max, Ignore) -- Origin Position , Direction, MaxDistance , IgnoreDescendants
  468. return game:service("Workspace"):FindPartOnRay(Ray.new(Pos, Dir.unit * (Max or 999.999)), Ignore)
  469. end
  470.  
  471. Damagefunc=function(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  472. if hit.Parent==nil then
  473. return
  474. end
  475. local h=hit.Parent:FindFirstChild("Humanoid")
  476. for _,v in pairs(hit.Parent:children()) do
  477. if v:IsA("Humanoid") then
  478. h=v
  479. end
  480. end
  481. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  482. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  483. end
  484. if hit.Parent.className=="Hat" then
  485. hit=hit.Parent.Parent:findFirstChild("Head")
  486. end
  487. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  488. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  489. --[[ if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  490. return
  491. end]]
  492. -- hs(hit,1.2)
  493. local c=Instance.new("ObjectValue")
  494. c.Name="creator"
  495. c.Value=game:service("Players").LocalPlayer
  496. c.Parent=h
  497. game:GetService("Debris"):AddItem(c,.5)
  498. local Damage=math.random(minim,maxim)
  499. -- h:TakeDamage(Damage)
  500. local blocked=false
  501. local block=hit.Parent:findFirstChild("Block")
  502. if block~=nil then
  503. print(block.className)
  504. if block.className=="NumberValue" then
  505. if block.Value>0 then
  506. blocked=true
  507. if decreaseblock==nil then
  508. block.Value=block.Value-1
  509. end
  510. end
  511. end
  512. if block.className=="IntValue" then
  513. if block.Value>0 then
  514. blocked=true
  515. if decreaseblock~=nil then
  516. block.Value=block.Value-1
  517. end
  518. end
  519. end
  520. end
  521. if blocked==false then
  522. -- h:TakeDamage(Damage)
  523. h.Health=h.Health-Damage
  524. ShowDamage((Part.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, Part.BrickColor.Color)
  525. else
  526. h.Health=h.Health-(Damage/2)
  527. 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)
  528. end
  529. if Type=="Knockdown" then
  530. local hum=hit.Parent.Humanoid
  531. hum.PlatformStand=true
  532. coroutine.resume(coroutine.create(function(HHumanoid)
  533. swait(1)
  534. HHumanoid.PlatformStand=false
  535. end),hum)
  536. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  537. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  538. local bodvol=Instance.new("BodyVelocity")
  539. bodvol.velocity=angle*knockback
  540. bodvol.P=5000
  541. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  542. bodvol.Parent=hit
  543. local rl=Instance.new("BodyAngularVelocity")
  544. rl.P=3000
  545. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  546. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  547. rl.Parent=hit
  548. game:GetService("Debris"):AddItem(bodvol,.5)
  549. game:GetService("Debris"):AddItem(rl,.5)
  550. elseif Type=="Normal" then
  551. local vp=Instance.new("BodyVelocity")
  552. vp.P=500
  553. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  554. -- vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  555. if KnockbackType==1 then
  556. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  557. elseif KnockbackType==2 then
  558. vp.velocity=Property.CFrame.lookVector*knockback
  559. end
  560. if knockback>0 then
  561. vp.Parent=hit.Parent.Torso
  562. end
  563. game:GetService("Debris"):AddItem(vp,.5)
  564. elseif Type=="Up" then
  565. local bodyVelocity=Instance.new("BodyVelocity")
  566. bodyVelocity.velocity=vt(0,60,0)
  567. bodyVelocity.P=5000
  568. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  569. bodyVelocity.Parent=hit
  570. game:GetService("Debris"):AddItem(bodyVelocity,1)
  571. local rl=Instance.new("BodyAngularVelocity")
  572. rl.P=3000
  573. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  574. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  575. rl.Parent=hit
  576. game:GetService("Debris"):AddItem(rl,.5)
  577. elseif Type=="Snare" then
  578. local bp=Instance.new("BodyPosition")
  579. bp.P=2000
  580. bp.D=100
  581. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  582. bp.position=hit.Parent.Torso.Position
  583. bp.Parent=hit.Parent.Torso
  584. game:GetService("Debris"):AddItem(bp,1)
  585. elseif Type=="Target" then
  586. local Targetting = false
  587. if Targetting==false then
  588. ZTarget=hit.Parent.Torso
  589. coroutine.resume(coroutine.create(function(Part)
  590. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  591. swait(5)
  592. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  593. end),ZTarget)
  594. local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  595. local targetgui=Instance.new("BillboardGui")
  596. targetgui.Parent=ZTarget
  597. targetgui.Size=UDim2.new(10,100,10,100)
  598. local targ=Instance.new("ImageLabel")
  599. targ.Parent=targetgui
  600. targ.BackgroundTransparency=1
  601. targ.Image="rbxassetid://4834067"
  602. targ.Size=UDim2.new(1,0,1,0)
  603. cam.CameraType="Scriptable"
  604. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  605. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  606. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  607. Targetting=true
  608. RocketTarget=ZTarget
  609. for i=1,Property do
  610. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  611. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  612. swait()
  613. end
  614. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  615. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  616. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  617. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  618. end
  619. Targetting=false
  620. RocketTarget=nil
  621. targetgui.Parent=nil
  622. cam.CameraType="Custom"
  623. end
  624. end
  625. local debounce=Instance.new("BoolValue")
  626. debounce.Name="DebounceHit"
  627. debounce.Parent=hit.Parent
  628. debounce.Value=true
  629. game:GetService("Debris"):AddItem(debounce,Delay)
  630. c=Instance.new("ObjectValue")
  631. c.Name="creator"
  632. c.Value=Player
  633. c.Parent=h
  634. game:GetService("Debris"):AddItem(c,.5)
  635. end
  636. end
  637.  
  638.  
  639. function ShowDamage(Pos, Text, Time, Color)
  640. local Rate = (1 / 30)
  641. local Pos = (Pos or Vector3.new(0, 0, 0))
  642. local Text = (Text or "")
  643. local Time = (Time or 2)
  644. local Color = (Color or Color3.new(1, 0, 0))
  645. local EffectPart = part("Custom",workspace,"SmoothPlastic",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
  646. EffectPart.Anchored = true
  647. local BillboardGui = Instance.new("BillboardGui")
  648. BillboardGui.Size = UDim2.new(3, 0, 3, 0)
  649. BillboardGui.Adornee = EffectPart
  650. local TextLabel = Instance.new("TextLabel")
  651. TextLabel.BackgroundTransparency = 1
  652. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  653. TextLabel.Text = Text
  654. TextLabel.TextColor3 = Color
  655. TextLabel.TextScaled = true
  656. TextLabel.Font = Enum.Font.ArialBold
  657. TextLabel.Parent = BillboardGui
  658. BillboardGui.Parent = EffectPart
  659. game.Debris:AddItem(EffectPart, (Time + 0.1))
  660. EffectPart.Parent = game:GetService("Workspace")
  661. Delay(0, function()
  662. local Frames = (Time / Rate)
  663. for Frame = 1, Frames do
  664. wait(Rate)
  665. local Percent = (Frame / Frames)
  666. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  667. TextLabel.TextTransparency = Percent
  668. end
  669. if EffectPart and EffectPart.Parent then
  670. EffectPart:Destroy()
  671. end
  672. end)
  673. end
  674.  
  675. Player=game:GetService('Players').LocalPlayer
  676. Character=Player.Character
  677. Mouse=Player:GetMouse()
  678. m=Instance.new('Model',Character)
  679. it=Instance.new
  680. function nooutline(part)
  681. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  682. end
  683. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  684. local fp=it("Part")
  685. fp.formFactor=formfactor
  686. fp.Parent=parent
  687. fp.Reflectance=reflectance
  688. fp.Transparency=transparency
  689. fp.CanCollide=false
  690. fp.Locked=true
  691. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  692. fp.Name=name
  693. fp.Size=size
  694. fp.Position=Character.Torso.Position
  695. nooutline(fp)
  696. fp.Material=material
  697. fp:BreakJoints()
  698. return fp
  699. end
  700. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  701. local mesh=it(Mesh)
  702. mesh.Parent=part
  703. if Mesh=="SpecialMesh" then
  704. mesh.MeshType=meshtype
  705. mesh.MeshId=meshid
  706. end
  707. mesh.Offset=offset
  708. mesh.Scale=scale
  709. return mesh
  710. end
  711. function weld(parent,part0,part1,c0,c1)
  712. local weld=it("Weld")
  713. weld.Parent=parent
  714. weld.Part0=part0
  715. weld.Part1=part1
  716. weld.C0=c0
  717. weld.C1=c1
  718. return weld
  719. end
  720.  
  721. Player=game:GetService('Players').LocalPlayer
  722. Character=Player.Character
  723. Mouse=Player:GetMouse()
  724. m=Instance.new('Model',Character)
  725. it=Instance.new
  726. function nooutline(part)
  727. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  728. end
  729. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  730. local fp=it("Part")
  731. fp.formFactor=formfactor
  732. fp.Parent=parent
  733. fp.Reflectance=reflectance
  734. fp.Transparency=transparency
  735. fp.CanCollide=false
  736. fp.Locked=true
  737. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  738. fp.Name=name
  739. fp.Size=size
  740. fp.Position=Character.Torso.Position
  741. nooutline(fp)
  742. fp.Material=material
  743. fp:BreakJoints()
  744. return fp
  745. end
  746. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  747. local mesh=it(Mesh)
  748. mesh.Parent=part
  749. if Mesh=="SpecialMesh" then
  750. mesh.MeshType=meshtype
  751. mesh.MeshId=meshid
  752. end
  753. mesh.Offset=offset
  754. mesh.Scale=scale
  755. return mesh
  756. end
  757. function weld(parent,part0,part1,c0,c1)
  758. local weld=it("Weld")
  759. weld.Parent=parent
  760. weld.Part0=part0
  761. weld.Part1=part1
  762. weld.C0=c0
  763. weld.C1=c1
  764. return weld
  765. end
  766.  
  767. Handle=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Handle",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  768. handleweld=weld(m,Character["Right Arm"],Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 0.999999881, 0, 0, 0, 1),CFrame.new(0.741678238, 0.794418335, -0.0370121002, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  769. mesh("BlockMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  770. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.600000203, 0.200000003, 0.399999976))
  771. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.4672184, 1.46959305, 0.0142880678, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  772. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  773. Hitbox=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,1,"Really black","Hitbox",Vector3.new(6.74074316, 0.259259313, 1.2962966))
  774. Hitboxweld=weld(m,Handle,Hitbox,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.94812012, 9.15527344e-005, -0.00979995728, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  775. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.03703737))
  776. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-10.5536575, -3.57627869e-006, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  777. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.04999995, 1))
  778. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.74074316, 0.259259313, 1.2962966))
  779. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70182037, 9.15527344e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  780. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  781. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  782. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-9.3460083e-005, -0.324073672, 12.3684731, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  783. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.839999974, 1))
  784. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518627, 2.07407475))
  785. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.53131104e-005, -0.207403183, 12.0443993, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  786. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.810000002, 1))
  787. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518686, 2.07407475))
  788. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.7220459e-005, -0.207421303, 12.0443993, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  789. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.01999998, 0.810000002, 1))
  790. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  791. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(9.3460083e-005, -0.324074984, 12.3684731, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  792. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.839999974, 1))
  793. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  794. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.18214798, 0.184528351, 0.00185966492, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  795. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  796. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  797. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.09992981, 1.09993172, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  798. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  799. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  800. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.733297348, -0.733297348, -1.33514404e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  801. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  802. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  803. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.274971008, -0.27497673, 3.43322754e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  804. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  805. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  806. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.641641617, 0.641643524, 1.74045563e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  807. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  808. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  809. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.92491722, 1.92491722, 5.7220459e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  810. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  811. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  812. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.37493706, 1.37493706, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  813. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  814. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  815. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.46542358, 1.46780205, 0.00187504292, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  816. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  817. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  818. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.0916500092, -0.0916557312, 1.71661377e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  819. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  820. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  821. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.641609192, -0.641607285, 1.71661377e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  822. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  823. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  824. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.732124329, 0.734502792, 0.00185978413, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  825. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  826. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.22222471, 0.518518627, 0.518518627))
  827. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0536880493, 7.62939453e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  828. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.0599999987, 1.00999999))
  829. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  830. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.366659164, -0.366657257, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  831. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  832. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  833. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.183334351, -0.183332443, -1.33514404e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  834. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  835. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  836. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.00829315, 1.00829506, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  837. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  838. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  839. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.19162178, 1.19162369, 5.17368317e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  840. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  841. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  842. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.55827904, 1.55827904, 5.12599945e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  843. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  844. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  845. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.83205986, 1.83444023, 0.00188946724, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  846. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  847. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  848. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.824943542, -0.824941635, 1.90734863e-006, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  849. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  850. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  851. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.549957275, 0.549959183, -1.31130219e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  852. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  853. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  854. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.274999619, 0.275001526, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  855. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  856. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  857. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00117111206, 0.00120735168, 0.00185966492, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  858. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  859. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  860. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.457113266, 0.45949173, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  861. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  862. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  863. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.55705452, 1.55943298, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  864. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  865. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  866. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.28208542, 1.28446388, 0.00185978413, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  867. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  868. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  869. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.276185989, -0.273807526, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  870. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  871. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  872. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.548799515, 0.55116272, 0.00185024738, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  873. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  874. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  875. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.915441513, 0.917819977, 0.00185978413, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  876. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  877. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  878. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.273786545, 0.276166916, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  879. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  880. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  881. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.64990616, 1.64990807, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  882. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  883. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  884. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.74037552, 1.74275398, -0.00180244446, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  885. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  886. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  887. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(1.00948334, -1.00710487, -0.00185012817, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  888. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  889. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  890. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.365472794, 0.367851257, 0.00187504292, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  891. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  892. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  893. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.640443802, 0.642822266, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  894. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  895. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  896. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.28325844, 1.28326035, 2.38418579e-007, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  897. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  898. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  899. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.18331337, 0.183315277, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  900. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  901. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  902. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.00708008, 1.00945854, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  903. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  904. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  905. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.826148987, -0.823768616, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  906. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  907. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  908. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.824975967, 0.824977875, 3.4570694e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  909. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  910. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  911. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.83322906, 1.83323097, 3.64780426e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  912. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  913. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  914. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.642831802, -0.640453339, -0.00183963776, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  915. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  916. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  917. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0904636383, 0.0928440094, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  918. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  919. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  920. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.0928478241, -0.0904693604, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  921. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  922. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  923. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.549985886, -0.549983978, -1.33514404e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  924. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  925. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  926. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.19040871, 1.19278717, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  927. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  928. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  929. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.823759079, 0.826137543, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  930. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  931. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  932. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.46657944, 1.46658134, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  933. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  934. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  935. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.733295441, 0.733297348, 2.38418579e-007, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  936. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  937. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  938. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.458320618, 0.458322525, 5.17368317e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  939. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  940. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  941. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.37374115, 1.37611961, -0.00180530548, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  942. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  943. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.22222471, 0.518518627, 0.518518627))
  944. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0536880493, 0, 7.62939453e-005, 7.26342932e-008, 0, -1, -7.58196705e-008, 1, -5.50710795e-015, 1, 7.58196705e-008, 7.26342932e-008))
  945. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.0599999987, 1.00999999))
  946. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  947. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.916606903, 0.91660881, 2.38418579e-007, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  948. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  949. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  950. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0916824341, 0.0916843414, 2.67028809e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  951. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  952. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  953. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.734451294, -0.732088089, 0.00185012817, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  954. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  955. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  956. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.916631699, -0.916629791, -1.71661377e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  957. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  958. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  959. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.367816925, -0.365451813, 0.00185966492, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  960. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  961. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  962. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.64874077, 1.65112114, 0.00186932087, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  963. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  964. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  965. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.551136017, -0.548772812, 0.00185012817, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  966. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  967. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  968. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.458297729, -0.458295822, 1.71661377e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  969. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  970. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  971. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.459510803, -0.457132339, -0.00182056427, -0.70710665, 1.49011612e-008, -0.707106888, -0.707106888, 1.49011603e-008, 0.70710665, 2.10734239e-008, 1, 5.65233175e-015))
  972. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  973. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  974. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.366638184, 0.366640091, 2.31266022e-005, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008))
  975. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  976. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  977. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.74159431, 1.74159622, 5.12599945e-005, -1.6963854e-007, 0.70710665, 0.707106888, -1.46491521e-008, 0.707106888, -0.707106709, -1, -1.30311079e-007, -1.09594069e-007))
  978. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  979. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  980. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.184497833, -0.182132721, 0.00183963776, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  981. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  982. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.777778268, 0.259259313, 0.518518627))
  983. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.917798996, -0.915416718, 0.00183963776, -0.707106829, -7.4505806e-008, 0.707106709, -0.707106769, 1.49011647e-008, -0.707106829, 4.21468478e-008, -1, -6.32202628e-008))
  984. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.959999979, 0.0599999987, 1.00999999))
  985. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.22222471, 0.518518627, 0.518518627))
  986. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.0536880493, 0.000133514404, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  987. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  988. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  989. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.90315247, -0.000120162964, 0.847258329, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  990. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.699999988, 0.699999988))
  991. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  992. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.90315247, -0.00012421608, -0.837946296, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  993. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.699999988, 0.699999988))
  994. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  995. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 2.90047836, 4.3380785, -0.999999762, -2.11777547e-008, 3.85407475e-008, 4.39660077e-008, -0.499999642, 0.866025031, 9.29916588e-010, 0.866025269, 0.499999523))
  996. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 0.99000001, 1))
  997. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  998. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120401382, 2.90047836, 4.33810234, 1, 2.27286364e-007, 2.32403181e-007, -3.14910324e-007, 0.499999881, 0.866025448, 8.0634095e-008, -0.866025448, 0.499999881))
  999. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 0.99000001, 1))
  1000. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  1001. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90047836, 3.17142868, 0.000120162964, -1.26123183e-007, 0.49999994, 0.866025448, 8.06344076e-008, -0.866025448, 0.49999994, 1, 1.32893049e-007, 6.89086761e-008))
  1002. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 0.99000001))
  1003. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  1004. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90048981, -3.1714077, 0.000133752823, -1.0990815e-007, -0.49999994, 0.866025388, -9.30000077e-010, -0.866025388, -0.49999994, 1, -5.57594753e-008, 9.47182528e-008))
  1005. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.99000001, 1, 0.99000001))
  1006. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  1007. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.78516388, 0.000163555145, -4.44323349, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  1008. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  1009. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1010. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87590027, 0.000174999237, -4.53397942, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  1011. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  1012. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1013. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.20371246, 9.27448273e-005, 4.59070015, -1.35872718e-008, -1, -1.78813934e-007, 1, -1.35873384e-008, 3.73972171e-007, -3.73972171e-007, -1.78813934e-007, 1))
  1014. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  1015. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  1016. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.68144608, 8.22544098e-005, -2.112957, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1017. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  1018. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  1019. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.11297655, 8.32080841e-005, 4.68144417, -1.35872718e-008, -1, -1.78813934e-007, 1, -1.35873384e-008, 3.73972171e-007, -3.73972171e-007, -1.78813934e-007, 1))
  1020. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  1021. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.2962966, 0.518518627, 1.29629672))
  1022. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.07218933, 9.1791153e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1023. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  1024. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.03703725, 0.259259313, 1.03703737))
  1025. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.78264618, 8.17775726e-005, -4.555583, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  1026. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 1))
  1027. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1028. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87337875, 9.13143158e-005, -4.64633274, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  1029. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  1030. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1031. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, 9.1791153e-005, -2.20370197, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1032. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  1033. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1034. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-10.8129234, 2.88486481e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1035. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.03999996, 1))
  1036. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.94444513))
  1037. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000122070313, -0.116662025, 12.0443993, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1038. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.600000024, 1))
  1039. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 2.07407475))
  1040. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.24249268e-005, -0.259274483, 12.1092224, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1041. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  1042. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  1043. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, 0.583325624, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1044. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 0.100000001))
  1045. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  1046. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, 0.259250879, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1047. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.100000001))
  1048. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518627, 2.07407475))
  1049. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.24249268e-005, -0.259250879, 12.1092224, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1050. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 1, 1))
  1051. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  1052. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, -0.583348989, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1053. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.02999997, 0.100000001))
  1054. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.94444513))
  1055. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000122070313, -0.116671681, 12.0443993, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1056. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1.02999997, 0.600000024, 1))
  1057. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  1058. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, -0.259255409, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1059. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.100000001))
  1060. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  1061. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70181274, -1.90734863e-006, -0.129636765, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1062. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.200000003))
  1063. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 0.259259343))
  1064. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70182037, -1.90734863e-006, 0.129623413, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1065. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.05999994, 0.200000003))
  1066. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1067. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.05718994e-005, -0.337038875, 12.3684731, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1068. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.839999974, 1))
  1069. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(6.74074316, 0.259259313, 1.2962966))
  1070. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.70182037, -1.90734863e-006, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1071. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.119999997, 1.00100005))
  1072. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1073. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(7.05718994e-005, -0.33703351, 12.3684731, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1074. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.839999974, 1))
  1075. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 0.518518686))
  1076. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120639801, -3.70452118, -2.79076195, 1, 4.20377333e-008, 2.81075273e-007, 2.82378039e-007, -0.258818924, -0.965925813, 3.21423244e-008, 0.965925813, -0.258818954))
  1077. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1078. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  1079. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.26083183, -3.08899784, 0.000133752823, -8.63836647e-008, -0.422618359, 0.906307876, -4.29547775e-009, -0.906307757, -0.42261833, 1, -4.04003444e-008, 7.64748265e-008))
  1080. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  1081. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  1082. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90047836, 3.17142868, 0.000120162964, -1.26123183e-007, 0.49999994, 0.866025448, 8.06344076e-008, -0.866025448, 0.49999994, 1, 1.32893049e-007, 6.89086761e-008))
  1083. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.100000001))
  1084. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  1085. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.0921936, 2.85683537, 0.000120639801, -1.09868267e-007, 0.390732348, 0.920504391, -4.35992824e-008, -0.920504391, 0.390732348, 1, 2.79575652e-009, 1.18169858e-007))
  1086. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  1087. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.2962966, 0.259259343))
  1088. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.90048981, -3.1714077, 0.000133752823, -1.0990815e-007, -0.49999994, 0.866025388, -9.30000077e-010, -0.866025388, -0.49999994, 1, -5.57594753e-008, 9.47182528e-008))
  1089. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.100000001))
  1090. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  1091. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.54734802, -2.42215061, 0.000133991241, -9.79423547e-008, -0.258819193, 0.965925872, 4.70048391e-008, -0.965925872, -0.258819193, 1, 2.00538253e-008, 1.06770791e-007))
  1092. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  1093. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  1094. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.89389801, -0.000120162964, 0.847258329, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  1095. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.560000002, 0.709999979))
  1096. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.518518806))
  1097. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000130414963, 0.86914444, -4.22298431, -1, -1.22191182e-006, 1.42418617e-006, -1.54888335e-006, 0.965925753, -0.25881955, -1.05940342e-006, -0.25881955, -0.965925753))
  1098. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1099. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 0.518518686, 0.259259343))
  1100. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.89389801, -0.00012421608, -0.837946296, 9.47018997e-009, -1.1920929e-007, 1, -1, -8.30279134e-008, 9.47017753e-009, 8.30279134e-008, -1, -1.19209282e-007))
  1101. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 0.560000002, 0.709999979))
  1102. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.777778149))
  1103. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 3.89334488, -2.17629051, -1, -1.32561297e-006, 8.84132305e-007, -7.05949105e-007, 0.866025686, 0.499999583, -1.42848728e-006, 0.499999583, -0.866025686))
  1104. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1105. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.03703749))
  1106. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000135421753, 4.64661407, 1.34696198, -1, -9.82721986e-007, 1.11105791e-007, -1.47027706e-007, 0.25881955, 0.965925753, -9.7799284e-007, 0.965925753, -0.25881955))
  1107. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1108. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 1.03703749))
  1109. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120162964, 4.64661789, 1.346982, 1, 4.00835432e-007, 3.23014717e-007, -2.08264595e-007, -0.258818746, 0.965925992, 4.70779611e-007, -0.965925992, -0.258818746))
  1110. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1111. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.777778149))
  1112. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000119686127, 3.89336014, -2.17628479, 1, 4.28033047e-007, 1.74377874e-007, 2.83498451e-007, -0.866025269, 0.500000298, 3.65032292e-007, -0.500000298, -0.866025269))
  1113. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1114. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.259259313, 0.518518806))
  1115. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000119924545, 0.869161129, -4.22298813, 1, 5.51122014e-007, 2.59200249e-007, 5.99428972e-007, -0.965925992, -0.258818775, 1.0772753e-007, 0.258818775, -0.965925992))
  1116. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1117. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  1118. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.2608223, 3.08901405, 0.000119686127, -1.10378075e-007, 0.422619462, 0.90630722, -1.69980208e-009, -0.90630722, 0.422619462, 1, 4.51073809e-008, 1.00754818e-007))
  1119. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  1120. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  1121. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120401382, 2.90047836, 4.33810234, 1, 2.27286364e-007, 2.32403181e-007, -3.14910324e-007, 0.499999881, 0.866025448, 8.0634095e-008, -0.866025448, 0.499999881))
  1122. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 1.01999998, 1))
  1123. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.03703749))
  1124. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 2.90695953, 4.32685566, -0.999999762, -2.11777547e-008, 3.85407475e-008, 4.39660077e-008, -0.499999642, 0.866025031, 9.29916588e-010, 0.866025269, 0.499999523))
  1125. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 1.01999998, 1))
  1126. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.29629683))
  1127. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133275986, 3.70452118, 3.69815493, -1, -1.61937432e-008, 4.06052507e-008, 4.34129106e-008, -0.258818865, 0.965925932, -5.13255038e-009, 0.965925932, 0.258818835))
  1128. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1129. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 1.29629683))
  1130. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000120639801, 3.70451164, 3.69817638, 1, 8.18811756e-008, 2.70399255e-007, -2.82378039e-007, 0.258818924, 0.965925872, 9.10670028e-009, -0.965925872, 0.258818924))
  1131. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1132. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.518518686, 0.518518686))
  1133. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000133514404, -3.70451355, -2.7907486, -1, -4.76288342e-009, -2.05528039e-009, 7.52531371e-010, 0.258818656, -0.965925932, 5.13253973e-009, -0.965925932, -0.258818626))
  1134. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 0.99000001, 1))
  1135. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  1136. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.54733849, 2.42216587, 0.000120639801, -1.29213319e-007, 0.258820295, 0.965925574, -2.80968671e-009, -0.965925574, 0.258820295, 1, 3.07290726e-008, 1.25537639e-007))
  1137. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  1138. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.518518567, 1.55555594, 0.259259343))
  1139. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.14159012, -2.8024168, 0.000133752823, -6.01987367e-008, -0.37460652, 0.927183867, 3.81304055e-008, -0.927183867, -0.37460655, 1, 1.28030564e-008, 7.00991976e-008))
  1140. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.0599999987, 1, 1))
  1141. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.8148154, 0.518518627, 2.07407475))
  1142. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81292725, 0.00012421608, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1143. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1144. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.8148154, 0.518518627, 2.07407475))
  1145. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81292725, 4.9829483e-005, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1146. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.0599999987, 1.00999999))
  1147. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1148. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87337875, 8.17775726e-005, -4.64633274, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  1149. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1150. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1151. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87337875, -0.000175714493, -4.64633274, 7.26343217e-008, 1.78813934e-007, 1, 1, 1.35872735e-008, -7.26343217e-008, -1.35872877e-008, 1, -1.78813934e-007))
  1152. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1153. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1154. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, -0.000175237656, -2.20370197, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1155. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1156. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1157. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.20371246, 8.32080841e-005, 4.59070015, -1.35872718e-008, -1, -1.78813934e-007, 1, -1.35873384e-008, 3.73972171e-007, -3.73972171e-007, -1.78813934e-007, 1))
  1158. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1159. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1160. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, -0.000215768814, 2.20371342, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1161. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1162. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1163. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.59070206, 8.22544098e-005, -2.20370197, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1164. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1165. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1166. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87590027, -9.20295715e-005, -4.53397942, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  1167. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1.00999999, 0.100000001, 1.00999999))
  1168. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(1.29629672, 0.259259313, 1.29629672))
  1169. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.87590027, 0.000163555145, -4.53397942, -7.26343217e-008, -1.78813963e-007, 1, -1, -5.96046519e-008, -7.26343359e-008, 5.96046661e-008, -1, -1.78813977e-007))
  1170. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.899999976, 1.01999998, 0.899999976))
  1171. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1172. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.01086426e-005, -5.50149727, 1.24056816, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1173. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1174. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1175. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000164270401, -0.294586182, 6.34798241, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1176. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1177. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1178. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.95910645e-005, -5.39571381, 1.16452789, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1179. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1180. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1181. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.01086426e-005, -5.51445961, 1.21811485, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1182. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1183. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1184. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000111818314, -4.89693832, 3.89433098, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1185. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1186. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1187. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.14984131e-005, -4.77596188, -1.17524147, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1188. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1189. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1190. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.16960907e-005, -4.82089996, 3.78854847, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1191. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1192. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1193. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.6239624e-005, -0.171104431, 6.27668953, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1194. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1195. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1196. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000125408173, -2.85110855, 5.70879173, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1197. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1198. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1199. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000112056732, -4.87447739, 3.90729904, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1200. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1201. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1202. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(1.47819519e-005, -2.86407852, 5.57916451, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1203. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1204. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1205. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.20159912e-005, -4.64633274, -1.18819618, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1206. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1207. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1208. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.14984131e-005, -4.77596188, -1.20115852, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1209. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1210. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1211. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000163793564, -0.272134781, 6.33502007, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1212. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1213. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1214. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000125408173, -2.87703323, 5.70879173, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1215. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1216. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1217. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.53131104e-005, -2.33333254, 6.26292419, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1218. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1219. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1220. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.07424164e-005, 4.60000801, 3.13654184, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1221. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1222. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1223. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81469727e-005, -2.33333683, 6.26292419, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1224. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1225. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1226. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.91278076e-005, 0.345923424, 6.61297035, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1227. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1228. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1229. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(6.67572021e-005, 0.451700211, 6.53692818, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1230. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1231. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1232. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.39233398e-005, 0.345918655, 6.48334122, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1233. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1234. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1235. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-7.15255737e-007, 4.60000992, 3.1365478, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1236. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1237. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1238. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000117063522, 4.61297989, 3.2661674, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1239. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1240. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1241. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000117063522, 4.58705902, 3.2661674, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1242. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1243. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1244. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000145196915, 4.970644, 0.487595558, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1245. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1246. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1247. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.39233398e-005, 0.332958221, 6.46089363, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1248. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1249. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1250. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000169277191, 4.97064209, 0.487604141, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1251. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1252. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1253. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000131368637, 4.61297798, 3.26617432, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1254. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1255. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1256. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.50339508e-005, 5.07168198, 0.429261208, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1257. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1258. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1259. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.91278076e-005, 0.332961082, 6.59052086, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1260. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1261. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1262. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-4.38690186e-005, 0.451704025, 6.40730095, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1263. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1264. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1265. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000169277191, 4.94818306, 0.500570297, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1266. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1267. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1268. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00012254715, 2.81091881, 5.52395439, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1269. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1270. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1271. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.47819519e-005, 2.86450768, 5.40520668, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1272. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1273. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1274. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.95774841e-005, 5.07167244, 0.429275513, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1275. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1276. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1277. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.81469727e-005, 2.86450768, 5.4052124, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1278. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1279. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1280. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.53131104e-005, -2.33333254, 6.28885269, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1281. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1282. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1283. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.20159912e-005, -2.20370197, 6.27588654, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1284. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1285. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1286. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.74996185e-005, 2.81091881, 5.52396393, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1287. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1288. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1289. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000145196915, 4.94819832, 0.500566483, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1290. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1291. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1292. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81469727e-005, -2.33333683, 6.28885269, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1293. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1294. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1295. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.74996185e-005, 2.78847122, 5.51100349, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1296. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1297. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1298. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00012254715, 2.78846169, 5.51098824, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1299. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1300. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1301. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000131368637, 4.58704567, 3.26617432, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1302. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1303. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1304. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(9.15527344e-005, -2.20371342, 6.27588654, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1305. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1306. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1307. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-6.72340393e-005, -2.86659622, 5.46681213, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1308. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1309. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1310. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.12599945e-005, -2.87955475, 5.59644508, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1311. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1312. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1313. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.38418579e-007, -5.41842747, 1.15975761, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1314. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1315. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1316. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000163793564, -4.53397942, -1.19071579, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1317. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1318. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1319. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.76565552e-005, -4.84293938, 3.79575825, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1320. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1321. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1322. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.12599945e-005, -2.85363007, 5.59644508, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1323. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1324. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1325. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.64644623e-005, -4.66361141, -1.20367813, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1326. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1327. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1328. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.60012054e-005, -0.229459763, 6.18065071, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1329. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1330. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1331. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.78949738e-005, -4.82047844, 3.80872631, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1332. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1333. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1334. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000123739243, -5.29968166, 1.10616493, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1335. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1336. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1337. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.64644623e-005, -4.66361141, -1.17776489, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1338. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1339. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1340. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.38418579e-007, -5.40546131, 1.18221474, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1341. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1342. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1343. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.96453857e-005, -0.330493927, 6.23898315, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1344. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1345. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1346. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.96453857e-005, -0.352949142, 6.2519474, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1347. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.100000001, 0.600000024, 1))
  1348. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Neon,0,0.39999997615814,tclr,"Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1349. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-9.25064087e-005, -4.7668972, 3.68998146, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1350. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.600000024, 1, 1))
  1351. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.8148154, 0.518518627, 2.07407475))
  1352. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81292725, 0.000133752823, 0, 7.26342932e-008, 0, -1, 1, -1.35872824e-008, 7.26342932e-008, -1.35872824e-008, -1, -9.86902651e-016))
  1353. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1.00999999, 1))
  1354. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1355. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.1920929e-007, -0.129768372, -3.81292725, -9.78950787e-009, -1, -2.98023224e-008, -1, 9.78950787e-009, 4.63133887e-009, -4.63133842e-009, 2.98023224e-008, -1))
  1356. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1357. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1358. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-1.1920929e-007, -0.129768372, -3.81292725, -9.78950787e-009, -1, -2.98023224e-008, -1, 9.78950787e-009, 4.63133887e-009, -4.63133842e-009, 2.98023224e-008, -1))
  1359. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1360. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1361. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.75984001, 0.000175714493, -3.91405869, -1.05164366e-008, -0.968119502, -0.250488758, -1, 9.91058347e-009, 3.68003583e-009, -1.08022657e-009, 0.250488758, -0.968119502))
  1362. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1363. Part=part(Enum.FormFactor.Custom,m,Enum.Material.Plastic,0,1,"Really black","Part",Vector3.new(0.259259343, 0.259259313, 0.259259343))
  1364. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(3.65045071, 9.1791153e-005, -3.88835716, -7.4505806e-008, 0.968119502, -0.250488728, 1, 7.40473354e-008, -1.12545493e-008, 7.65227881e-009, -0.250488728, -0.968119562))
  1365. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=6547801",Vector3.new(0, 0, 0),Vector3.new(0.0518518686, 0.00129629672, 0.0518518686))
  1366. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1367. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000163793564, -0.283361435, 6.34150124, -1, -2.81808241e-007, -1.07155677e-006, 1.06889968e-006, -0.499999523, -0.866025686, -2.91724689e-007, -0.866025686, 0.499999523))
  1368. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1369. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1370. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.01086426e-005, -5.50797844, 1.22934341, -1, -1.92401131e-007, -4.53303073e-007, 6.00274603e-008, 0.866025209, -0.500000358, 4.88772514e-007, -0.500000358, -0.866025209))
  1371. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1372. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1373. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000125408173, -2.86408234, 5.70879555, -1, -7.88447323e-007, -1.0545923e-006, 1.05459173e-006, 7.30156785e-007, -1, 7.88448119e-007, -1, -7.30155932e-007))
  1374. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1375. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1376. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.14984131e-005, -4.77596188, -1.18818855, -1, -1.35872629e-008, 7.26342932e-008, -1.35872771e-008, 1, -1.78813934e-007, -7.26342932e-008, -1.78813934e-007, -1))
  1377. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1378. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1379. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000111818314, -4.88570976, 3.90081406, -1, -6.54337043e-007, -1.05499896e-006, 5.86486806e-007, 0.500000536, -0.866025209, 1.09417238e-006, -0.866025209, -0.500000536))
  1380. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1381. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1382. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-8.74996185e-005, 2.79969025, 5.51748085, 1, -3.41412829e-007, 2.95972967e-007, -8.56137845e-008, 0.499999881, 0.866025567, -4.43658678e-007, -0.866025567, 0.499999881))
  1383. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1384. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1385. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.53131104e-005, -2.33333254, 6.27589035, -1, 1.35872806e-008, -7.26343004e-008, -1.35872806e-008, -1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1386. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1387. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1388. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000145196915, 4.95941925, 0.494076729, 1, -5.64930247e-007, 1.63133308e-007, -4.23742733e-007, -0.50000006, 0.866025448, -4.07677305e-007, -0.866025448, -0.50000006))
  1389. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1390. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1391. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.00012254715, 2.79969025, 5.51747131, -1, 6.54337214e-007, 1.0549993e-006, 5.86486863e-007, -0.500000596, 0.866025031, 1.09417272e-006, 0.866025031, 0.500000596))
  1392. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1393. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1394. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000169277191, 4.95941162, 0.494087219, -1, 2.81808099e-007, 1.07155711e-006, 1.06889991e-006, 0.499999464, 0.866025746, -2.91724916e-007, 0.866025746, -0.499999464))
  1395. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1396. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1397. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-3.81469727e-005, -2.33333683, 6.27589035, 1, -1.35872806e-008, 7.26343004e-008, 1.35872806e-008, 1, 0, -7.26343004e-008, 9.86902651e-016, 1))
  1398. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1399. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1400. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.39233398e-005, 0.339439392, 6.47211838, -1, 1.92401188e-007, 4.53303187e-007, 6.00273324e-008, -0.866025329, 0.500000119, 4.88772628e-007, 0.500000119, 0.866025329))
  1401. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1402. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1403. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-5.91278076e-005, 0.339440346, 6.6017437, 1, -1.35872806e-008, 7.26343004e-008, -2.45502303e-008, 0.866025329, 0.500000119, -6.96967817e-008, -0.500000119, 0.866025329))
  1404. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1405. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1406. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(0.000131368637, 4.60000801, 3.26617432, -1, 7.88447494e-007, 1.05459264e-006, 1.05459196e-006, -8.34465027e-007, 1, 7.88448347e-007, 1, 8.34464174e-007))
  1407. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1408. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1409. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-0.000117063522, 4.60001373, 3.2661674, 1, -1.92401188e-007, 2.57636145e-007, -2.57636145e-007, -5.96046377e-008, 1, -1.92401174e-007, -1, -5.96046874e-008))
  1410. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1411. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.03703737))
  1412. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(8.96453857e-005, -0.341720581, 6.24546432, 1, 3.27825546e-007, -1.07155665e-006, -1.09190842e-006, 0.499999553, -0.866025746, 2.51872478e-007, 0.866025746, 0.499999553))
  1413. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1414. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.55555618))
  1415. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(5.12599945e-005, -2.86659622, 5.59644508, 1, 8.19563866e-007, -1.05459219e-006, -1.05459162e-006, -7.30156785e-007, -1, -8.19564661e-007, 1, -7.30155932e-007))
  1416. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1417. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.59259343))
  1418. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(-2.64644623e-005, -4.66361141, -1.19071198, 1, 5.96046519e-008, 7.26342861e-008, 5.96046661e-008, -1, -1.7881392e-007, 7.2634279e-008, 1.7881392e-007, -1))
  1419. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1420. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 1.81481552))
  1421. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.76565552e-005, -4.831707, 3.80224323, 1, 6.40749931e-007, -1.05499896e-006, -5.93280276e-007, -0.500000477, -0.86602515, -1.08240556e-006, 0.866025209, -0.500000477))
  1422. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1423. Part=part(Enum.FormFactor.Custom,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.259259343, 0.77777797, 2.33333421))
  1424. Partweld=weld(m,Handle,Part,CFrame.new(0, 0, 0, 3.0054359e-008, 0.707106888, -0.707106769, -6.53304255e-008, 0.707106769, 0.707106888, 1, 2.49439367e-008, 6.74472247e-008),CFrame.new(2.38418579e-007, -5.4119463, 1.17098236, 1, 2.08616257e-007, -4.53303073e-007, -4.59847378e-008, -0.866025269, -0.500000358, -4.96880091e-007, 0.500000358, -0.866025269))
  1425. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.699999988, 0.600000024, 1))
  1426.  
  1427. function MagniDamage(Hit,Part,magni,mindam,maxdam,knock,Type)
  1428. for _,c in pairs(workspace:children()) do
  1429. local hum=c:findFirstChild("Humanoid")
  1430. if hum~=nil then
  1431. local head=c:findFirstChild("Torso")
  1432. if head~=nil then
  1433. local targ=head.Position-Part.Position
  1434. local mag=targ.magnitude
  1435. if mag<=magni and c.Name~=Player.Name then
  1436. Damagefunc(Hit,head,mindam,maxdam,knock,Type,RootPart,.2,1,3)
  1437. end
  1438. end
  1439. end
  1440. end
  1441. end
  1442.  
  1443. function magicring(brickcolor,cframe,x1,y1,z1,x3,y3,z3)
  1444. local prt=part(3,workspace,"SmoothPlastic",0,0,brickcolor,"Effect",Vector3.new(0.5,0.5,0.5))
  1445. prt.Anchored=true
  1446. prt.CFrame=cframe
  1447. prt.Touched:connect(function(hit) end)
  1448. local msh=mesh("SpecialMesh",prt,"FileMesh","http://www.roblox.com/asset/?id=3270017",Vector3.new(0,0,0),Vector3.new(x1,y1,z1))
  1449. local ref = Instance.new("Part",workspace)
  1450. ref.Anchored = true
  1451. ref.Size = Vector3.new(5,5,5)
  1452. ref.CFrame = Torso.CFrame*CFrame.new(-5,0,0)
  1453. ref.CanCollide = false
  1454. ref.Transparency = 1
  1455. MagniDamage(prt,ref,10,5,10,0,"Knockdown")
  1456. coroutine.resume(coroutine.create(function(Part,Mesh)
  1457. for i=0,1,0.03 do
  1458. wait()
  1459. Part.CFrame=Part.CFrame
  1460. Part.Transparency=i
  1461. Mesh.Scale=Mesh.Scale+Vector3.new(x3,y3,z3)
  1462. end
  1463. Part.Parent=nil
  1464. ref.Parent = nil
  1465. end),prt,msh)
  1466. end
  1467.  
  1468. function attackone()
  1469. attack = true
  1470. for i = 0,1,0.1 do
  1471. swait()
  1472. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1473. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1474. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(10)),.3)
  1475. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1476. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1477. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1478. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1479. end
  1480. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1481. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  1482. for i = 0,1,0.1 do
  1483. swait()
  1484. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1485. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1486. local h = 5
  1487. 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)
  1488. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1489. 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)
  1490. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1491. scfr = blcf
  1492. elseif not scfr then
  1493. scfr = blcf
  1494. end
  1495. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1496. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  1497. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-90), math.rad(-130)),.3)
  1498. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-20)),.3)
  1499. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1500. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1501. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.3)
  1502. end
  1503. for i = 0,1,0.1 do
  1504. swait()
  1505. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1506. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1507. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(90), math.rad(50)),.3)
  1508. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)),.3)
  1509. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1510. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1511. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1512. end
  1513. so("http://roblox.com/asset/?id=199146359",Hitbox,1,1)
  1514. for i = 0,1,0.1 do
  1515. swait()
  1516. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1517. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1518. local h = 5
  1519. 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)
  1520. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1521. 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)
  1522. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1523. scfr = blcf
  1524. elseif not scfr then
  1525. scfr = blcf
  1526. end
  1527. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-50)),.3)
  1528. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(50)),.3)
  1529. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(130)),.3)
  1530. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-20)),.3)
  1531. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1532. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1533. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-40),math.rad(0),math.rad(0)),.3)
  1534. end
  1535. attack = false
  1536. con:disconnect()
  1537. scfr = nil
  1538. end
  1539.  
  1540. function attacktwo()
  1541. attack = true
  1542. for i = 0,1,0.1 do
  1543. swait()
  1544. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1545. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1546. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-90), math.rad(-90)),.3)
  1547. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1548. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1549. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1550. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1551. end
  1552. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1553. so("http://roblox.com/asset/?id=199150686",Hitbox,1,1)
  1554. for i = 0,1,0.1 do
  1555. swait()
  1556. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(90)),.3)
  1557. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-80)),.3)
  1558. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-190), math.rad(-90)),.3)
  1559. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1560. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1561. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1562. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-90),math.rad(0),math.rad(0)),.3)
  1563. end
  1564. for i = 0,1,0.1 do
  1565. swait()
  1566. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1567. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1568. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(120), math.rad(90)),.3)
  1569. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1570. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1571. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1572. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1573. end
  1574. so("http://roblox.com/asset/?id=199150686",Hitbox,1,.9)
  1575. for i = 0,1,0.1 do
  1576. swait()
  1577. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1578. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1579. local h = 5
  1580. 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)
  1581. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1582. 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)
  1583. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1584. scfr = blcf
  1585. elseif not scfr then
  1586. scfr = blcf
  1587. end
  1588. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-70)),.3)
  1589. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1590. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-20), math.rad(90)),.3)
  1591. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1592. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1593. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1594. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1595. end
  1596. for i = 0,1,0.1 do
  1597. swait()
  1598. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.3)
  1599. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(0)),.3)
  1600. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(150), math.rad(0), math.rad(0)),.3)
  1601. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-50)),.3)
  1602. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1603. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1604. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1605. end
  1606. so("http://roblox.com/asset/?id=199146359",Hitbox,1,.9)
  1607. for i = 0,1,0.1 do
  1608. swait()
  1609. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1610. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1611. local h = 5
  1612. 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)
  1613. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1614. 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)
  1615. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1616. scfr = blcf
  1617. elseif not scfr then
  1618. scfr = blcf
  1619. end
  1620. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(20)),.3)
  1621. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-20)),.3)
  1622. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(0)),.3)
  1623. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-30)),.3)
  1624. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1625. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1626. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.3)
  1627. end
  1628. attack = false
  1629. con:disconnect()
  1630. scfr = nil
  1631. end
  1632.  
  1633. function Spin()
  1634. attack=true
  1635. local con=Hitbox.Touched:connect(function(hit) Damagefunc(Hitbox,hit,30,50,math.random(5,10),"Normal",RootPart,.2,1) end)
  1636. for i=0,1,0.1 do
  1637. swait()
  1638. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(70)),.3)
  1639. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1640. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(50), math.rad(120)),.3)
  1641. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-50)),.3)
  1642. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1643. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1644. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1645. end
  1646. Humanoid = game.Players.LocalPlayer.Character.Humanoid
  1647. Humanoid.Jump = true
  1648. for i=0,1,1 do
  1649. so("http://roblox.com/asset/?id=234365573",Torso,1,1)
  1650. swait()
  1651. for i=0,1,0.1 do
  1652. swait()
  1653. local blcf = Hitbox.CFrame*CFrame.new(0,.5,0)
  1654. if scfr and (Hitbox.Position-scfr.p).magnitude > .1 then
  1655. local h = 5
  1656. 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)
  1657. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1658. 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)
  1659. if a then game.Debris:AddItem(a,1) end if b then game.Debris:AddItem(b,1) end
  1660. scfr = blcf
  1661. elseif not scfr then
  1662. scfr = blcf
  1663. end
  1664. RootJoint.C0=clerp(RootJoint.C0,RootCF*cf(0,0,2)*euler(0,-1.2,6*i),.3)
  1665. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(-70)),.3)
  1666. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(0), math.rad(-10), math.rad(80)),.3)
  1667. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(-70)),.3)
  1668. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(60),math.rad(-10)),.3)
  1669. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(10)),.3)
  1670. handleweld.C0=clerp(handleweld.C0,cf(0,-1,-1)*angles(math.rad(-80),math.rad(0),math.rad(0)),.3)
  1671. end
  1672. end
  1673. attack=false
  1674. con:disconnect()
  1675. scfr = nil
  1676. end
  1677.  
  1678. function StunTarget()
  1679. attack = true
  1680. for i = 0,1,0.05 do
  1681. swait()
  1682. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-80)),.3)
  1683. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(70)),.3)
  1684. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-40), math.rad(0), math.rad(10)),.3)
  1685. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-90)),.3)
  1686. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.3)
  1687. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.3)
  1688. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(20),math.rad(0),math.rad(0)),.3)
  1689. end
  1690. so("http://roblox.com/asset/?id=228343249",Torso,1,1)
  1691. for i = 1,2 do
  1692. magicring(BrickColor.new(tclr),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)
  1693. magicring(BrickColor.new(tclr),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)
  1694. end
  1695. attack = false
  1696. end
  1697.  
  1698. mouse.Button1Down:connect(function()
  1699. if attack == false and attacktype == 1 then
  1700. attacktype = 2
  1701. attackone()
  1702. elseif attack == false and attacktype == 2 then
  1703. attacktype = 1
  1704. attacktwo()
  1705. end
  1706. end)
  1707.  
  1708. mouse.KeyDown:connect(function(k)
  1709. k=k:lower()
  1710. if attack == false and k == 'q' then
  1711. Spin()
  1712. elseif attack == false and k == 'e' then
  1713. StunTarget()
  1714. end
  1715. end)
  1716.  
  1717.  
  1718. local sine = 0
  1719. local change = 1
  1720. local val = 0
  1721.  
  1722. while true do
  1723. swait()
  1724. sine = sine + change
  1725. local torvel=(RootPart.Velocity*Vector3.new(1,0,1)).magnitude
  1726. local velderp=RootPart.Velocity.y
  1727. hitfloor,posfloor=rayCast(RootPart.Position,(CFrame.new(RootPart.Position,RootPart.Position - Vector3.new(0,1,0))).lookVector,4,Character)
  1728. if equipped==true or equipped==false then
  1729. if attack==false then
  1730. idle=idle+1
  1731. else
  1732. idle=0
  1733. end
  1734. if idle>=500 then
  1735. if attack==false then
  1736. --Sheath()
  1737. end
  1738. end
  1739. if RootPart.Velocity.y > 1 and hitfloor==nil then
  1740. if attack==false then
  1741. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
  1742. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1743. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(20)),.2)
  1744. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-20)),.2)
  1745. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.2)
  1746. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(-20)),.2)
  1747. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1748. end
  1749. elseif RootPart.Velocity.y < -1 and hitfloor==nil then
  1750. Anim="Fall"
  1751. if attack==false then
  1752. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(0)),.2)
  1753. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(20),math.rad(0),math.rad(0)),.2)
  1754. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(40)),.2)
  1755. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-40)),.2)
  1756. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-20)),.2)
  1757. LH.C0=clerp(LH.C0,cf(-1,-.5,-.5)*angles(math.rad(0),math.rad(-90),math.rad(10)),.2)
  1758. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-20),math.rad(0),math.rad(0)),.2)
  1759. end
  1760. elseif torvel<1 and hitfloor~=nil then
  1761. Anim="Idle"
  1762. if attack==false then
  1763. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(0),math.rad(0),math.rad(-40)),.2)
  1764. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(5),math.rad(0),math.rad(40)),.2)
  1765. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(10)),.2)
  1766. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(20), math.rad(0), math.rad(-10)),.2)
  1767. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(-10)),.2)
  1768. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-60),math.rad(-5)),.2)
  1769. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-5),math.rad(0),math.rad(0)),.2)
  1770. end
  1771. elseif torvel>2 and hitfloor~=nil then
  1772. Anim="Walk"
  1773. if attack==false then
  1774. change=3
  1775. RootJoint.C0 = clerp(RootJoint.C0,RootCF*cf(0,0,0)* angles(math.rad(10),math.rad(0),math.rad(0)),.2)
  1776. Torso.Neck.C0 = clerp(Torso.Neck.C0,necko *angles(math.rad(-5),math.rad(0),math.rad(0)),.2)
  1777. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.5, 0) * angles(math.rad(10), math.rad(0), math.rad(10)),.2)
  1778. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0.5, 0) * angles(math.rad(-20), math.rad(0), math.rad(-15)),.2)
  1779. RH.C0=clerp(RH.C0,cf(1,-1,0)*angles(math.rad(0),math.rad(90),math.rad(10)),.2)
  1780. LH.C0=clerp(LH.C0,cf(-1,-1,0)*angles(math.rad(0),math.rad(-90),math.rad(10)),.2)
  1781. handleweld.C0=clerp(handleweld.C0,cf(0,0,0)*angles(math.rad(-10),math.rad(0),math.rad(0)),.2)
  1782. end
  1783. end
  1784. end
  1785. if #Effects>0 then
  1786. for e=1,#Effects do
  1787. if Effects[e]~=nil then
  1788. local Thing=Effects[e]
  1789. if Thing~=nil then
  1790. local Part=Thing[1]
  1791. local Mode=Thing[2]
  1792. local Delay=Thing[3]
  1793. local IncX=Thing[4]
  1794. local IncY=Thing[5]
  1795. local IncZ=Thing[6]
  1796. if Thing[1].Transparency<=1 then
  1797. if Thing[2]=="Block1" then
  1798. Thing[1].CFrame=Thing[1].CFrame*euler(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  1799. Mesh=Thing[1].Mesh
  1800. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1801. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1802. elseif Thing[2]=="Cylinder" then
  1803. Mesh=Thing[1].Mesh
  1804. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1805. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1806. elseif Thing[2]=="Blood" then
  1807. Mesh=Thing[7]
  1808. Thing[1].CFrame=Thing[1].CFrame*cf(0,.5,0)
  1809. Mesh.Scale=Mesh.Scale+vt(Thing[4],Thing[5],Thing[6])
  1810. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1811. elseif Thing[2]=="Elec" then
  1812. Mesh=Thing[1].Mesh
  1813. Mesh.Scale=Mesh.Scale+vt(Thing[7],Thing[8],Thing[9])
  1814. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1815. elseif Thing[2]=="Disappear" then
  1816. Thing[1].Transparency=Thing[1].Transparency+Thing[3]
  1817. end
  1818. else
  1819. Part.Parent=nil
  1820. table.remove(Effects,e)
  1821. end
  1822. end
  1823. end
  1824. end
  1825. end
  1826. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement