Advertisement
Prozanity

Untitled

Jul 29th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 414.21 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,game,owner = owner,game
  3. local RealPlayer = Player
  4. do
  5. print("FE Compatibility code by Mokiros")
  6. local rp = RealPlayer
  7. script.Parent = rp.Character
  8.  
  9. --RemoteEvent for communicating
  10. local Event = Instance.new("RemoteEvent")
  11. Event.Name = "UserInput_Event"
  12.  
  13. --Fake event to make stuff like Mouse.KeyDown work
  14. local function fakeEvent()
  15. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  16. t.connect = t.Connect
  17. return t
  18. end
  19.  
  20. --Creating fake input objects with fake variables
  21. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  22. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  23. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  24. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  25. end}
  26. --Merged 2 functions into one by checking amount of arguments
  27. CAS.UnbindAction = CAS.BindAction
  28.  
  29. --This function will trigger the events that have been :Connect()'ed
  30. local function te(self,ev,...)
  31. local t = m[ev]
  32. if t and t._fakeEvent then
  33. for _,f in pairs(t.Functions) do
  34. f(...)
  35. end
  36. end
  37. end
  38. m.TrigEvent = te
  39. UIS.TrigEvent = te
  40.  
  41. Event.OnServerEvent:Connect(function(plr,io)
  42. if plr~=rp then return end
  43. m.Target = io.Target
  44. m.Hit = io.Hit
  45. if not io.isMouse then
  46. local b = io.UserInputState == Enum.UserInputState.Begin
  47. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  48. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  49. end
  50. for _,t in pairs(CAS.Actions) do
  51. for _,k in pairs(t.Keys) do
  52. if k==io.KeyCode then
  53. t.Function(t.Name,io.UserInputState,io)
  54. end
  55. end
  56. end
  57. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  58. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  59. end
  60. end)
  61. Event.Parent = NLS([==[
  62. local Player = game:GetService("Players").LocalPlayer
  63. local Event = script:WaitForChild("UserInput_Event")
  64.  
  65. local Mouse = Player:GetMouse()
  66. local UIS = game:GetService("UserInputService")
  67. local input = function(io,a)
  68. if a then return end
  69. --Since InputObject is a client-side instance, we create and pass table instead
  70. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  71. end
  72. UIS.InputBegan:Connect(input)
  73. UIS.InputEnded:Connect(input)
  74.  
  75. local h,t
  76. --Give the server mouse data 30 times every second, but only if the values changed
  77. --If player is not moving their mouse, client won't fire events
  78. while wait(1/30) do
  79. if h~=Mouse.Hit or t~=Mouse.Target then
  80. h,t=Mouse.Hit,Mouse.Target
  81. Event:FireServer({isMouse=true,Target=t,Hit=h})
  82. end
  83. end]==],Player.Character)
  84.  
  85. ----Sandboxed game object that allows the usage of client-side methods and services
  86. --Real game object
  87. local _rg = game
  88.  
  89. --Metatable for fake service
  90. local fsmt = {
  91. __index = function(self,k)
  92. local s = rawget(self,"_RealService")
  93. if s then return s[k] end
  94. end,
  95. __newindex = function(self,k,v)
  96. local s = rawget(self,"_RealService")
  97. if s then s[k]=v end
  98. end,
  99. __call = function(self,...)
  100. local s = rawget(self,"_RealService")
  101. if s then return s(...) end
  102. end
  103. }
  104. local function FakeService(t,RealService)
  105. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  106. return setmetatable(t,fsmt)
  107. end
  108.  
  109. --Fake game object
  110. local g = {
  111. GetService = function(self,s)
  112. return self[s]
  113. end,
  114. Players = FakeService({
  115. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  116. },"Players"),
  117. UserInputService = FakeService(UIS,"UserInputService"),
  118. ContextActionService = FakeService(CAS,"ContextActionService"),
  119. }
  120. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  121. g.service = g.GetService
  122.  
  123. g.RunService = FakeService({
  124. RenderStepped = _rg:GetService("RunService").Heartbeat,
  125. BindToRenderStep = function(self,name,_,fun)
  126. self._btrs[name] = self.Heartbeat:Connect(fun)
  127. end,
  128. UnbindFromRenderStep = function(self,name)
  129. self._btrs[name]:Disconnect()
  130. end,
  131. },"RunService")
  132.  
  133. setmetatable(g,{
  134. __index=function(self,s)
  135. return _rg:GetService(s) or typeof(_rg[s])=="function"
  136. and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  137. end,
  138. __newindex = fsmt.__newindex,
  139. __call = fsmt.__call
  140. })
  141. --Changing owner to fake player object to support owner:GetMouse()
  142. game,owner = g,g.Players.LocalPlayer
  143. end
  144. --==//Wings and Halo\\==--
  145. Player=game:GetService('Players').LocalPlayer
  146. Character=Player.Character
  147. Mouse=Player:GetMouse()
  148. m=Instance.new('Model',Character)
  149.  
  150. local function weldBetween(a, b)
  151. local weldd = Instance.new("ManualWeld")
  152. weldd.Part0 = a
  153. weldd.Part1 = b
  154. weldd.C0 = CFrame.new()
  155. weldd.C1 = b.CFrame:inverse() * a.CFrame
  156. weldd.Parent = a
  157. return weldd
  158. end
  159.  
  160. it=Instance.new
  161.  
  162. function nooutline(part)
  163. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  164. end
  165.  
  166. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  167. local fp=it("Part")
  168. fp.formFactor=formfactor
  169. fp.Parent=parent
  170. fp.Reflectance=reflectance
  171. fp.Transparency=transparency
  172. fp.CanCollide=false
  173. fp.Locked=true
  174. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  175. fp.Name=name
  176. fp.Size=size
  177. fp.Position=Character.Torso.Position
  178. nooutline(fp)
  179. fp.Material=material
  180. fp:BreakJoints()
  181. return fp
  182. end
  183.  
  184. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  185. local mesh=it(Mesh)
  186. mesh.Parent=part
  187. if Mesh=="SpecialMesh" then
  188. mesh.MeshType=meshtype
  189. mesh.MeshId=meshid
  190. end
  191. mesh.Offset=offset
  192. mesh.Scale=scale
  193. return mesh
  194. end
  195.  
  196. function weld(parent,part0,part1,c0,c1)
  197. local weld=it("Weld")
  198. weld.Parent=parent
  199. weld.Part0=part0
  200. weld.Part1=part1
  201. weld.C0=c0
  202. weld.C1=c1
  203. return weld
  204. end
  205.  
  206.  
  207. handle=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,1,"Medium stone grey","Handle",Vector3.new(0.05, 0.05, 0.05))
  208. handleweld=weld(m,Character["Head"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0100221634, -0.0175514221, 0.00262880325, 1.00000155, -2.14157415e-28, 0.000332000374, -2.14157415e-28, 1, -7.1100246e-32, -0.000332000374, 4.7754458e-39, 1.00000155))
  209. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  210. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.01700497, -2.78476143, 1.29093361, -0.566856563, -0.672185063, 0.476282805, -0.737335682, 0.671828806, 0.0706164688, -0.367447764, -0.311148405, -0.876456618))
  211. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  212. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  213. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30598545, -2.48077655, 0.0464644432, 0.517703712, 0.593153298, 0.616568983, -0.381427974, 0.805089593, -0.454253823, -0.765835285, -7.74916589e-06, 0.64304328))
  214. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  215. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  216. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30610561, -2.74443865, 0.0464487076, 0.517703712, 0.593153298, 0.616568983, -0.381427974, 0.805089593, -0.454253823, -0.765835285, -7.74916589e-06, 0.64304328))
  217. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  218. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  219. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30467606, -2.68426228, 1.35071898, 0.51786989, 0.593198717, 0.616385758, -0.667816341, 0.73064208, -0.142082185, -0.534640253, -0.33804962, 0.774525344))
  220. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  221. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  222. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30470467, -2.72549629, -1.26544809, 0.517493069, 0.593198717, 0.616701961, -0.0238876455, 0.730439425, -0.68256253, -0.85535872, 0.338487118, 0.392167568))
  223. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  224. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  225. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32190132, -2.45886135, -0.04941082, -0.616569281, 0.593141377, 0.517717183, 0.45425126, 0.805098474, -0.381412238, -0.643044591, 6.64642994e-06, -0.765834033))
  226. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.122438505, 0.306095749, 0.244876474))
  227. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  228. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32073355, -2.82931805, -0.0494165421, -0.616569281, 0.593141377, 0.517717183, 0.45425126, 0.805098474, -0.381412238, -0.643044591, 6.64642994e-06, -0.765834033))
  229. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0306096263, 0.918287158, 0.122438237))
  230. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  231. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.01574039, -2.54700041, -0.0494318008, -0.566985786, -0.672224939, 0.476072699, -0.514809668, 0.740347028, 0.432274401, -0.643044591, 6.67930635e-06, -0.765834033))
  232. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  233. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  234. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32186365, -2.45639038, -0.0494318008, -0.616569281, 0.593141377, 0.517717183, 0.45425126, 0.805098474, -0.381412238, -0.643044591, 6.64642994e-06, -0.765834033))
  235. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  236. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  237. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32202506, -2.72006893, -0.0494146347, -0.616569281, 0.593141377, 0.517717183, 0.45425126, 0.805098474, -0.381412238, -0.643044591, 6.64642994e-06, -0.765834033))
  238. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  239. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  240. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32062888, -2.70244646, 1.253438, -0.616386592, 0.59318614, 0.51788348, 0.142082363, 0.730658114, -0.667798877, -0.774524629, -0.338037193, -0.534649134))
  241. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  242. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  243. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32058454, -2.66307163, -1.34215736, -0.61670351, 0.5931862, 0.517506003, 0.682556689, 0.730445147, -0.0238806624, -0.392175317, 0.338497102, -0.85535109))
  244. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  245. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  246. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32410431, -2.6385808, 0.0402884483, 0.805022657, 0.593248308, -0.000262707734, -0.593250692, 0.805019498, 0.000206495999, 0.000334087556, -1.03694274e-05, 1.00000429))
  247. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  248. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  249. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.01573372, -2.54944706, -0.0494222641, -0.566985786, -0.672224939, 0.476072699, -0.514809668, 0.740347028, 0.432274401, -0.643044591, 6.67930635e-06, -0.765834033))
  250. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.122438505, 0.306095749, 0.244876474))
  251. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  252. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.01702881, -2.74539042, -1.37966251, -0.567172229, -0.672185063, 0.475906938, -0.196610749, 0.671631336, 0.714324772, -0.79979229, 0.31157437, -0.513089418))
  253. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  254. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  255. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16786051, -2.6699791, -0.024679184, 0.000256711646, -0.631440818, 0.775427103, 0.000206167286, 0.775424004, 0.63144356, -1.00000417, -2.19456115e-06, 0.000329244649))
  256. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  257. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  258. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30745268, -2.62039042, -0.0246763229, 0.000263290771, 0.593240857, 0.805028379, -0.00019721748, 0.805025041, -0.593243122, -1.00000417, -2.59739454e-06, 0.000328961527))
  259. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  260. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  261. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30480003, -2.85367227, 0.0464134216, 0.517703712, 0.593153298, 0.616568983, -0.381427974, 0.805089593, -0.454253823, -0.765835285, -7.74916589e-06, 0.64304328))
  262. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0306096263, 0.918287158, 0.122438237))
  263. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  264. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.996117592, -2.9402914, 0.0464425087, 0.476082802, -0.672218442, 0.566984951, 0.432261109, 0.740352929, 0.514812171, -0.765835166, -7.7223558e-06, 0.64304328))
  265. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0306096263, 0.918287158, 0.122438237))
  266. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  267. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.994925022, -2.56740475, 0.0464677811, 0.476082802, -0.672218442, 0.566984951, 0.432261109, 0.740352929, 0.514812171, -0.765835166, -7.7223558e-06, 0.64304328))
  268. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  269. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  270. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.996185303, -2.80421066, -1.30132174, 0.475917101, -0.672178507, 0.567171514, 0.714314699, 0.671641886, 0.196611404, -0.513094127, 0.311565667, 0.799792826))
  271. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  272. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  273. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.994819164, -2.83106422, 0.0464305878, 0.476082802, -0.672218442, 0.566984951, 0.432261109, 0.740352929, 0.514812171, -0.765835166, -7.7223558e-06, 0.64304328))
  274. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  275. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  276. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.994915485, -2.56984329, 0.0464420319, 0.476082802, -0.672218442, 0.566984951, 0.432261109, 0.740352929, 0.514812171, -0.765835166, -7.7223558e-06, 0.64304328))
  277. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.122438505, 0.306095749, 0.244876474))
  278. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  279. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.15129995, -2.66263962, 0.0402750969, 0.775432706, -0.631434143, -0.000266235322, 0.631436467, 0.775429308, -0.000203192132, 0.000334728189, -1.05326717e-05, 1.00000393))
  280. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  281. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  282. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30596733, -2.48321819, 0.0464520454, 0.517703712, 0.593153298, 0.616568983, -0.381427974, 0.805089593, -0.454253823, -0.765835285, -7.74916589e-06, 0.64304328))
  283. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.122438505, 0.306095749, 0.244876474))
  284. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  285. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.01563072, -2.81065702, -0.0494375229, -0.566985786, -0.672224939, 0.476072699, -0.514809668, 0.740347028, 0.432274401, -0.643044591, 6.67930635e-06, -0.765834033))
  286. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.244876593, 0.183657348))
  287. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  288. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.996201992, -2.7630105, 1.38651466, 0.476293772, -0.672178566, 0.566855192, 0.0706075504, 0.671829045, 0.737336338, -0.876451433, -0.311161906, 0.367448896))
  289. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.00612192554, 0.244876593, 0.0612191185))
  290. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  291. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32422161, -2.81512165, 0.0402588844, 0.805022657, 0.593248308, -0.000262707734, -0.593250692, 0.805019498, 0.000206495999, 0.000334087556, -1.03694274e-05, 1.00000429))
  292. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  293. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  294. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.15116453, -2.83918953, 0.0402612686, 0.775432706, -0.631434143, -0.000266235322, 0.631436467, 0.775429308, -0.000203192132, 0.000334728189, -1.05326717e-05, 1.00000393))
  295. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  296. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  297. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16768813, -2.88875198, -0.0247068405, 0.000256711646, -0.631440818, 0.775427103, 0.000206167286, 0.775424004, 0.63144356, -1.00000417, -2.19456115e-06, 0.000329244649))
  298. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0183657762, 0.612191498, 0.367314696))
  299. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  300. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30738544, -2.44300508, -0.0246763229, 0.000263290771, 0.593240857, 0.805028379, -0.00019721748, 0.805025041, -0.593243122, -1.00000417, -2.59739454e-06, 0.000328961527))
  301. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  302. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  303. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.01691151, -2.91986847, -0.0494298935, -0.566985786, -0.672224939, 0.476072699, -0.514809668, 0.740347028, 0.432274401, -0.643044591, 6.67930635e-06, -0.765834033))
  304. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0306096263, 0.918287158, 0.122438237))
  305. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  306. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32406902, -2.46125555, 0.0402550697, 0.805022657, 0.593248308, -0.000262707734, -0.593250692, 0.805019498, 0.000206495999, 0.000334087556, -1.03694274e-05, 1.00000429))
  307. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  308. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  309. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.15111303, -2.88139915, 0.0402612686, 0.775432706, -0.631434143, -0.000266235322, 0.631436467, 0.775429308, -0.000203192132, 0.000334728189, -1.05326717e-05, 1.00000393))
  310. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0183657762, 0.612191498, 0.367314696))
  311. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  312. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16772103, -2.84651947, -0.0246610641, 0.000256711646, -0.631440818, 0.775427103, 0.000206167286, 0.775424004, 0.63144356, -1.00000417, -2.19456115e-06, 0.000329244649))
  313. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  314. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  315. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.15132284, -2.48526382, 0.0402588844, 0.775432706, -0.631434143, -0.000266235322, 0.631436467, 0.775429308, -0.000203192132, 0.000334728189, -1.05326717e-05, 1.00000393))
  316. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  317. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  318. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30758429, -2.7969296, -0.0246772766, 0.000263290771, 0.593240857, 0.805028379, -0.00019721748, 0.805025041, -0.593243122, -1.00000417, -2.59739454e-06, 0.000328961527))
  319. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  320. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  321. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.30761623, -2.839185, -0.0246772766, 0.000263290771, 0.593240857, 0.805028379, -0.00019721748, 0.805025041, -0.593243122, -1.00000417, -2.59739454e-06, 0.000328961527))
  322. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0183657762, 0.612191498, 0.367314696))
  323. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  324. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.16792846, -2.49263287, -0.024679184, 0.000256711646, -0.631440818, 0.775427103, 0.000206167286, 0.775424004, 0.63144356, -1.00000417, -2.19456115e-06, 0.000329244649))
  325. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0612192526, 0.489753187, 0.3060956))
  326. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  327. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.32426548, -2.85737371, 0.0402669907, 0.805022657, 0.593248308, -0.000262707734, -0.593250692, 0.805019498, 0.000206495999, 0.000334087556, -1.03694274e-05, 1.00000429))
  328. mesh("SpecialMesh",Part,Enum.MeshType.FileMesh,"http://www.roblox.com/Asset/?id=9756362",Vector3.new(0, 0, 0),Vector3.new(0.0183657762, 0.612191498, 0.367314696))
  329. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  330. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0350027084, -2.90196609, 2.14157415e-28, -1, -4.7754458e-39, -0.818965018, 1.7538717e-28, 0.573850572, -0.573850572, 1.22894168e-28, -0.818965018))
  331. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  332. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0278244019, -2.84982681, 2.14157415e-28, -1, -4.7754458e-39, -0.656312168, 1.40553898e-28, -0.754495144, 0.754495144, -1.61580479e-28, -0.656312168))
  333. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  334. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0220708847, -2.86295652, 2.14157415e-28, -1, -4.7754458e-39, -0.883107007, 1.89123624e-28, -0.469180524, 0.469180524, -1.00478335e-28, -0.883107007))
  335. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  336. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.043223381, -2.83651447, 2.14157415e-28, -1, -4.7754458e-39, -0.191135302, 4.09329778e-29, -0.981568038, 0.981568038, -2.1020974e-28, -0.191135302))
  337. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  338. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0247716904, -2.85519171, 2.14157415e-28, -1, -4.7754458e-39, -0.766260862, 1.64100197e-28, -0.642536163, 0.642536163, -1.37603662e-28, -0.766260862))
  339. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  340. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0232152939, -2.85900044, 2.14157415e-28, -1, -4.7754458e-39, -0.829226494, 1.77584716e-28, -0.558920205, 0.558920205, -1.19696715e-28, -0.829226494))
  341. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  342. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0239458084, -2.85707664, 2.14157415e-28, -1, -4.7754458e-39, -0.798838317, 1.7107689e-28, -0.601552665, 0.601552665, -1.28826754e-28, -0.798838317))
  343. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  344. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.026714325, -2.85156298, 2.14157415e-28, -1, -4.7754458e-39, -0.694899857, 1.48817726e-28, -0.719112396, 0.719112396, -1.54003004e-28, -0.694899857))
  345. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  346. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0451002121, -2.83566475, 2.14157415e-28, -1, -4.7754458e-39, -0.139502332, 2.98754135e-29, -0.990225971, 0.990225971, -2.12063905e-28, -0.139502332))
  347. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  348. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0362405777, -2.84085369, 2.14157415e-28, -1, -4.7754458e-39, -0.391038179, 8.37435928e-29, -0.920379043, 0.920379043, -1.97105689e-28, -0.391038179))
  349. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  350. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0378990173, -2.83963108, 2.14157415e-28, -1, -4.7754458e-39, -0.342333198, 7.33130812e-29, -0.939583063, 0.939583063, -2.0121838e-28, -0.342333198))
  351. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  352. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0316791534, -2.8450079, 2.14157415e-28, -1, -4.7754458e-39, -0.530202866, 1.13546691e-28, -0.847875714, 0.847875714, -1.81578601e-28, -0.530202866))
  353. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  354. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0225944519, -2.86096406, 2.14157415e-28, -1, -4.7754458e-39, -0.857341766, 1.83605811e-28, -0.514755726, 0.514755726, -1.10238581e-28, -0.857341766))
  355. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  356. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0346488953, -2.84215927, 2.14157415e-28, -1, -4.7754458e-39, -0.438671023, 9.39445034e-29, -0.898652315, 0.898652315, -1.92452775e-28, -0.438671023))
  357. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  358. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0331268311, -2.84354305, 2.14157415e-28, -1, -4.7754458e-39, -0.4851017, 1.03887971e-28, -0.874462545, 0.874462545, -1.87272336e-28, -0.4851017))
  359. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  360. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0290250778, -2.84815359, 2.14157415e-28, -1, -4.7754458e-39, -0.615925491, 1.31904811e-28, -0.787809789, 0.787809789, -1.6871505e-28, -0.615925491))
  361. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  362. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0303077698, -2.84654331, 2.14157415e-28, -1, -4.7754458e-39, -0.573850453, 1.22894143e-28, -0.818965197, 0.818965197, -1.75387206e-28, -0.573850453))
  363. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  364. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0396180153, -2.83849812, 2.14157415e-28, -1, -4.7754458e-39, -0.292690337, 6.26817072e-29, -0.956211627, 0.956211627, -2.04779509e-28, -0.292690337))
  365. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  366. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0256948471, -2.85334826, 2.14157415e-28, -1, -4.7754458e-39, -0.731583118, 1.56673703e-28, -0.681758463, 0.681758463, -1.46003401e-28, -0.731583118))
  367. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  368. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0652692318, -2.83288574, 2.14157415e-28, -1, -4.7754458e-39, 0.374300778, -8.01591663e-29, -0.927311957, 0.927311957, -1.98590425e-28, 0.374300778))
  369. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  370. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0233707428, -2.8852582, 2.14157415e-28, -1, -4.7754458e-39, -0.996169984, 2.13336873e-28, 0.0874864534, -0.0874864534, 1.87358437e-29, -0.996169984))
  371. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  372. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0693187714, -2.8336134, 2.14157415e-28, -1, -4.7754458e-39, 0.469180703, -1.00478371e-28, -0.883107007, 0.883107007, -1.89123624e-28, 0.469180703))
  373. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  374. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0732748508, -2.83476257, 2.14157415e-28, -1, -4.7754458e-39, 0.558920205, -1.19696715e-28, -0.829226613, 0.829226613, -1.7758474e-28, 0.558920205))
  375. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  376. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0752027035, -2.83548069, 2.14157415e-28, -1, -4.7754458e-39, 0.601552784, -1.2882679e-28, -0.798838377, 0.798838377, -1.71076902e-28, 0.601552784))
  377. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  378. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.090423584, -2.89727211, 2.14157415e-28, -1, -4.7754458e-39, 0.573850572, -1.22894168e-28, 0.818965018, -0.818965018, 1.7538717e-28, 0.573850572))
  379. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  380. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0917100906, -2.89566541, 2.14157415e-28, -1, -4.7754458e-39, 0.615925491, -1.31904811e-28, 0.787809789, -0.787809789, 1.6871505e-28, 0.615925491))
  381. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  382. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0211420059, -2.86905479, 2.14157415e-28, -1, -4.7754458e-39, -0.945630491, 2.02513484e-28, -0.32525596, 0.32525596, -6.96558666e-29, -0.945630491))
  383. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  384. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0216531754, -2.86497068, 2.14157415e-28, -1, -4.7754458e-39, -0.906451821, 1.94123074e-28, -0.422319412, 0.422319412, -9.04426873e-29, -0.906451821))
  385. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  386. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0529713631, -2.83328629, 2.14157415e-28, -1, -4.7754458e-39, 0.0694259033, -1.48680483e-29, -0.997591317, 0.997591317, -2.13641242e-28, 0.0694259033))
  387. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  388. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0509595871, -2.83372307, 2.14157415e-28, -1, -4.7754458e-39, 0.0171207041, -3.66651998e-30, -0.999857605, 0.999857605, -2.141266e-28, 0.0171207041))
  389. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  390. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0221786499, -2.88131666, 2.14157415e-28, -1, -4.7754458e-39, -0.999857605, 2.141266e-28, -0.0171207637, 0.0171207637, -3.66653277e-30, -0.999857605))
  391. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  392. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0217370987, -2.87930393, 2.14157415e-28, -1, -4.7754458e-39, -0.997591317, 2.13641242e-28, -0.0694257542, 0.0694257542, -1.48680167e-29, -0.997591317))
  393. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  394. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0611612797, -2.83259296, 2.14157415e-28, -1, -4.7754458e-39, 0.275319457, -5.8961617e-29, -0.961357176, 0.961357176, -2.05881454e-28, 0.275319457))
  395. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  396. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0673005581, -2.83319759, 2.14157415e-28, -1, -4.7754458e-39, 0.422319263, -9.04426572e-29, -0.906451821, 0.906451821, -1.94123074e-28, 0.422319263))
  397. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  398. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0550003052, -2.83295345, 2.14157415e-28, -1, -4.7754458e-39, 0.121540345, -2.60287265e-29, -0.992590725, 0.992590725, -2.12570329e-28, 0.121540345))
  399. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  400. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.02272892, -2.88330364, 2.14157415e-28, -1, -4.7754458e-39, -0.99938345, 2.14025032e-28, 0.0352311507, -0.0352311507, 7.54499983e-30, -0.99938345))
  401. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  402. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0241250992, -2.88717461, 2.14157415e-28, -1, -4.7754458e-39, -0.990225971, 2.12063905e-28, 0.139502242, -0.139502242, 2.98753954e-29, -0.990225971))
  403. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  404. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0713107586, -2.83413601, 2.14157415e-28, -1, -4.7754458e-39, 0.514755607, -1.10238557e-28, -0.857341766, 0.857341766, -1.83605811e-28, 0.514755607))
  405. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  406. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0470175743, -2.83491993, 2.14157415e-28, -1, -4.7754458e-39, -0.087486513, 1.87358573e-29, -0.996169984, 0.996169984, -2.13336873e-28, -0.087486513))
  407. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  408. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0489726067, -2.83426857, 2.14157415e-28, -1, -4.7754458e-39, -0.0352309421, 7.54495469e-30, -0.99938345, 0.99938345, -2.14025032e-28, -0.0352309421))
  409. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  410. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0213460922, -2.86700821, 2.14157415e-28, -1, -4.7754458e-39, -0.927311897, 1.98590413e-28, -0.374300539, 0.374300539, -8.01591182e-29, -0.927311897))
  411. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  412. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0210514069, -2.87111497, 2.14157415e-28, -1, -4.7754458e-39, -0.961357117, 2.0588143e-28, -0.275319487, 0.275319487, -5.8961623e-29, -0.961357117))
  413. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  414. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0570473671, -2.83272266, 2.14157415e-28, -1, -4.7754458e-39, 0.173322201, -3.711818e-29, -0.984869361, 0.984869361, -2.10916749e-28, 0.173322201))
  415. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  416. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.059104681, -2.8326025, 2.14157415e-28, -1, -4.7754458e-39, 0.224628851, -4.81058601e-29, -0.974448621, 0.974448621, -2.08685078e-28, 0.224628851))
  417. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  418. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0210618973, -2.87317204, 2.14157415e-28, -1, -4.7754458e-39, -0.974448681, 2.08685078e-28, -0.224628732, 0.224628732, -4.8105833e-29, -0.974448681))
  419. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  420. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0413951874, -2.83746052, 2.14157415e-28, -1, -4.7754458e-39, -0.242244855, 5.18784559e-29, -0.970219433, 0.970219433, -2.07779385e-28, -0.242244855))
  421. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  422. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0211791992, -2.87522745, 2.14157415e-28, -1, -4.7754458e-39, -0.984869421, 2.10916773e-28, -0.17332226, 0.17332226, -3.7118192e-29, -0.984869421))
  423. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  424. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0214061737, -2.87727356, 2.14157415e-28, -1, -4.7754458e-39, -0.992590666, 2.12570329e-28, -0.121540688, 0.121540688, -2.60287988e-29, -0.992590666))
  425. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  426. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0632181168, -2.83268547, 2.14157415e-28, -1, -4.7754458e-39, 0.32525593, -6.96558606e-29, -0.945630431, 0.945630431, -2.0251346e-28, 0.32525593))
  427. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  428. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0789275169, -2.83723545, 2.14157415e-28, -1, -4.7754458e-39, 0.681758642, -1.46003437e-28, -0.73158288, 0.73158288, -1.56673643e-28, 0.681758642))
  429. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  430. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0824475288, -2.83936787, 2.14157415e-28, -1, -4.7754458e-39, 0.754495025, -1.61580443e-28, -0.656312168, 0.656312168, -1.40553898e-28, 0.754495025))
  431. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  432. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0940208435, -2.89225864, 2.14157415e-28, -1, -4.7754458e-39, 0.694899857, -1.48817726e-28, 0.719112396, -0.719112396, 1.54003004e-28, 0.694899857))
  433. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  434. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0948181152, -2.85293865, 2.14157415e-28, -1, -4.7754458e-39, 0.970219553, -2.07779409e-28, -0.242244676, 0.242244676, -5.18784198e-29, 0.970219553))
  435. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  436. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0860891342, -2.90166664, 2.14157415e-28, -1, -4.7754458e-39, 0.438671201, -9.39445395e-29, 0.898652375, -0.898652375, 1.92452787e-28, 0.438671201))
  437. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  438. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0259189606, -2.89088178, 2.14157415e-28, -1, -4.7754458e-39, -0.970219493, 2.07779409e-28, 0.242244765, -0.242244765, 5.18784379e-29, -0.970219493))
  439. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  440. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0280885696, -2.89437723, 2.14157415e-28, -1, -4.7754458e-39, -0.939583004, 2.01218368e-28, 0.342333317, -0.342333317, 7.33131053e-29, -0.939583004))
  441. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  442. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0981416702, -2.88285255, 2.14157415e-28, -1, -4.7754458e-39, 0.857341707, -1.83605799e-28, 0.514755845, -0.514755845, 1.10238605e-28, 0.857341707))
  443. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  444. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0901203156, -2.84619045, 2.14157415e-28, -1, -4.7754458e-39, 0.898652256, -1.92452763e-28, -0.438671261, 0.438671261, -9.39445516e-29, 0.898652256))
  445. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  446. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0966157913, -2.85664463, 2.14157415e-28, -1, -4.7754458e-39, 0.99022609, -2.1206393e-28, -0.139502153, 0.139502153, -2.98753774e-29, 0.99022609))
  447. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  448. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0828380585, -2.90418911, 2.14157415e-28, -1, -4.7754458e-39, 0.342333317, -7.33131053e-29, 0.939583004, -0.939583004, 2.01218368e-28, 0.342333317))
  449. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  450. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0306138992, -2.89762926, 2.14157415e-28, -1, -4.7754458e-39, -0.898652375, 1.92452787e-28, 0.438671201, -0.438671201, 9.39445395e-29, -0.898652375))
  451. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  452. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0382795334, -2.9044528, 2.14157415e-28, -1, -4.7754458e-39, -0.754495144, 1.61580479e-28, 0.656311989, -0.656311989, 1.40553862e-28, -0.754495144))
  453. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  454. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0973596573, -2.85856056, 2.14157415e-28, -1, -4.7754458e-39, 0.996169984, -2.13336873e-28, -0.0874863937, 0.0874863937, -1.87358317e-29, 0.996169984))
  455. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  456. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0775084496, -2.90730906, 2.14157415e-28, -1, -4.7754458e-39, 0.191135392, -4.09329958e-29, 0.981567979, -0.981567979, 2.10209716e-28, 0.191135392))
  457. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  458. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0717611313, -2.90955353, 2.14157415e-28, -1, -4.7754458e-39, 0.0352312103, -7.54501262e-30, 0.99938345, -0.99938345, 2.14025032e-28, 0.0352312103))
  459. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  460. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0844964981, -2.90296888, 2.14157415e-28, -1, -4.7754458e-39, 0.39103809, -8.37435747e-29, 0.920379043, -0.920379043, 1.97105689e-28, 0.39103809))
  461. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  462. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0807142258, -2.83825874, 2.14157415e-28, -1, -4.7754458e-39, 0.719112515, -1.5400304e-28, -0.694899678, 0.694899678, -1.4881769e-28, 0.719112515))
  463. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  464. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0756325722, -2.90815496, 2.14157415e-28, -1, -4.7754458e-39, 0.139502153, -2.98753774e-29, 0.99022609, -0.99022609, 2.1206393e-28, 0.139502153))
  465. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  466. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.077085495, -2.83631229, 2.14157415e-28, -1, -4.7754458e-39, 0.642536044, -1.37603638e-28, -0.766260922, 0.766260922, -1.64100209e-28, 0.642536044))
  467. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  468. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.081114769, -2.90532589, 2.14157415e-28, -1, -4.7754458e-39, 0.292690128, -6.2681665e-29, 0.956211686, -0.956211686, 2.04779533e-28, 0.292690128))
  469. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  470. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0737171173, -2.90890694, 2.14157415e-28, -1, -4.7754458e-39, 0.0874866322, -1.87358828e-29, 0.996169925, -0.996169925, 2.13336849e-28, 0.0874866322))
  471. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  472. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.092912674, -2.8939929, 2.14157415e-28, -1, -4.7754458e-39, 0.656312048, -1.40553874e-28, 0.754495084, -0.754495084, 1.61580455e-28, 0.656312048))
  473. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  474. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0249757767, -2.88904858, 2.14157415e-28, -1, -4.7754458e-39, -0.981567919, 2.10209716e-28, 0.191135481, -0.191135481, 4.09330169e-29, -0.981567919))
  475. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  476. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.095041275, -2.8904705, 2.14157415e-28, -1, -4.7754458e-39, 0.73158288, -1.56673643e-28, 0.681758642, -0.681758642, 1.46003437e-28, 0.73158288))
  477. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  478. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0959634781, -2.88862848, 2.14157415e-28, -1, -4.7754458e-39, 0.766260862, -1.64100197e-28, 0.642536163, -0.642536163, 1.37603662e-28, 0.766260862))
  479. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  480. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0967912674, -2.88674402, 2.14157415e-28, -1, -4.7754458e-39, 0.798838437, -1.71076914e-28, 0.601552606, -0.601552606, 1.28826742e-28, 0.798838437))
  481. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  482. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0293102264, -2.89603615, 2.14157415e-28, -1, -4.7754458e-39, -0.920379043, 1.97105689e-28, 0.39103815, -0.39103815, 8.37435868e-29, -0.920379043))
  483. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  484. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0975151062, -2.88481545, 2.14157415e-28, -1, -4.7754458e-39, 0.829226613, -1.7758474e-28, 0.558920205, -0.558920205, 1.19696715e-28, 0.829226613))
  485. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  486. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0890569687, -2.89881325, 2.14157415e-28, -1, -4.7754458e-39, 0.530202866, -1.13546691e-28, 0.847875714, -0.847875714, 1.81578601e-28, 0.530202866))
  487. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  488. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0269556046, -2.8926568, 2.14157415e-28, -1, -4.7754458e-39, -0.956211686, 2.04779533e-28, 0.292690098, -0.292690098, 6.2681659e-29, -0.956211686))
  489. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  490. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0876083374, -2.90027714, 2.14157415e-28, -1, -4.7754458e-39, 0.4851017, -1.03887971e-28, 0.874462545, -0.874462545, 1.87272336e-28, 0.4851017))
  491. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  492. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0334625244, -2.90059566, 2.14157415e-28, -1, -4.7754458e-39, -0.847875714, 1.81578601e-28, 0.530202866, -0.530202866, 1.13546691e-28, -0.847875714))
  493. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  494. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0986633301, -2.88086295, 2.14157415e-28, -1, -4.7754458e-39, 0.883106947, -1.89123612e-28, 0.469180614, -0.469180614, 1.00478353e-28, 0.883106947))
  495. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  496. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0841221809, -2.84056664, 2.14157415e-28, -1, -4.7754458e-39, 0.787809789, -1.6871505e-28, -0.615925312, 0.615925312, -1.31904775e-28, 0.787809789))
  497. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  498. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.069776535, -2.91009998, 2.14157415e-28, -1, -4.7754458e-39, -0.0171207041, 3.66651998e-30, 0.999857605, -0.999857605, 2.141266e-28, -0.0171207041))
  499. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  500. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0857291222, -2.84185123, 2.14157415e-28, -1, -4.7754458e-39, 0.818964958, -1.75387158e-28, -0.573850632, 0.573850632, -1.2289418e-28, 0.818964958))
  501. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  502. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0993289948, -2.86654234, 2.14157415e-28, -1, -4.7754458e-39, 0.992590666, -2.12570329e-28, 0.121540569, -0.121540569, 2.60287747e-29, 0.992590666))
  503. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  504. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0677647591, -2.91053867, 2.14157415e-28, -1, -4.7754458e-39, -0.0694258735, 1.48680422e-29, 0.997591376, -0.997591376, 2.13641242e-28, -0.0694258735))
  505. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  506. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0474581718, -2.90906143, 2.14157415e-28, -1, -4.7754458e-39, -0.558920205, 1.19696715e-28, 0.829226613, -0.829226613, 1.7758474e-28, -0.558920205))
  507. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  508. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0980091095, -2.86051464, 2.14157415e-28, -1, -4.7754458e-39, 0.99938345, -2.14025032e-28, -0.0352312401, 0.0352312401, -7.54501864e-30, 0.99938345))
  509. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  510. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0996751785, -2.87064576, 2.14157415e-28, -1, -4.7754458e-39, 0.974448681, -2.08685078e-28, 0.224628732, -0.224628732, 4.8105833e-29, 0.974448681))
  511. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  512. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.098991394, -2.86451292, 2.14157415e-28, -1, -4.7754458e-39, 0.997591376, -2.13641242e-28, 0.0694258437, -0.0694258437, 1.48680362e-29, 0.997591376))
  513. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  514. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0995559692, -2.86859083, 2.14157415e-28, -1, -4.7754458e-39, 0.984869361, -2.10916749e-28, 0.173322201, -0.173322201, 3.711818e-29, 0.984869361))
  515. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  516. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0995931625, -2.87476063, 2.14157415e-28, -1, -4.7754458e-39, 0.945630491, -2.02513484e-28, 0.325255871, -0.325255871, 6.96558486e-29, 0.945630491))
  517. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  518. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0937786102, -2.85115814, 2.14157415e-28, -1, -4.7754458e-39, 0.956211686, -2.04779533e-28, -0.292690188, 0.292690188, -6.26816771e-29, 0.956211686))
  519. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  520. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0914268494, -2.84778214, 2.14157415e-28, -1, -4.7754458e-39, 0.920379043, -1.97105689e-28, -0.39103809, 0.39103809, -8.37435747e-29, 0.920379043))
  521. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  522. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0990791321, -2.87884474, 2.14157415e-28, -1, -4.7754458e-39, 0.906451762, -1.94123062e-28, 0.422319353, -0.422319353, 9.04426753e-29, 0.906451762))
  523. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  524. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0887336731, -2.84466839, 2.14157415e-28, -1, -4.7754458e-39, 0.874462664, -1.8727236e-28, -0.485101521, 0.485101521, -1.03887923e-28, 0.874462664))
  525. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  526. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0957632065, -2.85476875, 2.14157415e-28, -1, -4.7754458e-39, 0.981567919, -2.10209716e-28, -0.19113563, 0.19113563, -4.0933047e-29, 0.981567919))
  527. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  528. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0993909836, -2.8768115, 2.14157415e-28, -1, -4.7754458e-39, 0.927312016, -1.98590437e-28, 0.374300569, -0.374300569, 8.01591242e-29, 0.927312016))
  529. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  530. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.087266922, -2.84322071, 2.14157415e-28, -1, -4.7754458e-39, 0.847875714, -1.81578601e-28, -0.530202866, 0.530202866, -1.13546691e-28, 0.847875714))
  531. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  532. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0319952965, -2.89915276, 2.14157415e-28, -1, -4.7754458e-39, -0.874462664, 1.8727236e-28, 0.48510164, -0.48510164, 1.03887959e-28, -0.874462664))
  533. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  534. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0985507965, -2.86249995, 2.14157415e-28, -1, -4.7754458e-39, 0.999857664, -2.14126625e-28, 0.0171208233, -0.0171208233, 3.66654518e-30, 0.999857664))
  535. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  536. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0418052673, -2.90658379, 2.14157415e-28, -1, -4.7754458e-39, -0.681758523, 1.46003413e-28, 0.73158294, -0.73158294, 1.56673667e-28, -0.681758523))
  537. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  538. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0996923447, -2.87270403, 2.14157415e-28, -1, -4.7754458e-39, 0.961357236, -2.05881454e-28, 0.275319606, -0.275319606, 5.89616471e-29, 0.961357236))
  539. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  540. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0657327175, -2.91087437, 2.14157415e-28, -1, -4.7754458e-39, -0.121540524, 2.60287657e-29, 0.992590666, -0.992590666, 2.12570329e-28, -0.121540524))
  541. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  542. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0400137901, -2.90556669, 2.14157415e-28, -1, -4.7754458e-39, -0.719112217, 1.54002968e-28, 0.694899976, -0.694899976, 1.4881775e-28, -0.719112217))
  543. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  544. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0793385506, -2.9063611, 2.14157415e-28, -1, -4.7754458e-39, 0.242244855, -5.18784559e-29, 0.970219433, -0.970219433, 2.07779385e-28, 0.242244855))
  545. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  546. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0926408768, -2.84944248, 2.14157415e-28, -1, -4.7754458e-39, 0.939583004, -2.01218368e-28, -0.342333496, 0.342333496, -7.33131414e-29, 0.939583004))
  547. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  548. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0366106033, -2.9032526, 2.14157415e-28, -1, -4.7754458e-39, -0.787809789, 1.6871505e-28, 0.615925372, -0.615925372, 1.31904787e-28, -0.787809789))
  549. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  550. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0636857748, -2.91109753, 2.14157415e-28, -1, -4.7754458e-39, -0.173322201, 3.711818e-29, 0.984869361, -0.984869361, 2.10916749e-28, -0.173322201))
  551. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  552. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0494196415, -2.90968609, 2.14157415e-28, -1, -4.7754458e-39, -0.514755845, 1.10238605e-28, 0.857341707, -0.857341707, 1.83605799e-28, -0.514755845))
  553. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  554. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0436472893, -2.90750599, 2.14157415e-28, -1, -4.7754458e-39, -0.642536163, 1.37603662e-28, 0.766260743, -0.766260743, 1.64100173e-28, -0.642536163))
  555. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  556. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0575127602, -2.91113472, 2.14157415e-28, -1, -4.7754458e-39, -0.325255811, 6.96558365e-29, 0.945630491, -0.945630491, 2.02513484e-28, -0.325255811))
  557. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  558. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0595705509, -2.91123295, 2.14157415e-28, -1, -4.7754458e-39, -0.275319606, 5.89616471e-29, 0.961357236, -0.961357236, 2.05881454e-28, -0.275319606))
  559. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  560. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0554652214, -2.91093063, 2.14157415e-28, -1, -4.7754458e-39, -0.374300599, 8.01591302e-29, 0.927312016, -0.927312016, 1.98590437e-28, -0.374300599))
  561. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  562. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0455327034, -2.90832901, 2.14157415e-28, -1, -4.7754458e-39, -0.601552725, 1.28826766e-28, 0.798838258, -0.798838258, 1.71076878e-28, -0.601552725))
  563. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  564. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0514125824, -2.91020679, 2.14157415e-28, -1, -4.7754458e-39, -0.469180614, 1.00478353e-28, 0.883106947, -0.883106947, 1.89123612e-28, -0.469180614))
  565. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  566. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0534288883, -2.9106245, 2.14157415e-28, -1, -4.7754458e-39, -0.422319472, 9.04426994e-29, 0.906451821, -0.906451821, 1.94123074e-28, -0.422319472))
  567. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.0747509971, 0.113847651, 0.0747509077))
  568. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48934746, 0.0616300106, -2.91121864, 2.14157415e-28, -1, -4.7754458e-39, -0.224628732, 4.8105833e-29, 0.97444874, -0.97444874, 2.08685102e-28, -0.224628732))
  569. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  570. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0680866241, -2.40850544, 2.14157415e-28, -1, -4.7754458e-39, -0.391038179, 8.37435928e-29, -0.920379043, 0.920379043, -1.97105689e-28, -0.391038179))
  571. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  572. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0641288757, -2.45925784, 2.14157415e-28, -1, -4.7754458e-39, -0.906451821, 1.94123074e-28, -0.422319412, 0.422319412, -9.04426873e-29, -0.906451821))
  573. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  574. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0704116821, -2.41940498, 2.14157415e-28, -1, -4.7754458e-39, -0.530202866, 1.13546691e-28, -0.847875714, 0.847875714, -1.81578601e-28, -0.530202866))
  575. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  576. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0563187599, -2.38544941, 2.14157415e-28, -1, -4.7754458e-39, -0.0352309421, 7.54495469e-30, -0.99938345, 0.99938345, -2.14025032e-28, -0.0352309421))
  577. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  578. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0585069656, -2.38845539, 2.14157415e-28, -1, -4.7754458e-39, -0.087486513, 1.87358573e-29, -0.996169984, 0.996169984, -2.13336873e-28, -0.087486513))
  579. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  580. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0539753437, -2.38255978, 2.14157415e-28, -1, -4.7754458e-39, 0.0171207041, -3.66651998e-30, -0.999857605, 0.999857605, -2.141266e-28, 0.0171207041))
  581. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  582. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0514853001, -2.37979889, 2.14157415e-28, -1, -4.7754458e-39, 0.0694259033, -1.48680483e-29, -0.997591317, 0.997591317, -2.13641242e-28, 0.0694259033))
  583. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  584. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0704231262, -2.43794632, 2.14157415e-28, -1, -4.7754458e-39, -0.731583118, 1.56673703e-28, -0.681758463, 0.681758463, -1.46003401e-28, -0.731583118))
  585. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  586. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.065600872, -2.40149879, 2.14157415e-28, -1, -4.7754458e-39, -0.292690337, 6.26817072e-29, -0.956211627, 0.956211627, -2.04779509e-28, -0.292690337))
  587. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  588. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0709991455, -2.42681646, 2.14157415e-28, -1, -4.7754458e-39, -0.615925491, 1.31904811e-28, -0.787809789, 0.787809789, -1.6871505e-28, -0.615925491))
  589. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  590. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0623955727, -2.39479065, 2.14157415e-28, -1, -4.7754458e-39, -0.191135302, 4.09329778e-29, -0.981568038, 0.981568038, -2.1020974e-28, -0.191135302))
  591. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  592. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0640854836, -2.39810371, 2.14157415e-28, -1, -4.7754458e-39, -0.242244855, 5.18784559e-29, -0.970219433, 0.970219433, -2.07779385e-28, -0.242244855))
  593. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  594. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0698261261, -2.41573334, 2.14157415e-28, -1, -4.7754458e-39, -0.4851017, 1.03887971e-28, -0.874462545, 0.874462545, -1.87272336e-28, -0.4851017))
  595. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  596. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0708036423, -2.42310238, 2.14157415e-28, -1, -4.7754458e-39, -0.573850453, 1.22894143e-28, -0.818965197, 0.818965197, -1.75387206e-28, -0.573850453))
  597. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  598. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0681152344, -2.44884992, 2.14157415e-28, -1, -4.7754458e-39, -0.829226494, 1.77584716e-28, -0.558920205, 0.558920205, -1.19696715e-28, -0.829226494))
  599. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  600. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0605335236, -2.391572, 2.14157415e-28, -1, -4.7754458e-39, -0.139502332, 2.98754135e-29, -0.990225971, 0.990225971, -2.12063905e-28, -0.139502332))
  601. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  602. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0708112717, -2.43424845, 2.14157415e-28, -1, -4.7754458e-39, -0.694899857, 1.48817726e-28, -0.719112396, 0.719112396, -1.54003004e-28, -0.694899857))
  603. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  604. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0656375885, -2.45586061, 2.14157415e-28, -1, -4.7754458e-39, -0.883107007, 1.89123624e-28, -0.469180524, 0.469180524, -1.00478335e-28, -0.883107007))
  605. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  606. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0669689178, -2.45238709, 2.14157415e-28, -1, -4.7754458e-39, -0.857341766, 1.83605811e-28, -0.514755726, 0.514755726, -1.10238581e-28, -0.857341766))
  607. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  608. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0698461533, -2.44162083, 2.14157415e-28, -1, -4.7754458e-39, -0.766260862, 1.64100197e-28, -0.642536163, 0.642536163, -1.37603662e-28, -0.766260862))
  609. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  610. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0690507889, -2.41209793, 2.14157415e-28, -1, -4.7754458e-39, -0.438671023, 9.39445034e-29, -0.898652315, 0.898652315, -1.92452775e-28, -0.438671023))
  611. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  612. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0669355392, -2.40496922, 2.14157415e-28, -1, -4.7754458e-39, -0.342333198, 7.33130812e-29, -0.939583063, 0.939583063, -2.0121838e-28, -0.342333198))
  613. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  614. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0710029602, -2.43053436, 2.14157415e-28, -1, -4.7754458e-39, -0.656312168, 1.40553898e-28, -0.754495144, 0.754495144, -1.61580479e-28, -0.656312168))
  615. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  616. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0690746307, -2.44525719, 2.14157415e-28, -1, -4.7754458e-39, -0.798838317, 1.7107689e-28, -0.601552665, 0.601552665, -1.28826754e-28, -0.798838317))
  617. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  618. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0605840683, -2.46579289, 2.14157415e-28, -1, -4.7754458e-39, -0.945630491, 2.02513484e-28, -0.32525596, 0.32525596, -6.96558666e-29, -0.945630491))
  619. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  620. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0624427795, -2.46257162, 2.14157415e-28, -1, -4.7754458e-39, -0.927311897, 1.98590413e-28, -0.374300539, 0.374300539, -8.01591182e-29, -0.927311897))
  621. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  622. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0201251507, -2.36061096, 2.14157415e-28, -1, -4.7754458e-39, 0.558920205, -1.19696715e-28, -0.829226613, 0.829226613, -1.7758474e-28, 0.558920205))
  623. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  624. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0563783646, -2.47192287, 2.14157415e-28, -1, -4.7754458e-39, -0.974448681, 2.08685078e-28, -0.224628732, 0.224628732, -4.8105833e-29, -0.974448681))
  625. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  626. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0370688438, -2.36814117, 2.14157415e-28, -1, -4.7754458e-39, 0.32525593, -6.96558606e-29, -0.945630431, 0.945630431, -2.0251346e-28, 0.32525593))
  627. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  628. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0698461533, -2.41583109, 2.14157415e-28, -1, -4.7754458e-39, 0.766260862, -1.64100197e-28, 0.642536163, -0.642536163, 1.37603662e-28, 0.766260862))
  629. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  630. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0585613251, -2.46891356, 2.14157415e-28, -1, -4.7754458e-39, -0.961357117, 2.0588143e-28, -0.275319487, 0.275319487, -5.8961623e-29, -0.961357117))
  631. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  632. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0488548279, -2.37717247, 2.14157415e-28, -1, -4.7754458e-39, 0.121540345, -2.60287265e-29, -0.992590725, 0.992590725, -2.12570329e-28, 0.121540345))
  633. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  634. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0165326595, -2.35965061, 2.14157415e-28, -1, -4.7754458e-39, 0.601552784, -1.2882679e-28, -0.798838377, 0.798838377, -1.71076902e-28, 0.601552784))
  635. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  636. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0708122253, -2.42320275, 2.14157415e-28, -1, -4.7754458e-39, 0.694899857, -1.48817726e-28, 0.719112396, -0.719112396, 1.54003004e-28, 0.694899857))
  637. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  638. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0431983471, -2.37234783, 2.14157415e-28, -1, -4.7754458e-39, 0.224628851, -4.81058601e-29, -0.974448621, 0.974448621, -2.08685078e-28, 0.224628851))
  639. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  640. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0338475704, -2.36628342, 2.14157415e-28, -1, -4.7754458e-39, 0.374300778, -8.01591663e-29, -0.927311957, 0.927311957, -1.98590425e-28, 0.374300778))
  641. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  642. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0271344185, -2.36308575, 2.14157415e-28, -1, -4.7754458e-39, 0.469180703, -1.00478371e-28, -0.883107007, 0.883107007, -1.89123624e-28, 0.469180703))
  643. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  644. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0710010529, -2.43063498, 2.14157415e-28, -1, -4.7754458e-39, 0.615925491, -1.31904811e-28, 0.787809789, -0.787809789, 1.6871505e-28, 0.615925491))
  645. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  646. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.04616642, -2.48270059, 2.14157415e-28, -1, -4.7754458e-39, -0.999857605, 2.141266e-28, -0.0171207637, 0.0171207637, -3.66653277e-30, -0.999857605))
  647. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  648. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0237569809, -2.49566031, 2.14157415e-28, -1, -4.7754458e-39, -0.939583004, 2.01218368e-28, 0.342333317, -0.342333317, 7.33131053e-29, -0.939583004))
  649. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  650. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0690526962, -2.44535589, 2.14157415e-28, -1, -4.7754458e-39, 0.438671201, -9.39445395e-29, 0.898652375, -0.898652375, 1.92452787e-28, 0.438671201))
  651. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  652. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0305335522, -2.36459732, 2.14157415e-28, -1, -4.7754458e-39, 0.422319263, -9.04426572e-29, -0.906451821, 0.906451821, -1.94123074e-28, 0.422319263))
  653. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  654. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.046090126, -2.37468529, 2.14157415e-28, -1, -4.7754458e-39, 0.173322201, -3.711818e-29, -0.984869361, 0.984869361, -2.10916749e-28, 0.173322201))
  655. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  656. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0704250336, -2.41950464, 2.14157415e-28, -1, -4.7754458e-39, 0.73158288, -1.56673643e-28, 0.681758642, -0.681758642, 1.46003437e-28, 0.73158288))
  657. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  658. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0708026886, -2.43434763, 2.14157415e-28, -1, -4.7754458e-39, 0.573850572, -1.22894168e-28, 0.818965018, -0.818965018, 1.7538717e-28, 0.573850572))
  659. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  660. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0540418625, -2.47481465, 2.14157415e-28, -1, -4.7754458e-39, -0.984869421, 2.10916773e-28, -0.17332226, 0.17332226, -3.7118192e-29, -0.984869421))
  661. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  662. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0128955841, -2.35888004, 2.14157415e-28, -1, -4.7754458e-39, 0.642536044, -1.37603638e-28, -0.766260922, 0.766260922, -1.64100209e-28, 0.642536044))
  663. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  664. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0401890278, -2.37016392, 2.14157415e-28, -1, -4.7754458e-39, 0.275319457, -5.8961617e-29, -0.961357176, 0.961357176, -2.05881454e-28, 0.275319457))
  665. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  666. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0489273071, -2.48020983, 2.14157415e-28, -1, -4.7754458e-39, -0.997591317, 2.13641242e-28, -0.0694257542, 0.0694257542, -1.48680167e-29, -0.997591317))
  667. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  668. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0402708054, -2.48723125, 2.14157415e-28, -1, -4.7754458e-39, -0.996169984, 2.13336873e-28, 0.0874864534, -0.0874864534, 1.87358437e-29, -0.996169984))
  669. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  670. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0236623287, -2.36175632, 2.14157415e-28, -1, -4.7754458e-39, 0.514755607, -1.10238557e-28, -0.857341766, 0.857341766, -1.83605811e-28, 0.514755607))
  671. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  672. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0710029602, -2.42691612, 2.14157415e-28, -1, -4.7754458e-39, 0.656312048, -1.40553874e-28, 0.754495084, -0.754495084, 1.61580455e-28, 0.656312048))
  673. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  674. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0690755844, -2.4121933, 2.14157415e-28, -1, -4.7754458e-39, 0.798838437, -1.71076914e-28, 0.601552606, -0.601552606, 1.28826742e-28, 0.798838437))
  675. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  676. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0371522903, -2.48925829, 2.14157415e-28, -1, -4.7754458e-39, -0.990225971, 2.12063905e-28, 0.139502242, -0.139502242, 2.98753954e-29, -0.990225971))
  677. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  678. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0339336395, -2.49111891, 2.14157415e-28, -1, -4.7754458e-39, -0.981567919, 2.10209716e-28, 0.191135481, -0.191135481, 4.09330169e-29, -0.981567919))
  679. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  680. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0515556335, -2.47757864, 2.14157415e-28, -1, -4.7754458e-39, -0.992590666, 2.12570329e-28, -0.121540688, 0.121540688, -2.60287988e-29, -0.992590666))
  681. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  682. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0306215286, -2.49281168, 2.14157415e-28, -1, -4.7754458e-39, -0.970219493, 2.07779409e-28, 0.242244765, -0.242244765, 5.18784379e-29, -0.970219493))
  683. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  684. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0432767868, -2.48504353, 2.14157415e-28, -1, -4.7754458e-39, -0.99938345, 2.14025032e-28, 0.0352311507, -0.0352311507, 7.54499983e-30, -0.99938345))
  685. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  686. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0640864372, -2.45934963, 2.14157415e-28, -1, -4.7754458e-39, 0.242244855, -5.18784559e-29, 0.970219433, -0.970219433, 2.07779385e-28, 0.242244855))
  687. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  688. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.00562286377, -2.49952841, 2.14157415e-28, -1, -4.7754458e-39, -0.818965018, 1.7538717e-28, 0.573850572, -0.573850572, 1.22894168e-28, -0.818965018))
  689. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  690. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0202217102, -2.49681282, 2.14157415e-28, -1, -4.7754458e-39, -0.920379043, 1.97105689e-28, 0.39103815, -0.39103815, 8.37435868e-29, -0.920379043))
  691. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  692. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.00190925598, -2.49972582, 2.14157415e-28, -1, -4.7754458e-39, -0.787809789, 1.6871505e-28, 0.615925372, -0.615925372, 1.31904787e-28, -0.787809789))
  693. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  694. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0669360161, -2.45248127, 2.14157415e-28, -1, -4.7754458e-39, 0.342333317, -7.33131053e-29, 0.939583004, -0.939583004, 2.01218368e-28, 0.342333317))
  695. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  696. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.00552415848, -2.35791492, 2.14157415e-28, -1, -4.7754458e-39, 0.719112515, -1.5400304e-28, -0.694899678, 0.694899678, -1.4881769e-28, 0.719112515))
  697. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  698. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0129947662, -2.4985528, 2.14157415e-28, -1, -4.7754458e-39, -0.874462664, 1.8727236e-28, 0.48510164, -0.48510164, 1.03887959e-28, -0.874462664))
  699. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  700. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0272274017, -2.49432468, 2.14157415e-28, -1, -4.7754458e-39, -0.956211686, 2.04779533e-28, 0.292690098, -0.292690098, 6.2681659e-29, -0.956211686))
  701. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  702. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0704116821, -2.4380455, 2.14157415e-28, -1, -4.7754458e-39, 0.530202866, -1.13546691e-28, 0.847875714, -0.847875714, 1.81578601e-28, 0.530202866))
  703. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  704. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.00922250748, -2.35829926, 2.14157415e-28, -1, -4.7754458e-39, 0.681758642, -1.46003437e-28, -0.73158288, 0.73158288, -1.56673643e-28, 0.681758642))
  705. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  706. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.068116188, -2.40860057, 2.14157415e-28, -1, -4.7754458e-39, 0.829226613, -1.7758474e-28, 0.558920205, -0.558920205, 1.19696715e-28, 0.829226613))
  707. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  708. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.00180912018, -2.35772133, 2.14157415e-28, -1, -4.7754458e-39, 0.754495025, -1.61580443e-28, -0.656312168, 0.656312168, -1.40553898e-28, 0.754495025))
  709. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  710. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0669689178, -2.40506268, 2.14157415e-28, -1, -4.7754458e-39, 0.857341707, -1.83605799e-28, 0.514755845, -0.514755845, 1.10238605e-28, 0.857341707))
  711. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  712. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0018081665, -2.49972725, 2.14157415e-28, -1, -4.7754458e-39, -0.754495144, 1.61580479e-28, 0.656311989, -0.656311989, 1.40553862e-28, -0.754495144))
  713. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  714. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0129928589, -2.35889721, 2.14157415e-28, -1, -4.7754458e-39, 0.874462664, -1.8727236e-28, -0.485101521, 0.485101521, -1.03887923e-28, 0.874462664))
  715. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  716. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.00932121277, -2.49913549, 2.14157415e-28, -1, -4.7754458e-39, -0.847875714, 1.81578601e-28, 0.530202866, -0.530202866, 1.13546691e-28, -0.847875714))
  717. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  718. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0272283554, -2.36312485, 2.14157415e-28, -1, -4.7754458e-39, 0.956211686, -2.04779533e-28, -0.292690188, 0.292690188, -6.26816771e-29, 0.956211686))
  719. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  720. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.065600872, -2.45595312, 2.14157415e-28, -1, -4.7754458e-39, 0.292690128, -6.2681665e-29, 0.956211686, -0.956211686, 2.04779533e-28, 0.292690128))
  721. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  722. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0166282654, -2.3596735, 2.14157415e-28, -1, -4.7754458e-39, 0.898652256, -1.92452763e-28, -0.438671261, 0.438671261, -9.39445516e-29, 0.898652256))
  723. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  724. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0605330467, -2.46587944, 2.14157415e-28, -1, -4.7754458e-39, 0.139502153, -2.98753774e-29, 0.99022609, -0.99022609, 2.1206393e-28, 0.139502153))
  725. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  726. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0680866241, -2.44894505, 2.14157415e-28, -1, -4.7754458e-39, 0.39103809, -8.37435747e-29, 0.920379043, -0.920379043, 1.97105689e-28, 0.39103809))
  727. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  728. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, -0.0166301727, -2.49777699, 2.14157415e-28, -1, -4.7754458e-39, -0.898652375, 1.92452787e-28, 0.438671201, -0.438671201, 9.39445395e-29, -0.898652375))
  729. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  730. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0539762974, -2.47489357, 2.14157415e-28, -1, -4.7754458e-39, -0.0171207041, 3.66651998e-30, 0.999857605, -0.999857605, 2.141266e-28, -0.0171207041))
  731. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  732. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.040271759, -2.37021875, 2.14157415e-28, -1, -4.7754458e-39, 0.996169984, -2.13336873e-28, -0.0874863937, 0.0874863937, -1.87358317e-29, 0.996169984))
  733. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  734. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0306224823, -2.36464024, 2.14157415e-28, -1, -4.7754458e-39, 0.970219553, -2.07779409e-28, -0.242244676, 0.242244676, -5.18784198e-29, 0.970219553))
  735. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  736. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0563182831, -2.47200394, 2.14157415e-28, -1, -4.7754458e-39, 0.0352312103, -7.54501262e-30, 0.99938345, -0.99938345, 2.14025032e-28, 0.0352312103))
  737. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  738. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0698280334, -2.4417181, 2.14157415e-28, -1, -4.7754458e-39, 0.4851017, -1.03887971e-28, 0.874462545, -0.874462545, 1.87272336e-28, 0.4851017))
  739. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  740. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.037153244, -2.36819172, 2.14157415e-28, -1, -4.7754458e-39, 0.99022609, -2.1206393e-28, -0.139502153, 0.139502153, -2.98753774e-29, 0.99022609))
  741. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  742. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0623950958, -2.46266031, 2.14157415e-28, -1, -4.7754458e-39, 0.191135392, -4.09329958e-29, 0.981567979, -0.981567979, 2.10209716e-28, 0.191135392))
  743. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  744. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.058506012, -2.468997, 2.14157415e-28, -1, -4.7754458e-39, 0.0874866322, -1.87358828e-29, 0.996169925, -0.996169925, 2.13336849e-28, 0.0874866322))
  745. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  746. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0461654663, -2.37474895, 2.14157415e-28, -1, -4.7754458e-39, 0.999857664, -2.14126625e-28, 0.0171208233, -0.0171208233, 3.66654518e-30, 0.999857664))
  747. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  748. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0237550735, -2.36179066, 2.14157415e-28, -1, -4.7754458e-39, 0.939583004, -2.01218368e-28, -0.342333496, 0.342333496, -7.33131414e-29, 0.939583004))
  749. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  750. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0605859756, -2.3916564, 2.14157415e-28, -1, -4.7754458e-39, 0.945630491, -2.02513484e-28, 0.325255871, -0.325255871, 6.96558486e-29, 0.945630491))
  751. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  752. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0401880741, -2.48728943, 2.14157415e-28, -1, -4.7754458e-39, -0.275319606, 5.89616471e-29, 0.961357236, -0.961357236, 2.05881454e-28, -0.275319606))
  753. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  754. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.00922060013, -2.49915028, 2.14157415e-28, -1, -4.7754458e-39, -0.681758523, 1.46003413e-28, 0.73158294, -0.73158294, 1.56673667e-28, -0.681758523))
  755. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  756. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0489282608, -2.37723827, 2.14157415e-28, -1, -4.7754458e-39, 0.997591376, -2.13641242e-28, 0.0694258437, -0.0694258437, 1.48680362e-29, 0.997591376))
  757. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  758. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0460896492, -2.48276615, 2.14157415e-28, -1, -4.7754458e-39, -0.173322201, 3.711818e-29, 0.984869361, -0.984869361, 2.10916749e-28, -0.173322201))
  759. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  760. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0128941536, -2.49857044, 2.14157415e-28, -1, -4.7754458e-39, -0.642536163, 1.37603662e-28, 0.766260743, -0.766260743, 1.64100173e-28, -0.642536163))
  761. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  762. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0338463783, -2.49116802, 2.14157415e-28, -1, -4.7754458e-39, -0.374300599, 8.01591302e-29, 0.927312016, -0.927312016, 1.98590437e-28, -0.374300599))
  763. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  764. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0540399551, -2.38263512, 2.14157415e-28, -1, -4.7754458e-39, 0.984869361, -2.10916749e-28, 0.173322201, -0.173322201, 3.711818e-29, 0.984869361))
  765. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  766. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0201251507, -2.49684048, 2.14157415e-28, -1, -4.7754458e-39, -0.558920205, 1.19696715e-28, 0.829226613, -0.829226613, 1.7758474e-28, -0.558920205))
  767. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  768. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0370678902, -2.48931217, 2.14157415e-28, -1, -4.7754458e-39, -0.325255811, 6.96558365e-29, 0.945630491, -0.945630491, 2.02513484e-28, -0.325255811))
  769. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  770. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.00932025909, -2.35831356, 2.14157415e-28, -1, -4.7754458e-39, 0.847875714, -1.81578601e-28, -0.530202866, 0.530202866, -1.13546691e-28, 0.847875714))
  771. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  772. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0339345932, -2.36633015, 2.14157415e-28, -1, -4.7754458e-39, 0.981567919, -2.10209716e-28, -0.19113563, 0.19113563, -4.0933047e-29, 0.981567919))
  773. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  774. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.00190877914, -2.35772514, 2.14157415e-28, -1, -4.7754458e-39, 0.787809789, -1.6871505e-28, -0.615925312, 0.615925312, -1.31904775e-28, 0.787809789))
  775. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  776. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0514864922, -2.47765446, 2.14157415e-28, -1, -4.7754458e-39, -0.0694258735, 1.48680422e-29, 0.997591376, -0.997591376, 2.13641242e-28, -0.0694258735))
  777. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  778. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0432758331, -2.37240696, 2.14157415e-28, -1, -4.7754458e-39, 0.99938345, -2.14025032e-28, -0.0352312401, 0.0352312401, -7.54501864e-30, 0.99938345))
  779. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  780. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0271339417, -2.49436474, 2.14157415e-28, -1, -4.7754458e-39, -0.469180614, 1.00478353e-28, 0.883106947, -0.883106947, 1.89123612e-28, -0.469180614))
  781. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  782. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0165314674, -2.49780083, 2.14157415e-28, -1, -4.7754458e-39, -0.601552725, 1.28826766e-28, 0.798838258, -0.798838258, 1.71076878e-28, -0.601552725))
  783. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  784. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0641288757, -2.39819241, 2.14157415e-28, -1, -4.7754458e-39, 0.906451762, -1.94123062e-28, 0.422319353, -0.422319353, 9.04426753e-29, 0.906451762))
  785. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  786. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0305323601, -2.49285507, 2.14157415e-28, -1, -4.7754458e-39, -0.422319472, 9.04426994e-29, 0.906451821, -0.906451821, 1.94123074e-28, -0.422319472))
  787. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  788. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0202188492, -2.36063862, 2.14157415e-28, -1, -4.7754458e-39, 0.920379043, -1.97105689e-28, -0.39103809, 0.39103809, -8.37435747e-29, 0.920379043))
  789. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  790. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0431983471, -2.48510456, 2.14157415e-28, -1, -4.7754458e-39, -0.224628732, 4.8105833e-29, 0.97444874, -0.97444874, 2.08685102e-28, -0.224628732))
  791. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  792. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0585632324, -2.38853669, 2.14157415e-28, -1, -4.7754458e-39, 0.961357236, -2.05881454e-28, 0.275319606, -0.275319606, 5.89616471e-29, 0.961357236))
  793. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  794. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.00562238693, -2.3579216, 2.14157415e-28, -1, -4.7754458e-39, 0.818964958, -1.75387158e-28, -0.573850632, 0.573850632, -1.2289418e-28, 0.818964958))
  795. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  796. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0515556335, -2.37986994, 2.14157415e-28, -1, -4.7754458e-39, 0.992590666, -2.12570329e-28, 0.121540569, -0.121540569, 2.60287747e-29, 0.992590666))
  797. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  798. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0563783646, -2.38552618, 2.14157415e-28, -1, -4.7754458e-39, 0.974448681, -2.08685078e-28, 0.224628732, -0.224628732, 4.8105833e-29, 0.974448681))
  799. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  800. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0624427795, -2.39487767, 2.14157415e-28, -1, -4.7754458e-39, 0.927312016, -1.98590437e-28, 0.374300569, -0.374300569, 8.01591242e-29, 0.927312016))
  801. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  802. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.00552272797, -2.49953651, 2.14157415e-28, -1, -4.7754458e-39, -0.719112217, 1.54002968e-28, 0.694899976, -0.694899976, 1.4881775e-28, -0.719112217))
  803. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  804. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0488553047, -2.48028088, 2.14157415e-28, -1, -4.7754458e-39, -0.121540524, 2.60287657e-29, 0.992590666, -0.992590666, 2.12570329e-28, -0.121540524))
  805. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  806. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0656394958, -2.40159059, 2.14157415e-28, -1, -4.7754458e-39, 0.883106947, -1.89123612e-28, 0.469180614, -0.469180614, 1.00478353e-28, 0.883106947))
  807. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Plastic,0,0,"Really black","Part",Vector3.new(0.161914214, 0.194296986, 0.161914155))
  808. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.93104744, 0.0236616135, -2.49569416, 2.14157415e-28, -1, -4.7754458e-39, -0.514755845, 1.10238605e-28, 0.857341707, -0.857341707, 1.83605799e-28, -0.514755845))
  809.  
  810. ----------------------Wings
  811.  
  812. handle=part(Enum.FormFactor.Symmetric,m,Enum.Material.Plastic,0,1,"Medium stone grey","Handle",Vector3.new(0.05, 0.05, 0.05))
  813. handleweld=weld(m,Character["Torso"],handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0100221634, -0.0175542831, 0.00262880325, 1.00000155, -2.14157415e-28, 0.000332000374, -2.14157415e-28, 1, -7.1100246e-32, -0.000332000374, 4.7754458e-39, 1.00000155))
  814. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.837632179, 0.333232641, 0.251318902))
  815. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.700101852, 1.86904049, 0.891112566, 0.75275898, -0.636865616, 0.166612804, -0.638960898, -0.7677508, -0.0478571169, 0.158395648, -0.0704337358, -0.984863639))
  816. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.483554214, 0.333232641, 0.251318902))
  817. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.37859869, 1.42097473, -0.884177685, 0.638928056, -0.767751753, -0.0482810065, 0.752649307, 0.636864662, -0.167112693, 0.159049526, 0.0704338774, 0.984758258))
  818. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  819. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.17693233, 0.404156685, 0.899710178, -0.498539031, -0.866677165, -0.0181981921, -0.852276921, 0.493872404, -0.172391862, 0.158395648, -0.0704337358, -0.984863639))
  820. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.246144727, 0.200000003, 0.200000003))
  821. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79093742, -5.0165062, 0.899179935, 0.541946113, 0.839977741, 0.0270888023, 0.825355411, -0.538030386, 0.171220094, 0.158395648, -0.0704337358, -0.984863639))
  822. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0973593965, 0.702734888))
  823. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341453254, 0.333232641, 0.251318902))
  824. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.104499578, -3.89063263, 0.891108513, -0.488824785, 0.86104399, -0.140196726, 0.857885361, 0.503629029, 0.101955876, 0.158395648, -0.0704337358, -0.984863639))
  825. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.0836575, 0.333232641, 0.251318902))
  826. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.94126606, -0.604771733, 0.891101122, -0.929736614, -0.346456975, -0.124752127, -0.332426131, 0.93541801, -0.120362103, 0.158395648, -0.0704337358, -0.984863639))
  827. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  828. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.36515665, -5.39487457, -0.875785828, -0.81914556, 0.56619513, 0.0918044075, -0.551099241, -0.821256638, 0.147748649, 0.159049526, 0.0704338774, 0.984758258))
  829. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.649142921, 0.236052051, 0.251318902))
  830. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.47317219, 0.354777813, 0.891096592, -0.973336935, -0.178759843, -0.143757522, -0.165928766, 0.981368423, -0.0968705565, 0.158395648, -0.0704337358, -0.984863639))
  831. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157688, 0.0928658471, 0.140546978))
  832. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.34740114, -4.54231548, 0.89917922, 0.41211924, 0.911129892, 0.00112016883, 0.897259653, -0.406056136, 0.173346102, 0.158395648, -0.0704337358, -0.984863639))
  833. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.46827829, 0.952135324, 0.251318902))
  834. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.65370083, -0.36060524, 0.891111851, 0.857885361, 0.503629029, 0.101955876, 0.488824785, -0.86104399, 0.140196726, 0.158395648, -0.0704337358, -0.984863639))
  835. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.623012781, 0.333232641, 0.251318902))
  836. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.530793428, 1.99753952, 0.891105652, -0.00560906343, -0.997500598, 0.0704358295, -0.98736304, -0.00563243032, -0.158394843, 0.158395648, -0.0704337358, -0.984863639))
  837. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  838. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.18585587, 0.349413395, 0.899714947, 0.971388578, -0.167668134, 0.168219566, -0.176978514, -0.983324349, 0.0418606214, 0.158395648, -0.0704337358, -0.984863639))
  839. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392539173, 0.333232641, 0.251318902))
  840. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.81200981, 0.265833378, 0.891103268, 0.857885361, 0.503629029, 0.101955876, 0.488824785, -0.86104399, 0.140196726, 0.158395648, -0.0704337358, -0.984863639))
  841. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.388688922, 0.200000003, 0.200000003))
  842. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.989244938, -3.72903919, 0.899180412, 0.129879355, 0.990271866, -0.0499324463, 0.978799522, -0.12000373, 0.166002661, 0.158395648, -0.0704337358, -0.984863639))
  843. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.195967019, 0.702734888))
  844. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.471516728, 0.234877661, 0.251318902))
  845. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.747990608, -0.87575531, 0.891108036, -0.630366266, 0.760510743, -0.155771062, 0.759970784, 0.645493984, 0.0760625526, 0.158395648, -0.0704337358, -0.984863639))
  846. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  847. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.98905087, -7.80519533, -0.875741005, -0.480350316, 0.876951933, 0.0148584386, -0.862538993, -0.475389123, 0.17331171, 0.159049526, 0.0704338774, 0.984758258))
  848. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.483554214, 0.333232641, 0.251318902))
  849. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.31697559, 1.35000134, 0.89109993, -0.638960898, -0.7677508, -0.0478571169, -0.75275898, 0.636865616, -0.166612804, 0.158395648, -0.0704337358, -0.984863639))
  850. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.88196522, 0.514088511, 0.251318902))
  851. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.4933629, -2.56108665, 0.891094208, 0.342967689, 0.939270735, -0.0120140137, 0.925899744, -0.335871369, 0.172932908, 0.158395648, -0.0704337358, -0.984863639))
  852. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(8.67960358, 0.333232433, 0.161478281))
  853. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.57341194, -0.117282867, -0.875673294, 0.889293849, -0.443437904, -0.111914277, 0.428796589, 0.893533587, -0.133164987, 0.159049526, 0.0704338774, 0.984758258))
  854. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.471516728, 0.234877661, 0.251318902))
  855. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.807125092, -0.948737144, -0.884182453, 0.630263746, 0.760509849, -0.156189755, -0.759919405, 0.645495176, 0.076566793, 0.159049526, 0.0704338774, 0.984758258))
  856. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.246144727, 0.200000003, 0.200000003))
  857. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.84341717, -5.09448719, -0.876107216, -0.541927397, 0.839978278, 0.0274483506, -0.825242281, -0.53802973, 0.171768188, 0.159049526, 0.0704338774, 0.984758258))
  858. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0973593965, 0.702734888))
  859. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.72853518, 0.276367128, 0.200000003))
  860. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.92755938, 0.762280822, -0.873428345, -0.951270163, -0.255978465, 0.171949551, 0.264187902, -0.964113414, 0.0262883995, 0.159049526, 0.0704338774, 0.984758258))
  861. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  862. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526303, 0.0796965212, 0.120615982))
  863. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.23291898, -2.68892288, -0.876105785, -0.774011075, 0.628090024, 0.0800876692, -0.612875879, -0.774946809, 0.154413998, 0.159049526, 0.0704338774, 0.984758258))
  864. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.30827716, 0.200000003, 0.200000003))
  865. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.0651021, -0.632002354, -0.876111984, -0.858350456, 0.50268954, 0.102678612, -0.487795562, -0.861593068, 0.140409455, 0.159049526, 0.0704338774, 0.984758258))
  866. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.142394558, 0.826475263))
  867. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.974742055, 0.804455996, 0.200000003))
  868. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.33538294, -4.73545551, -0.875673294, -0.073296383, 0.995541811, -0.059367422, -0.984549403, -0.0627364814, 0.163502961, 0.159049526, 0.0704338774, 0.984758258))
  869. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  870. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330954, 0.200000003, 0.200000003))
  871. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.95088196, -7.30414772, -0.875742435, -0.56724745, 0.822897077, 0.0327595398, -0.808047295, -0.563808382, 0.17083481, 0.159049526, 0.0704338774, 0.984758258))
  872. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  873. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.46827829, 0.952135324, 0.251318902))
  874. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.73588848, -0.40621233, -0.884181976, -0.857817829, 0.503629148, 0.102525368, -0.488731652, -0.861044168, 0.140521377, 0.159049526, 0.0704338774, 0.984758258))
  875. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.42655277, 0.474159241, 0.200000003))
  876. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.87717533, -1.32662773, -0.872437, -0.835002363, 0.541791916, 0.096110858, -0.526764631, -0.837556481, 0.144984186, 0.159049526, 0.0704338774, 0.984758258))
  877. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  878. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(5.21506357, 0.20021978, 0.0970228091))
  879. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.07851458, -1.58847284, -0.875841618, 0.738140345, 0.653911829, -0.165988639, -0.655636132, 0.753285348, 0.0520142578, 0.159049526, 0.0704338774, 0.984758258))
  880. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.26049519, 0.284894377, 0.200000003))
  881. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.43603611, 0.764592171, -0.87389946, -0.807647109, -0.564388216, 0.170811653, 0.567816854, -0.822499335, -0.0328799486, 0.159049526, 0.0704338774, 0.984758258))
  882. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  883. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.0836575, 0.333232641, 0.251318902))
  884. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.03015041, -0.574133396, -0.884183884, 0.929653645, -0.346456975, -0.125369355, 0.332346082, 0.935418129, -0.120582908, 0.159049526, 0.0704338774, 0.984758258))
  885. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.88196522, 0.514088511, 0.251318902))
  886. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.52700329, -2.6488533, -0.884180069, -0.342975736, 0.939270914, -0.0117864367, -0.925784886, -0.335871369, 0.173547685, 0.159049526, 0.0704338774, 0.984758258))
  887. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.333568811, 0.200000003, 0.200000003))
  888. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.54901314, -2.15040779, -0.876101971, -0.559423566, 0.828299344, 0.0311095063, -0.813483357, -0.555841386, 0.171142966, 0.159049526, 0.0704338774, 0.984758258))
  889. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168176889, 0.603079915))
  890. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.623012781, 0.333232641, 0.251318902))
  891. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.532396793, 2.09151459, -0.884161949, 0.00565586146, -0.997500718, 0.0704322308, 0.987257838, -0.00563246012, -0.159050345, 0.159049526, 0.0704338774, 0.984758258))
  892. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  893. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.15353775, -1.38181496, 0.899710655, -0.971388578, 0.167667985, -0.168219551, 0.176978365, 0.983324289, -0.0418606475, 0.158395648, -0.0704337358, -0.984863639))
  894. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.23805618, 0.345994473, 0.200000003))
  895. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.56607056, 0.541192055, 0.901857138, 0.951383591, -0.255979359, 0.171317831, -0.264171213, -0.964112818, 0.0264634844, 0.158395648, -0.0704337358, -0.984863639))
  896. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  897. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.02377248, 0.109218024, 0.165295035))
  898. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.6075983, 0.0951771736, -0.876103401, -0.8881374, 0.445839584, 0.11155571, -0.431186944, -0.892337799, 0.133465528, 0.159049526, 0.0704338774, 0.984758258))
  899. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  900. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.3123312, -6.54397392, -0.875741005, -0.56724745, 0.822897077, 0.0327595398, -0.808047295, -0.563808382, 0.17083481, 0.159049526, 0.0704338774, 0.984758258))
  901. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  902. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.570847034, 0.200000003, 0.200000003))
  903. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.08688402, 1.61658335, -0.876107216, -0.469388247, -0.872112572, 0.138188854, 0.868553102, -0.484209657, -0.105648227, 0.159049526, 0.0704338774, 0.984758258))
  904. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125247687, 0.496580422))
  905. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.837632179, 0.333232641, 0.251318902))
  906. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.771085739, 1.93069386, -0.884171486, -0.752648413, -0.636865735, 0.167112619, 0.638929069, -0.7677508, -0.0482812412, 0.159049526, 0.0704338774, 0.984758258))
  907. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.649142921, 0.236052051, 0.251318902))
  908. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.56598759, 0.369503975, -0.884170532, 0.973241329, -0.178759933, -0.144403696, 0.165864408, 0.981368542, -0.0969808325, 0.159049526, 0.0704338774, 0.984758258))
  909. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.828803003, 0.684012294, 0.200000003))
  910. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.81264782, -4.15558147, 0.89956212, 0.418314397, 0.908299923, 0.00231892825, 0.894388199, -0.412347406, 0.173334211, 0.158395648, -0.0704337358, -0.984863639))
  911. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  912. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.47297621, 0.200000003, 0.200000003))
  913. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.43650723, 0.103844166, -0.876109123, -0.888450921, 0.445189804, 0.111652821, -0.430540204, -0.892662048, 0.133384258, 0.159049526, 0.0704338774, 0.984758258))
  914. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.280385196, 0.826475263))
  915. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.421605587, 0.200000003, 0.200000003))
  916. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.385073185, -4.24829006, -0.87610054, 0.2262768, 0.968300164, -0.105803393, -0.960993707, 0.239654273, 0.138070092, 0.159049526, 0.0704338774, 0.984758258))
  917. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.25689742, 0.826475263))
  918. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  919. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-10.7668295, -1.35262012, -0.875671387, -0.840006173, 0.533750474, 0.097494185, -0.518748343, -0.842703938, 0.144057631, 0.159049526, 0.0704338774, 0.984758258))
  920. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392539173, 0.333232641, 0.251318902))
  921. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.89422512, 0.220214367, -0.884170055, -0.857817829, 0.503629148, 0.102525368, -0.488731652, -0.861044168, 0.140521377, 0.159049526, 0.0704338774, 0.984758258))
  922. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  923. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.69456816, -2.22814298, -0.876106262, -0.97177875, 0.187195092, 0.143564135, -0.174230143, -0.979794621, 0.098219417, 0.159049526, 0.0704338774, 0.984758258))
  924. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.86967802, 0.0687980205, 0.496580422))
  925. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  926. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.00764418, -9.00028801, -0.87567091, -0.142560482, 0.988636971, -0.0476866253, -0.976927102, -0.132802248, 0.167283282, 0.159049526, 0.0704338774, 0.984758258))
  927. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.17940784, 0.322034985, 0.200000003))
  928. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.7252779, -0.298906803, -0.872979641, -0.967677772, 0.208867818, 0.141351685, -0.195728391, -0.975404441, 0.101377606, 0.159049526, 0.0704338774, 0.984758258))
  929. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  930. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341453254, 0.333232641, 0.251318902))
  931. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.150129795, -3.97287154, -0.884187698, 0.488732785, 0.861043513, -0.140521526, -0.857817173, 0.50363034, 0.102525182, 0.159049526, 0.0704338774, 0.984758258))
  932. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  933. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.89297867, -5.11195469, 0.899503708, -0.463223636, 0.875570774, -0.137118191, 0.871975482, 0.477927923, 0.106060021, 0.158395648, -0.0704337358, -0.984863639))
  934. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  935. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.262121707, 0.200000003, 0.200000003))
  936. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.11748409, 0.0639610291, -0.876108646, -0.975656867, 0.163778692, 0.145865351, -0.151008502, -0.983979702, 0.0947682038, 0.159049526, 0.0704338774, 0.984758258))
  937. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.121075168, 0.702734888))
  938. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.73925114, 0.378740221, 0.200000003))
  939. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.10012627, -1.02225876, -0.872441292, -0.835002363, 0.541791916, 0.096110858, -0.526764631, -0.837556481, 0.144984186, 0.159049526, 0.0704338774, 0.984758258))
  940. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  941. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.23805618, 0.345994473, 0.200000003))
  942. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.65635395, 0.567358971, -0.873436451, -0.951270163, -0.255978465, 0.171949551, 0.264187902, -0.964113414, 0.0262883995, 0.159049526, 0.0704338774, 0.984758258))
  943. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  944. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.317000091, 0.200000003, 0.200000003))
  945. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.31575251, 1.44009209, -0.875844002, -0.738136292, -0.653916478, 0.165988311, 0.655640781, -0.753281236, -0.0520153008, 0.159049526, 0.0704338774, 0.984758258))
  946. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.680042028, 0.485114038))
  947. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.33351707, 0.243160099, 0.117830887))
  948. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.10377502, -1.5553863, -0.875781059, 0.915228903, 0.36352247, -0.173820481, -0.370224476, 0.928919315, -0.00664507039, 0.159049526, 0.0704338774, 0.984758258))
  949. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.388688922, 0.200000003, 0.200000003))
  950. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.00266516, -3.82210827, -0.87610817, -0.1299126, 0.990272045, -0.0498463511, -0.978689373, -0.12000373, 0.16665253, 0.159049526, 0.0704338774, 0.984758258))
  951. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.195967019, 0.702734888))
  952. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.86096573, 0.200000003, 0.200000003))
  953. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.73538971, 1.31504488, -0.876113892, -0.953327179, -0.248355001, 0.171736494, 0.256665647, -0.966105103, 0.0276457798, 0.159049526, 0.0704338774, 0.984758258))
  954. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.177244052, 0.702734888))
  955. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.487054616, 0.200000003, 0.200000003))
  956. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.27444363, 1.05640697, -0.876102924, -0.73989594, -0.651889443, 0.166127533, 0.653654456, -0.755036175, -0.051568944, 0.159049526, 0.0704338774, 0.984758258))
  957. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103197038, 0.496580422))
  958. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.253317922, 0.200000003, 0.200000003))
  959. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.61122799, -1.7631793, -0.87610817, -0.799769223, 0.59401983, 0.0866847336, -0.578860283, -0.801361322, 0.150809377, 0.159049526, 0.0704338774, 0.984758258))
  960. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.154354557, 0.496580422))
  961. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.384985864, 0.200000003, 0.200000003))
  962. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.60626459, 1.37513888, -0.875784874, -0.915224373, -0.363533467, 0.173820555, 0.370235354, -0.928914726, 0.00664297398, 0.159049526, 0.0704338774, 0.984758258))
  963. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.825887859, 0.589154541))
  964. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.95976114, 0.345994473, 0.200000003))
  965. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.4043808, 0.513969898, 0.901859522, 0.951383591, -0.255979359, 0.171317831, -0.264171213, -0.964112818, 0.0264634844, 0.158395648, -0.0704337358, -0.984863639))
  966. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  967. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.307646036, 0.200000003, 0.200000003))
  968. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.62449265, -2.36927128, -0.876119614, -0.559423566, 0.828299344, 0.0311095063, -0.813483357, -0.555841386, 0.171142966, 0.159049526, 0.0704338774, 0.984758258))
  969. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.187458321, 0.603079915))
  970. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.24669528, 0.227562711, 0.200000003))
  971. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.96907568, 0.94747901, -0.873895645, -0.807647109, -0.564388216, 0.170811653, 0.567816854, -0.822499335, -0.0328799486, 0.159049526, 0.0704338774, 0.984758258))
  972. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  973. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526318, 0.200000003, 0.200000003))
  974. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.27017307, -3.09353781, 0.899179935, 0.85719502, 0.504842997, 0.101758048, 0.490034342, -0.860332966, 0.140340403, 0.158395648, -0.0704337358, -0.984863639))
  975. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.33206898, 0.603079915))
  976. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.29378319, 0.0500000007, 0.120615982))
  977. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.39287758, 1.34701824, 0.899183035, 0.916340232, -0.361013323, 0.173193529, -0.367747515, -0.929897368, 0.0073583317, 0.158395648, -0.0704337358, -0.984863639))
  978. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  979. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.79792404, -2.28564715, -0.875847816, -0.976712883, 0.156730622, 0.146540001, -0.144020423, -0.985126853, 0.0937215909, 0.159049526, 0.0704338774, 0.984758258))
  980. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  981. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.07483196, 0.200000003, 0.200000003))
  982. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.64972115, 1.51036119, 0.899181604, 0.916063786, -0.361711085, 0.173198968, -0.368435085, -0.929625928, 0.00722833769, 0.158395648, -0.0704337358, -0.984863639))
  983. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.204597339, 0.603079915))
  984. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  985. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.93610978, -5.19544029, -0.875783443, 0.46313253, 0.875570893, -0.13742584, -0.871905088, 0.477927983, 0.106638886, 0.159049526, 0.0704338774, 0.984758258))
  986. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  987. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.211238876, 0.200000003, 0.200000003))
  988. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.28640366, -3.05552244, -0.876101494, -0.857127726, 0.504843056, 0.102327086, -0.489941061, -0.860333085, 0.140665859, 0.159049526, 0.0704338774, 0.984758258))
  989. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0835528523, 0.603079915))
  990. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.307646036, 0.200000003, 0.200000003))
  991. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.57033062, -2.29242516, 0.899165154, 0.559443235, 0.828299642, 0.0307380427, 0.813597262, -0.555840611, 0.170602739, 0.158395648, -0.0704337358, -0.984863639))
  992. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.187458321, 0.603079915))
  993. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.72026825, 0.186172783, 0.120615982))
  994. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.42092252, -2.46699524, -0.876100063, -0.708025157, 0.70327878, 0.0640523657, -0.688047945, -0.707416654, 0.161725104, 0.159049526, 0.0704338774, 0.984758258))
  995. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.50757241, 0.0500000007, 0.140546978))
  996. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.32861137, 0.540556192, -0.876111031, -0.983388245, 0.0997137427, 0.15169625, -0.087509498, -0.992520452, 0.0851232708, 0.159049526, 0.0704338774, 0.984758258))
  997. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.693274379, 0.200000003, 0.200000003))
  998. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.58943653, 1.6636641, -0.876110077, -0.733404636, -0.659314036, 0.165610179, 0.660929382, -0.748561621, -0.0532070324, 0.159049526, 0.0704338774, 0.984758258))
  999. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.152109027, 0.603079915))
  1000. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.591511309, 0.200000003, 0.200000003))
  1001. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.91192293, 0.90885371, -0.876109123, -0.916216314, -0.361035317, 0.173802093, 0.36777404, -0.929888785, 0.0071101794, 0.159049526, 0.0704338774, 0.984758258))
  1002. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125329256, 0.603079915))
  1003. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(7.38008833, 0.283340693, 0.137301654))
  1004. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.05869627, -0.744317532, -0.875728607, 0.983619809, -0.0970442891, -0.151924595, 0.0848645568, 0.992784798, -0.0847150087, 0.159049526, 0.0704338774, 0.984758258))
  1005. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917462, 0.200000003, 0.200000003))
  1006. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.74045277, -6.00325108, -0.87610817, -0.213370487, 0.976331234, -0.0353698544, -0.963941395, -0.204491541, 0.170313492, 0.159049526, 0.0704338774, 0.984758258))
  1007. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.455075413, 0.826475263))
  1008. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.384985864, 0.200000003, 0.200000003))
  1009. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.51955318, 1.33892965, 0.899498224, 0.91533941, -0.363533497, 0.173212782, -0.370230854, -0.928914666, 0.00688865362, 0.158395648, -0.0704337358, -0.984863639))
  1010. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.825887859, 0.589154541))
  1011. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.25244117, 0.200000003, 0.200000003))
  1012. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.79386044, 0.731644154, -0.8761096, -0.983451426, 0.0989937782, 0.151757956, -0.086796023, -0.992592514, 0.0850131959, 0.159049526, 0.0704338774, 0.984758258))
  1013. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.238405704, 0.702734888))
  1014. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.22495015, 0.200000003, 0.200000003))
  1015. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.55459309, 1.00351143, 0.899181366, 0.938224554, -0.300057799, 0.172353849, -0.307655454, -0.951317191, 0.0185548104, 0.158395648, -0.0704337358, -0.984863639))
  1016. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103905462, 0.603079915))
  1017. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.211238876, 0.200000003, 0.200000003))
  1018. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.20426083, -3.0098033, 0.899184942, 0.85719502, 0.504842997, 0.101758048, 0.490034342, -0.860332966, 0.140340403, 0.158395648, -0.0704337358, -0.984863639))
  1019. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.0835528523, 0.603079915))
  1020. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  1021. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.42288208, -3.13142538, -0.875778198, -0.871902943, 0.477931917, 0.106638268, -0.463136405, -0.875568628, 0.137426317, 0.159049526, 0.0704338774, 0.984758258))
  1022. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  1023. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  1024. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.58907557, 0.518524766, -0.875790119, -0.948702931, -0.265176654, 0.172192782, 0.273262948, -0.961624026, 0.0246446058, 0.159049526, 0.0704338774, 0.984758258))
  1025. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.336782306, 0.200000003, 0.200000003))
  1026. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.19369125, -3.31674337, -0.875786781, -0.962302089, 0.233980119, 0.138687283, -0.220645562, -0.969686866, 0.104993097, 0.159049526, 0.0704338774, 0.984758258))
  1027. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.761616349, 0.589154541))
  1028. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.591511309, 0.200000003, 0.200000003))
  1029. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.8250742, 0.872862339, 0.899178505, 0.916331172, -0.361035287, 0.173193634, -0.367769092, -0.929888546, 0.0073542241, 0.158395648, -0.0704337358, -0.984863639))
  1030. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125329256, 0.603079915))
  1031. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.333568811, 0.200000003, 0.200000003))
  1032. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.49489403, -2.07356834, 0.89918375, 0.559443235, 0.828299642, 0.0307380427, 0.813597262, -0.555840611, 0.170602739, 0.158395648, -0.0704337358, -0.984863639))
  1033. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168176889, 0.603079915))
  1034. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  1035. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.94836664, -4.43407345, -0.875843525, 0.144032344, 0.985124946, -0.0937233791, -0.976711154, 0.156742603, 0.146538854, 0.159049526, 0.0704338774, 0.984758258))
  1036. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1037. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.95976114, 0.345994473, 0.200000003))
  1038. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.49467325, 0.540156007, -0.873429775, -0.951270163, -0.255978465, 0.171949551, 0.264187902, -0.964113414, 0.0262883995, 0.159049526, 0.0704338774, 0.984758258))
  1039. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  1040. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(6.33351707, 0.243160099, 0.117830887))
  1041. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.01703262, -1.51913595, 0.899508238, -0.915344, 0.36352244, -0.173212707, 0.370219886, 0.928919137, -0.00689074118, 0.158395648, -0.0704337358, -0.984863639))
  1042. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.74704808, 0.0796965286, 0.120615996))
  1043. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.67314529, 1.54036009, -0.87610817, -0.916225195, -0.361013353, 0.173801929, 0.367752343, -0.929897428, 0.00711429445, 0.159049526, 0.0704338774, 0.984758258))
  1044. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.739121258, 0.702058196, 0.200000003))
  1045. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.54637194, 1.82349014, 0.899509907, 0.733514249, -0.659313917, 0.165123075, -0.660964429, -0.748561442, -0.0527683012, 0.158395648, -0.0704337358, -0.984863639))
  1046. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1047. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392433375, 0.200000003, 0.200000003))
  1048. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.68182468, -5.37684155, -0.875736237, -0.757740498, 0.648114979, 0.0760275126, -0.632881582, -0.758278489, 0.156452954, 0.159049526, 0.0704338774, 0.984758258))
  1049. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.887468517, 0.686508358))
  1050. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.693274379, 0.200000003, 0.200000003))
  1051. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.52033567, 1.59994698, 0.899183273, 0.733514249, -0.659313917, 0.165123075, -0.660964429, -0.748561442, -0.0527683012, 0.158395648, -0.0704337358, -0.984863639))
  1052. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.152109027, 0.603079915))
  1053. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  1054. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.12457132, -5.95018005, -0.87573719, 0.808053374, 0.563799441, -0.170835152, -0.567238748, 0.822903156, 0.032757692, 0.159049526, 0.0704338774, 0.984758258))
  1055. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  1056. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.274662942, 0.200000003, 0.200000003))
  1057. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.54910898, -1.58295965, -0.876111984, -0.799769223, 0.59401983, 0.0866847336, -0.578860283, -0.801361322, 0.150809377, 0.159049526, 0.0704338774, 0.984758258))
  1058. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.138478085, 0.496580422))
  1059. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  1060. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.42267799, -4.25300503, 0.8995049, 0.871973336, 0.477931857, 0.106059402, 0.46322751, -0.875568509, 0.137118652, 0.158395648, -0.0704337358, -0.984863639))
  1061. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  1062. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.56158078, 0.305075049, 0.200000003))
  1063. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.34251595, 1.32768679, 0.899502039, 0.91533941, -0.363533497, 0.173212782, -0.370230854, -0.928914666, 0.00688865362, 0.158395648, -0.0704337358, -0.984863639))
  1064. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1065. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  1066. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.05005693, -5.18684959, -0.875727177, -0.56724745, 0.822897077, 0.0327595398, -0.808047295, -0.563808382, 0.17083481, 0.159049526, 0.0704338774, 0.984758258))
  1067. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  1068. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.22495015, 0.200000003, 0.200000003))
  1069. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.64358711, 1.03381026, -0.876112461, -0.938109934, -0.300057769, 0.172976762, 0.307667822, -0.95131737, 0.0183506738, 0.159049526, 0.0704338774, 0.984758258))
  1070. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103905462, 0.603079915))
  1071. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.10932434, 0.750047624, 0.200000003))
  1072. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.85736561, 1.10140848, 0.899503469, 0.91533941, -0.363533497, 0.173212782, -0.370230854, -0.928914666, 0.00688865362, 0.158395648, -0.0704337358, -0.984863639))
  1073. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1074. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29263294, 0.873988032, 0.200000003))
  1075. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.54222918, 0.257477522, -0.875741959, -0.98361975, 0.0970465839, 0.151924402, -0.0848668888, -0.992784739, 0.0847153515, 0.159049526, 0.0704338774, 0.984758258))
  1076. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1077. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  1078. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.49904728, 0.49146986, 0.899506807, 0.948817015, -0.265176624, 0.171562821, -0.273246467, -0.961623907, 0.0248259045, 0.158395648, -0.0704337358, -0.984863639))
  1079. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.448602259, 0.200000003, 0.200000003))
  1080. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.80941677, 0.534244776, -0.875730991, -0.98361975, 0.0970465839, 0.151924402, -0.0848668888, -0.992784739, 0.0847153515, 0.159049526, 0.0704338774, 0.984758258))
  1081. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.962360442, 0.686508358))
  1082. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  1083. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.50616503, -4.29614449, -0.875782967, -0.871902943, 0.477931917, 0.106638268, -0.463136405, -0.875568628, 0.137426317, 0.159049526, 0.0704338774, 0.984758258))
  1084. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  1085. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625893, 0.200000003, 0.200000003))
  1086. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.97065163, -4.90537262, 0.899504185, 0.871973336, 0.477931857, 0.106059402, 0.46322751, -0.875568509, 0.137118652, 0.158395648, -0.0704337358, -0.984863639))
  1087. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  1088. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.608597696, 0.578079879, 0.200000003))
  1089. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1083169, 1.80063629, -0.875847816, -0.469388247, -0.872112572, 0.138188854, 0.868553102, -0.484209657, -0.105648227, 0.159049526, 0.0704338774, 0.984758258))
  1090. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1091. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526318, 0.200000003, 0.200000003))
  1092. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.3522954, -3.13926458, -0.876105785, -0.857127726, 0.504843056, 0.102327086, -0.489941061, -0.860333085, 0.140665859, 0.159049526, 0.0704338774, 0.984758258))
  1093. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.33206898, 0.603079915))
  1094. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.06531036, 0.0500000007, 0.0993160605))
  1095. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.56546021, 1.44687796, -0.876111984, -0.739910543, -0.651872754, 0.166128725, 0.653638124, -0.755050898, -0.0515652709, 0.159049526, 0.0704338774, 0.984758258))
  1096. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.52024531, 1.02788341, 0.200000003))
  1097. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.61408281, -0.455251217, -0.875657082, -0.889293075, 0.443439215, 0.111914068, -0.428797871, -0.893532991, 0.133165151, 0.159049526, 0.0704338774, 0.984758258))
  1098. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1099. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.45713082, 0.200000003, 0.200000003))
  1100. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.281674862, -3.94838238, -0.876116276, 0.2262768, 0.968300164, -0.105803393, -0.960993707, 0.239654273, 0.138070092, 0.159049526, 0.0704338774, 0.984758258))
  1101. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.230473682, 0.826475263))
  1102. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.56158078, 0.305075049, 0.200000003))
  1103. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.42926836, 1.36390948, -0.875774384, -0.915224373, -0.363533467, 0.173820555, 0.370235354, -0.928914726, 0.00664297398, 0.159049526, 0.0704338774, 0.984758258))
  1104. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1105. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  1106. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.83779812, -0.573298454, -0.875739098, -0.969506621, 0.199523836, 0.142315388, -0.186458915, -0.97735858, 0.100020275, 0.159049526, 0.0704338774, 0.984758258))
  1107. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.870492697, 0.0928658396, 0.140546978))
  1108. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.38876915, 0.723852158, -0.876095772, -0.983388186, 0.0997137725, 0.151696235, -0.0875094682, -0.992520332, 0.0851232633, 0.159049526, 0.0704338774, 0.984758258))
  1109. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.10932434, 0.750047624, 0.200000003))
  1110. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.94407701, 1.13763809, -0.875790596, -0.915224373, -0.363533467, 0.173820555, 0.370235354, -0.928914726, 0.00664297398, 0.159049526, 0.0704338774, 0.984758258))
  1111. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1112. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.461534649, 0.208747551, 0.200000003))
  1113. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.17923641, -6.52787971, -0.875675201, -0.483447194, 0.875237703, 0.0154812383, -0.860807121, -0.478537917, 0.173257172, 0.159049526, 0.0704338774, 0.984758258))
  1114. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1115. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.828803003, 0.684012294, 0.200000003))
  1116. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.85343742, -4.2402482, -0.875724792, -0.418312132, 0.908300459, 0.00259637786, -0.8942734, -0.412346601, 0.173928082, 0.159049526, 0.0704338774, 0.984758258))
  1117. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1118. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.913425505, 0.6175946, 0.200000003))
  1119. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.30013657, 1.24447751, -0.875851631, -0.738136292, -0.653916478, 0.165988311, 0.655640781, -0.753281236, -0.0520153008, 0.159049526, 0.0704338774, 0.984758258))
  1120. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1121. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.839287937, 0.216936618, 0.140546992))
  1122. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.29211879, -4.32275438, -0.87610817, -0.319203496, 0.947547734, -0.0162179098, -0.934247613, -0.311756849, 0.173189729, 0.159049526, 0.0704338774, 0.984758258))
  1123. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.336782306, 0.200000003, 0.200000003))
  1124. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.10181999, -3.29676151, 0.899507761, 0.962393939, 0.233980119, 0.138048366, 0.220715255, -0.969686866, 0.104846425, 0.158395648, -0.0704337358, -0.984863639))
  1125. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.761616349, 0.589154541))
  1126. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407956, 0.200000003, 0.200000003))
  1127. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.14126825, -3.78194141, -0.875845432, -0.976712883, 0.156730622, 0.146540001, -0.144020423, -0.985126853, 0.0937215909, 0.159049526, 0.0704338774, 0.984758258))
  1128. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1129. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.01290989, 0.962117612, 0.200000003))
  1130. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.44734335, 0.891662359, -0.875675201, -0.982319713, 0.111090571, 0.150709957, -0.0987823308, -0.991311431, 0.0868574828, 0.159049526, 0.0704338774, 0.984758258))
  1131. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1132. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  1133. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.15770626, 0.745937824, -0.875843525, -0.802185714, -0.572220147, 0.170489728, 0.575506628, -0.817070067, -0.0345102772, 0.159049526, 0.0704338774, 0.984758258))
  1134. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.93836689, 0.403167814, 0.200000003))
  1135. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.57442474, -0.526028156, -0.872991085, -0.967677772, 0.208867818, 0.141351685, -0.195728391, -0.975404441, 0.101377606, 0.159049526, 0.0704338774, 0.984758258))
  1136. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  1137. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.48964572, 0.284894377, 0.200000003))
  1138. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.56921101, 0.786990643, -0.873892307, -0.807647109, -0.564388216, 0.170811653, 0.567816854, -0.822499335, -0.0328799486, 0.159049526, 0.0704338774, 0.984758258))
  1139. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  1140. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.277308941, 0.200000003, 0.200000003))
  1141. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.99809504, -2.40779257, -0.875842094, -0.980583131, -0.104658842, 0.165860862, 0.114745811, -0.992011011, 0.0524203293, 0.159049526, 0.0704338774, 0.984758258))
  1142. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.627120495, 0.485114038))
  1143. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  1144. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.68997478, -3.24473429, -0.875843525, -0.976712883, 0.156730622, 0.146540001, -0.144020423, -0.985126853, 0.0937215909, 0.159049526, 0.0704338774, 0.984758258))
  1145. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1146. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  1147. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.89048958, -6.02958012, -0.875672817, -0.243149132, 0.969522953, -0.0300733093, -0.956863761, -0.234658495, 0.171328068, 0.159049526, 0.0704338774, 0.984758258))
  1148. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1149. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.689254642, 0.200000003, 0.200000003))
  1150. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.5018568, -0.0120916367, -0.876114368, -0.983387887, 0.0997155309, 0.151696071, -0.0875111818, -0.992520094, 0.0851235166, 0.159049526, 0.0704338774, 0.984758258))
  1151. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.146039113, 0.702734888))
  1152. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.52759397, 0.226363361, 0.200000003))
  1153. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.63227272, -0.129740715, -0.875666618, -0.889293075, 0.443439215, 0.111914068, -0.428797871, -0.893532991, 0.133165151, 0.159049526, 0.0704338774, 0.984758258))
  1154. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1155. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.950080097, 0.200000003, 0.200000003))
  1156. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.41164923, 0.585349321, -0.876114845, -0.982319713, 0.111090571, 0.150709957, -0.0987823308, -0.991311431, 0.0868574828, 0.159049526, 0.0704338774, 0.984758258))
  1157. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.208453938, 0.826475263))
  1158. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.74704808, 0.0796965286, 0.120615996))
  1159. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.58631611, 1.50436735, 0.899174213, 0.916340232, -0.361013263, 0.173193499, -0.367747486, -0.929897308, 0.00735833915, 0.158395648, -0.0704337358, -0.984863639))
  1160. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1161. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.07369995, 1.16664958, -0.876113892, -0.780671895, -0.601626754, 0.16911833, 0.604368508, -0.795666158, -0.0407026894, 0.159049526, 0.0704338774, 0.984758258))
  1162. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.926127851, 0.0855565146, 0.496580422))
  1163. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1164. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.74881744, -2.29708672, -0.876101971, -0.97177875, 0.187195092, 0.143564135, -0.174230143, -0.979794621, 0.098219417, 0.159049526, 0.0704338774, 0.984758258))
  1165. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.837925136, 0.273428023, 0.496580422))
  1166. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.293077767, 0.200000003, 0.200000003))
  1167. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.33937263, -3.08826828, 0.899504662, 0.871973336, 0.477931857, 0.106059402, 0.46322751, -0.875568509, 0.137118652, 0.158395648, -0.0704337358, -0.984863639))
  1168. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  1169. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.14002848, 0.418082207, 0.200000003))
  1170. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.64916849, -0.14515686, -0.875666618, -0.889293075, 0.443439215, 0.111914068, -0.428797871, -0.893532991, 0.133165151, 0.159049526, 0.0704338774, 0.984758258))
  1171. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1172. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.739121258, 0.702058196, 0.200000003))
  1173. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.61546993, 1.88718963, -0.875779152, -0.733404636, -0.659314036, 0.165610179, 0.660929382, -0.748561621, -0.0532070324, 0.159049526, 0.0704338774, 0.984758258))
  1174. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1175. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.81962168, 0.355486691, 0.200000003))
  1176. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.2727437, 0.521142721, -0.875736237, -0.98361975, 0.0970465839, 0.151924402, -0.0848668888, -0.992784739, 0.0847153515, 0.159049526, 0.0704338774, 0.984758258))
  1177. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1178. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.68831873, 0.818068683, 0.200000003))
  1179. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.87881756, 1.57551706, -0.875736713, -0.953327179, -0.248355001, 0.171736494, 0.256665647, -0.966105103, 0.0276457798, 0.159049526, 0.0704338774, 0.984758258))
  1180. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1181. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.585665047, 0.483350217, 0.200000003))
  1182. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.4817338, -1.67744541, -0.875833035, -0.936863124, 0.325422734, 0.128038183, -0.311444491, -0.942941964, 0.117745221, 0.159049526, 0.0704338774, 0.984758258))
  1183. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1184. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.29378319, 0.0500000007, 0.120615982))
  1185. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.47974777, 1.38302839, -0.876102448, -0.916225195, -0.361013412, 0.173801944, 0.367752373, -0.929897487, 0.0071143019, 0.159049526, 0.0704338774, 0.984758258))
  1186. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.07483196, 0.200000003, 0.200000003))
  1187. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.73652315, 1.54641891, -0.87610817, -0.915948868, -0.361711085, 0.173807219, 0.368439823, -0.929626107, 0.00698385015, 0.159049526, 0.0704338774, 0.984758258))
  1188. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.204597339, 0.603079915))
  1189. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157717, 0.200000003, 0.200000003))
  1190. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.9201827, -5.19203568, -0.876105785, -0.541927397, 0.839978278, 0.0274483506, -0.825242281, -0.53802973, 0.171768188, 0.159049526, 0.0704338774, 0.984758258))
  1191. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.386941314, 0.702734888))
  1192. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  1193. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.37494802, -7.62555504, -0.875649452, -0.243149132, 0.969522953, -0.0300733093, -0.956863761, -0.234658495, 0.171328068, 0.159049526, 0.0704338774, 0.984758258))
  1194. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1195. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.289486945, 0.200000003, 0.200000003))
  1196. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.65015411, -5.88851833, -0.876107216, -0.213370487, 0.976331234, -0.0353698544, -0.963941395, -0.204491541, 0.170313492, 0.159049526, 0.0704338774, 0.984758258))
  1197. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.114502862, 0.826475263))
  1198. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  1199. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.13230658, -5.9491291, -0.875666618, 0.956864119, 0.234657556, -0.171328053, -0.243148223, 0.969523311, -0.0300734807, 0.159049526, 0.0704338774, 0.984758258))
  1200. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1201. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.711270273, 0.587012351, 0.200000003))
  1202. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.76559043, -2.35450935, -0.875779629, -0.778230727, 0.622715831, 0.0811535791, -0.607508659, -0.779271603, 0.153856456, 0.159049526, 0.0704338774, 0.984758258))
  1203. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1204. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.593074083, 0.153296009, 0.0993160754))
  1205. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.13903046, -1.75554442, 0.899179697, 0.897796094, 0.425415128, 0.113968335, 0.410948753, -0.902253151, 0.130619064, 0.158395648, -0.0704337358, -0.984863639))
  1206. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28581667, 0.251201004, 0.200000003))
  1207. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.52307987, 1.43080831, -0.875840187, -0.738136292, -0.653916478, 0.165988311, 0.655640781, -0.753281236, -0.0520153008, 0.159049526, 0.0704338774, 0.984758258))
  1208. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1209. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.81962168, 0.355486691, 0.200000003))
  1210. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.17900562, 0.528181553, 0.899546862, 0.983720183, 0.0970456004, 0.151271403, 0.0849221796, -0.992784619, 0.0846586972, 0.158395648, -0.0704337358, -0.984863639))
  1211. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1212. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.593074083, 0.153296009, 0.0993160754))
  1213. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.22492075, -1.79367971, -0.876101494, -0.897720635, 0.425415218, 0.114564329, -0.410861999, -0.902253389, 0.130892023, 0.159049526, 0.0704338774, 0.984758258))
  1214. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.86096573, 0.200000003, 0.200000003))
  1215. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.64489841, 1.28957129, 0.89918232, 0.953440905, -0.248355046, 0.171103463, -0.25664717, -0.966105044, 0.0278160498, 0.158395648, -0.0704337358, -0.984863639))
  1216. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.177244052, 0.702734888))
  1217. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.448602259, 0.200000003, 0.200000003))
  1218. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.71567822, 0.541264057, 0.899555683, 0.983720183, 0.0970456004, 0.151271403, 0.0849221796, -0.992784619, 0.0846586972, 0.158395648, -0.0704337358, -0.984863639))
  1219. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.962360442, 0.686508358))
  1220. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.77303123, 0.0569577813, 0.16529502))
  1221. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.62776089, -0.0802702904, 0.899173975, 0.888211191, 0.445839524, 0.110966101, 0.431275398, -0.892337739, 0.133179083, 0.158395648, -0.0704337358, -0.984863639))
  1222. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.35848251, 0.200000003, 0.200000003))
  1223. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.09059107, -4.07705545, -0.876107216, -0.1299126, 0.990272045, -0.0498463511, -0.978689373, -0.12000373, 0.16665253, 0.159049526, 0.0704338774, 0.984758258))
  1224. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.218434557, 0.702734888))
  1225. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544916272, 0.225188985, 0.200000003))
  1226. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.1258769, -8.51951981, -0.875674248, -0.243149132, 0.969522953, -0.0300733093, -0.956863761, -0.234658495, 0.171328068, 0.159049526, 0.0704338774, 0.984758258))
  1227. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1228. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.81062156, 0.200000003, 0.200000003))
  1229. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.56451988, -0.770327568, -0.876095295, -0.888136804, 0.445840418, 0.111555554, -0.431187809, -0.892337322, 0.133465618, 0.159049526, 0.0704338774, 0.984758258))
  1230. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.171754241, 0.826475263))
  1231. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.885024369, 0.200000003, 0.200000003))
  1232. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.60015965, 1.58135319, -0.876099586, -0.739420414, -0.652438164, 0.166090012, 0.65419215, -0.75456202, -0.0516897105, 0.159049526, 0.0704338774, 0.984758258))
  1233. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168466955, 0.496580422))
  1234. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.35848251, 0.200000003, 0.200000003))
  1235. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07717514, -3.98405743, 0.89918375, 0.129879355, 0.990271866, -0.0499324463, 0.978799522, -0.12000373, 0.166002661, 0.158395648, -0.0704337358, -0.984863639))
  1236. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.218434557, 0.702734888))
  1237. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.68831873, 0.818068683, 0.200000003))
  1238. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.7883234, 1.5500679, 0.899549246, 0.953440905, -0.248355046, 0.171103463, -0.25664717, -0.966105044, 0.0278160498, 0.158395648, -0.0704337358, -0.984863639))
  1239. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1240. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.6140852, 0.403167814, 0.200000003))
  1241. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.29368877, -0.540122628, 0.902308226, 0.967771351, 0.208867699, 0.140709192, 0.19579564, -0.975404263, 0.101247497, 0.158395648, -0.0704337358, -0.984863639))
  1242. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  1243. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625893, 0.200000003, 0.200000003))
  1244. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.05418491, -4.94852543, -0.87578392, -0.871902943, 0.477931917, 0.106638268, -0.463136405, -0.875568628, 0.137426317, 0.159049526, 0.0704338774, 0.984758258))
  1245. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.821603239, 0.589154541))
  1246. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.17940784, 0.322034985, 0.200000003))
  1247. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.63292789, -0.281317264, 0.90230751, 0.967771351, 0.208867699, 0.140709192, 0.19579564, -0.975404263, 0.101247497, 0.158395648, -0.0704337358, -0.984863639))
  1248. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  1249. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  1250. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.9951973, -5.11057854, 0.899551868, 0.567268908, 0.822896957, 0.0323830284, 0.808160365, -0.563808322, 0.170298159, 0.158395648, -0.0704337358, -0.984863639))
  1251. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  1252. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.392433375, 0.200000003, 0.200000003))
  1253. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.60902596, -5.31743908, 0.899554253, 0.757790625, 0.64811492, 0.0755244941, 0.632985294, -0.758278489, 0.156032622, 0.158395648, -0.0704337358, -0.984863639))
  1254. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.887468517, 0.686508358))
  1255. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  1256. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.25744534, -6.4676342, 0.899554729, 0.567268908, 0.822896957, 0.0323830284, 0.808160365, -0.563808322, 0.170298159, 0.158395648, -0.0704337358, -0.984863639))
  1257. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  1258. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.29263294, 0.873988032, 0.200000003))
  1259. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.44844723, 0.264499307, 0.899559975, 0.983720183, 0.0970456004, 0.151271403, 0.0849221796, -0.992784619, 0.0846586972, 0.158395648, -0.0704337358, -0.984863639))
  1260. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.686508358))
  1261. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.711270273, 0.587012351, 0.200000003))
  1262. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.69082737, -2.29750347, 0.899507284, 0.778284431, 0.622715771, 0.0806369483, 0.607610583, -0.779271603, 0.153452963, 0.158395648, -0.0704337358, -0.984863639))
  1263. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.589154541))
  1264. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330954, 0.200000003, 0.200000003))
  1265. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.89600754, -7.22783756, 0.899558783, 0.567268908, 0.822896957, 0.0323830284, 0.808160365, -0.563808322, 0.170298159, 0.158395648, -0.0704337358, -0.984863639))
  1266. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  1267. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.987072945, 0.255135655, 0.16529505))
  1268. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.71047688, -4.6296978, 0.899176836, -0.0336004198, 0.99649024, -0.0766696334, 0.986806989, 0.0452355742, 0.155473113, 0.158395648, -0.0704337358, -0.984863639))
  1269. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.93836689, 0.403167814, 0.200000003))
  1270. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.48208714, -0.508446693, 0.902300596, 0.967771351, 0.208867699, 0.140709192, 0.19579564, -0.975404263, 0.101247497, 0.158395648, -0.0704337358, -0.984863639))
  1271. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  1272. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.81062156, 0.200000003, 0.200000003))
  1273. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.47948933, -0.730221033, 0.899180651, 0.888210654, 0.445840329, 0.110965937, 0.431276202, -0.892337203, 0.133179173, 0.158395648, -0.0704337358, -0.984863639))
  1274. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.171754241, 0.826475263))
  1275. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.80793524, 0.474159241, 0.200000003))
  1276. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.09872341, -1.28934956, -0.872449875, -0.835002363, 0.541791916, 0.096110858, -0.526764631, -0.837556481, 0.144984186, 0.159049526, 0.0704338774, 0.984758258))
  1277. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  1278. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.615124702, 0.0656226948, 0.0993160754))
  1279. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.90129137, 1.57645273, -0.876101017, -0.739910543, -0.651872814, 0.166128725, 0.653638065, -0.755050838, -0.0515652671, 0.159049526, 0.0704338774, 0.984758258))
  1280. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.77303123, 0.0569577813, 0.16529502))
  1281. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.71281719, -0.12038517, -0.876109123, -0.88813746, 0.445839614, 0.111555718, -0.431186944, -0.892337859, 0.133465528, 0.159049526, 0.0704338774, 0.984758258))
  1282. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(4.6140852, 0.403167814, 0.200000003))
  1283. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.38605118, -0.557724476, -0.872985363, -0.967677772, 0.208867818, 0.141351685, -0.195728391, -0.975404441, 0.101377606, 0.159049526, 0.0704338774, 0.984758258))
  1284. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.651558757))
  1285. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.72853518, 0.276367128, 0.200000003))
  1286. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.83732796, 0.73610878, 0.901870728, 0.951383591, -0.255979359, 0.171317831, -0.264171213, -0.964112818, 0.0264634844, 0.158395648, -0.0704337358, -0.984863639))
  1287. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.559161127))
  1288. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.262121707, 0.200000003, 0.200000003))
  1289. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.02445412, 0.0772790313, 0.899172306, 0.975753427, 0.163778633, 0.145217553, 0.151071489, -0.983979583, 0.0946677923, 0.158395648, -0.0704337358, -0.984863639))
  1290. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.121075168, 0.702734888))
  1291. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.987072945, 0.255135655, 0.16529505))
  1292. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.70833468, -4.723629, -0.876116276, 0.0335495621, 0.996490359, -0.0766920745, -0.986703634, 0.045235604, 0.156128243, 0.159049526, 0.0704338774, 0.984758258))
  1293. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  1294. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-10.6862888, -1.30415058, 0.89962697, 0.840070486, 0.533750415, 0.096936509, 0.51884377, -0.842703879, 0.143713042, 0.158395648, -0.0704337358, -0.984863639))
  1295. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917462, 0.200000003, 0.200000003))
  1296. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.71909857, -5.91170692, 0.899182796, 0.213346913, 0.976331115, -0.035511367, 0.964054167, -0.204491556, 0.169673428, 0.158395648, -0.0704337358, -0.984863639))
  1297. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.455075413, 0.826475263))
  1298. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.461534649, 0.208747551, 0.200000003))
  1299. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.13227654, -6.44646263, 0.899623156, 0.483456552, 0.875237942, 0.0151602253, 0.860922158, -0.478537083, 0.172685549, 0.158395648, -0.0704337358, -0.984863639))
  1300. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1301. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.30827716, 0.200000003, 0.200000003))
  1302. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.98289776, -0.586512566, 0.899170399, 0.858418167, 0.502689481, 0.102108754, 0.487888604, -0.861592889, 0.140085429, 0.158395648, -0.0704337358, -0.984863639))
  1303. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.142394558, 0.826475263))
  1304. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.06531036, 0.0500000007, 0.0993160605))
  1305. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.49573326, 1.38384151, 0.899169683, 0.740020633, -0.651872694, 0.165637314, -0.65367198, -0.755050719, -0.0511313789, 0.158395648, -0.0704337358, -0.984863639))
  1306. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.615124702, 0.0656226948, 0.0993160754))
  1307. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.83156061, 1.51341534, 0.899182796, 0.740020573, -0.651872635, 0.165637314, -0.65367192, -0.755050659, -0.0511313714, 0.158395648, -0.0704337358, -0.984863639))
  1308. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(5.21506357, 0.20021978, 0.0970228091))
  1309. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.00895405, -1.52527142, 0.899441719, -0.738250315, 0.653911769, -0.165498421, 0.655670524, 0.753285229, 0.0515790507, 0.158395648, -0.0704337358, -0.984863639))
  1310. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.01290989, 0.962117612, 0.200000003))
  1311. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.35375977, 0.899987698, 0.899623871, 0.982419491, 0.111090541, 0.150057733, 0.0988400206, -0.991311312, 0.0867917389, 0.158395648, -0.0704337358, -0.984863639))
  1312. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1313. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1314. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.65613461, -2.28155923, 0.899180412, 0.97187376, 0.187194049, 0.142919019, 0.174294397, -0.979794621, 0.0981034413, 0.158395648, -0.0704337358, -0.984863639))
  1315. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.837925136, 0.273428023, 0.496580422))
  1316. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.885024369, 0.200000003, 0.200000003))
  1317. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.53051615, 1.51825809, 0.899175406, 0.739530563, -0.652438164, 0.165598929, -0.654226303, -0.754561961, -0.0512554646, 0.158395648, -0.0704337358, -0.984863639))
  1318. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.168466955, 0.496580422))
  1319. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1320. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.60183334, -2.21259737, 0.899178982, 0.97187376, 0.187194049, 0.142919019, 0.174294397, -0.979794621, 0.0981034413, 0.158395648, -0.0704337358, -0.984863639))
  1321. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.86967802, 0.0687980205, 0.496580422))
  1322. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.608597696, 0.578079879, 0.200000003))
  1323. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06458545, 1.71746063, 0.899444103, 0.469479233, -0.872112989, 0.137876973, -0.868623555, -0.484208882, -0.105071731, 0.158395648, -0.0704337358, -0.984863639))
  1324. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1325. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.26049519, 0.284894377, 0.200000003))
  1326. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.35979939, 0.709637642, 0.901391029, 0.807760298, -0.564388156, 0.170275271, -0.56783843, -0.822499216, -0.0325030573, 0.158395648, -0.0704337358, -0.984863639))
  1327. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  1328. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.487054616, 0.200000003, 0.200000003))
  1329. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.20471144, 0.993402481, 0.899175167, 0.74000591, -0.651889324, 0.165636152, -0.653688312, -0.755036056, -0.0511350483, 0.158395648, -0.0704337358, -0.984863639))
  1330. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.103197038, 0.496580422))
  1331. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  1332. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.86629438, -5.93879318, 0.899615288, 0.243128091, 0.969523191, -0.0302347708, 0.956977606, -0.234657571, 0.170692697, 0.158395648, -0.0704337358, -0.984863639))
  1333. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1334. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.45713082, 0.200000003, 0.200000003))
  1335. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.302171409, -3.85664177, 0.899174929, -0.226347059, 0.968300045, -0.105653003, 0.961084962, 0.239654273, 0.137432054, 0.158395648, -0.0704337358, -0.984863639))
  1336. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.230473682, 0.826475263))
  1337. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(8.67960358, 0.333232433, 0.161478281))
  1338. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.48829556, -0.157133818, 0.899628162, -0.889367282, -0.44343856, -0.111323729, -0.428885609, 0.893533111, -0.132880211, 0.158395648, -0.0704337358, -0.984863639))
  1339. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.02377248, 0.109218024, 0.165295035))
  1340. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.52259731, 0.13526392, 0.899174929, 0.888211131, 0.445839494, 0.110966086, 0.431275398, -0.89233768, 0.133179069, 0.158395648, -0.0704337358, -0.984863639))
  1341. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.47297621, 0.200000003, 0.200000003))
  1342. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.35146236, 0.143870831, 0.899175167, 0.888524592, 0.445189714, 0.111062989, 0.430628598, -0.892661929, 0.13309826, 0.158395648, -0.0704337358, -0.984863639))
  1343. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.280385196, 0.826475263))
  1344. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.289486945, 0.200000003, 0.200000003))
  1345. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.62878847, -5.79698372, 0.899180174, 0.213346913, 0.976331115, -0.035511367, 0.964054167, -0.204491556, 0.169673428, 0.158395648, -0.0704337358, -0.984863639))
  1346. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.114502862, 0.826475263))
  1347. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544916272, 0.225188985, 0.200000003))
  1348. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.10166311, -8.42869759, 0.89962101, 0.243128091, 0.969523191, -0.0302347708, 0.956977606, -0.234657571, 0.170692697, 0.158395648, -0.0704337358, -0.984863639))
  1349. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1350. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.52759397, 0.226363361, 0.200000003))
  1351. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.54712391, -0.0898849964, 0.899624348, 0.889367104, 0.443439037, 0.111323655, 0.428886175, -0.893532872, 0.132880285, 0.158395648, -0.0704337358, -0.984863639))
  1352. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1353. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.950080097, 0.200000003, 0.200000003))
  1354. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.31802368, 0.593690634, 0.899173021, 0.982419491, 0.111090541, 0.150057733, 0.0988400206, -0.991311312, 0.0867917389, 0.158395648, -0.0704337358, -0.984863639))
  1355. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.208453938, 0.826475263))
  1356. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.73925114, 0.378740221, 0.200000003))
  1357. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.0200882, -0.97302866, 0.902845383, 0.835065901, 0.541791797, 0.0955565274, 0.526860714, -0.837556362, 0.144634306, 0.158395648, -0.0704337358, -0.984863639))
  1358. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  1359. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.42655277, 0.474159241, 0.200000003))
  1360. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.79708099, -1.27738047, 0.902848959, 0.835065901, 0.541791797, 0.0955565274, 0.526860714, -0.837556362, 0.144634306, 0.158395648, -0.0704337358, -0.984863639))
  1361. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  1362. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  1363. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(7.04142857, -5.9249177, 0.899623394, -0.956977844, 0.234656647, -0.170692667, 0.243127227, 0.96952343, -0.0302349348, 0.158395648, -0.0704337358, -0.984863639))
  1364. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1365. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.401640892, 0.225188985, 0.200000003))
  1366. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.35073805, -7.53473663, 0.899620056, 0.243128091, 0.969523191, -0.0302347708, 0.956977606, -0.234657571, 0.170692697, 0.158395648, -0.0704337358, -0.984863639))
  1367. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1368. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.974742055, 0.804455996, 0.200000003))
  1369. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.32731676, -4.64178848, 0.89961648, 0.0732559189, 0.995541811, -0.0594160855, 0.984657824, -0.0627355278, 0.162849188, 0.158395648, -0.0704337358, -0.984863639))
  1370. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1371. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.52024531, 1.02788341, 0.200000003))
  1372. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.52893353, -0.415368557, 0.899619102, 0.889367104, 0.443439037, 0.111323655, 0.428886175, -0.893532872, 0.132880285, 0.158395648, -0.0704337358, -0.984863639))
  1373. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1374. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(5.80793524, 0.474159241, 0.200000003))
  1375. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-8.01865196, -1.240098, 0.902853489, 0.835065901, 0.541791797, 0.0955565274, 0.526860714, -0.837556362, 0.144634306, 0.158395648, -0.0704337358, -0.984863639))
  1376. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.766287804))
  1377. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.14002848, 0.418082207, 0.200000003))
  1378. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.56400204, -0.105271816, 0.899624109, 0.889367104, 0.443439037, 0.111323655, 0.428886175, -0.893532872, 0.132880285, 0.158395648, -0.0704337358, -0.984863639))
  1379. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.807391346))
  1380. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.421605587, 0.200000003, 0.200000003))
  1381. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.405569971, -4.15652847, 0.899177074, -0.226347059, 0.968300045, -0.105653003, 0.961084962, 0.239654273, 0.137432054, 0.158395648, -0.0704337358, -0.984863639))
  1382. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.25689742, 0.826475263))
  1383. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157688, 0.0928658471, 0.140546978))
  1384. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.38760376, -4.62725306, -0.876109123, -0.412119269, 0.911129475, 0.00139382645, -0.897144139, -0.40605697, 0.173941851, 0.159049526, 0.0704338774, 0.984758258))
  1385. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1386. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.955852509, 0.625712156, -0.875572681, -0.852161765, -0.493873715, 0.172957763, 0.498528183, -0.866676629, -0.0185293108, 0.159049526, 0.0704338774, 0.984758258))
  1387. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  1388. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(2.93570781, -4.34092236, 0.899439335, -0.144093618, 0.985125005, -0.0936274603, 0.976808131, 0.156741619, 0.145890474, 0.158395648, -0.0704337358, -0.984863639))
  1389. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1390. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(7.38008833, 0.283340693, 0.137301654))
  1391. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.96492386, -0.751348019, 0.899559975, -0.983720541, -0.097042948, -0.151271641, -0.0849195123, 0.992784858, -0.0846583024, 0.158395648, -0.0704337358, -0.984863639))
  1392. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1393. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.875217438, 0.577329636, 0.8997159, 0.852276325, -0.493873656, 0.172391832, -0.498540312, -0.866676569, -0.0181984361, 0.158395648, -0.0704337358, -0.984863639))
  1394. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.317000091, 0.200000003, 0.200000003))
  1395. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.24620485, 1.37683487, 0.899437904, 0.738246202, -0.653916538, 0.165498123, -0.655675173, -0.753281176, -0.0515800938, 0.158395648, -0.0704337358, -0.984863639))
  1396. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.680042028, 0.485114038))
  1397. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1398. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.612905502, 0.709106445, 0.899713516, 0.75275749, -0.636867404, 0.16661267, -0.638962567, -0.76774931, -0.0478575006, 0.158395648, -0.0704337358, -0.984863639))
  1399. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(2.24669528, 0.227562711, 0.200000003))
  1400. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.89282131, 0.892552376, 0.901396751, 0.807760298, -0.564388156, 0.170275271, -0.56783843, -0.822499216, -0.0325030573, 0.158395648, -0.0704337358, -0.984863639))
  1401. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  1402. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.341506928, 0.200000003, 0.200000003))
  1403. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(6.04824734, -5.89530945, 0.899547577, -0.808166444, 0.563799381, -0.170298517, 0.567260206, 0.822903037, 0.0323811881, 0.158395648, -0.0704337358, -0.984863639))
  1404. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.957367718, 0.686508358))
  1405. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.277308941, 0.200000003, 0.200000003))
  1406. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.90485382, -2.41978216, 0.899445057, 0.980692923, -0.104658872, 0.165209725, -0.114710905, -0.992010891, 0.0524963699, 0.158395648, -0.0704337358, -0.984863639))
  1407. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.627120495, 0.485114038))
  1408. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28581667, 0.251201004, 0.200000003))
  1409. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.45351076, 1.36759567, 0.899456739, 0.738246202, -0.653916538, 0.165498123, -0.655675173, -0.753281176, -0.0515800938, 0.158395648, -0.0704337358, -0.984863639))
  1410. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1411. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  1412. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.70473862, -2.27298903, 0.899447203, 0.97680974, 0.156730592, 0.145891517, 0.14408268, -0.985126793, 0.0936258137, 0.158395648, -0.0704337358, -0.984863639))
  1413. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1414. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407956, 0.200000003, 0.200000003))
  1415. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.04809093, -3.76932192, 0.899433136, 0.97680974, 0.156730592, 0.145891517, 0.14408268, -0.985126793, 0.0936258137, 0.158395648, -0.0704337358, -0.984863639))
  1416. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1417. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(3.48964572, 0.284894377, 0.200000003))
  1418. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.49291515, 0.732042313, 0.901394367, 0.807760298, -0.564388156, 0.170275271, -0.56783843, -0.822499216, -0.0325030573, 0.158395648, -0.0704337358, -0.984863639))
  1419. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.46041733))
  1420. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1421. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.00004673, 1.10830212, 0.899176121, 0.780784011, -0.601626694, 0.168599859, -0.60439539, -0.795666099, -0.0403015167, 0.158395648, -0.0704337358, -0.984863639))
  1422. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.926127851, 0.0855565146, 0.496580422))
  1423. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.274662942, 0.200000003, 0.200000003))
  1424. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.47231865, -1.52871323, 0.899180651, 0.799826324, 0.594019651, 0.0861538053, 0.57896024, -0.801361203, 0.150424898, 0.158395648, -0.0704337358, -0.984863639))
  1425. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.138478085, 0.496580422))
  1426. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  1427. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.08194923, 0.690246582, 0.899447441, 0.802298605, -0.572220087, 0.169957012, -0.575529337, -0.817069888, -0.0341282785, 0.158395648, -0.0704337358, -0.984863639))
  1428. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.870492697, 0.0928658396, 0.140546978))
  1429. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.29508305, 0.731118441, 0.899173498, 0.9834885, 0.0997146666, 0.151043221, 0.0875668675, -0.992520273, 0.0850651413, 0.158395648, -0.0704337358, -0.984863639))
  1430. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.237157717, 0.200000003, 0.200000003))
  1431. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.86768246, -5.11404228, 0.899182558, 0.541946113, 0.839977741, 0.0270888023, 0.825355411, -0.538030386, 0.171220094, 0.158395648, -0.0704337358, -0.984863639))
  1432. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.386941314, 0.702734888))
  1433. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.570847034, 0.200000003, 0.200000003))
  1434. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.04313016, 1.53340054, 0.899173021, 0.469479233, -0.872112989, 0.137876973, -0.868623555, -0.484208882, -0.105071731, 0.158395648, -0.0704337358, -0.984863639))
  1435. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.125247687, 0.496580422))
  1436. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.253317922, 0.200000003, 0.200000003))
  1437. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.53444767, -1.70892, 0.899178028, 0.799826324, 0.594019651, 0.0861538053, 0.57896024, -0.801361203, 0.150424898, 0.158395648, -0.0704337358, -0.984863639))
  1438. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.154354557, 0.496580422))
  1439. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  1440. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-9.74527073, -0.556594372, 0.899551868, 0.969600797, 0.199523777, 0.141671658, 0.186525285, -0.97735852, 0.0998963192, 0.158395648, -0.0704337358, -0.984863639))
  1441. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.50757241, 0.0500000007, 0.140546978))
  1442. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-6.23492336, 0.547811508, 0.899180412, 0.9834885, 0.0997146964, 0.151043236, 0.0875668675, -0.992520332, 0.0850651488, 0.158395648, -0.0704337358, -0.984863639))
  1443. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.913425505, 0.6175946, 0.200000003))
  1444. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.23053312, 1.18124676, 0.899436474, 0.738246202, -0.653916538, 0.165498123, -0.655675173, -0.753281176, -0.0515800938, 0.158395648, -0.0704337358, -0.984863639))
  1445. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1446. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.241322264, 0.200000003, 0.200000003))
  1447. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.59684658, -3.23211718, 0.899447203, 0.97680974, 0.156730592, 0.145891517, 0.14408268, -0.985126793, 0.0936258137, 0.158395648, -0.0704337358, -0.984863639))
  1448. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.67651403, 0.485114038))
  1449. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.72026825, 0.186172783, 0.120615982))
  1450. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.3527813, -2.4022789, 0.899178505, 0.708067238, 0.703278601, 0.0635823458, 0.688155055, -0.707416534, 0.1612681, 0.158395648, -0.0704337358, -0.984863639))
  1451. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1452. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.683907509, 0.770748854, -0.875570297, -0.752646863, -0.636867464, 0.167112529, 0.638930738, -0.76774931, -0.0482816175, 0.159049526, 0.0704338774, 0.984758258))
  1453. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.585665047, 0.483350217, 0.200000003))
  1454. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.39219284, -1.64878547, 0.899446249, 0.936947465, 0.325422674, 0.127416179, 0.311522603, -0.942941844, 0.117538266, 0.158395648, -0.0704337358, -0.984863639))
  1455. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 0.485114038))
  1456. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1457. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.86477071, 0.713346481, -0.875574112, 0.177005127, -0.983324409, 0.0417434536, 0.97127682, 0.167667001, -0.168864429, 0.159049526, 0.0704338774, 0.984758258))
  1458. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(1.25244117, 0.200000003, 0.200000003))
  1459. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-7.7002039, 0.738850355, 0.899182081, 0.983551681, 0.0989937484, 0.151104987, 0.0868525133, -0.992592335, 0.0849554017, 0.158395648, -0.0704337358, -0.984863639))
  1460. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.238405704, 0.702734888))
  1461. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.839287937, 0.216936618, 0.140546992))
  1462. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.26070261, -4.23413277, 0.89917016, 0.319192618, 0.947547555, -0.0164296925, 0.934362292, -0.311756849, 0.172569364, 0.158395648, -0.0704337358, -0.984863639))
  1463. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.689254642, 0.200000003, 0.200000003))
  1464. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.40810013, -0.00480878353, 0.899180889, 0.983488262, 0.0997154713, 0.151043147, 0.087567687, -0.992519975, 0.0850652456, 0.158395648, -0.0704337358, -0.984863639))
  1465. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.146039113, 0.702734888))
  1466. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  1467. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.27816868, 0.36729759, -0.875572681, -0.971276879, -0.167668194, 0.168864504, 0.177006349, -0.983324409, 0.0417432524, 0.159049526, 0.0704338774, 0.984758258))
  1468. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1469. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.24585152, -1.39969897, -0.875568867, 0.97127676, 0.167668015, -0.168864489, -0.17700617, 0.983324349, -0.0417432785, 0.159049526, 0.0704338774, 0.984758258))
  1470. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.544915974, 0.225188777, 0.161478266))
  1471. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.99300385, -8.90743637, 0.899626732, 0.142528698, 0.988636851, -0.0477811359, 0.977037787, -0.132802278, 0.166634604, 0.158395648, -0.0704337358, -0.984863639))
  1472. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.463330895, 0.19147341, 0.137301669))
  1473. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.94237328, -7.7235775, 0.899553537, 0.480360001, 0.876951873, 0.0145396311, 0.862653852, -0.475389123, 0.17273891, 0.158395648, -0.0704337358, -0.984863639))
  1474. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1475. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.846886158, 0.621031761, 0.899709225, -0.176977322, -0.983324349, 0.0418608226, -0.971388578, 0.167666942, -0.168219492, 0.158395648, -0.0704337358, -0.984863639))
  1476. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.167585015, 0.0656226873, 0.0993160605))
  1477. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.77898407, -1.92497277, 0.899177313, 0.934770584, 0.331936687, 0.126600191, 0.317995548, -0.940668523, 0.118416734, 0.158395648, -0.0704337358, -0.984863639))
  1478. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  1479. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.60343695, -4.16727877, -0.875849724, -0.956498504, 0.258096755, 0.136025012, -0.244582146, -0.963548362, 0.108420044, 0.159049526, 0.0704338774, 0.984758258))
  1480. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1481. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.283630848, 0.916330338, -0.875573158, -0.165863439, -0.981368661, 0.096980691, 0.973241448, -0.178758949, -0.1444038, 0.159049526, 0.0704338774, 0.984758258))
  1482. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1483. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.36431217, -0.183939934, 0.8997159, -0.759969652, -0.645495474, -0.0760622695, -0.630367577, 0.76050961, -0.155771151, 0.158395648, -0.0704337358, -0.984863639))
  1484. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  1485. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.212973595, 1.0695591, -0.87556839, -0.488728732, -0.861045897, 0.140521064, 0.857819378, -0.503626227, -0.102525853, 0.159049526, 0.0704338774, 0.984758258))
  1486. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1487. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43735743, -0.124714851, -0.875572205, 0.759919107, -0.645495534, -0.0765667409, 0.630264044, 0.76050961, -0.156189799, 0.159049526, 0.0704338774, 0.984758258))
  1488. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1489. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.45576286, -0.432270765, 0.89970994, -0.857886434, -0.503627419, -0.101956159, -0.488823175, 0.861045182, -0.140196547, 0.158395648, -0.0704337358, -0.984863639))
  1490. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.397625864, 0.164320529, 0.117830887))
  1491. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-5.28656006, -5.34329987, 0.899504423, 0.819206297, 0.566195071, 0.0912605822, 0.551197171, -0.821256518, 0.147382587, 0.158395648, -0.0704337358, -0.984863639))
  1492. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238588))
  1493. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.38829231, -0.792639971, 0.899710655, -0.973336995, -0.178759843, -0.143757522, -0.165928707, 0.981368542, -0.0968705416, 0.158395648, -0.0704337358, -0.984863639))
  1494. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917283, 0.109218009, 0.16529502))
  1495. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.96528482, -5.18345737, -0.876111031, -0.0664858893, 0.995951891, -0.0604967251, -0.985032797, -0.0558502376, 0.163088515, 0.159049526, 0.0704338774, 0.984758258))
  1496. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1497. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.35685253, -0.233741045, 0.899713993, 0.973336995, 0.178759813, 0.143757522, 0.165928677, -0.981368542, 0.0968705341, 0.158395648, -0.0704337358, -0.984863639))
  1498. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.278917283, 0.109218009, 0.16529502))
  1499. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.95789385, -5.08970642, 0.899176598, 0.066445671, 0.995951772, -0.0605406985, 0.985140741, -0.0558502674, 0.162434459, 0.158395648, -0.0704337358, -0.984863639))
  1500. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  1501. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.167333841, 0.987339973, 0.899712086, 0.488821954, -0.861045837, 0.140196383, -0.857887089, -0.503626227, -0.101956345, 0.158395648, -0.0704337358, -0.984863639))
  1502. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238558))
  1503. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.22531652, 0.484791756, -0.875574112, 0.49852699, -0.866677225, -0.018529065, 0.85216248, 0.493872464, -0.172957778, 0.159049526, 0.0704338774, 0.984758258))
  1504. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1505. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.29839766, 0.823468208, 0.899716139, 0.165927812, -0.981368661, 0.0968704, -0.973336995, -0.178758949, -0.143757612, 0.158395648, -0.0704337358, -0.984863639))
  1506. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.167585015, 0.0656226873, 0.0993160605))
  1507. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.86831379, -1.954216, -0.876111984, -0.934686542, 0.331936747, 0.127220765, -0.317916811, -0.940668702, 0.118627973, 0.159049526, 0.0704338774, 0.984758258))
  1508. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.270109087, 0.0500000007, 0.429238588))
  1509. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.48115635, -0.777873993, -0.875567436, 0.973241389, -0.178759843, -0.144403726, 0.165864334, 0.981368661, -0.0969808325, 0.159049526, 0.0704338774, 0.984758258))
  1510. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1511. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.44971752, -0.248507977, -0.875571251, -0.973241389, 0.178759813, 0.144403726, -0.165864304, -0.981368661, 0.0969808325, 0.159049526, 0.0704338774, 0.984758258))
  1512. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.327407986, 0.135302708, 0.0970228091))
  1513. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.51207829, -4.1450429, 0.899453878, 0.956588447, 0.258096665, 0.135389939, 0.24465403, -0.963548183, 0.108257495, 0.158395648, -0.0704337358, -0.984863639))
  1514. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.203526303, 0.0796965212, 0.120615982))
  1515. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-3.15853882, -2.63138103, 0.899187326, 0.774064064, 0.628089964, 0.0795738399, 0.61297822, -0.77494669, 0.154006928, 0.158395648, -0.0704337358, -0.984863639))
  1516. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.0500000007, 0.245740563, 0.429238588))
  1517. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.53797483, -0.386631012, -0.875575066, 0.857818782, -0.503627419, -0.102525659, 0.488730013, 0.861045241, -0.140521199, 0.159049526, 0.0704338774, 0.984758258))
  1518. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.763193846, 0.163541555, 1.09027684))
  1519. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.419935763, 1.12170887, 1.25058079, -0.158687159, 0.98589474, -0.0532010235, 0.0053470307, -0.0530247763, -0.998580575, -0.987316012, -0.15874587, 0.00314274291))
  1520. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1521. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.4000001, 0.200000033, 2))
  1522. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.348431528, 1.0679574, 1.2725935, -0.158687159, 0.98589474, -0.0532010235, 0.0053470307, -0.0530247763, -0.998580575, -0.987316012, -0.15874587, 0.00314274291))
  1523. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1524. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.4000001, 0.200000033, 2))
  1525. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.333662987, 1.06742907, 1.36449051, -0.158651814, -0.98589474, 0.0533063821, -0.00601008674, -0.0530247763, -0.99857676, 0.98731792, -0.15874587, 0.00248716492))
  1526. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1527. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Crimson","Part",Vector3.new(0.763193846, 0.163541555, 1.09027684))
  1528. Partweld=weld(m,handle,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.405167103, 1.12118006, 1.3424778, -0.158651814, -0.98589474, 0.0533063821, -0.00601008674, -0.0530247763, -0.99857676, 0.98731792, -0.15874587, 0.00248716492))
  1529. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  1530. ------------------------
  1531. -- [[[
  1532. --000000[[====================================================================================\\
  1533. --000000[[ NinjaFang321 EDIT
  1534. --000000[[====================================================================================//
  1535. -- [[[
  1536. wait(1)
  1537.  
  1538. Player = game:GetService("Players").LocalPlayer
  1539. PlayerGui = Player.PlayerGui
  1540. Cam = workspace.CurrentCamera
  1541. Backpack = Player.Backpack
  1542. repeat wait() until Player.Character
  1543. Character = Player.Character
  1544. repeat wait() until Player.Character:FindFirstChildOfClass("Humanoid")
  1545. Humanoid = Character:FindFirstChildOfClass("Humanoid")
  1546. Mouse = Player:GetMouse()
  1547. RootPart = Character["HumanoidRootPart"]
  1548. Torso = Character["Torso"]
  1549. Head = Character["Head"]
  1550. RightArm = Character["Right Arm"]
  1551. LeftArm = Character["Left Arm"]
  1552. RightLeg = Character["Right Leg"]
  1553. LeftLeg = Character["Left Leg"]
  1554. RootJoint = RootPart["RootJoint"]
  1555. Neck = Torso["Neck"]
  1556. RightShoulder = Torso["Right Shoulder"]
  1557. LeftShoulder = Torso["Left Shoulder"]
  1558. RightHip = Torso["Right Hip"]
  1559. LeftHip = Torso["Left Hip"]
  1560.  
  1561. IT = Instance.new
  1562. CF = CFrame.new
  1563. VT = Vector3.new
  1564. RAD = math.rad
  1565. C3 = Color3.new
  1566. UD2 = UDim2.new
  1567. BRICKC = BrickColor.new
  1568. ANGLES = CFrame.Angles
  1569. EULER = CFrame.fromEulerAnglesXYZ
  1570. COS = math.cos
  1571. ACOS = math.acos
  1572. SIN = math.sin
  1573. ASIN = math.asin
  1574. ABS = math.abs
  1575. MRANDOM = math.random
  1576. FLOOR = math.floor
  1577.  
  1578. local naeeym2 = Instance.new("BillboardGui",Character)
  1579. naeeym2.AlwaysOnTop = true
  1580. naeeym2.Size = UDim2.new(7,35,3,15)
  1581. naeeym2.StudsOffset = Vector3.new(0,2,0)
  1582. naeeym2.MaxDistance = 75
  1583. naeeym2.Adornee = Character.Head
  1584. naeeym2.Name = "Name2"
  1585. local tecks2 = Instance.new("TextLabel",naeeym2)
  1586. tecks2.BackgroundTransparency = 1
  1587. tecks2.TextScaled = true
  1588. tecks2.BorderSizePixel = 0
  1589. tecks2.Text = "Joker God"
  1590. tecks2.Font = "ArialBold"
  1591. tecks2.TextSize = 30
  1592. tecks2.TextStrokeTransparency = 0
  1593. tecks2.TextColor3 = Color3.fromRGB(255, 06, 00)
  1594. tecks2.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  1595. tecks2.Size = UDim2.new(1,0,0.5,0)
  1596. tecks2.Parent = naeeym2
  1597.  
  1598. local naeeym3 = Instance.new("BillboardGui",Character)
  1599. naeeym3.AlwaysOnTop = true
  1600. naeeym3.Size = UDim2.new(7,35,3,15)
  1601. naeeym3.StudsOffset = Vector3.new(2,3,0)
  1602. naeeym3.MaxDistance = 75
  1603. naeeym3.Adornee = Character.Head
  1604. naeeym3.Name = "Name3"
  1605. local tecks3 = Instance.new("TextLabel",naeeym2)
  1606. tecks3.BackgroundTransparency = 1
  1607. tecks3.TextScaled = true
  1608. tecks3.BorderSizePixel = 0
  1609. tecks3.Text = ""..Player.Name
  1610. tecks3.Font = "ArialBold"
  1611. tecks3.TextSize = 30
  1612. tecks3.TextStrokeTransparency = 0
  1613. tecks3.TextColor3 = Color3.fromRGB(255, 0, 0)
  1614. tecks3.TextStrokeColor3 = Color3.fromRGB(140, 140, 140)
  1615. tecks3.Size = UDim2.new(0.5,0,0.2,0)
  1616. tecks3.Parent = naeeym3
  1617.  
  1618. --//=================================\\
  1619. --|| USEFUL VALUES
  1620. --\\=================================//
  1621.  
  1622. Animation_Speed = 3
  1623. Frame_Speed = 1 / 60 -- (1 / 30) OR (1 / 60)
  1624. local Speed = 16
  1625. local ROOTC0 = CF(0, 0, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  1626. local NECKC0 = CF(0, 1, 0) * ANGLES(RAD(-90), RAD(0), RAD(180))
  1627. local RIGHTSHOULDERC0 = CF(-0.5, -0.25, 0) * ANGLES(RAD(0), RAD(90), RAD(0))
  1628. local LEFTSHOULDERC0 = CF(0.5, -0.25, 0) * ANGLES(RAD(0), RAD(-90), RAD(0))
  1629. local DAMAGEMULTIPLIER = "inf"
  1630. local ANIM = "Idle"
  1631. local ATTACK = false
  1632. local EQUIPPED = false
  1633. local HOLD = false
  1634. local COMBO = 1
  1635. local Rooted = false
  1636. local SINE = 0
  1637. local KEYHOLD = false
  1638. local CHANGE = 2 / Animation_Speed
  1639. local WALKINGANIM = false
  1640. local VALUE1 = false
  1641. local VALUE2 = false
  1642. local ROBLOXIDLEANIMATION = IT("Animation")
  1643. ROBLOXIDLEANIMATION.Name = "Roblox Idle Animation"
  1644. ROBLOXIDLEANIMATION.AnimationId = "http://www.roblox.com/asset/?id=180435571"
  1645. --ROBLOXIDLEANIMATION.Parent = Humanoid
  1646. local WEAPONGUI = IT("ScreenGui", PlayerGui)
  1647. WEAPONGUI.Name = "Weapon GUI"
  1648. local Effects = IT("Folder", Character)
  1649. Effects.Name = "Effects"
  1650. local SpecialEffects = IT("Folder", Character)
  1651. SpecialEffects.Name = "SpecialEffects"
  1652. local ANIMATOR = Humanoid.Animator
  1653. local ANIMATE = Character.Animate
  1654. local UNANCHOR = true
  1655. local REGENRATE = 1
  1656. local FULLREGEN = false
  1657. local POSEIDON = false
  1658. local EXPLOSIONSMALLSOUND = 439342426
  1659. local EXPLOSIONMEDIUMSOUND = 605005842
  1660. local EXPLOSIONLARGESOUND = 565538688
  1661. local CHARGE = 278641993
  1662. local POSEIDONSOUND = 374289727
  1663. local FIREBALLSOUND = 414517770
  1664. local BURNSOUND = 565777213
  1665. local FIREFIELD = false
  1666. local SEARING = false
  1667. local BODYPOS = nil
  1668. local GYRO = nil
  1669. local DIRECTTURN = false
  1670. local APPLYGYRO = true
  1671. local SONGS = {712013220,1330061498}
  1672. local CHOSENSONG = MRANDOM(1,#SONGS)
  1673.  
  1674. --//=================================\\
  1675. --\\=================================//
  1676.  
  1677.  
  1678. --//=================================\\
  1679. --|| SAZERENOS' ARTIFICIAL HEARTBEAT
  1680. --\\=================================//
  1681.  
  1682. ArtificialHB = Instance.new("BindableEvent", script)
  1683. ArtificialHB.Name = "ArtificialHB"
  1684.  
  1685. script:WaitForChild("ArtificialHB")
  1686.  
  1687. frame = Frame_Speed
  1688. tf = 0
  1689. allowframeloss = false
  1690. tossremainder = false
  1691. lastframe = tick()
  1692. script.ArtificialHB:Fire()
  1693.  
  1694. game:GetService("RunService").Heartbeat:connect(function(s, p)
  1695. tf = tf + s
  1696. if tf >= frame then
  1697. if allowframeloss then
  1698. script.ArtificialHB:Fire()
  1699. lastframe = tick()
  1700. else
  1701. for i = 1, math.floor(tf / frame) do
  1702. script.ArtificialHB:Fire()
  1703. end
  1704. lastframe = tick()
  1705. end
  1706. if tossremainder then
  1707. tf = 0
  1708. else
  1709. tf = tf - frame * math.floor(tf / frame)
  1710. end
  1711. end
  1712. end)
  1713.  
  1714. --//=================================\\
  1715. --\\=================================//
  1716.  
  1717. --//=================================\\
  1718. --|| SOME FUNCTIONS
  1719. --\\=================================//
  1720.  
  1721. function Raycast(POSITION, DIRECTION, RANGE, IGNOREDECENDANTS)
  1722. return workspace:FindPartOnRay(Ray.new(POSITION, DIRECTION.unit * RANGE), IGNOREDECENDANTS)
  1723. end
  1724.  
  1725. function PositiveAngle(NUMBER)
  1726. if NUMBER >= 0 then
  1727. NUMBER = 0
  1728. end
  1729. return NUMBER
  1730. end
  1731.  
  1732. function NegativeAngle(NUMBER)
  1733. if NUMBER <= 0 then
  1734. NUMBER = 0
  1735. end
  1736. return NUMBER
  1737. end
  1738.  
  1739. function Swait(NUMBER)
  1740. if NUMBER == 0 or NUMBER == nil then
  1741. ArtificialHB.Event:wait()
  1742. else
  1743. for i = 1, NUMBER do
  1744. ArtificialHB.Event:wait()
  1745. end
  1746. end
  1747. end
  1748.  
  1749. function CreateMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  1750. local NEWMESH = IT(MESH)
  1751. if MESH == "SpecialMesh" then
  1752. NEWMESH.MeshType = MESHTYPE
  1753. if MESHID ~= "nil" and MESHID ~= "" then
  1754. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  1755. end
  1756. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  1757. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  1758. end
  1759. end
  1760. NEWMESH.Offset = OFFSET or VT(0, 0, 0)
  1761. NEWMESH.Scale = SCALE
  1762. NEWMESH.Parent = PARENT
  1763. return NEWMESH
  1764. end
  1765.  
  1766. function CreatePart(FORMFACTOR, PARENT, MATERIAL, REFLECTANCE, TRANSPARENCY, BRICKCOLOR, NAME, SIZE, ANCHOR)
  1767. local NEWPART = IT("Part")
  1768. NEWPART.formFactor = FORMFACTOR
  1769. NEWPART.Reflectance = REFLECTANCE
  1770. NEWPART.Transparency = TRANSPARENCY
  1771. NEWPART.CanCollide = false
  1772. NEWPART.Locked = true
  1773. NEWPART.Anchored = true
  1774. if ANCHOR == false then
  1775. NEWPART.Anchored = false
  1776. end
  1777. NEWPART.BrickColor = BRICKC(tostring(BRICKCOLOR))
  1778. NEWPART.Name = NAME
  1779. NEWPART.Size = SIZE
  1780. NEWPART.Position = Torso.Position
  1781. NEWPART.Material = MATERIAL
  1782. NEWPART:BreakJoints()
  1783. NEWPART.Parent = PARENT
  1784. return NEWPART
  1785. end
  1786.  
  1787. local function weldBetween(a, b)
  1788. local weldd = Instance.new("ManualWeld")
  1789. weldd.Part0 = a
  1790. weldd.Part1 = b
  1791. weldd.C0 = CFrame.new()
  1792. weldd.C1 = b.CFrame:inverse() * a.CFrame
  1793. weldd.Parent = a
  1794. return weldd
  1795. end
  1796.  
  1797.  
  1798. function QuaternionFromCFrame(cf)
  1799. local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components()
  1800. local trace = m00 + m11 + m22
  1801. if trace > 0 then
  1802. local s = math.sqrt(1 + trace)
  1803. local recip = 0.5 / s
  1804. return (m21 - m12) * recip, (m02 - m20) * recip, (m10 - m01) * recip, s * 0.5
  1805. else
  1806. local i = 0
  1807. if m11 > m00 then
  1808. i = 1
  1809. end
  1810. if m22 > (i == 0 and m00 or m11) then
  1811. i = 2
  1812. end
  1813. if i == 0 then
  1814. local s = math.sqrt(m00 - m11 - m22 + 1)
  1815. local recip = 0.5 / s
  1816. return 0.5 * s, (m10 + m01) * recip, (m20 + m02) * recip, (m21 - m12) * recip
  1817. elseif i == 1 then
  1818. local s = math.sqrt(m11 - m22 - m00 + 1)
  1819. local recip = 0.5 / s
  1820. return (m01 + m10) * recip, 0.5 * s, (m21 + m12) * recip, (m02 - m20) * recip
  1821. elseif i == 2 then
  1822. local s = math.sqrt(m22 - m00 - m11 + 1)
  1823. local recip = 0.5 / s return (m02 + m20) * recip, (m12 + m21) * recip, 0.5 * s, (m10 - m01) * recip
  1824. end
  1825. end
  1826. end
  1827.  
  1828. function QuaternionToCFrame(px, py, pz, x, y, z, w)
  1829. local xs, ys, zs = x + x, y + y, z + z
  1830. local wx, wy, wz = w * xs, w * ys, w * zs
  1831. local xx = x * xs
  1832. local xy = x * ys
  1833. local xz = x * zs
  1834. local yy = y * ys
  1835. local yz = y * zs
  1836. local zz = z * zs
  1837. 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))
  1838. end
  1839.  
  1840. function QuaternionSlerp(a, b, t)
  1841. local cosTheta = a[1] * b[1] + a[2] * b[2] + a[3] * b[3] + a[4] * b[4]
  1842. local startInterp, finishInterp;
  1843. if cosTheta >= 0.0001 then
  1844. if (1 - cosTheta) > 0.0001 then
  1845. local theta = ACOS(cosTheta)
  1846. local invSinTheta = 1 / SIN(theta)
  1847. startInterp = SIN((1 - t) * theta) * invSinTheta
  1848. finishInterp = SIN(t * theta) * invSinTheta
  1849. else
  1850. startInterp = 1 - t
  1851. finishInterp = t
  1852. end
  1853. else
  1854. if (1 + cosTheta) > 0.0001 then
  1855. local theta = ACOS(-cosTheta)
  1856. local invSinTheta = 1 / SIN(theta)
  1857. startInterp = SIN((t - 1) * theta) * invSinTheta
  1858. finishInterp = SIN(t * theta) * invSinTheta
  1859. else
  1860. startInterp = t - 1
  1861. finishInterp = t
  1862. end
  1863. end
  1864. 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
  1865. end
  1866.  
  1867. function Clerp(a, b, t)
  1868. local qa = {QuaternionFromCFrame(a)}
  1869. local qb = {QuaternionFromCFrame(b)}
  1870. local ax, ay, az = a.x, a.y, a.z
  1871. local bx, by, bz = b.x, b.y, b.z
  1872. local _t = 1 - t
  1873. return QuaternionToCFrame(_t * ax + t * bx, _t * ay + t * by, _t * az + t * bz, QuaternionSlerp(qa, qb, t))
  1874. end
  1875.  
  1876. function CreateFrame(PARENT, TRANSPARENCY, BORDERSIZEPIXEL, POSITION, SIZE, COLOR, BORDERCOLOR, NAME)
  1877. local frame = IT("Frame")
  1878. frame.BackgroundTransparency = TRANSPARENCY
  1879. frame.BorderSizePixel = BORDERSIZEPIXEL
  1880. frame.Position = POSITION
  1881. frame.Size = SIZE
  1882. frame.BackgroundColor3 = COLOR
  1883. frame.BorderColor3 = BORDERCOLOR
  1884. frame.Name = NAME
  1885. frame.Parent = PARENT
  1886. return frame
  1887. end
  1888.  
  1889. function CreateLabel(PARENT, TEXT, TEXTCOLOR, TEXTFONTSIZE, TEXTFONT, TRANSPARENCY, BORDERSIZEPIXEL, STROKETRANSPARENCY, NAME)
  1890. local label = IT("TextLabel")
  1891. label.BackgroundTransparency = 1
  1892. label.Size = UD2(1, 0, 1, 0)
  1893. label.Position = UD2(0, 0, 0, 0)
  1894. label.TextColor3 = TEXTCOLOR
  1895. label.TextStrokeTransparency = STROKETRANSPARENCY
  1896. label.TextTransparency = TRANSPARENCY
  1897. label.FontSize = TEXTFONTSIZE
  1898. label.Font = TEXTFONT
  1899. label.BorderSizePixel = BORDERSIZEPIXEL
  1900. label.TextScaled = false
  1901. label.Text = TEXT
  1902. label.Name = NAME
  1903. label.Parent = PARENT
  1904. return label
  1905. end
  1906.  
  1907. function NoOutlines(PART)
  1908. PART.TopSurface, PART.BottomSurface, PART.LeftSurface, PART.RightSurface, PART.FrontSurface, PART.BackSurface = 10, 10, 10, 10, 10, 10
  1909. end
  1910.  
  1911. function CreateWeldOrSnapOrMotor(TYPE, PARENT, PART0, PART1, C0, C1)
  1912. local NEWWELD = IT(TYPE)
  1913. NEWWELD.Part0 = PART0
  1914. NEWWELD.Part1 = PART1
  1915. NEWWELD.C0 = C0
  1916. NEWWELD.C1 = C1
  1917. NEWWELD.Parent = PARENT
  1918. return NEWWELD
  1919. end
  1920.  
  1921. local S = IT("Sound")
  1922. function CreateSound(ID, PARENT, VOLUME, PITCH, DOESLOOP)
  1923. local NEWSOUND = nil
  1924. coroutine.resume(coroutine.create(function()
  1925. NEWSOUND = S:Clone()
  1926. NEWSOUND.Parent = PARENT
  1927. NEWSOUND.Volume = VOLUME
  1928. NEWSOUND.Pitch = PITCH
  1929. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  1930. NEWSOUND:play()
  1931. if DOESLOOP == true then
  1932. NEWSOUND.Looped = true
  1933. else
  1934. repeat wait(1) until NEWSOUND.Playing == false
  1935. NEWSOUND:remove()
  1936. end
  1937. end))
  1938. return NEWSOUND
  1939. end
  1940.  
  1941. function CFrameFromTopBack(at, top, back)
  1942. local right = top:Cross(back)
  1943. return CF(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
  1944. end
  1945.  
  1946. --WACKYEFFECT({EffectType = "", Size = VT(1,1,1), Size2 = VT(0,0,0), Transparency = 0, Transparency2 = 1, CFrame = CF(), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  1947. function WACKYEFFECT(Table)
  1948. local TYPE = (Table.EffectType or "Sphere")
  1949. local SIZE = (Table.Size or VT(1,1,1))
  1950. local ENDSIZE = (Table.Size2 or VT(0,0,0))
  1951. local TRANSPARENCY = (Table.Transparency or 0)
  1952. local ENDTRANSPARENCY = (Table.Transparency2 or 1)
  1953. local CFRAME = (Table.CFrame or Torso.CFrame)
  1954. local MOVEDIRECTION = (Table.MoveToPos or nil)
  1955. local ROTATION1 = (Table.RotationX or 0)
  1956. local ROTATION2 = (Table.RotationY or 0)
  1957. local ROTATION3 = (Table.RotationZ or 0)
  1958. local MATERIAL = (Table.Material or "Neon")
  1959. local COLOR = (Table.Color or C3(1,1,1))
  1960. local TIME = (Table.Time or 45)
  1961. local SOUNDID = (Table.SoundID or nil)
  1962. local SOUNDPITCH = (Table.SoundPitch or nil)
  1963. local SOUNDVOLUME = (Table.SoundVolume or nil)
  1964. coroutine.resume(coroutine.create(function()
  1965. local PLAYSSOUND = false
  1966. local SOUND = nil
  1967. local EFFECT = CreatePart(3, Effects, MATERIAL, 0, TRANSPARENCY, BRICKC("Pearl"), "Effect", VT(1,1,1), true)
  1968. if SOUNDID ~= nil and SOUNDPITCH ~= nil and SOUNDVOLUME ~= nil then
  1969. PLAYSSOUND = true
  1970. SOUND = CreateSound(SOUNDID, EFFECT, SOUNDVOLUME, SOUNDPITCH, false)
  1971. end
  1972. EFFECT.Color = COLOR
  1973. local MSH = nil
  1974. if TYPE == "Sphere" then
  1975. MSH = CreateMesh("SpecialMesh", EFFECT, "Sphere", "", "", SIZE, VT(0,0,0))
  1976. elseif TYPE == "Block" then
  1977. MSH = IT("BlockMesh",EFFECT)
  1978. MSH.Scale = VT(SIZE.X,SIZE.X,SIZE.X)
  1979. elseif TYPE == "Wave" then
  1980. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "20329976", "", SIZE, VT(0,0,-SIZE.X/8))
  1981. elseif TYPE == "Ring" then
  1982. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "559831844", "", VT(SIZE.X,SIZE.X,0.1), VT(0,0,0))
  1983. elseif TYPE == "Slash" then
  1984. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662586858", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  1985. elseif TYPE == "Round Slash" then
  1986. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "662585058", "", VT(SIZE.X/10,0,SIZE.X/10), VT(0,0,0))
  1987. elseif TYPE == "Swirl" then
  1988. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "1051557", "", SIZE, VT(0,0,0))
  1989. elseif TYPE == "Skull" then
  1990. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "4770583", "", SIZE, VT(0,0,0))
  1991. elseif TYPE == "Crystal" then
  1992. MSH = CreateMesh("SpecialMesh", EFFECT, "FileMesh", "9756362", "", SIZE, VT(0,0,0))
  1993. end
  1994. if MSH ~= nil then
  1995. local MOVESPEED = nil
  1996. if MOVEDIRECTION ~= nil then
  1997. MOVESPEED = (CFRAME.p - MOVEDIRECTION).Magnitude/TIME
  1998. end
  1999. local GROWTH = SIZE - ENDSIZE
  2000. local TRANS = TRANSPARENCY - ENDTRANSPARENCY
  2001. if TYPE == "Block" then
  2002. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  2003. else
  2004. EFFECT.CFrame = CFRAME
  2005. end
  2006. for LOOP = 1, TIME+1 do
  2007. Swait()
  2008. MSH.Scale = MSH.Scale - GROWTH/TIME
  2009. if TYPE == "Wave" then
  2010. MSH.Offset = VT(0,0,-MSH.Scale.X/8)
  2011. end
  2012. EFFECT.Transparency = EFFECT.Transparency - TRANS/TIME
  2013. if TYPE == "Block" then
  2014. EFFECT.CFrame = CFRAME*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))
  2015. else
  2016. EFFECT.CFrame = EFFECT.CFrame*ANGLES(RAD(ROTATION1),RAD(ROTATION2),RAD(ROTATION3))
  2017. end
  2018. if MOVEDIRECTION ~= nil then
  2019. local ORI = EFFECT.Orientation
  2020. EFFECT.CFrame = CF(EFFECT.Position,MOVEDIRECTION)*CF(0,0,-MOVESPEED)
  2021. EFFECT.Orientation = ORI
  2022. end
  2023. end
  2024. if PLAYSSOUND == false then
  2025. EFFECT:remove()
  2026. else
  2027. repeat Swait() until SOUND.Playing == false
  2028. EFFECT:remove()
  2029. end
  2030. else
  2031. if PLAYSSOUND == false then
  2032. EFFECT:remove()
  2033. else
  2034. repeat Swait() until SOUND.Playing == false
  2035. EFFECT:remove()
  2036. end
  2037. end
  2038. end))
  2039. end
  2040.  
  2041. function MakeForm(PART,TYPE)
  2042. if TYPE == "Cyl" then
  2043. local MSH = IT("CylinderMesh",PART)
  2044. elseif TYPE == "Ball" then
  2045. local MSH = IT("SpecialMesh",PART)
  2046. MSH.MeshType = "Sphere"
  2047. elseif TYPE == "Wedge" then
  2048. local MSH = IT("SpecialMesh",PART)
  2049. MSH.MeshType = "Wedge"
  2050. end
  2051. end
  2052.  
  2053. Debris = game:GetService("Debris")
  2054.  
  2055. function CastProperRay(StartPos, EndPos, Distance, Ignore)
  2056. local DIRECTION = CF(StartPos,EndPos).lookVector
  2057. return game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(StartPos, DIRECTION * Distance), Ignore)
  2058. end
  2059.  
  2060. --//=================================\\
  2061. --|| WEAPON CREATION
  2062. --\\=================================//
  2063. CircleParts = {}
  2064. Equipped = false
  2065.  
  2066. function RayCast(Position, Direction, MaxDistance, IgnoreList)
  2067. return game:GetService("Workspace"):FindPartOnRayWithIgnoreList(Ray.new(Position, Direction.unit * (MaxDistance or 999.999)), IgnoreList)
  2068. end
  2069. Humanoid = Character:FindFirstChildOfClass("Humanoid")
  2070. Torso = Character:FindFirstChild("Torso")
  2071. if not Player or not Humanoid or Humanoid.Health == 0 or not Torso then
  2072. return
  2073. end
  2074. Equipped = true
  2075. Circle = Instance.new("Model")
  2076. Circle.Name = "Circle"
  2077. Angle = 0
  2078. for i = 1, 1 do
  2079. local CirclePart = Instance.new("Part")
  2080. CirclePart.Name = "CirclePart"
  2081. CirclePart.Transparency = 1
  2082. CirclePart.BrickColor = BrickColor.new("Really black")
  2083. CirclePart.Material = Enum.Material.Plastic
  2084. CirclePart.Shape = Enum.PartType.Block
  2085. CirclePart.FormFactor = Enum.FormFactor.Custom
  2086. CirclePart.TopSurface = Enum.SurfaceType.Smooth
  2087. CirclePart.BottomSurface = Enum.SurfaceType.Smooth
  2088. CirclePart.Anchored = true
  2089. CirclePart.CanCollide = false
  2090. CirclePart.Locked = true
  2091. CirclePart.Size = Vector3.new(10, 0.2, 10)
  2092. local Aura = Instance.new('ParticleEmitter')
  2093. Aura.Name = "Aura"
  2094. Aura.Texture = "rbxassetid://141116476"
  2095. Aura.Parent = CirclePart
  2096. Aura.LightEmission = 0
  2097. Aura.Transparency = NumberSequence.new(0.2,0.4,1)
  2098. Aura.Color = ColorSequence.new(Color3.new(255/255, 0/255, 0/255),Color3.new(0/200, 0/200, 0/200))
  2099. Aura.Size = NumberSequence.new(0.9,0.5,0.3)
  2100. Aura.LockedToPart = false
  2101. Aura.Lifetime = NumberRange.new(1)
  2102. Aura.Rate = 100
  2103. Aura.Speed = NumberRange.new(2)
  2104. Aura.SpreadAngle = Vector2.new(80,80)
  2105. local BlockMesh = Instance.new("BlockMesh")
  2106. BlockMesh.Scale = Vector3.new(1, (1 + (0.005 * i)), 1)
  2107. BlockMesh.Parent = CirclePart
  2108. CirclePart.Parent = Circle
  2109. local Star = Instance.new("Decal", CirclePart)
  2110. Star.Texture = "http://www.roblox.com/asset/?id=511898588"
  2111. Star.Face = "Top"
  2112. local Light = Instance.new("PointLight", CirclePart)
  2113. Light.Color = Color3.new(1,0,0)
  2114. Light.Brightness = 100
  2115. Light.Range = 15
  2116. table.insert(CircleParts, CirclePart)
  2117. end
  2118. Spawn(function()
  2119. while Equipped and Humanoid.Parent and Humanoid.Health > 0 and Torso.Parent do
  2120. if Angle == 360 then
  2121. Angle = 0
  2122. end
  2123. Angle = Angle + 0.05
  2124. local Hit, EndPosition = RayCast(Torso.Position, Vector3.new(0, -1, 0), (Torso.Size.Y * 6.5), {Character})
  2125. if Hit then
  2126. if not Circle.Parent then
  2127. Circle.Parent = Character
  2128. end
  2129. for i, v in pairs(CircleParts) do
  2130. v.CFrame = CFrame.new(Torso.Position.X, EndPosition.Y, Torso.Position.Z) * CFrame.Angles(0, (Angle + i), 0)
  2131. end
  2132. else
  2133. Circle.Parent = nil
  2134. end
  2135. wait()
  2136. end
  2137. end)
  2138.  
  2139. Neck.Name = "Weld"
  2140. RootJoint.Name = "Weld"
  2141. RightShoulder.Name = "Weld"
  2142. LeftShoulder.Name = "Weld"
  2143. RightHip.Name = "Weld"
  2144. LeftHip.Name = "Weld"
  2145.  
  2146. local BODY = {}
  2147. for _, c in pairs(Character:GetDescendants()) do
  2148. if c:IsA("BasePart") and c.Name ~= "Handle" then
  2149. if c ~= RootPart and c ~= Torso and c ~= Head and c ~= RightArm and c ~= LeftArm and c ~= RightLeg and c ~= LeftLeg then
  2150. c.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0, 0, 0)
  2151. end
  2152. table.insert(BODY,{c,c.Parent,c.Material,c.Color,c.Transparency})
  2153. elseif c:IsA("JointInstance") then
  2154. table.insert(BODY,{c,c.Parent,nil,nil,nil})
  2155. end
  2156. end
  2157. for e = 1, #BODY do
  2158. if BODY[e] ~= nil then
  2159. local STUFF = BODY[e]
  2160. local PART = STUFF[1]
  2161. local PARENT = STUFF[2]
  2162. local MATERIAL = STUFF[3]
  2163. local COLOR = STUFF[4]
  2164. local TRANSPARENCY = STUFF[5]
  2165. if PART.ClassName == "Part" and PART ~= RootPart then
  2166. PART.Material = MATERIAL
  2167. PART.Color = COLOR
  2168. PART.Transparency = TRANSPARENCY
  2169. end
  2170. PART.AncestryChanged:Connect(function()
  2171. PART.Parent = PARENT
  2172. end)
  2173. end
  2174. end
  2175.  
  2176. function refit()
  2177. Character.Parent = workspace
  2178. for e = 1, #BODY do
  2179. if BODY[e] ~= nil then
  2180. local STUFF = BODY[e]
  2181. local PART = STUFF[1]
  2182. local PARENT = STUFF[2]
  2183. local MATERIAL = STUFF[3]
  2184. local COLOR = STUFF[4]
  2185. local TRANSPARENCY = STUFF[5]
  2186. if PART.ClassName == "Part" and PART ~= RootPart then
  2187. PART.Material = MATERIAL
  2188. PART.Color = COLOR
  2189. PART.Transparency = TRANSPARENCY
  2190. end
  2191. if PART.Parent ~= PARENT then
  2192. Humanoid:remove()
  2193. PART.Parent = PARENT
  2194. Humanoid = IT("Humanoid",Character)
  2195. chatfunc ("You Failed....")
  2196. end
  2197. end
  2198. end
  2199. end
  2200.  
  2201. Humanoid.Parent = Character
  2202. if(Player.Name == 'deivis97')then
  2203. local PRT = CreatePart(3, Head, "Fabric", 0, 0, "Really black", "Hat", VT(1,1,1),false)
  2204. PRT.Color = C3(0,0,0)
  2205. CreateWeldOrSnapOrMotor("Weld", Head, Head, PRT, CF(0,0.18,0.2) * ANGLES(RAD(0), RAD(0), RAD(0)), CF(0, 0, 0))
  2206. CreateMesh("SpecialMesh", PRT, "FileMesh", "62246019", "162693346", VT(1,1,1), VT(0,0,0))
  2207. local PRT = CreatePart(3, Character, "Neon", 0, 0, "Really black", "Detail", VT(0.2,0.3,0.2),false)
  2208. PRT.Color = C3(0/255, 255/255, 255/255)
  2209. MakeForm(PRT,"Ball")
  2210. local Aura = Instance.new('ParticleEmitter')
  2211. Aura.Name = "Aura"
  2212. Aura.Texture = "rbxassetid://141116476"
  2213. Aura.Parent = PRT
  2214. Aura.LightEmission = 1
  2215. Aura.Transparency = NumberSequence.new(0,0.6,1)
  2216. Aura.Color = ColorSequence.new(Color3.new(0/255, 255/255, 255/255),Color3.new(255/255, 0/255, 0/255))
  2217. Aura.Size = NumberSequence.new(0.4,0.3,0.1)
  2218. Aura.LockedToPart = false
  2219. Aura.Lifetime = NumberRange.new(2)
  2220. Aura.Rate = 99
  2221. Aura.Speed = NumberRange.new(1)
  2222. Aura.EmissionDirection = "Top"
  2223. CreateWeldOrSnapOrMotor("Weld", Head, Head, PRT, CF(-0.1,0.18,-.55), CF(0, 0, 0))
  2224. end
  2225. Humanoid.Died:connect(function()
  2226. refit()
  2227. mas()
  2228. end)
  2229. function swait(num)
  2230. if num == 0 or num == nil then
  2231. ArtificialHB.Event:wait()
  2232. else
  2233. for i = 0, num do
  2234. ArtificialHB.Event:wait()
  2235. end
  2236. end
  2237. end
  2238. function chatfunc(text)
  2239. local chat = coroutine.wrap(function()
  2240. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  2241. Character:FindFirstChild("TalkingBillBoard"):destroy()
  2242. end
  2243. local Bill = Instance.new("BillboardGui",Character)
  2244. Bill.Size = UDim2.new(0,100,0,40)
  2245. Bill.StudsOffset = Vector3.new(0,3,0)
  2246. Bill.Adornee = Character.Head
  2247. Bill.Name = "TalkingBillBoard"
  2248. local Hehe = Instance.new("TextLabel",Bill)
  2249. Hehe.BackgroundTransparency = 1
  2250. Hehe.BorderSizePixel = 0
  2251. Hehe.Text = ""
  2252. Hehe.Font = "Garamond"
  2253. Hehe.TextSize = 40
  2254. Hehe.TextStrokeTransparency = 0
  2255. Hehe.Size = UDim2.new(1,0,0.5,0)
  2256. coroutine.resume(coroutine.create(function()
  2257. while Hehe ~= nil do
  2258. swait()
  2259. Hehe.Position = UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  2260. Hehe.Rotation = math.random(-5,5)
  2261. Hehe.TextColor3 = Color3.new(0,0,0)
  2262. Hehe.TextStrokeColor3 = Color3.new(1,0,0)
  2263. end
  2264. end))
  2265. for i = 1,string.len(text),1 do
  2266. swait()
  2267. Hehe.Text = string.sub(text,1,i)
  2268. end
  2269. swait(90)--Re[math.random(1, 93)]
  2270. for i = 0, 1, .025 do
  2271. swait()
  2272. Bill.ExtentsOffset = Vector3.new(math.random(-i, i), math.random(-i, i), math.random(-i, i))
  2273. Hehe.TextStrokeTransparency = i
  2274. Hehe.TextTransparency = i
  2275. end
  2276. Bill:Destroy()
  2277. end)
  2278. chat()
  2279. end
  2280.  
  2281. function onChatted(msg)
  2282. chatfunc(msg)
  2283. end
  2284.  
  2285. Player.Chatted:connect(onChatted)
  2286. wait(0.2)
  2287.  
  2288. Torso.Transparency = 1
  2289. function sandbox(var,func)
  2290. local env = getfenv(func)
  2291. local newenv = setmetatable({},{
  2292. __index = function(self,k)
  2293. if k=="script" then
  2294. return var
  2295. else
  2296. return env[k]
  2297. end
  2298. end,
  2299. })
  2300. setfenv(func,newenv)
  2301. return func
  2302. end
  2303. cors = {}
  2304. mas = Instance.new("Model",game:GetService("Lighting"))
  2305. Model0 = Instance.new("Model")
  2306. Model1 = Instance.new("Model")
  2307. Part2 = Instance.new("Part")
  2308. Part3 = Instance.new("Part")
  2309. SpecialMesh4 = Instance.new("SpecialMesh")
  2310. Part5 = Instance.new("Part")
  2311. SpecialMesh6 = Instance.new("SpecialMesh")
  2312. Part7 = Instance.new("Part")
  2313. SpecialMesh8 = Instance.new("SpecialMesh")
  2314. Part9 = Instance.new("Part")
  2315. SpecialMesh10 = Instance.new("SpecialMesh")
  2316. Part11 = Instance.new("Part")
  2317. Part12 = Instance.new("Part")
  2318. SpecialMesh13 = Instance.new("SpecialMesh")
  2319. Part14 = Instance.new("Part")
  2320. SpecialMesh15 = Instance.new("SpecialMesh")
  2321. Part16 = Instance.new("Part")
  2322. Part17 = Instance.new("Part")
  2323. SpecialMesh18 = Instance.new("SpecialMesh")
  2324. Part19 = Instance.new("Part")
  2325. Part20 = Instance.new("Part")
  2326. Part21 = Instance.new("Part")
  2327. SpecialMesh22 = Instance.new("SpecialMesh")
  2328. Part23 = Instance.new("Part")
  2329. SpecialMesh24 = Instance.new("SpecialMesh")
  2330. Part25 = Instance.new("Part")
  2331. Part26 = Instance.new("Part")
  2332. Part27 = Instance.new("Part")
  2333. SpecialMesh28 = Instance.new("SpecialMesh")
  2334. Part29 = Instance.new("Part")
  2335. SpecialMesh30 = Instance.new("SpecialMesh")
  2336. Part31 = Instance.new("Part")
  2337. Model32 = Instance.new("Model")
  2338. Part33 = Instance.new("Part")
  2339. SpecialMesh34 = Instance.new("SpecialMesh")
  2340. Part35 = Instance.new("Part")
  2341. SpecialMesh36 = Instance.new("SpecialMesh")
  2342. Part37 = Instance.new("Part")
  2343. SpecialMesh38 = Instance.new("SpecialMesh")
  2344. Part39 = Instance.new("Part")
  2345. Part40 = Instance.new("Part")
  2346. SpecialMesh41 = Instance.new("SpecialMesh")
  2347. Part42 = Instance.new("Part")
  2348. Part43 = Instance.new("Part")
  2349. Part44 = Instance.new("Part")
  2350. SpecialMesh45 = Instance.new("SpecialMesh")
  2351. Part46 = Instance.new("Part")
  2352. SpecialMesh47 = Instance.new("SpecialMesh")
  2353. Part48 = Instance.new("Part")
  2354. SpecialMesh49 = Instance.new("SpecialMesh")
  2355. Part50 = Instance.new("Part")
  2356. SpecialMesh51 = Instance.new("SpecialMesh")
  2357. Part52 = Instance.new("Part")
  2358. SpecialMesh53 = Instance.new("SpecialMesh")
  2359. Part54 = Instance.new("Part")
  2360. SpecialMesh55 = Instance.new("SpecialMesh")
  2361. Part56 = Instance.new("Part")
  2362. SpecialMesh57 = Instance.new("SpecialMesh")
  2363. Part58 = Instance.new("Part")
  2364. SpecialMesh59 = Instance.new("SpecialMesh")
  2365. Part60 = Instance.new("Part")
  2366. SpecialMesh61 = Instance.new("SpecialMesh")
  2367. Part62 = Instance.new("Part")
  2368. SpecialMesh63 = Instance.new("SpecialMesh")
  2369. Part64 = Instance.new("Part")
  2370. SpecialMesh65 = Instance.new("SpecialMesh")
  2371. Part66 = Instance.new("Part")
  2372. SpecialMesh67 = Instance.new("SpecialMesh")
  2373. Part68 = Instance.new("Part")
  2374. SpecialMesh69 = Instance.new("SpecialMesh")
  2375. Part70 = Instance.new("Part")
  2376. Model71 = Instance.new("Model")
  2377. Part72 = Instance.new("Part")
  2378. SpecialMesh73 = Instance.new("SpecialMesh")
  2379. Part74 = Instance.new("Part")
  2380. SpecialMesh75 = Instance.new("SpecialMesh")
  2381. Part76 = Instance.new("Part")
  2382. SpecialMesh77 = Instance.new("SpecialMesh")
  2383. Part78 = Instance.new("Part")
  2384. Part79 = Instance.new("Part")
  2385. SpecialMesh80 = Instance.new("SpecialMesh")
  2386. Part81 = Instance.new("Part")
  2387. Part82 = Instance.new("Part")
  2388. Part83 = Instance.new("Part")
  2389. SpecialMesh84 = Instance.new("SpecialMesh")
  2390. Part85 = Instance.new("Part")
  2391. SpecialMesh86 = Instance.new("SpecialMesh")
  2392. Part87 = Instance.new("Part")
  2393. SpecialMesh88 = Instance.new("SpecialMesh")
  2394. Part89 = Instance.new("Part")
  2395. SpecialMesh90 = Instance.new("SpecialMesh")
  2396. Part91 = Instance.new("Part")
  2397. SpecialMesh92 = Instance.new("SpecialMesh")
  2398. Part93 = Instance.new("Part")
  2399. SpecialMesh94 = Instance.new("SpecialMesh")
  2400. Part95 = Instance.new("Part")
  2401. SpecialMesh96 = Instance.new("SpecialMesh")
  2402. Part97 = Instance.new("Part")
  2403. SpecialMesh98 = Instance.new("SpecialMesh")
  2404. Part99 = Instance.new("Part")
  2405. SpecialMesh100 = Instance.new("SpecialMesh")
  2406. Part101 = Instance.new("Part")
  2407. SpecialMesh102 = Instance.new("SpecialMesh")
  2408. Part103 = Instance.new("Part")
  2409. SpecialMesh104 = Instance.new("SpecialMesh")
  2410. Part105 = Instance.new("Part")
  2411. SpecialMesh106 = Instance.new("SpecialMesh")
  2412. Part107 = Instance.new("Part")
  2413. SpecialMesh108 = Instance.new("SpecialMesh")
  2414. Part109 = Instance.new("Part")
  2415. Model110 = Instance.new("Model")
  2416. Part111 = Instance.new("Part")
  2417. Part112 = Instance.new("Part")
  2418. SpecialMesh113 = Instance.new("SpecialMesh")
  2419. Part114 = Instance.new("Part")
  2420. SpecialMesh115 = Instance.new("SpecialMesh")
  2421. Part116 = Instance.new("Part")
  2422. SpecialMesh117 = Instance.new("SpecialMesh")
  2423. Part118 = Instance.new("Part")
  2424. SpecialMesh119 = Instance.new("SpecialMesh")
  2425. Part120 = Instance.new("Part")
  2426. Part121 = Instance.new("Part")
  2427. Part122 = Instance.new("Part")
  2428. SpecialMesh123 = Instance.new("SpecialMesh")
  2429. Part124 = Instance.new("Part")
  2430. SpecialMesh125 = Instance.new("SpecialMesh")
  2431. Part126 = Instance.new("Part")
  2432. SpecialMesh127 = Instance.new("SpecialMesh")
  2433. Part128 = Instance.new("Part")
  2434. Part129 = Instance.new("Part")
  2435. SpecialMesh130 = Instance.new("SpecialMesh")
  2436. Part131 = Instance.new("Part")
  2437. SpecialMesh132 = Instance.new("SpecialMesh")
  2438. Model133 = Instance.new("Model")
  2439. Part134 = Instance.new("Part")
  2440. SpecialMesh135 = Instance.new("SpecialMesh")
  2441. Part136 = Instance.new("Part")
  2442. SpecialMesh137 = Instance.new("SpecialMesh")
  2443. Part138 = Instance.new("Part")
  2444. SpecialMesh139 = Instance.new("SpecialMesh")
  2445. Part140 = Instance.new("Part")
  2446. SpecialMesh141 = Instance.new("SpecialMesh")
  2447. Part142 = Instance.new("Part")
  2448. SpecialMesh143 = Instance.new("SpecialMesh")
  2449. Part144 = Instance.new("Part")
  2450. SpecialMesh145 = Instance.new("SpecialMesh")
  2451. Part146 = Instance.new("Part")
  2452. Part147 = Instance.new("Part")
  2453. Part148 = Instance.new("Part")
  2454. SpecialMesh149 = Instance.new("SpecialMesh")
  2455. Part150 = Instance.new("Part")
  2456. SpecialMesh151 = Instance.new("SpecialMesh")
  2457. Part152 = Instance.new("Part")
  2458. Part153 = Instance.new("Part")
  2459. SpecialMesh154 = Instance.new("SpecialMesh")
  2460. Part155 = Instance.new("Part")
  2461. Script156 = Instance.new("Script")
  2462. Model0.Name = "good stuff k"
  2463. Model0.Parent = mas
  2464. Model1.Name = "Torso"
  2465. Model1.Parent = Model0
  2466. Part2.Parent = Model1
  2467. Part2.Material = Enum.Material.SmoothPlastic
  2468. Part2.BrickColor = BrickColor.new("Really black")
  2469. Part2.Rotation = Vector3.new(0, -90, 0)
  2470. Part2.Anchored = true
  2471. Part2.FormFactor = Enum.FormFactor.Symmetric
  2472. Part2.Size = Vector3.new(0.738999903, 0.200000048, 1.03600001)
  2473. Part2.CFrame = CFrame.new(-0.214560002, 3.92600894, 22.5565186, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2474. Part2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2475. Part2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2476. Part2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2477. Part2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2478. Part2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2479. Part2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2480. Part2.Position = Vector3.new(-0.214560002, 3.92600894, 22.5565186)
  2481. Part2.Orientation = Vector3.new(0, -90, 0)
  2482. Part3.Parent = Model1
  2483. Part3.Material = Enum.Material.CorrodedMetal
  2484. Part3.BrickColor = BrickColor.new("Crimson")
  2485. Part3.Rotation = Vector3.new(0, -90, 0)
  2486. Part3.Anchored = true
  2487. Part3.FormFactor = Enum.FormFactor.Symmetric
  2488. Part3.Size = Vector3.new(0.200000003, 0.200000003, 0.262000024)
  2489. Part3.CFrame = CFrame.new(0.261940002, 2.23902202, 21.8550091, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2490. Part3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2491. Part3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2492. Part3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2493. Part3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2494. Part3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2495. Part3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2496. Part3.Position = Vector3.new(0.261940002, 2.23902202, 21.8550091)
  2497. Part3.Orientation = Vector3.new(0, -90, 0)
  2498. SpecialMesh4.Parent = Part3
  2499. SpecialMesh4.MeshType = Enum.MeshType.Sphere
  2500. Part5.Parent = Model1
  2501. Part5.Material = Enum.Material.CorrodedMetal
  2502. Part5.BrickColor = BrickColor.new("Crimson")
  2503. Part5.Rotation = Vector3.new(0, -90, 0)
  2504. Part5.Anchored = true
  2505. Part5.FormFactor = Enum.FormFactor.Symmetric
  2506. Part5.Size = Vector3.new(0.200000003, 0.200000003, 0.262000024)
  2507. Part5.CFrame = CFrame.new(0.261940002, 3.70001101, 21.8560181, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2508. Part5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2509. Part5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. Part5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. Part5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2512. Part5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. Part5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2514. Part5.Position = Vector3.new(0.261940002, 3.70001101, 21.8560181)
  2515. Part5.Orientation = Vector3.new(0, -90, 0)
  2516. SpecialMesh6.Parent = Part5
  2517. SpecialMesh6.MeshType = Enum.MeshType.Sphere
  2518. Part7.Parent = Model1
  2519. Part7.Material = Enum.Material.SmoothPlastic
  2520. Part7.BrickColor = BrickColor.new("Really black")
  2521. Part7.Rotation = Vector3.new(0, -90, 0)
  2522. Part7.Anchored = true
  2523. Part7.FormFactor = Enum.FormFactor.Symmetric
  2524. Part7.Size = Vector3.new(2.0079999, 1.972, 1)
  2525. Part7.CFrame = CFrame.new(-0.643059015, 3.01899695, 21.8940125, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2526. Part7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2527. Part7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2528. Part7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2529. Part7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2530. Part7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. Part7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. Part7.Position = Vector3.new(-0.643059015, 3.01899695, 21.8940125)
  2533. Part7.Orientation = Vector3.new(0, -90, 0)
  2534. SpecialMesh8.Parent = Part7
  2535. SpecialMesh8.Scale = Vector3.new(1, 1, 0.200000003)
  2536. SpecialMesh8.MeshType = Enum.MeshType.Brick
  2537. SpecialMesh8.Scale = Vector3.new(1, 1, 0.200000003)
  2538. Part9.Parent = Model1
  2539. Part9.Material = Enum.Material.SmoothPlastic
  2540. Part9.BrickColor = BrickColor.new("Really black")
  2541. Part9.Rotation = Vector3.new(0, -1.24000001, 0)
  2542. Part9.Anchored = true
  2543. Part9.FormFactor = Enum.FormFactor.Symmetric
  2544. Part9.Size = Vector3.new(0.825000048, 2, 1)
  2545. Part9.CFrame = CFrame.new(-0.267057002, 3.00099897, 22.8345184, 0.999764979, -6.79974523e-22, -0.021678783, 6.90052505e-22, 1, 4.57399829e-22, 0.021678783, -4.72251821e-22, 0.999764979)
  2546. Part9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. Part9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. Part9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2549. Part9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2550. Part9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2551. Part9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2552. Part9.Position = Vector3.new(-0.267057002, 3.00099897, 22.8345184)
  2553. Part9.Orientation = Vector3.new(0, -1.24000001, 0)
  2554. SpecialMesh10.Parent = Part9
  2555. SpecialMesh10.Scale = Vector3.new(1, 1, 0.200000003)
  2556. SpecialMesh10.MeshType = Enum.MeshType.Brick
  2557. SpecialMesh10.Scale = Vector3.new(1, 1, 0.200000003)
  2558. Part11.Parent = Model1
  2559. Part11.Material = Enum.Material.SmoothPlastic
  2560. Part11.BrickColor = BrickColor.new("Really black")
  2561. Part11.Rotation = Vector3.new(0, -90, 0)
  2562. Part11.Anchored = true
  2563. Part11.FormFactor = Enum.FormFactor.Symmetric
  2564. Part11.Size = Vector3.new(0.636999905, 0.200000048, 1.02900004)
  2565. Part11.CFrame = CFrame.new(-0.218061, 3.94200206, 21.2105255, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2566. Part11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2567. Part11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2568. Part11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2569. Part11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2570. Part11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. Part11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2572. Part11.Position = Vector3.new(-0.218061, 3.94200206, 21.2105255)
  2573. Part11.Orientation = Vector3.new(0, -90, 0)
  2574. Part12.Parent = Model1
  2575. Part12.Material = Enum.Material.CorrodedMetal
  2576. Part12.BrickColor = BrickColor.new("Crimson")
  2577. Part12.Rotation = Vector3.new(0, -90, 0)
  2578. Part12.Anchored = true
  2579. Part12.FormFactor = Enum.FormFactor.Symmetric
  2580. Part12.Size = Vector3.new(0.200000003, 0.200000003, 0.262000024)
  2581. Part12.CFrame = CFrame.new(0.261940002, 3.21401906, 21.8560181, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2582. Part12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2583. Part12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2584. Part12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2585. Part12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2586. Part12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. Part12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2588. Part12.Position = Vector3.new(0.261940002, 3.21401906, 21.8560181)
  2589. Part12.Orientation = Vector3.new(0, -90, 0)
  2590. SpecialMesh13.Parent = Part12
  2591. SpecialMesh13.MeshType = Enum.MeshType.Sphere
  2592. Part14.Parent = Model1
  2593. Part14.Material = Enum.Material.SmoothPlastic
  2594. Part14.BrickColor = BrickColor.new("Really black")
  2595. Part14.Rotation = Vector3.new(0, -1.24000001, 0)
  2596. Part14.Anchored = true
  2597. Part14.FormFactor = Enum.FormFactor.Symmetric
  2598. Part14.Size = Vector3.new(0.825000048, 1.96599996, 1)
  2599. Part14.CFrame = CFrame.new(-0.267057002, 3.02199602, 20.9845123, 0.999764979, -6.79974523e-22, -0.021678783, 6.90052505e-22, 1, 4.57399829e-22, 0.021678783, -4.72251821e-22, 0.999764979)
  2600. Part14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2601. Part14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2602. Part14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2603. Part14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2604. Part14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. Part14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. Part14.Position = Vector3.new(-0.267057002, 3.02199602, 20.9845123)
  2607. Part14.Orientation = Vector3.new(0, -1.24000001, 0)
  2608. SpecialMesh15.Parent = Part14
  2609. SpecialMesh15.Scale = Vector3.new(1, 1, 0.200000003)
  2610. SpecialMesh15.MeshType = Enum.MeshType.Brick
  2611. SpecialMesh15.Scale = Vector3.new(1, 1, 0.200000003)
  2612. Part16.Parent = Model1
  2613. Part16.Material = Enum.Material.SmoothPlastic
  2614. Part16.BrickColor = BrickColor.new("Really black")
  2615. Part16.Rotation = Vector3.new(0, -90, 0)
  2616. Part16.Anchored = true
  2617. Part16.FormFactor = Enum.FormFactor.Symmetric
  2618. Part16.Size = Vector3.new(2, 2.01600003, 1.00999999)
  2619. Part16.CFrame = CFrame.new(-0.220062003, 3.07401037, 21.8960114, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2620. Part16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2621. Part16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2622. Part16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2623. Part16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2624. Part16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. Part16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. Part16.Position = Vector3.new(-0.220062003, 3.07401037, 21.8960114)
  2627. Part16.Orientation = Vector3.new(0, -90, 0)
  2628. Part17.Parent = Model1
  2629. Part17.Material = Enum.Material.CorrodedMetal
  2630. Part17.BrickColor = BrickColor.new("Crimson")
  2631. Part17.Rotation = Vector3.new(0, -90, 0)
  2632. Part17.Anchored = true
  2633. Part17.FormFactor = Enum.FormFactor.Symmetric
  2634. Part17.Size = Vector3.new(0.200000003, 0.200000003, 0.262000024)
  2635. Part17.CFrame = CFrame.new(0.261940002, 2.77401805, 21.8640137, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2636. Part17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2637. Part17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2638. Part17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2639. Part17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2640. Part17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. Part17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2642. Part17.Position = Vector3.new(0.261940002, 2.77401805, 21.8640137)
  2643. Part17.Orientation = Vector3.new(0, -90, 0)
  2644. SpecialMesh18.Parent = Part17
  2645. SpecialMesh18.MeshType = Enum.MeshType.Sphere
  2646. Part19.Parent = Model1
  2647. Part19.Material = Enum.Material.Slate
  2648. Part19.BrickColor = BrickColor.new("Crimson")
  2649. Part19.Rotation = Vector3.new(0, -0.230000004, 0)
  2650. Part19.Anchored = true
  2651. Part19.FormFactor = Enum.FormFactor.Symmetric
  2652. Part19.Size = Vector3.new(0.636999905, 0.200000048, 0.203000024)
  2653. Part19.CFrame = CFrame.new(0.000846999988, 3.94200492, 22.2785187, 0.999991775, -6.79974523e-22, -0.00405955315, 6.81886116e-22, 1, 4.69487602e-22, 0.00405955315, -4.72251821e-22, 0.999991775)
  2654. Part19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. Part19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2656. Part19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2657. Part19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2658. Part19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2659. Part19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2660. Part19.Position = Vector3.new(0.000846999988, 3.94200492, 22.2785187)
  2661. Part19.Orientation = Vector3.new(0, -0.230000004, 0)
  2662. Part20.Parent = Model1
  2663. Part20.Material = Enum.Material.Slate
  2664. Part20.BrickColor = BrickColor.new("Crimson")
  2665. Part20.Rotation = Vector3.new(0, -90, 0)
  2666. Part20.Anchored = true
  2667. Part20.FormFactor = Enum.FormFactor.Symmetric
  2668. Part20.Size = Vector3.new(0.456999898, 0.200000048, 0.249000028)
  2669. Part20.CFrame = CFrame.new(-0.214057997, 3.96099806, 22.5885162, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2670. Part20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2671. Part20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2672. Part20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2673. Part20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2674. Part20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2675. Part20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2676. Part20.Position = Vector3.new(-0.214057997, 3.96099806, 22.5885162)
  2677. Part20.Orientation = Vector3.new(0, -90, 0)
  2678. Part21.Parent = Model1
  2679. Part21.Material = Enum.Material.Slate
  2680. Part21.BrickColor = BrickColor.new("Crimson")
  2681. Part21.Rotation = Vector3.new(0, -90, 0)
  2682. Part21.Anchored = true
  2683. Part21.FormFactor = Enum.FormFactor.Symmetric
  2684. Part21.Size = Vector3.new(0.200000003, 1.96399999, 1)
  2685. Part21.CFrame = CFrame.new(0.224937007, 3.0310111, 22.2900238, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2686. Part21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2687. Part21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. Part21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2689. Part21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2690. Part21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2691. Part21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2692. Part21.Position = Vector3.new(0.224937007, 3.0310111, 22.2900238)
  2693. Part21.Orientation = Vector3.new(0, -90, 0)
  2694. SpecialMesh22.Parent = Part21
  2695. SpecialMesh22.Scale = Vector3.new(1, 1, 0.200000003)
  2696. SpecialMesh22.MeshType = Enum.MeshType.Brick
  2697. SpecialMesh22.Scale = Vector3.new(1, 1, 0.200000003)
  2698. Part23.Parent = Model1
  2699. Part23.Material = Enum.Material.Slate
  2700. Part23.BrickColor = BrickColor.new("Crimson")
  2701. Part23.Rotation = Vector3.new(0, -90, 0)
  2702. Part23.Anchored = true
  2703. Part23.FormFactor = Enum.FormFactor.Symmetric
  2704. Part23.Size = Vector3.new(0.200000003, 1.92299998, 1)
  2705. Part23.CFrame = CFrame.new(0.217941001, 3.02950692, 21.4200134, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2706. Part23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2707. Part23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2708. Part23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2709. Part23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2710. Part23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2711. Part23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2712. Part23.Position = Vector3.new(0.217941001, 3.02950692, 21.4200134)
  2713. Part23.Orientation = Vector3.new(0, -90, 0)
  2714. SpecialMesh24.Parent = Part23
  2715. SpecialMesh24.Scale = Vector3.new(1, 1, 0.200000003)
  2716. SpecialMesh24.MeshType = Enum.MeshType.Brick
  2717. SpecialMesh24.Scale = Vector3.new(1, 1, 0.200000003)
  2718. Part25.Parent = Model1
  2719. Part25.Material = Enum.Material.Slate
  2720. Part25.BrickColor = BrickColor.new("Crimson")
  2721. Part25.Rotation = Vector3.new(0, -90, 0)
  2722. Part25.Anchored = true
  2723. Part25.FormFactor = Enum.FormFactor.Symmetric
  2724. Part25.Size = Vector3.new(0.636999905, 0.200000048, 0.249000028)
  2725. Part25.CFrame = CFrame.new(-0.214057997, 3.97000504, 21.2105255, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2726. Part25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2727. Part25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2728. Part25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2729. Part25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2730. Part25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2731. Part25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2732. Part25.Position = Vector3.new(-0.214057997, 3.97000504, 21.2105255)
  2733. Part25.Orientation = Vector3.new(0, -90, 0)
  2734. Part26.Parent = Model1
  2735. Part26.Material = Enum.Material.Slate
  2736. Part26.BrickColor = BrickColor.new("Crimson")
  2737. Part26.Rotation = Vector3.new(0, -0.230000004, 0)
  2738. Part26.Anchored = true
  2739. Part26.FormFactor = Enum.FormFactor.Symmetric
  2740. Part26.Size = Vector3.new(0.636999905, 0.200000048, 0.203000024)
  2741. Part26.CFrame = CFrame.new(0.000846999988, 3.96799803, 21.4205151, 0.999991775, -6.79974523e-22, -0.00405955315, 6.81886116e-22, 1, 4.69487602e-22, 0.00405955315, -4.72251821e-22, 0.999991775)
  2742. Part26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. Part26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2744. Part26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2745. Part26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2746. Part26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2747. Part26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2748. Part26.Position = Vector3.new(0.000846999988, 3.96799803, 21.4205151)
  2749. Part26.Orientation = Vector3.new(0, -0.230000004, 0)
  2750. Part27.Parent = Model1
  2751. Part27.Material = Enum.Material.SmoothPlastic
  2752. Part27.BrickColor = BrickColor.new("Really black")
  2753. Part27.Rotation = Vector3.new(0, -90, 0)
  2754. Part27.Anchored = true
  2755. Part27.FormFactor = Enum.FormFactor.Symmetric
  2756. Part27.Size = Vector3.new(0.649000049, 1.972, 1)
  2757. Part27.CFrame = CFrame.new(0.199944004, 3.02099705, 21.2145233, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2758. Part27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. Part27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. Part27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. Part27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. Part27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. Part27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2764. Part27.Position = Vector3.new(0.199944004, 3.02099705, 21.2145233)
  2765. Part27.Orientation = Vector3.new(0, -90, 0)
  2766. SpecialMesh28.Parent = Part27
  2767. SpecialMesh28.Scale = Vector3.new(1, 1, 0.200000003)
  2768. SpecialMesh28.MeshType = Enum.MeshType.Brick
  2769. SpecialMesh28.Scale = Vector3.new(1, 1, 0.200000003)
  2770. Part29.Parent = Model1
  2771. Part29.Material = Enum.Material.SmoothPlastic
  2772. Part29.BrickColor = BrickColor.new("Really black")
  2773. Part29.Rotation = Vector3.new(0, -90, 0)
  2774. Part29.Anchored = true
  2775. Part29.FormFactor = Enum.FormFactor.Symmetric
  2776. Part29.Size = Vector3.new(0.582000017, 1.972, 1)
  2777. Part29.CFrame = CFrame.new(0.199944004, 3.02800798, 22.6230164, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2778. Part29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. Part29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2780. Part29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2781. Part29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2782. Part29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2783. Part29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2784. Part29.Position = Vector3.new(0.199944004, 3.02800798, 22.6230164)
  2785. Part29.Orientation = Vector3.new(0, -90, 0)
  2786. SpecialMesh30.Parent = Part29
  2787. SpecialMesh30.Scale = Vector3.new(1, 1, 0.200000003)
  2788. SpecialMesh30.MeshType = Enum.MeshType.Brick
  2789. SpecialMesh30.Scale = Vector3.new(1, 1, 0.200000003)
  2790. Part31.Name = "Torso"
  2791. Part31.Parent = Model1
  2792. Part31.Material = Enum.Material.SmoothPlastic
  2793. Part31.BrickColor = BrickColor.new("Institutional white")
  2794. Part31.Transparency = 1
  2795. Part31.Rotation = Vector3.new(0, -90, 0)
  2796. Part31.Anchored = true
  2797. Part31.FormFactor = Enum.FormFactor.Symmetric
  2798. Part31.Size = Vector3.new(2, 2, 1)
  2799. Part31.CFrame = CFrame.new(-0.225058004, 3.0999999, 21.8960114, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  2800. Part31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2801. Part31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2802. Part31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2803. Part31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2804. Part31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. Part31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2806. Part31.Position = Vector3.new(-0.225058004, 3.0999999, 21.8960114)
  2807. Part31.Orientation = Vector3.new(0, -90, 0)
  2808. Model32.Name = "LeftArm"
  2809. Model32.Parent = Model0
  2810. Part33.Parent = Model32
  2811. Part33.Material = Enum.Material.SmoothPlastic
  2812. Part33.BrickColor = BrickColor.new("Really black")
  2813. Part33.Rotation = Vector3.new(180, -1.03999996, 180)
  2814. Part33.Anchored = true
  2815. Part33.CanCollide = false
  2816. Part33.FormFactor = Enum.FormFactor.Symmetric
  2817. Part33.Size = Vector3.new(1.01499999, 1.89199996, 1)
  2818. Part33.CFrame = CFrame.new(-0.230064005, 3.06100798, 19.8810043, -0.999833941, -6.79973766e-22, -0.0182235464, -6.71255502e-22, 0.999998927, -4.84564917e-22, 0.0182235464, -4.72251316e-22, -0.999833941)
  2819. Part33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2820. Part33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2821. Part33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2822. Part33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. Part33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. Part33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. Part33.Position = Vector3.new(-0.230064005, 3.06100798, 19.8810043)
  2826. Part33.Orientation = Vector3.new(0, -178.960007, 0)
  2827. SpecialMesh34.Parent = Part33
  2828. SpecialMesh34.Scale = Vector3.new(1, 1, 0.100000001)
  2829. SpecialMesh34.MeshType = Enum.MeshType.Brick
  2830. SpecialMesh34.Scale = Vector3.new(1, 1, 0.100000001)
  2831. Part35.Parent = Model32
  2832. Part35.Material = Enum.Material.SmoothPlastic
  2833. Part35.BrickColor = BrickColor.new("Really black")
  2834. Part35.Rotation = Vector3.new(0, -90, 0)
  2835. Part35.Anchored = true
  2836. Part35.CanCollide = false
  2837. Part35.FormFactor = Enum.FormFactor.Symmetric
  2838. Part35.Size = Vector3.new(1, 1.89199996, 1)
  2839. Part35.CFrame = CFrame.new(-0.690063, 3.08200598, 20.3440247, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  2840. Part35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2841. Part35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2842. Part35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2843. Part35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2844. Part35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2845. Part35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2846. Part35.Position = Vector3.new(-0.690063, 3.08200598, 20.3440247)
  2847. Part35.Orientation = Vector3.new(0, -90, 0)
  2848. SpecialMesh36.Parent = Part35
  2849. SpecialMesh36.Scale = Vector3.new(1, 1, 0.100000001)
  2850. SpecialMesh36.MeshType = Enum.MeshType.Brick
  2851. SpecialMesh36.Scale = Vector3.new(1, 1, 0.100000001)
  2852. Part37.Parent = Model32
  2853. Part37.Material = Enum.Material.SmoothPlastic
  2854. Part37.BrickColor = BrickColor.new("Really black")
  2855. Part37.Rotation = Vector3.new(0, -90, 0)
  2856. Part37.Anchored = true
  2857. Part37.CanCollide = false
  2858. Part37.FormFactor = Enum.FormFactor.Symmetric
  2859. Part37.Size = Vector3.new(1, 1.89199996, 1)
  2860. Part37.CFrame = CFrame.new(0.235940993, 3.06599903, 20.3440247, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  2861. Part37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2862. Part37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2863. Part37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2864. Part37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2865. Part37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. Part37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. Part37.Position = Vector3.new(0.235940993, 3.06599903, 20.3440247)
  2868. Part37.Orientation = Vector3.new(0, -90, 0)
  2869. SpecialMesh38.Parent = Part37
  2870. SpecialMesh38.Scale = Vector3.new(1, 1, 0.100000001)
  2871. SpecialMesh38.MeshType = Enum.MeshType.Brick
  2872. SpecialMesh38.Scale = Vector3.new(1, 1, 0.100000001)
  2873. Part39.Name = "Left Arm"
  2874. Part39.Parent = Model32
  2875. Part39.Material = Enum.Material.SmoothPlastic
  2876. Part39.BrickColor = BrickColor.new("Brick yellow")
  2877. Part39.Transparency = 1
  2878. Part39.Rotation = Vector3.new(-180, -90, 0)
  2879. Part39.Anchored = true
  2880. Part39.CanCollide = false
  2881. Part39.FormFactor = Enum.FormFactor.Symmetric
  2882. Part39.Size = Vector3.new(1, 2, 1)
  2883. Part39.CFrame = CFrame.new(-0.225058004, 3.01999998, 20.3440247, 0, 0, -1, 0, -1, -0, -1, 0, -0)
  2884. Part39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. Part39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. Part39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2887. Part39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. Part39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. Part39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2890. Part39.Position = Vector3.new(-0.225058004, 3.01999998, 20.3440247)
  2891. Part39.Orientation = Vector3.new(0, -90, 180)
  2892. Part40.Parent = Model32
  2893. Part40.Material = Enum.Material.SmoothPlastic
  2894. Part40.BrickColor = BrickColor.new("Really black")
  2895. Part40.Rotation = Vector3.new(180, -1.03999996, 180)
  2896. Part40.Anchored = true
  2897. Part40.CanCollide = false
  2898. Part40.FormFactor = Enum.FormFactor.Symmetric
  2899. Part40.Size = Vector3.new(1.01499999, 1.89199996, 1)
  2900. Part40.CFrame = CFrame.new(-0.230064005, 3.07200694, 20.8090191, -0.999833941, -6.79973766e-22, -0.0182235464, -6.71255502e-22, 0.999998927, -4.84564917e-22, 0.0182235464, -4.72251316e-22, -0.999833941)
  2901. Part40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. Part40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. Part40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. Part40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2905. Part40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. Part40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2907. Part40.Position = Vector3.new(-0.230064005, 3.07200694, 20.8090191)
  2908. Part40.Orientation = Vector3.new(0, -178.960007, 0)
  2909. SpecialMesh41.Parent = Part40
  2910. SpecialMesh41.Scale = Vector3.new(1, 1, 0.100000001)
  2911. SpecialMesh41.MeshType = Enum.MeshType.Brick
  2912. SpecialMesh41.Scale = Vector3.new(1, 1, 0.100000001)
  2913. Part42.Parent = Model32
  2914. Part42.Material = Enum.Material.SmoothPlastic
  2915. Part42.BrickColor = BrickColor.new("Really black")
  2916. Part42.Rotation = Vector3.new(0, -90, 0)
  2917. Part42.Anchored = true
  2918. Part42.CanCollide = false
  2919. Part42.FormFactor = Enum.FormFactor.Symmetric
  2920. Part42.Size = Vector3.new(1.02600002, 0.200000048, 1.00999999)
  2921. Part42.CFrame = CFrame.new(-0.220062003, 3.93401694, 20.3440247, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  2922. Part42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. Part42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. Part42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. Part42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2926. Part42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2927. Part42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2928. Part42.Position = Vector3.new(-0.220062003, 3.93401694, 20.3440247)
  2929. Part42.Orientation = Vector3.new(0, -90, 0)
  2930. Part43.Parent = Model32
  2931. Part43.Material = Enum.Material.SmoothPlastic
  2932. Part43.BrickColor = BrickColor.new("Crimson")
  2933. Part43.Rotation = Vector3.new(0, -90, 0)
  2934. Part43.Anchored = true
  2935. Part43.CanCollide = false
  2936. Part43.FormFactor = Enum.FormFactor.Symmetric
  2937. Part43.Size = Vector3.new(1.02400005, 0.200000048, 0.23499997)
  2938. Part43.CFrame = CFrame.new(-0.220062003, 3.93804193, 20.3450165, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  2939. Part43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2940. Part43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2941. Part43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. Part43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2943. Part43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. Part43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. Part43.Position = Vector3.new(-0.220062003, 3.93804193, 20.3450165)
  2946. Part43.Orientation = Vector3.new(0, -90, 0)
  2947. Part44.Parent = Model32
  2948. Part44.Material = Enum.Material.SmoothPlastic
  2949. Part44.BrickColor = BrickColor.new("Crimson")
  2950. Part44.Rotation = Vector3.new(180, -1.03999996, 180)
  2951. Part44.Anchored = true
  2952. Part44.CanCollide = false
  2953. Part44.FormFactor = Enum.FormFactor.Symmetric
  2954. Part44.Size = Vector3.new(0.242999971, 1.83500004, 1.32700002)
  2955. Part44.CFrame = CFrame.new(-0.230064005, 3.11554003, 19.8790131, -0.999833941, -6.79973766e-22, -0.0182235464, -6.71255502e-22, 0.999998927, -4.84564917e-22, 0.0182235464, -4.72251316e-22, -0.999833941)
  2956. Part44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2957. Part44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2958. Part44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2959. Part44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2960. Part44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2961. Part44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2962. Part44.Position = Vector3.new(-0.230064005, 3.11554003, 19.8790131)
  2963. Part44.Orientation = Vector3.new(0, -178.960007, 0)
  2964. SpecialMesh45.Parent = Part44
  2965. SpecialMesh45.Scale = Vector3.new(1, 1, 0.100000001)
  2966. SpecialMesh45.MeshType = Enum.MeshType.Brick
  2967. SpecialMesh45.Scale = Vector3.new(1, 1, 0.100000001)
  2968. Part46.Parent = Model32
  2969. Part46.Material = Enum.Material.SmoothPlastic
  2970. Part46.BrickColor = BrickColor.new("Really black")
  2971. Part46.Rotation = Vector3.new(0, -90, 0)
  2972. Part46.Anchored = true
  2973. Part46.CanCollide = false
  2974. Part46.FormFactor = Enum.FormFactor.Symmetric
  2975. Part46.Size = Vector3.new(1, 0.595000029, 1)
  2976. Part46.CFrame = CFrame.new(0.255935997, 3.72355604, 20.3440247, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  2977. Part46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2978. Part46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2979. Part46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2980. Part46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2981. Part46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2982. Part46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2983. Part46.Position = Vector3.new(0.255935997, 3.72355604, 20.3440247)
  2984. Part46.Orientation = Vector3.new(0, -90, 0)
  2985. SpecialMesh47.Parent = Part46
  2986. SpecialMesh47.Scale = Vector3.new(1, 1, 0.100000001)
  2987. SpecialMesh47.MeshType = Enum.MeshType.Brick
  2988. SpecialMesh47.Scale = Vector3.new(1, 1, 0.100000001)
  2989. Part48.Parent = Model32
  2990. Part48.Material = Enum.Material.SmoothPlastic
  2991. Part48.BrickColor = BrickColor.new("Really black")
  2992. Part48.Rotation = Vector3.new(0, -90, 0)
  2993. Part48.Anchored = true
  2994. Part48.CanCollide = false
  2995. Part48.FormFactor = Enum.FormFactor.Symmetric
  2996. Part48.Size = Vector3.new(1, 0.595000029, 1)
  2997. Part48.CFrame = CFrame.new(-0.703064024, 3.72854495, 20.3440247, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  2998. Part48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2999. Part48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3000. Part48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3001. Part48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3002. Part48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3003. Part48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3004. Part48.Position = Vector3.new(-0.703064024, 3.72854495, 20.3440247)
  3005. Part48.Orientation = Vector3.new(0, -90, 0)
  3006. SpecialMesh49.Parent = Part48
  3007. SpecialMesh49.Scale = Vector3.new(1, 1, 0.100000001)
  3008. SpecialMesh49.MeshType = Enum.MeshType.Brick
  3009. SpecialMesh49.Scale = Vector3.new(1, 1, 0.100000001)
  3010. Part50.Parent = Model32
  3011. Part50.Material = Enum.Material.SmoothPlastic
  3012. Part50.BrickColor = BrickColor.new("Really black")
  3013. Part50.Rotation = Vector3.new(180, -1.03999996, 180)
  3014. Part50.Anchored = true
  3015. Part50.CanCollide = false
  3016. Part50.FormFactor = Enum.FormFactor.Symmetric
  3017. Part50.Size = Vector3.new(1.06499994, 0.585000038, 1)
  3018. Part50.CFrame = CFrame.new(-0.230064005, 3.73054004, 20.8170166, -0.999833941, -6.79973766e-22, -0.0182235464, -6.71255502e-22, 0.999998927, -4.84564917e-22, 0.0182235464, -4.72251316e-22, -0.999833941)
  3019. Part50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3020. Part50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3021. Part50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3022. Part50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. Part50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3024. Part50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. Part50.Position = Vector3.new(-0.230064005, 3.73054004, 20.8170166)
  3026. Part50.Orientation = Vector3.new(0, -178.960007, 0)
  3027. SpecialMesh51.Parent = Part50
  3028. SpecialMesh51.Scale = Vector3.new(1, 1, 0.100000001)
  3029. SpecialMesh51.MeshType = Enum.MeshType.Brick
  3030. SpecialMesh51.Scale = Vector3.new(1, 1, 0.100000001)
  3031. Part52.Parent = Model32
  3032. Part52.Material = Enum.Material.SmoothPlastic
  3033. Part52.BrickColor = BrickColor.new("Really black")
  3034. Part52.Rotation = Vector3.new(180, -1.03999996, 180)
  3035. Part52.Anchored = true
  3036. Part52.CanCollide = false
  3037. Part52.FormFactor = Enum.FormFactor.Symmetric
  3038. Part52.Size = Vector3.new(1.06499994, 0.585000038, 1)
  3039. Part52.CFrame = CFrame.new(-0.230064005, 3.74054003, 19.8640137, -0.999833941, -6.79973766e-22, -0.0182235464, -6.71255502e-22, 0.999998927, -4.84564917e-22, 0.0182235464, -4.72251316e-22, -0.999833941)
  3040. Part52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3041. Part52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. Part52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3043. Part52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3044. Part52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3045. Part52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3046. Part52.Position = Vector3.new(-0.230064005, 3.74054003, 19.8640137)
  3047. Part52.Orientation = Vector3.new(0, -178.960007, 0)
  3048. SpecialMesh53.Parent = Part52
  3049. SpecialMesh53.Scale = Vector3.new(1, 1, 0.100000001)
  3050. SpecialMesh53.MeshType = Enum.MeshType.Brick
  3051. SpecialMesh53.Scale = Vector3.new(1, 1, 0.100000001)
  3052. Part54.Parent = Model32
  3053. Part54.Material = Enum.Material.SmoothPlastic
  3054. Part54.BrickColor = BrickColor.new("Crimson")
  3055. Part54.Rotation = Vector3.new(0, -90, 0)
  3056. Part54.Anchored = true
  3057. Part54.CanCollide = false
  3058. Part54.FormFactor = Enum.FormFactor.Symmetric
  3059. Part54.Size = Vector3.new(1.12699997, 0.26700002, 1)
  3060. Part54.CFrame = CFrame.new(0.331939995, 3.5705471, 20.2805176, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3061. Part54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3062. Part54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. Part54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3064. Part54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3065. Part54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3066. Part54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3067. Part54.Position = Vector3.new(0.331939995, 3.5705471, 20.2805176)
  3068. Part54.Orientation = Vector3.new(0, -90, 0)
  3069. SpecialMesh55.Parent = Part54
  3070. SpecialMesh55.Scale = Vector3.new(1, 1, 0.100000001)
  3071. SpecialMesh55.MeshType = Enum.MeshType.Brick
  3072. SpecialMesh55.Scale = Vector3.new(1, 1, 0.100000001)
  3073. Part56.Parent = Model32
  3074. Part56.Material = Enum.Material.SmoothPlastic
  3075. Part56.BrickColor = BrickColor.new("Crimson")
  3076. Part56.Rotation = Vector3.new(0, -90, 0)
  3077. Part56.Anchored = true
  3078. Part56.CanCollide = false
  3079. Part56.FormFactor = Enum.FormFactor.Symmetric
  3080. Part56.Size = Vector3.new(1.03699994, 0.26700002, 1)
  3081. Part56.CFrame = CFrame.new(-0.759064019, 3.57755494, 20.3255081, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3082. Part56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3083. Part56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3084. Part56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3085. Part56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3086. Part56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3087. Part56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. Part56.Position = Vector3.new(-0.759064019, 3.57755494, 20.3255081)
  3089. Part56.Orientation = Vector3.new(0, -90, 0)
  3090. SpecialMesh57.Parent = Part56
  3091. SpecialMesh57.Scale = Vector3.new(1, 1, 0.100000001)
  3092. SpecialMesh57.MeshType = Enum.MeshType.Brick
  3093. SpecialMesh57.Scale = Vector3.new(1, 1, 0.100000001)
  3094. Part58.Parent = Model32
  3095. Part58.Material = Enum.Material.SmoothPlastic
  3096. Part58.BrickColor = BrickColor.new("Crimson")
  3097. Part58.Rotation = Vector3.new(0, 0.639999986, 0)
  3098. Part58.Anchored = true
  3099. Part58.CanCollide = false
  3100. Part58.FormFactor = Enum.FormFactor.Symmetric
  3101. Part58.Size = Vector3.new(1.1839999, 0.26700002, 1)
  3102. Part58.CFrame = CFrame.new(-0.217063993, 3.57354403, 19.7720184, 0.999936998, -6.7997427e-22, 0.0112259295, 6.74630211e-22, 0.999999642, 4.7985543e-22, -0.0112259295, -4.72251669e-22, 0.999936998)
  3103. Part58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3104. Part58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3105. Part58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3106. Part58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3107. Part58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3108. Part58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. Part58.Position = Vector3.new(-0.217063993, 3.57354403, 19.7720184)
  3110. Part58.Orientation = Vector3.new(0, 0.639999986, 0)
  3111. SpecialMesh59.Parent = Part58
  3112. SpecialMesh59.Scale = Vector3.new(1, 1, 0.100000001)
  3113. SpecialMesh59.MeshType = Enum.MeshType.Brick
  3114. SpecialMesh59.Scale = Vector3.new(1, 1, 0.100000001)
  3115. Part60.Parent = Model32
  3116. Part60.Material = Enum.Material.SmoothPlastic
  3117. Part60.BrickColor = BrickColor.new("Crimson")
  3118. Part60.Rotation = Vector3.new(10.25, 0.629999995, -0.109999999)
  3119. Part60.Anchored = true
  3120. Part60.CanCollide = false
  3121. Part60.FormFactor = Enum.FormFactor.Symmetric
  3122. Part60.Size = Vector3.new(1.1839999, 0.659000039, 1)
  3123. Part60.CFrame = CFrame.new(-0.218498006, 3.80297804, 20.8365326, 0.999936998, 0.00199730624, 0.0110468203, 2.29115615e-10, 0.984042048, -0.17791912, -0.0112259295, 0.177907765, 0.98398304)
  3124. Part60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3125. Part60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. Part60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3127. Part60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. Part60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. Part60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. Part60.Position = Vector3.new(-0.218498006, 3.80297804, 20.8365326)
  3131. Part60.Orientation = Vector3.new(10.25, 0.639999986, 0)
  3132. SpecialMesh61.Parent = Part60
  3133. SpecialMesh61.Scale = Vector3.new(1, 1, 0.200000003)
  3134. SpecialMesh61.MeshType = Enum.MeshType.Brick
  3135. SpecialMesh61.Scale = Vector3.new(1, 1, 0.200000003)
  3136. Part62.Parent = Model32
  3137. Part62.Material = Enum.Material.Neon
  3138. Part62.BrickColor = BrickColor.new("Really blue")
  3139. Part62.Rotation = Vector3.new(0, 0.639999986, 0)
  3140. Part62.Anchored = true
  3141. Part62.CanCollide = false
  3142. Part62.FormFactor = Enum.FormFactor.Symmetric
  3143. Part62.Size = Vector3.new(1.19199979, 0.200000003, 1)
  3144. Part62.CFrame = CFrame.new(-0.215065002, 3.57467294, 19.7719803, 0.999936998, -6.7997427e-22, 0.0112259295, 6.74630211e-22, 0.999999642, 4.7985543e-22, -0.0112259295, -4.72251669e-22, 0.999936998)
  3145. Part62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. Part62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. Part62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3148. Part62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3149. Part62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3150. Part62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3151. Part62.Position = Vector3.new(-0.215065002, 3.57467294, 19.7719803)
  3152. Part62.Orientation = Vector3.new(0, 0.639999986, 0)
  3153. SpecialMesh63.Parent = Part62
  3154. SpecialMesh63.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3155. SpecialMesh63.MeshType = Enum.MeshType.Brick
  3156. SpecialMesh63.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3157. Part64.Parent = Model32
  3158. Part64.Material = Enum.Material.Neon
  3159. Part64.BrickColor = BrickColor.new("Really blue")
  3160. Part64.Rotation = Vector3.new(0, -90, 0)
  3161. Part64.Anchored = true
  3162. Part64.CanCollide = false
  3163. Part64.FormFactor = Enum.FormFactor.Symmetric
  3164. Part64.Size = Vector3.new(1.03699994, 0.200000003, 1)
  3165. Part64.CFrame = CFrame.new(-0.759064019, 3.57868505, 20.3255081, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3166. Part64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. Part64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. Part64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3169. Part64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3170. Part64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3171. Part64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3172. Part64.Position = Vector3.new(-0.759064019, 3.57868505, 20.3255081)
  3173. Part64.Orientation = Vector3.new(0, -90, 0)
  3174. SpecialMesh65.Parent = Part64
  3175. SpecialMesh65.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3176. SpecialMesh65.MeshType = Enum.MeshType.Brick
  3177. SpecialMesh65.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3178. Part66.Parent = Model32
  3179. Part66.Material = Enum.Material.Neon
  3180. Part66.BrickColor = BrickColor.new("Really blue")
  3181. Part66.Rotation = Vector3.new(0, -90, 0)
  3182. Part66.Anchored = true
  3183. Part66.CanCollide = false
  3184. Part66.FormFactor = Enum.FormFactor.Symmetric
  3185. Part66.Size = Vector3.new(1.12699997, 0.200000003, 1)
  3186. Part66.CFrame = CFrame.new(0.331939995, 3.57168102, 20.2805176, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3187. Part66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3188. Part66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3189. Part66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3190. Part66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3191. Part66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. Part66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. Part66.Position = Vector3.new(0.331939995, 3.57168102, 20.2805176)
  3194. Part66.Orientation = Vector3.new(0, -90, 0)
  3195. SpecialMesh67.Parent = Part66
  3196. SpecialMesh67.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3197. SpecialMesh67.MeshType = Enum.MeshType.Brick
  3198. SpecialMesh67.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3199. Part68.Parent = Model32
  3200. Part68.Material = Enum.Material.Neon
  3201. Part68.BrickColor = BrickColor.new("Really blue")
  3202. Part68.Rotation = Vector3.new(10.1899996, 0.629999995, -0.109999999)
  3203. Part68.Anchored = true
  3204. Part68.CanCollide = false
  3205. Part68.FormFactor = Enum.FormFactor.Symmetric
  3206. Part68.Size = Vector3.new(1.1839999, 0.520000041, 1)
  3207. Part68.CFrame = CFrame.new(-0.218356997, 3.85704803, 20.8488922, 0.999936998, 0.0019866114, 0.011048751, 2.85079715e-09, 0.984217167, -0.176966533, -0.0112259295, 0.176955417, 0.984154999)
  3208. Part68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3209. Part68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3210. Part68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3211. Part68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3212. Part68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3213. Part68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3214. Part68.Position = Vector3.new(-0.218356997, 3.85704803, 20.8488922)
  3215. Part68.Orientation = Vector3.new(10.1899996, 0.639999986, 0)
  3216. SpecialMesh69.Parent = Part68
  3217. SpecialMesh69.Scale = Vector3.new(1.01999998, 1.10000002, 0.0799999982)
  3218. SpecialMesh69.MeshType = Enum.MeshType.Brick
  3219. SpecialMesh69.Scale = Vector3.new(1.01999998, 1.10000002, 0.0799999982)
  3220. Part70.Parent = Model32
  3221. Part70.Material = Enum.Material.Slate
  3222. Part70.BrickColor = BrickColor.new("Crimson")
  3223. Part70.Rotation = Vector3.new(0, -90, 0)
  3224. Part70.Anchored = true
  3225. Part70.CanCollide = false
  3226. Part70.FormFactor = Enum.FormFactor.Symmetric
  3227. Part70.Size = Vector3.new(1.13499999, 0.251000047, 1.09000003)
  3228. Part70.CFrame = CFrame.new(-0.225058004, 2.24668503, 20.3440247, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3229. Part70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3230. Part70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3231. Part70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3232. Part70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3233. Part70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3234. Part70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3235. Part70.Position = Vector3.new(-0.225058004, 2.24668503, 20.3440247)
  3236. Part70.Orientation = Vector3.new(0, -90, 0)
  3237. Model71.Name = "RightArm"
  3238. Model71.Parent = Model0
  3239. Part72.Parent = Model71
  3240. Part72.Material = Enum.Material.SmoothPlastic
  3241. Part72.BrickColor = BrickColor.new("Really black")
  3242. Part72.Rotation = Vector3.new(0, 3.95000005, 0)
  3243. Part72.Anchored = true
  3244. Part72.CanCollide = false
  3245. Part72.FormFactor = Enum.FormFactor.Symmetric
  3246. Part72.Size = Vector3.new(1.01499999, 1.89199996, 1)
  3247. Part72.CFrame = CFrame.new(-0.176062003, 3.07118702, 23.882019, 0.99762845, -6.79972352e-22, 0.0688301325, 6.45856705e-22, 0.999996781, 5.17934617e-22, -0.0688301325, -4.72250256e-22, 0.99762845)
  3248. Part72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3249. Part72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3250. Part72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3251. Part72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3252. Part72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3253. Part72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3254. Part72.Position = Vector3.new(-0.176062003, 3.07118702, 23.882019)
  3255. Part72.Orientation = Vector3.new(0, 3.95000005, 0)
  3256. SpecialMesh73.Parent = Part72
  3257. SpecialMesh73.Scale = Vector3.new(1, 1, 0.100000001)
  3258. SpecialMesh73.MeshType = Enum.MeshType.Brick
  3259. SpecialMesh73.Scale = Vector3.new(1, 1, 0.100000001)
  3260. Part74.Parent = Model71
  3261. Part74.Material = Enum.Material.SmoothPlastic
  3262. Part74.BrickColor = BrickColor.new("Really black")
  3263. Part74.Rotation = Vector3.new(-180, 87.0999985, 180)
  3264. Part74.Anchored = true
  3265. Part74.CanCollide = false
  3266. Part74.FormFactor = Enum.FormFactor.Symmetric
  3267. Part74.Size = Vector3.new(1, 1.89199996, 1)
  3268. Part74.CFrame = CFrame.new(0.259903014, 3.09218693, 23.3963165, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3269. Part74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3270. Part74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3271. Part74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3272. Part74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3273. Part74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. Part74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. Part74.Position = Vector3.new(0.259903014, 3.09218693, 23.3963165)
  3276. Part74.Orientation = Vector3.new(0, 92.9000015, 0)
  3277. SpecialMesh75.Parent = Part74
  3278. SpecialMesh75.Scale = Vector3.new(1, 1, 0.100000001)
  3279. SpecialMesh75.MeshType = Enum.MeshType.Brick
  3280. SpecialMesh75.Scale = Vector3.new(1, 1, 0.100000001)
  3281. Part76.Parent = Model71
  3282. Part76.Material = Enum.Material.SmoothPlastic
  3283. Part76.BrickColor = BrickColor.new("Really black")
  3284. Part76.Rotation = Vector3.new(-180, 87.0999985, 180)
  3285. Part76.Anchored = true
  3286. Part76.CanCollide = false
  3287. Part76.FormFactor = Enum.FormFactor.Symmetric
  3288. Part76.Size = Vector3.new(1, 1.89199996, 1)
  3289. Part76.CFrame = CFrame.new(-0.664906979, 3.07617903, 23.4432068, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3290. Part76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. Part76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. Part76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. Part76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. Part76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3295. Part76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3296. Part76.Position = Vector3.new(-0.664906979, 3.07617903, 23.4432068)
  3297. Part76.Orientation = Vector3.new(0, 92.9000015, 0)
  3298. SpecialMesh77.Parent = Part76
  3299. SpecialMesh77.Scale = Vector3.new(1, 1, 0.100000001)
  3300. SpecialMesh77.MeshType = Enum.MeshType.Brick
  3301. SpecialMesh77.Scale = Vector3.new(1, 1, 0.100000001)
  3302. Part78.Name = "Right Arm"
  3303. Part78.Parent = Model71
  3304. Part78.Material = Enum.Material.SmoothPlastic
  3305. Part78.BrickColor = BrickColor.new("Brick yellow")
  3306. Part78.Transparency = 1
  3307. Part78.Rotation = Vector3.new(0, -87.0999985, 0)
  3308. Part78.Anchored = true
  3309. Part78.CanCollide = false
  3310. Part78.FormFactor = Enum.FormFactor.Symmetric
  3311. Part78.Size = Vector3.new(1, 2, 1)
  3312. Part78.CFrame = CFrame.new(-0.204505995, 3.03017902, 23.4198608, 0.0506380089, 0, -0.998717129, 0, 1, 0, 0.998717129, 0, 0.0506380089)
  3313. Part78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. Part78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3315. Part78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3316. Part78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3317. Part78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3318. Part78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3319. Part78.Position = Vector3.new(-0.204505995, 3.03017902, 23.4198608)
  3320. Part78.Orientation = Vector3.new(0, -87.0999985, 0)
  3321. Part79.Parent = Model71
  3322. Part79.Material = Enum.Material.SmoothPlastic
  3323. Part79.BrickColor = BrickColor.new("Really black")
  3324. Part79.Rotation = Vector3.new(0, 3.95000005, 0)
  3325. Part79.Anchored = true
  3326. Part79.CanCollide = false
  3327. Part79.FormFactor = Enum.FormFactor.Symmetric
  3328. Part79.Size = Vector3.new(1.01499999, 1.89199996, 1)
  3329. Part79.CFrame = CFrame.new(-0.223050997, 3.08219099, 22.9552002, 0.99762845, -6.79972352e-22, 0.0688301325, 6.45856705e-22, 0.999996781, 5.17934617e-22, -0.0688301325, -4.72250256e-22, 0.99762845)
  3330. Part79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3331. Part79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3332. Part79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3333. Part79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. Part79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3335. Part79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. Part79.Position = Vector3.new(-0.223050997, 3.08219099, 22.9552002)
  3337. Part79.Orientation = Vector3.new(0, 3.95000005, 0)
  3338. SpecialMesh80.Parent = Part79
  3339. SpecialMesh80.Scale = Vector3.new(1, 1, 0.100000001)
  3340. SpecialMesh80.MeshType = Enum.MeshType.Brick
  3341. SpecialMesh80.Scale = Vector3.new(1, 1, 0.100000001)
  3342. Part81.Parent = Model71
  3343. Part81.Material = Enum.Material.SmoothPlastic
  3344. Part81.BrickColor = BrickColor.new("Really black")
  3345. Part81.Rotation = Vector3.new(-180, 87.0999985, 180)
  3346. Part81.Anchored = true
  3347. Part81.CanCollide = false
  3348. Part81.FormFactor = Enum.FormFactor.Symmetric
  3349. Part81.Size = Vector3.new(1.02600002, 0.200000048, 1.00999999)
  3350. Part81.CFrame = CFrame.new(-0.209493995, 3.94420505, 23.4201202, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3351. Part81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3352. Part81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. Part81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3354. Part81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3355. Part81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3356. Part81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3357. Part81.Position = Vector3.new(-0.209493995, 3.94420505, 23.4201202)
  3358. Part81.Orientation = Vector3.new(0, 92.9000015, 0)
  3359. Part82.Parent = Model71
  3360. Part82.Material = Enum.Material.SmoothPlastic
  3361. Part82.BrickColor = BrickColor.new("Crimson")
  3362. Part82.Rotation = Vector3.new(-180, 87.0999985, 180)
  3363. Part82.Anchored = true
  3364. Part82.CanCollide = false
  3365. Part82.FormFactor = Enum.FormFactor.Symmetric
  3366. Part82.Size = Vector3.new(1.02400005, 0.200000048, 0.23499997)
  3367. Part82.CFrame = CFrame.new(-0.209546998, 3.94821405, 23.4191132, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3368. Part82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3369. Part82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3370. Part82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3371. Part82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3372. Part82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3373. Part82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3374. Part82.Position = Vector3.new(-0.209546998, 3.94821405, 23.4191132)
  3375. Part82.Orientation = Vector3.new(0, 92.9000015, 0)
  3376. Part83.Parent = Model71
  3377. Part83.Material = Enum.Material.SmoothPlastic
  3378. Part83.BrickColor = BrickColor.new("Crimson")
  3379. Part83.Rotation = Vector3.new(0, 3.95000005, 0)
  3380. Part83.Anchored = true
  3381. Part83.CanCollide = false
  3382. Part83.FormFactor = Enum.FormFactor.Symmetric
  3383. Part83.Size = Vector3.new(0.242999971, 1.83500004, 1.32700002)
  3384. Part83.CFrame = CFrame.new(-0.175963998, 3.12571692, 23.8840179, 0.99762845, -6.79972352e-22, 0.0688301325, 6.45856705e-22, 0.999996781, 5.17934617e-22, -0.0688301325, -4.72250256e-22, 0.99762845)
  3385. Part83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3386. Part83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3387. Part83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. Part83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. Part83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. Part83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3391. Part83.Position = Vector3.new(-0.175963998, 3.12571692, 23.8840179)
  3392. Part83.Orientation = Vector3.new(0, 3.95000005, 0)
  3393. SpecialMesh84.Parent = Part83
  3394. SpecialMesh84.Scale = Vector3.new(1, 1, 0.100000001)
  3395. SpecialMesh84.MeshType = Enum.MeshType.Brick
  3396. SpecialMesh84.Scale = Vector3.new(1, 1, 0.100000001)
  3397. Part85.Parent = Model71
  3398. Part85.Material = Enum.Material.SmoothPlastic
  3399. Part85.BrickColor = BrickColor.new("Really black")
  3400. Part85.Rotation = Vector3.new(-180, 87.0999985, 180)
  3401. Part85.Anchored = true
  3402. Part85.CanCollide = false
  3403. Part85.FormFactor = Enum.FormFactor.Symmetric
  3404. Part85.Size = Vector3.new(1, 0.595000029, 1)
  3405. Part85.CFrame = CFrame.new(-0.684882998, 3.73373604, 23.4442139, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3406. Part85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. Part85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. Part85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3409. Part85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3410. Part85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3411. Part85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3412. Part85.Position = Vector3.new(-0.684882998, 3.73373604, 23.4442139)
  3413. Part85.Orientation = Vector3.new(0, 92.9000015, 0)
  3414. SpecialMesh86.Parent = Part85
  3415. SpecialMesh86.Scale = Vector3.new(1, 1, 0.100000001)
  3416. SpecialMesh86.MeshType = Enum.MeshType.Brick
  3417. SpecialMesh86.Scale = Vector3.new(1, 1, 0.100000001)
  3418. Part87.Parent = Model71
  3419. Part87.Material = Enum.Material.SmoothPlastic
  3420. Part87.BrickColor = BrickColor.new("Really black")
  3421. Part87.Rotation = Vector3.new(-180, 87.0999985, 180)
  3422. Part87.Anchored = true
  3423. Part87.CanCollide = false
  3424. Part87.FormFactor = Enum.FormFactor.Symmetric
  3425. Part87.Size = Vector3.new(1, 0.595000029, 1)
  3426. Part87.CFrame = CFrame.new(0.272890002, 3.738729, 23.3956604, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3427. Part87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3428. Part87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3429. Part87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3430. Part87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3431. Part87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3432. Part87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3433. Part87.Position = Vector3.new(0.272890002, 3.738729, 23.3956604)
  3434. Part87.Orientation = Vector3.new(0, 92.9000015, 0)
  3435. SpecialMesh88.Parent = Part87
  3436. SpecialMesh88.Scale = Vector3.new(1, 1, 0.100000001)
  3437. SpecialMesh88.MeshType = Enum.MeshType.Brick
  3438. SpecialMesh88.Scale = Vector3.new(1, 1, 0.100000001)
  3439. Part89.Parent = Model71
  3440. Part89.Material = Enum.Material.SmoothPlastic
  3441. Part89.BrickColor = BrickColor.new("Really black")
  3442. Part89.Rotation = Vector3.new(0, 3.95000005, 0)
  3443. Part89.Anchored = true
  3444. Part89.CanCollide = false
  3445. Part89.FormFactor = Enum.FormFactor.Symmetric
  3446. Part89.Size = Vector3.new(1.06499994, 0.585000038, 1)
  3447. Part89.CFrame = CFrame.new(-0.223454997, 3.74072504, 22.9472122, 0.99762845, -6.79972352e-22, 0.0688301325, 6.45856705e-22, 0.999996781, 5.17934617e-22, -0.0688301325, -4.72250256e-22, 0.99762845)
  3448. Part89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. Part89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3450. Part89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3451. Part89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3452. Part89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. Part89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3454. Part89.Position = Vector3.new(-0.223454997, 3.74072504, 22.9472122)
  3455. Part89.Orientation = Vector3.new(0, 3.95000005, 0)
  3456. SpecialMesh90.Parent = Part89
  3457. SpecialMesh90.Scale = Vector3.new(1, 1, 0.100000001)
  3458. SpecialMesh90.MeshType = Enum.MeshType.Brick
  3459. SpecialMesh90.Scale = Vector3.new(1, 1, 0.100000001)
  3460. Part91.Parent = Model71
  3461. Part91.Material = Enum.Material.SmoothPlastic
  3462. Part91.BrickColor = BrickColor.new("Really black")
  3463. Part91.Rotation = Vector3.new(0, 3.95000005, 0)
  3464. Part91.Anchored = true
  3465. Part91.CanCollide = false
  3466. Part91.FormFactor = Enum.FormFactor.Symmetric
  3467. Part91.Size = Vector3.new(1.06499994, 0.585000038, 1)
  3468. Part91.CFrame = CFrame.new(-0.1752, 3.75071406, 23.8989868, 0.99762845, -6.79972352e-22, 0.0688301325, 6.45856705e-22, 0.999996781, 5.17934617e-22, -0.0688301325, -4.72250256e-22, 0.99762845)
  3469. Part91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3470. Part91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3471. Part91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3472. Part91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. Part91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3474. Part91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. Part91.Position = Vector3.new(-0.1752, 3.75071406, 23.8989868)
  3476. Part91.Orientation = Vector3.new(0, 3.95000005, 0)
  3477. SpecialMesh92.Parent = Part91
  3478. SpecialMesh92.Scale = Vector3.new(1, 1, 0.100000001)
  3479. SpecialMesh92.MeshType = Enum.MeshType.Brick
  3480. SpecialMesh92.Scale = Vector3.new(1, 1, 0.100000001)
  3481. Part93.Parent = Model71
  3482. Part93.Material = Enum.Material.SmoothPlastic
  3483. Part93.BrickColor = BrickColor.new("Crimson")
  3484. Part93.Rotation = Vector3.new(-180, 87.0999985, 180)
  3485. Part93.Anchored = true
  3486. Part93.CanCollide = false
  3487. Part93.FormFactor = Enum.FormFactor.Symmetric
  3488. Part93.Size = Vector3.new(1.12699997, 0.26700002, 1)
  3489. Part93.CFrame = CFrame.new(-0.757575989, 3.58073497, 23.5114899, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3490. Part93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. Part93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3492. Part93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3493. Part93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3494. Part93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. Part93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3496. Part93.Position = Vector3.new(-0.757575989, 3.58073497, 23.5114899)
  3497. Part93.Orientation = Vector3.new(0, 92.9000015, 0)
  3498. SpecialMesh94.Parent = Part93
  3499. SpecialMesh94.Scale = Vector3.new(1, 1, 0.100000001)
  3500. SpecialMesh94.MeshType = Enum.MeshType.Brick
  3501. SpecialMesh94.Scale = Vector3.new(1, 1, 0.100000001)
  3502. Part95.Parent = Model71
  3503. Part95.Material = Enum.Material.SmoothPlastic
  3504. Part95.BrickColor = BrickColor.new("Crimson")
  3505. Part95.Rotation = Vector3.new(-180, 87.0999985, 180)
  3506. Part95.Anchored = true
  3507. Part95.CanCollide = false
  3508. Part95.FormFactor = Enum.FormFactor.Symmetric
  3509. Part95.Size = Vector3.new(1.03699994, 0.26700002, 1)
  3510. Part95.CFrame = CFrame.new(0.329750001, 3.58773804, 23.4113007, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3511. Part95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3512. Part95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3513. Part95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3514. Part95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3515. Part95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3516. Part95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. Part95.Position = Vector3.new(0.329750001, 3.58773804, 23.4113007)
  3518. Part95.Orientation = Vector3.new(0, 92.9000015, 0)
  3519. SpecialMesh96.Parent = Part95
  3520. SpecialMesh96.Scale = Vector3.new(1, 1, 0.100000001)
  3521. SpecialMesh96.MeshType = Enum.MeshType.Brick
  3522. SpecialMesh96.Scale = Vector3.new(1, 1, 0.100000001)
  3523. Part97.Parent = Model71
  3524. Part97.Material = Enum.Material.SmoothPlastic
  3525. Part97.BrickColor = BrickColor.new("Crimson")
  3526. Part97.Rotation = Vector3.new(180, -3.54999995, 180)
  3527. Part97.Anchored = true
  3528. Part97.CanCollide = false
  3529. Part97.FormFactor = Enum.FormFactor.Symmetric
  3530. Part97.Size = Vector3.new(1.1839999, 0.26700002, 1)
  3531. Part97.CFrame = CFrame.new(-0.183524996, 3.58372092, 23.9915314, -0.998085737, -6.79972806e-22, -0.0618467107, -6.49465573e-22, 0.999997497, -5.13401986e-22, 0.0618467107, -4.72250609e-22, -0.998085737)
  3532. Part97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3533. Part97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. Part97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. Part97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3536. Part97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3537. Part97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3538. Part97.Position = Vector3.new(-0.183524996, 3.58372092, 23.9915314)
  3539. Part97.Orientation = Vector3.new(0, -176.449997, 0)
  3540. SpecialMesh98.Parent = Part97
  3541. SpecialMesh98.Scale = Vector3.new(1, 1, 0.100000001)
  3542. SpecialMesh98.MeshType = Enum.MeshType.Brick
  3543. SpecialMesh98.Scale = Vector3.new(1, 1, 0.100000001)
  3544. Part99.Parent = Model71
  3545. Part99.Material = Enum.Material.SmoothPlastic
  3546. Part99.BrickColor = BrickColor.new("Crimson")
  3547. Part99.Rotation = Vector3.new(169.729996, -3.49000001, 179.369995)
  3548. Part99.Anchored = true
  3549. Part99.CanCollide = false
  3550. Part99.FormFactor = Enum.FormFactor.Symmetric
  3551. Part99.Size = Vector3.new(1.1839999, 0.659000039, 1)
  3552. Part99.CFrame = CFrame.new(-0.236000001, 3.81315494, 22.9283142, -0.998085737, -0.0110037038, -0.0608599484, 2.29115116e-10, 0.984039903, -0.177918732, 0.0618467107, -0.17757839, -0.982161343)
  3553. Part99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3554. Part99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3555. Part99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3556. Part99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3557. Part99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3558. Part99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3559. Part99.Position = Vector3.new(-0.236000001, 3.81315494, 22.9283142)
  3560. Part99.Orientation = Vector3.new(10.25, -176.449997, 0)
  3561. SpecialMesh100.Parent = Part99
  3562. SpecialMesh100.Scale = Vector3.new(1, 1, 0.200000003)
  3563. SpecialMesh100.MeshType = Enum.MeshType.Brick
  3564. SpecialMesh100.Scale = Vector3.new(1, 1, 0.200000003)
  3565. Part101.Parent = Model71
  3566. Part101.Material = Enum.Material.Neon
  3567. Part101.BrickColor = BrickColor.new("Really blue")
  3568. Part101.Rotation = Vector3.new(180, -3.54999995, 180)
  3569. Part101.Anchored = true
  3570. Part101.CanCollide = false
  3571. Part101.FormFactor = Enum.FormFactor.Symmetric
  3572. Part101.Size = Vector3.new(1.19199979, 0.200000003, 1)
  3573. Part101.CFrame = CFrame.new(-0.185516, 3.58485603, 23.9916534, -0.998085737, -6.79972806e-22, -0.0618467107, -6.49465573e-22, 0.999997497, -5.13401986e-22, 0.0618467107, -4.72250609e-22, -0.998085737)
  3574. Part101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3575. Part101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3576. Part101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3577. Part101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3578. Part101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3579. Part101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3580. Part101.Position = Vector3.new(-0.185516, 3.58485603, 23.9916534)
  3581. Part101.Orientation = Vector3.new(0, -176.449997, 0)
  3582. SpecialMesh102.Parent = Part101
  3583. SpecialMesh102.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3584. SpecialMesh102.MeshType = Enum.MeshType.Brick
  3585. SpecialMesh102.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3586. Part103.Parent = Model71
  3587. Part103.Material = Enum.Material.Neon
  3588. Part103.BrickColor = BrickColor.new("Really blue")
  3589. Part103.Rotation = Vector3.new(-180, 87.0999985, 180)
  3590. Part103.Anchored = true
  3591. Part103.CanCollide = false
  3592. Part103.FormFactor = Enum.FormFactor.Symmetric
  3593. Part103.Size = Vector3.new(1.03699994, 0.200000003, 1)
  3594. Part103.CFrame = CFrame.new(0.329750001, 3.58886695, 23.4113007, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3595. Part103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3596. Part103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3597. Part103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3598. Part103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3599. Part103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3600. Part103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3601. Part103.Position = Vector3.new(0.329750001, 3.58886695, 23.4113007)
  3602. Part103.Orientation = Vector3.new(0, 92.9000015, 0)
  3603. SpecialMesh104.Parent = Part103
  3604. SpecialMesh104.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3605. SpecialMesh104.MeshType = Enum.MeshType.Brick
  3606. SpecialMesh104.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3607. Part105.Parent = Model71
  3608. Part105.Material = Enum.Material.Neon
  3609. Part105.BrickColor = BrickColor.new("Really blue")
  3610. Part105.Rotation = Vector3.new(-180, 87.0999985, 180)
  3611. Part105.Anchored = true
  3612. Part105.CanCollide = false
  3613. Part105.FormFactor = Enum.FormFactor.Symmetric
  3614. Part105.Size = Vector3.new(1.12699997, 0.200000003, 1)
  3615. Part105.CFrame = CFrame.new(-0.757575989, 3.58186102, 23.5114899, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3616. Part105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3617. Part105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3618. Part105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3619. Part105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3620. Part105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3621. Part105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3622. Part105.Position = Vector3.new(-0.757575989, 3.58186102, 23.5114899)
  3623. Part105.Orientation = Vector3.new(0, 92.9000015, 0)
  3624. SpecialMesh106.Parent = Part105
  3625. SpecialMesh106.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3626. SpecialMesh106.MeshType = Enum.MeshType.Brick
  3627. SpecialMesh106.Scale = Vector3.new(1, 0.300000012, 0.119999997)
  3628. Part107.Parent = Model71
  3629. Part107.Material = Enum.Material.Neon
  3630. Part107.BrickColor = BrickColor.new("Really blue")
  3631. Part107.Rotation = Vector3.new(169.789993, -3.49000001, 179.369995)
  3632. Part107.Anchored = true
  3633. Part107.CanCollide = false
  3634. Part107.FormFactor = Enum.FormFactor.Symmetric
  3635. Part107.Size = Vector3.new(1.1839999, 0.520000041, 1)
  3636. Part107.CFrame = CFrame.new(-0.236763, 3.86722803, 22.9159698, -0.998085737, -0.0109447986, -0.0608705878, 2.85079094e-09, 0.984215021, -0.176966146, 0.0618467107, -0.176627815, -0.982332945)
  3637. Part107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3638. Part107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3639. Part107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3640. Part107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3641. Part107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3642. Part107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3643. Part107.Position = Vector3.new(-0.236763, 3.86722803, 22.9159698)
  3644. Part107.Orientation = Vector3.new(10.1899996, -176.449997, 0)
  3645. SpecialMesh108.Parent = Part107
  3646. SpecialMesh108.Scale = Vector3.new(1.01999998, 1.10000002, 0.0799999982)
  3647. SpecialMesh108.MeshType = Enum.MeshType.Brick
  3648. SpecialMesh108.Scale = Vector3.new(1.01999998, 1.10000002, 0.0799999982)
  3649. Part109.Parent = Model71
  3650. Part109.Material = Enum.Material.Slate
  3651. Part109.BrickColor = BrickColor.new("Crimson")
  3652. Part109.Rotation = Vector3.new(-180, 87.0999985, 180)
  3653. Part109.Anchored = true
  3654. Part109.CanCollide = false
  3655. Part109.FormFactor = Enum.FormFactor.Symmetric
  3656. Part109.Size = Vector3.new(1.13499999, 0.251000047, 1.09000003)
  3657. Part109.CFrame = CFrame.new(-0.204505995, 2.25686598, 23.4198608, -0.0506383777, -6.79972958e-22, 0.998717129, -5.06078732e-22, 0.999997735, 6.55188084e-22, -0.998717129, -4.7225071e-22, -0.0506383777)
  3658. Part109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3659. Part109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3660. Part109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3661. Part109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3662. Part109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3663. Part109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3664. Part109.Position = Vector3.new(-0.204505995, 2.25686598, 23.4198608)
  3665. Part109.Orientation = Vector3.new(0, 92.9000015, 0)
  3666. Model110.Name = "RightLeg"
  3667. Model110.Parent = Model0
  3668. Part111.Parent = Model110
  3669. Part111.Material = Enum.Material.SmoothPlastic
  3670. Part111.BrickColor = BrickColor.new("Really black")
  3671. Part111.Rotation = Vector3.new(0, -90, 0)
  3672. Part111.Anchored = true
  3673. Part111.CanCollide = false
  3674. Part111.FormFactor = Enum.FormFactor.Symmetric
  3675. Part111.Size = Vector3.new(1.00800002, 0.316999972, 1.01399994)
  3676. Part111.CFrame = CFrame.new(-0.218061, 1.84949696, 22.3850174, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3677. Part111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3678. Part111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3679. Part111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3680. Part111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. Part111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3682. Part111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3683. Part111.Position = Vector3.new(-0.218061, 1.84949696, 22.3850174)
  3684. Part111.Orientation = Vector3.new(0, -90, 0)
  3685. Part112.Parent = Model110
  3686. Part112.Material = Enum.Material.SmoothPlastic
  3687. Part112.BrickColor = BrickColor.new("Crimson")
  3688. Part112.Rotation = Vector3.new(0, -90, 0)
  3689. Part112.Anchored = true
  3690. Part112.CanCollide = false
  3691. Part112.FormFactor = Enum.FormFactor.Symmetric
  3692. Part112.Size = Vector3.new(0.268999934, 0.200000003, 1.02499986)
  3693. Part112.CFrame = CFrame.new(-0.212562993, 1.53901398, 22.1705151, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3694. Part112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3695. Part112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3696. Part112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3697. Part112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3698. Part112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3699. Part112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3700. Part112.Position = Vector3.new(-0.212562993, 1.53901398, 22.1705151)
  3701. Part112.Orientation = Vector3.new(0, -90, 0)
  3702. SpecialMesh113.Parent = Part112
  3703. SpecialMesh113.Scale = Vector3.new(1, 0.600000024, 1)
  3704. SpecialMesh113.MeshType = Enum.MeshType.Brick
  3705. SpecialMesh113.Scale = Vector3.new(1, 0.600000024, 1)
  3706. Part114.Parent = Model110
  3707. Part114.Material = Enum.Material.SmoothPlastic
  3708. Part114.BrickColor = BrickColor.new("Really black")
  3709. Part114.Rotation = Vector3.new(0, -90, 0)
  3710. Part114.Anchored = true
  3711. Part114.FormFactor = Enum.FormFactor.Symmetric
  3712. Part114.Size = Vector3.new(0.582000017, 1.55599999, 1)
  3713. Part114.CFrame = CFrame.new(0.199944004, 1.26201296, 22.6230164, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  3714. Part114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3715. Part114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3716. Part114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3717. Part114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3718. Part114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3719. Part114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3720. Part114.Position = Vector3.new(0.199944004, 1.26201296, 22.6230164)
  3721. Part114.Orientation = Vector3.new(0, -90, 0)
  3722. SpecialMesh115.Parent = Part114
  3723. SpecialMesh115.Scale = Vector3.new(1, 1, 0.200000003)
  3724. SpecialMesh115.MeshType = Enum.MeshType.Brick
  3725. SpecialMesh115.Scale = Vector3.new(1, 1, 0.200000003)
  3726. Part116.Parent = Model110
  3727. Part116.Material = Enum.Material.Slate
  3728. Part116.BrickColor = BrickColor.new("Crimson")
  3729. Part116.Rotation = Vector3.new(0, -90, 0)
  3730. Part116.Anchored = true
  3731. Part116.FormFactor = Enum.FormFactor.Symmetric
  3732. Part116.Size = Vector3.new(0.200000003, 1.704, 1)
  3733. Part116.CFrame = CFrame.new(0.224937007, 1.278005, 22.3450165, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  3734. Part116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3735. Part116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3736. Part116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3737. Part116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3738. Part116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3739. Part116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3740. Part116.Position = Vector3.new(0.224937007, 1.278005, 22.3450165)
  3741. Part116.Orientation = Vector3.new(0, -90, 0)
  3742. SpecialMesh117.Parent = Part116
  3743. SpecialMesh117.Scale = Vector3.new(1, 1, 0.200000003)
  3744. SpecialMesh117.MeshType = Enum.MeshType.Brick
  3745. SpecialMesh117.Scale = Vector3.new(1, 1, 0.200000003)
  3746. Part118.Parent = Model110
  3747. Part118.Material = Enum.Material.SmoothPlastic
  3748. Part118.BrickColor = BrickColor.new("Crimson")
  3749. Part118.Rotation = Vector3.new(55.0600014, -90, 0)
  3750. Part118.Anchored = true
  3751. Part118.CanCollide = false
  3752. Part118.FormFactor = Enum.FormFactor.Symmetric
  3753. Part118.Size = Vector3.new(0.403999925, 0.200000003, 1.02499986)
  3754. Part118.CFrame = CFrame.new(-0.212562993, 1.66629195, 21.9587231, 3.13131483e-21, 3.29485021e-21, -1, -0.819763958, 0.5727005, -6.79974826e-22, 0.572701156, 0.819763541, 4.49431016e-21)
  3755. Part118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3756. Part118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3757. Part118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3758. Part118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3759. Part118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3760. Part118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3761. Part118.Position = Vector3.new(-0.212562993, 1.66629195, 21.9587231)
  3762. Part118.Orientation = Vector3.new(0, -90, -55.0600014)
  3763. SpecialMesh119.Parent = Part118
  3764. SpecialMesh119.Scale = Vector3.new(1, 0.600000024, 1)
  3765. SpecialMesh119.MeshType = Enum.MeshType.Brick
  3766. SpecialMesh119.Scale = Vector3.new(1, 0.600000024, 1)
  3767. Part120.Parent = Model110
  3768. Part120.Material = Enum.Material.SmoothPlastic
  3769. Part120.BrickColor = BrickColor.new("Really black")
  3770. Part120.Rotation = Vector3.new(0, -90, 0)
  3771. Part120.Anchored = true
  3772. Part120.CanCollide = false
  3773. Part120.FormFactor = Enum.FormFactor.Symmetric
  3774. Part120.Size = Vector3.new(0.899000049, 0.316999972, 1.01399994)
  3775. Part120.CFrame = CFrame.new(-0.218061, 1.65050197, 22.4295197, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3776. Part120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3777. Part120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3778. Part120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3779. Part120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3780. Part120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3781. Part120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3782. Part120.Position = Vector3.new(-0.218061, 1.65050197, 22.4295197)
  3783. Part120.Orientation = Vector3.new(0, -90, 0)
  3784. Part121.Parent = Model110
  3785. Part121.Material = Enum.Material.SmoothPlastic
  3786. Part121.BrickColor = BrickColor.new("Really black")
  3787. Part121.Rotation = Vector3.new(0, -90, 0)
  3788. Part121.Anchored = true
  3789. Part121.CanCollide = false
  3790. Part121.FormFactor = Enum.FormFactor.Symmetric
  3791. Part121.Size = Vector3.new(1.028, 2.10299993, 1.01399994)
  3792. Part121.CFrame = CFrame.new(-0.224059999, 1.05150604, 22.3950195, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3793. Part121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3794. Part121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3795. Part121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3796. Part121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3797. Part121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3798. Part121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3799. Part121.Position = Vector3.new(-0.224059999, 1.05150604, 22.3950195)
  3800. Part121.Orientation = Vector3.new(0, -90, 0)
  3801. Part122.Parent = Model110
  3802. Part122.Material = Enum.Material.Slate
  3803. Part122.BrickColor = BrickColor.new("Crimson")
  3804. Part122.Rotation = Vector3.new(-179.300003, 0.670000017, 90)
  3805. Part122.Anchored = true
  3806. Part122.FormFactor = Enum.FormFactor.Symmetric
  3807. Part122.Size = Vector3.new(0.327000052, 1.04799998, 1)
  3808. Part122.CFrame = CFrame.new(-0.197052002, 0.567665994, 22.8544006, 6.25330671e-22, -0.999931812, 0.011637588, -0.999925673, 0.000141364129, 0.0121463882, -0.0121472068, -0.0116367191, -0.99985832)
  3809. Part122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3810. Part122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3811. Part122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3812. Part122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3813. Part122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3814. Part122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3815. Part122.Position = Vector3.new(-0.197052002, 0.567665994, 22.8544006)
  3816. Part122.Orientation = Vector3.new(-0.699999988, 179.330002, -89.9899979)
  3817. SpecialMesh123.Parent = Part122
  3818. SpecialMesh123.Scale = Vector3.new(1, 1, 0.200000003)
  3819. SpecialMesh123.MeshType = Enum.MeshType.Brick
  3820. SpecialMesh123.Scale = Vector3.new(1, 1, 0.200000003)
  3821. Part124.Parent = Model110
  3822. Part124.Material = Enum.Material.SmoothPlastic
  3823. Part124.BrickColor = BrickColor.new("Really black")
  3824. Part124.Rotation = Vector3.new(0, -1.24000001, 0)
  3825. Part124.Anchored = true
  3826. Part124.FormFactor = Enum.FormFactor.Symmetric
  3827. Part124.Size = Vector3.new(0.845000029, 1.5480001, 0.200000003)
  3828. Part124.CFrame = CFrame.new(-0.278382987, 1.25900805, 22.8843994, 0.999764979, -6.79974523e-22, -0.021678783, 6.90052505e-22, 1, 4.57399829e-22, 0.021678783, -4.72251821e-22, 0.999764979)
  3829. Part124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3830. Part124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3831. Part124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3832. Part124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3833. Part124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3834. Part124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3835. Part124.Position = Vector3.new(-0.278382987, 1.25900805, 22.8843994)
  3836. Part124.Orientation = Vector3.new(0, -1.24000001, 0)
  3837. SpecialMesh125.Parent = Part124
  3838. SpecialMesh125.Scale = Vector3.new(1, 1, 0.200000003)
  3839. SpecialMesh125.MeshType = Enum.MeshType.Brick
  3840. SpecialMesh125.Scale = Vector3.new(1, 1, 0.200000003)
  3841. Part126.Parent = Model110
  3842. Part126.Material = Enum.Material.Slate
  3843. Part126.BrickColor = BrickColor.new("Crimson")
  3844. Part126.Rotation = Vector3.new(90.6999969, -90, 0)
  3845. Part126.Anchored = true
  3846. Part126.FormFactor = Enum.FormFactor.Symmetric
  3847. Part126.Size = Vector3.new(0.353000075, 0.503999949, 1)
  3848. Part126.CFrame = CFrame.new(0.217941001, 0.560932994, 22.6437225, 6.25330923e-22, 4.50223785e-21, -1, -0.99992615, -0.0121472133, -6.79974523e-22, -0.0121472133, 0.99992615, 4.49431016e-21)
  3849. Part126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3850. Part126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3851. Part126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3852. Part126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3853. Part126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3854. Part126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3855. Part126.Position = Vector3.new(0.217941001, 0.560932994, 22.6437225)
  3856. Part126.Orientation = Vector3.new(0, -90, -90.6999969)
  3857. SpecialMesh127.Parent = Part126
  3858. SpecialMesh127.Scale = Vector3.new(1, 1, 0.200000003)
  3859. SpecialMesh127.MeshType = Enum.MeshType.Brick
  3860. SpecialMesh127.Scale = Vector3.new(1, 1, 0.200000003)
  3861. Part128.Name = "Right Leg"
  3862. Part128.Parent = Model110
  3863. Part128.Material = Enum.Material.SmoothPlastic
  3864. Part128.BrickColor = BrickColor.new("Institutional white")
  3865. Part128.Rotation = Vector3.new(0, -90, 0)
  3866. Part128.Anchored = true
  3867. Part128.CanCollide = false
  3868. Part128.FormFactor = Enum.FormFactor.Symmetric
  3869. Part128.Size = Vector3.new(1, 2, 1)
  3870. Part128.CFrame = CFrame.new(-0.225058004, 1.02000403, 22.3960114, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  3871. Part128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3872. Part128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3873. Part128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3874. Part128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3875. Part128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3876. Part128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3877. Part128.Position = Vector3.new(-0.225058004, 1.02000403, 22.3960114)
  3878. Part128.Orientation = Vector3.new(0, -90, 0)
  3879. Part129.Parent = Model110
  3880. Part129.Material = Enum.Material.Slate
  3881. Part129.BrickColor = BrickColor.new("Crimson")
  3882. Part129.Rotation = Vector3.new(90.6999969, -90, 0)
  3883. Part129.Anchored = true
  3884. Part129.FormFactor = Enum.FormFactor.Symmetric
  3885. Part129.Size = Vector3.new(0.347000062, 1.13400018, 1)
  3886. Part129.CFrame = CFrame.new(-0.678062022, 0.585385978, 22.3507919, 6.25330923e-22, 4.50223785e-21, -1, -0.99992615, -0.0121472133, -6.79974523e-22, -0.0121472133, 0.99992615, 4.49431016e-21)
  3887. Part129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. Part129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3889. Part129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3890. Part129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3891. Part129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3892. Part129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3893. Part129.Position = Vector3.new(-0.678062022, 0.585385978, 22.3507919)
  3894. Part129.Orientation = Vector3.new(0, -90, -90.6999969)
  3895. SpecialMesh130.Parent = Part129
  3896. SpecialMesh130.Scale = Vector3.new(1, 1, 0.200000003)
  3897. SpecialMesh130.MeshType = Enum.MeshType.Brick
  3898. SpecialMesh130.Scale = Vector3.new(1, 1, 0.200000003)
  3899. Part131.Parent = Model110
  3900. Part131.Material = Enum.Material.SmoothPlastic
  3901. Part131.BrickColor = BrickColor.new("Really black")
  3902. Part131.Rotation = Vector3.new(0, -90, 0)
  3903. Part131.Anchored = true
  3904. Part131.FormFactor = Enum.FormFactor.Symmetric
  3905. Part131.Size = Vector3.new(1.04799986, 1.58000004, 1)
  3906. Part131.CFrame = CFrame.new(-0.643059015, 1.24901497, 22.364006, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  3907. Part131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3908. Part131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3909. Part131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3910. Part131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3911. Part131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3912. Part131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3913. Part131.Position = Vector3.new(-0.643059015, 1.24901497, 22.364006)
  3914. Part131.Orientation = Vector3.new(0, -90, 0)
  3915. SpecialMesh132.Parent = Part131
  3916. SpecialMesh132.Scale = Vector3.new(1, 1, 0.200000003)
  3917. SpecialMesh132.MeshType = Enum.MeshType.Brick
  3918. SpecialMesh132.Scale = Vector3.new(1, 1, 0.200000003)
  3919. Model133.Name = "LeftLeg"
  3920. Model133.Parent = Model0
  3921. Part134.Parent = Model133
  3922. Part134.Material = Enum.Material.SmoothPlastic
  3923. Part134.BrickColor = BrickColor.new("Really black")
  3924. Part134.Rotation = Vector3.new(0, -90, 0)
  3925. Part134.Anchored = true
  3926. Part134.FormFactor = Enum.FormFactor.Symmetric
  3927. Part134.Size = Vector3.new(0.605000019, 1.55599999, 1)
  3928. Part134.CFrame = CFrame.new(0.199944004, 1.25500596, 21.1925201, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  3929. Part134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3930. Part134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3931. Part134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3932. Part134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3933. Part134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3934. Part134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3935. Part134.Position = Vector3.new(0.199944004, 1.25500596, 21.1925201)
  3936. Part134.Orientation = Vector3.new(0, -90, 0)
  3937. SpecialMesh135.Parent = Part134
  3938. SpecialMesh135.Scale = Vector3.new(1, 1, 0.200000003)
  3939. SpecialMesh135.MeshType = Enum.MeshType.Brick
  3940. SpecialMesh135.Scale = Vector3.new(1, 1, 0.200000003)
  3941. Part136.Parent = Model133
  3942. Part136.Material = Enum.Material.Slate
  3943. Part136.BrickColor = BrickColor.new("Crimson")
  3944. Part136.Rotation = Vector3.new(90.6999969, -90, 0)
  3945. Part136.Anchored = true
  3946. Part136.FormFactor = Enum.FormFactor.Symmetric
  3947. Part136.Size = Vector3.new(0.362000048, 0.636999965, 1)
  3948. Part136.CFrame = CFrame.new(0.224937007, 0.568448007, 21.1770782, 6.25330923e-22, 4.50223785e-21, -1, -0.99992615, -0.0121472133, -6.79974523e-22, -0.0121472133, 0.99992615, 4.49431016e-21)
  3949. Part136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3950. Part136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3951. Part136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3952. Part136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3953. Part136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3954. Part136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3955. Part136.Position = Vector3.new(0.224937007, 0.568448007, 21.1770782)
  3956. Part136.Orientation = Vector3.new(0, -90, -90.6999969)
  3957. SpecialMesh137.Parent = Part136
  3958. SpecialMesh137.Scale = Vector3.new(1, 1, 0.200000003)
  3959. SpecialMesh137.MeshType = Enum.MeshType.Brick
  3960. SpecialMesh137.Scale = Vector3.new(1, 1, 0.200000003)
  3961. Part138.Parent = Model133
  3962. Part138.Material = Enum.Material.SmoothPlastic
  3963. Part138.BrickColor = BrickColor.new("Really black")
  3964. Part138.Rotation = Vector3.new(0, -1.24000001, 0)
  3965. Part138.Anchored = true
  3966. Part138.FormFactor = Enum.FormFactor.Symmetric
  3967. Part138.Size = Vector3.new(0.825000048, 1.59000003, 1)
  3968. Part138.CFrame = CFrame.new(-0.267057002, 1.27601194, 20.9845123, 0.999764979, -6.79974523e-22, -0.021678783, 6.90052505e-22, 1, 4.57399829e-22, 0.021678783, -4.72251821e-22, 0.999764979)
  3969. Part138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3970. Part138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3971. Part138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3972. Part138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3973. Part138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3974. Part138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3975. Part138.Position = Vector3.new(-0.267057002, 1.27601194, 20.9845123)
  3976. Part138.Orientation = Vector3.new(0, -1.24000001, 0)
  3977. SpecialMesh139.Parent = Part138
  3978. SpecialMesh139.Scale = Vector3.new(1, 1, 0.200000003)
  3979. SpecialMesh139.MeshType = Enum.MeshType.Brick
  3980. SpecialMesh139.Scale = Vector3.new(1, 1, 0.200000003)
  3981. Part140.Parent = Model133
  3982. Part140.Material = Enum.Material.SmoothPlastic
  3983. Part140.BrickColor = BrickColor.new("Really black")
  3984. Part140.Rotation = Vector3.new(0, -90, 0)
  3985. Part140.Anchored = true
  3986. Part140.FormFactor = Enum.FormFactor.Symmetric
  3987. Part140.Size = Vector3.new(1.04799986, 1.58000004, 1)
  3988. Part140.CFrame = CFrame.new(-0.643059015, 1.24901497, 21.4140091, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  3989. Part140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3990. Part140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3991. Part140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3992. Part140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3993. Part140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3994. Part140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3995. Part140.Position = Vector3.new(-0.643059015, 1.24901497, 21.4140091)
  3996. Part140.Orientation = Vector3.new(0, -90, 0)
  3997. SpecialMesh141.Parent = Part140
  3998. SpecialMesh141.Scale = Vector3.new(1, 1, 0.200000003)
  3999. SpecialMesh141.MeshType = Enum.MeshType.Brick
  4000. SpecialMesh141.Scale = Vector3.new(1, 1, 0.200000003)
  4001. Part142.Parent = Model133
  4002. Part142.Material = Enum.Material.SmoothPlastic
  4003. Part142.BrickColor = BrickColor.new("Crimson")
  4004. Part142.Rotation = Vector3.new(118.43, -90, 0)
  4005. Part142.Anchored = true
  4006. Part142.CanCollide = false
  4007. Part142.FormFactor = Enum.FormFactor.Symmetric
  4008. Part142.Size = Vector3.new(0.377999932, 0.200000003, 1.02499986)
  4009. Part142.CFrame = CFrame.new(-0.212562993, 1.69244099, 21.7605438, -1.54202299e-21, 4.27587188e-21, -1, -0.879359603, -0.476150155, -6.79976845e-22, -0.476149082, 0.879356503, 4.49430814e-21)
  4010. Part142.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4011. Part142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4012. Part142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4013. Part142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4014. Part142.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4015. Part142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4016. Part142.Position = Vector3.new(-0.212562993, 1.69244099, 21.7605438)
  4017. Part142.Orientation = Vector3.new(0, -90, -118.43)
  4018. SpecialMesh143.Parent = Part142
  4019. SpecialMesh143.Scale = Vector3.new(1, 0.600000024, 1)
  4020. SpecialMesh143.MeshType = Enum.MeshType.Brick
  4021. SpecialMesh143.Scale = Vector3.new(1, 0.600000024, 1)
  4022. Part144.Parent = Model133
  4023. Part144.Material = Enum.Material.SmoothPlastic
  4024. Part144.BrickColor = BrickColor.new("Crimson")
  4025. Part144.Rotation = Vector3.new(0, -90, 0)
  4026. Part144.Anchored = true
  4027. Part144.CanCollide = false
  4028. Part144.FormFactor = Enum.FormFactor.Symmetric
  4029. Part144.Size = Vector3.new(0.268999934, 0.200000003, 1.02499986)
  4030. Part144.CFrame = CFrame.new(-0.212562993, 1.541013, 21.5855255, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  4031. Part144.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4032. Part144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4033. Part144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4034. Part144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4035. Part144.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4036. Part144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4037. Part144.Position = Vector3.new(-0.212562993, 1.541013, 21.5855255)
  4038. Part144.Orientation = Vector3.new(0, -90, 0)
  4039. SpecialMesh145.Parent = Part144
  4040. SpecialMesh145.Scale = Vector3.new(1, 0.600000024, 1)
  4041. SpecialMesh145.MeshType = Enum.MeshType.Brick
  4042. SpecialMesh145.Scale = Vector3.new(1, 0.600000024, 1)
  4043. Part146.Parent = Model133
  4044. Part146.Material = Enum.Material.SmoothPlastic
  4045. Part146.BrickColor = BrickColor.new("Really black")
  4046. Part146.Rotation = Vector3.new(0, -90, 0)
  4047. Part146.Anchored = true
  4048. Part146.CanCollide = false
  4049. Part146.FormFactor = Enum.FormFactor.Symmetric
  4050. Part146.Size = Vector3.new(0.811999917, 0.305999935, 1.01399994)
  4051. Part146.CFrame = CFrame.new(-0.218061, 1.64300597, 21.3260193, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  4052. Part146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4053. Part146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4054. Part146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4055. Part146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4056. Part146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4057. Part146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4058. Part146.Position = Vector3.new(-0.218061, 1.64300597, 21.3260193)
  4059. Part146.Orientation = Vector3.new(0, -90, 0)
  4060. Part147.Parent = Model133
  4061. Part147.Material = Enum.Material.SmoothPlastic
  4062. Part147.BrickColor = BrickColor.new("Really black")
  4063. Part147.Rotation = Vector3.new(0, -90, 0)
  4064. Part147.Anchored = true
  4065. Part147.CanCollide = false
  4066. Part147.FormFactor = Enum.FormFactor.Symmetric
  4067. Part147.Size = Vector3.new(1.00599992, 2.13199997, 1.01399994)
  4068. Part147.CFrame = CFrame.new(-0.224059999, 1.07402205, 21.3940277, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  4069. Part147.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4070. Part147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4071. Part147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4072. Part147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4073. Part147.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4074. Part147.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4075. Part147.Position = Vector3.new(-0.224059999, 1.07402205, 21.3940277)
  4076. Part147.Orientation = Vector3.new(0, -90, 0)
  4077. Part148.Parent = Model133
  4078. Part148.Material = Enum.Material.Slate
  4079. Part148.BrickColor = BrickColor.new("Crimson")
  4080. Part148.Rotation = Vector3.new(-179.300003, 0.670000017, 90)
  4081. Part148.Anchored = true
  4082. Part148.FormFactor = Enum.FormFactor.Symmetric
  4083. Part148.Size = Vector3.new(0.346000046, 1.04799998, 1)
  4084. Part148.CFrame = CFrame.new(-0.197052002, 0.590524018, 20.8905182, 6.25330671e-22, -0.999931812, 0.011637588, -0.999925673, 0.000141364129, 0.0121463882, -0.0121472068, -0.0116367191, -0.99985832)
  4085. Part148.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4086. Part148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4087. Part148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4088. Part148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4089. Part148.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4090. Part148.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4091. Part148.Position = Vector3.new(-0.197052002, 0.590524018, 20.8905182)
  4092. Part148.Orientation = Vector3.new(-0.699999988, 179.330002, -89.9899979)
  4093. SpecialMesh149.Parent = Part148
  4094. SpecialMesh149.Scale = Vector3.new(1, 1, 0.200000003)
  4095. SpecialMesh149.MeshType = Enum.MeshType.Brick
  4096. SpecialMesh149.Scale = Vector3.new(1, 1, 0.200000003)
  4097. Part150.Parent = Model133
  4098. Part150.Material = Enum.Material.Slate
  4099. Part150.BrickColor = BrickColor.new("Crimson")
  4100. Part150.Rotation = Vector3.new(90.6999969, -90, 0)
  4101. Part150.Anchored = true
  4102. Part150.FormFactor = Enum.FormFactor.Symmetric
  4103. Part150.Size = Vector3.new(0.347000062, 1.13400018, 1)
  4104. Part150.CFrame = CFrame.new(-0.678062022, 0.585385978, 21.3407745, 6.25330923e-22, 4.50223785e-21, -1, -0.99992615, -0.0121472133, -6.79974523e-22, -0.0121472133, 0.99992615, 4.49431016e-21)
  4105. Part150.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4106. Part150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4107. Part150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4108. Part150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4109. Part150.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4110. Part150.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4111. Part150.Position = Vector3.new(-0.678062022, 0.585385978, 21.3407745)
  4112. Part150.Orientation = Vector3.new(0, -90, -90.6999969)
  4113. SpecialMesh151.Parent = Part150
  4114. SpecialMesh151.Scale = Vector3.new(1, 1, 0.200000003)
  4115. SpecialMesh151.MeshType = Enum.MeshType.Brick
  4116. SpecialMesh151.Scale = Vector3.new(1, 1, 0.200000003)
  4117. Part152.Name = "Left Leg"
  4118. Part152.Parent = Model133
  4119. Part152.Material = Enum.Material.SmoothPlastic
  4120. Part152.BrickColor = BrickColor.new("Institutional white")
  4121. Part152.Transparency = 1
  4122. Part152.Rotation = Vector3.new(0, -90, 0)
  4123. Part152.Anchored = true
  4124. Part152.CanCollide = false
  4125. Part152.FormFactor = Enum.FormFactor.Symmetric
  4126. Part152.Size = Vector3.new(1, 2, 1)
  4127. Part152.CFrame = CFrame.new(-0.225058004, 1.02000403, 21.3960114, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  4128. Part152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4129. Part152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4130. Part152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4131. Part152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4132. Part152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4133. Part152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4134. Part152.Position = Vector3.new(-0.225058004, 1.02000403, 21.3960114)
  4135. Part152.Orientation = Vector3.new(0, -90, 0)
  4136. Part153.Parent = Model133
  4137. Part153.Material = Enum.Material.Slate
  4138. Part153.BrickColor = BrickColor.new("Crimson")
  4139. Part153.Rotation = Vector3.new(0, -90, 0)
  4140. Part153.Anchored = true
  4141. Part153.FormFactor = Enum.FormFactor.Symmetric
  4142. Part153.Size = Vector3.new(0.200000003, 1.70299995, 1)
  4143. Part153.CFrame = CFrame.new(0.217941001, 1.29650295, 21.4880219, 4.49431016e-21, -6.79974523e-22, -1, 4.72251821e-22, 1, -6.79974523e-22, 1, -4.72251821e-22, 4.49431016e-21)
  4144. Part153.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4145. Part153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4146. Part153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4147. Part153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4148. Part153.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4149. Part153.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4150. Part153.Position = Vector3.new(0.217941001, 1.29650295, 21.4880219)
  4151. Part153.Orientation = Vector3.new(0, -90, 0)
  4152. SpecialMesh154.Parent = Part153
  4153. SpecialMesh154.Scale = Vector3.new(1, 1, 0.200000003)
  4154. SpecialMesh154.MeshType = Enum.MeshType.Brick
  4155. SpecialMesh154.Scale = Vector3.new(1, 1, 0.200000003)
  4156. Part155.Parent = Model133
  4157. Part155.Material = Enum.Material.SmoothPlastic
  4158. Part155.BrickColor = BrickColor.new("Really black")
  4159. Part155.Rotation = Vector3.new(0, -90, 0)
  4160. Part155.Anchored = true
  4161. Part155.CanCollide = false
  4162. Part155.FormFactor = Enum.FormFactor.Symmetric
  4163. Part155.Size = Vector3.new(0.966999888, 0.305999935, 1.01399994)
  4164. Part155.CFrame = CFrame.new(-0.218061, 1.85202205, 21.4035187, 4.49431016e-21, -6.79974422e-22, -1, 4.72251821e-22, 0.999999881, -6.79974523e-22, 1, -4.7225177e-22, 4.49431016e-21)
  4165. Part155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4166. Part155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4167. Part155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4168. Part155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4169. Part155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4170. Part155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4171. Part155.Position = Vector3.new(-0.218061, 1.85202205, 21.4035187)
  4172. Part155.Orientation = Vector3.new(0, -90, 0)
  4173. Script156.Name = "Welds"
  4174. Script156.Parent = Model0
  4175. table.insert(cors,sandbox(Script156,function()
  4176. --Saz
  4177.  
  4178. --A new system which is a combination of fast-welds and hard-welds.
  4179. --Should be far, far better.
  4180.  
  4181. --When script.CreateNewWelds.Value == true, we create a new set of weld information on script run.
  4182. --This toggles off automatically afterwards, to prevent issues that fast-welds can cause.
  4183.  
  4184. --Cruder than I wanted it to be, but not like I intended for anyone but me to use it anyway.
  4185. --The fact that you're reading this means you should likely kill yourself. Immediately.
  4186.  
  4187. wait(.33)
  4188.  
  4189. Tool=script.Parent
  4190. Nib=Tool.Parent
  4191.  
  4192.  
  4193. weldparts=function()
  4194. print("Welding")
  4195. lel={}
  4196. function jarate(p)
  4197. for i=1, #p do
  4198. table.insert(lel,p[i])
  4199. k=p[i]:children()
  4200. if #k>0 then
  4201. jarate(k)
  4202. end
  4203. end
  4204. end
  4205. for _,v in pairs(script.Parent:children()) do
  4206. if v.Name~="Cloak" and v.className~="Script" then
  4207. v:BreakJoints()
  4208. jarate(v:children())
  4209. end
  4210. end
  4211. for _,v in pairs(lel) do
  4212. if v.className=="Weld" or v.className=="Motor6D" then
  4213. v:Remove()
  4214. end
  4215. end
  4216. for _,v in pairs(script.Parent["RightLeg"]:children()) do
  4217. if v.Name~="Right Leg" then
  4218. w=Instance.new("Weld")
  4219. w.Part0=script.Parent["RightLeg"]["Right Leg"]
  4220. w.Part1=v
  4221. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  4222. w.C0=script.Parent["RightLeg"]["Right Leg"].CFrame:inverse()*CFrame.new(v.Position)
  4223. w.Parent=w.Part0
  4224. end
  4225. end
  4226. w=Instance.new("Weld")
  4227. w.Part0=Nib["Right Leg"]
  4228. w.Part1=script.Parent["RightLeg"]["Right Leg"]
  4229. w.Parent=w.Part0
  4230. w.C0=CFrame.new(0,-.1,0)
  4231. for _,v in pairs(script.Parent["LeftLeg"]:children()) do
  4232. if v.Name~="Left Leg" then
  4233. w=Instance.new("Weld")
  4234. w.Part0=script.Parent["LeftLeg"]["Left Leg"]
  4235. w.Part1=v
  4236. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  4237. w.C0=script.Parent["LeftLeg"]["Left Leg"].CFrame:inverse()*CFrame.new(v.Position)
  4238. w.Parent=w.Part0
  4239. end
  4240. end
  4241. w=Instance.new("Weld")
  4242. w.Part0=Nib["Left Leg"]
  4243. w.Part1=script.Parent["LeftLeg"]["Left Leg"]
  4244. w.Parent=w.Part0
  4245. w.C0=CFrame.new(0,-.1,0)
  4246. for _,v in pairs(script.Parent["RightArm"]:children()) do
  4247. if v.Name~="Right Arm" then
  4248. w=Instance.new("Weld")
  4249. w.Part0=script.Parent["RightArm"]["Right Arm"]
  4250. w.Part1=v
  4251. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  4252. w.C0=script.Parent["RightArm"]["Right Arm"].CFrame:inverse()*CFrame.new(v.Position)
  4253. w.Parent=w.Part1
  4254. end
  4255. end
  4256. w=Instance.new("Weld")
  4257. w.Part0=Nib["Right Arm"]
  4258. w.Part1=script.Parent["RightArm"]["Right Arm"]
  4259. w.Parent=w.Part0
  4260. w.C0 = w.C0 * CFrame.Angles(0,math.rad(90),math.rad(90))
  4261. for _,v in pairs(script.Parent["LeftArm"]:children()) do
  4262. if v.Name~="Left Arm" then
  4263. w=Instance.new("Weld")
  4264. w.Part0=script.Parent["LeftArm"]["Left Arm"]
  4265. w.Part1=v
  4266. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  4267. w.C0=script.Parent["LeftArm"]["Left Arm"].CFrame:inverse()*CFrame.new(v.Position)
  4268. w.Parent=w.Part0
  4269. end
  4270. end
  4271. w=Instance.new("Weld")
  4272. w.Part0=Nib["Left Arm"]
  4273. w.Part1=script.Parent["LeftArm"]["Left Arm"]
  4274. w.Parent=w.Part0
  4275.  
  4276. for _,v in pairs(script.Parent["Torso"]:children()) do
  4277. if v.Name~="Torso" then
  4278. w=Instance.new("Weld")
  4279. w.Part0=script.Parent["Torso"]["Torso"]
  4280. w.Part1=v
  4281. w.C1=v.CFrame:inverse()*CFrame.new(v.Position)
  4282. w.C0=script.Parent["Torso"]["Torso"].CFrame:inverse()*CFrame.new(v.Position)
  4283. w.Parent=script.Parent["Torso"]["Torso"]
  4284. end
  4285. end
  4286.  
  4287. w=Instance.new("Weld")
  4288. w.Part0=Nib["Torso"]
  4289. w.Part1=script.Parent["Torso"]["Torso"]
  4290. w.C0=w.C0*CFrame.fromEulerAnglesXYZ(0,0,0)
  4291. w.Parent=w.Part0
  4292.  
  4293. for _,v in pairs(lel) do
  4294. if v:IsA("BasePart") then v.Anchored=false end
  4295. end
  4296.  
  4297. wait(1)
  4298.  
  4299. w=Instance.new("Weld")
  4300. w.Part0=Nib.Torso
  4301. w.Part1=Tool.Torso.Torso
  4302. w.C0=CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(0,0,math.pi)
  4303. w.C1=CFrame.new(0,0,0)
  4304. w.Parent=w.Part1
  4305. w.Name="ClothingWeld"
  4306.  
  4307. wait(.06)
  4308.  
  4309. while Tool.Torso.Torso:FindFirstChild("ClothingWeld")==nil do
  4310. wait(.03)
  4311. w=Instance.new("Weld")
  4312. w.Part0=Nib.Torso
  4313. w.Part1=Tool.Torso.Torso
  4314. w.C0=CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(0,0,math.pi)
  4315. w.C1=CFrame.new(0,0,0)
  4316. w.Parent=w.Part1
  4317. w.Name="ClothingWeld"
  4318. end
  4319.  
  4320. w=Instance.new("Weld")
  4321. w.Part0=Nib["Right Leg"]
  4322. w.Part1=Tool.RightLeg["Right Leg"]
  4323. w.C0=CFrame.new(0,0,0)
  4324. w.C1=CFrame.new(0,0,0)
  4325. w.Parent=w.Part1
  4326. w.Name="ClothingWeld"
  4327.  
  4328. w=Instance.new("Weld")
  4329. w.Part0=Nib["Left Leg"]
  4330. w.Part1=Tool.LeftLeg["Left Leg"]
  4331. w.C0=CFrame.new(0,0,0)
  4332. w.C1=CFrame.new(0,0,0)
  4333. w.Parent=w.Part1
  4334. w.Name="ClothingWeld"
  4335.  
  4336. w=Instance.new("Weld")
  4337. w.Part0=Nib["Right Arm"]
  4338. w.Part1=Tool.RightArm["Right Arm"]
  4339. w.C0=CFrame.new(0,0,0)
  4340. w.C1=CFrame.new(0,0,0)
  4341. w.Parent=w.Part1
  4342. w.Name="ClothingWeld"
  4343.  
  4344. w=Instance.new("Weld")
  4345. w.Part0=Nib["Left Arm"]
  4346. w.Part1=Tool.LeftArm["Left Arm"]
  4347. w.C0=CFrame.new(0,0,0) * CFrame.fromEulerAnglesXYZ(0,0,math.pi)
  4348. w.C1=CFrame.new(0,0,0)
  4349. w.Parent=w.Part1
  4350. w.Name="ClothingWeld"
  4351.  
  4352. wait()
  4353.  
  4354. end
  4355. weldparts()
  4356. end))
  4357. for i,v in pairs(mas:GetChildren()) do
  4358. v.Parent = game:GetService("Players").LocalPlayer.Character
  4359. pcall(function() v:MakeJoints() end)
  4360. end
  4361. mas:Destroy()
  4362. for i,v in pairs(cors) do
  4363. spawn(function()
  4364. pcall(v)
  4365. end)
  4366. end
  4367.  
  4368. --//=================================\\
  4369. --|| DAMAGING
  4370. --\\=================================//
  4371.  
  4372. function ApplyDamage(Humanoid,Damage)
  4373. if Humanoid.Health == math.huge then
  4374. Humanoid.Parent:BreakJoints()
  4375. else
  4376. local MULTIPLY = Humanoid.MaxHealth/100
  4377. Damage = Damage * DAMAGEMULTIPLIER
  4378. if Humanoid.Health ~= 0 then
  4379. Humanoid.Health = Humanoid.Health - Damage*MULTIPLY
  4380. end
  4381. end
  4382. end
  4383.  
  4384. function ApplyAoE(POSITION,RANGE,MINDMG,MAXDMG,FLING,CAMSINSTAKILL,INSTAKILL)
  4385. local CHILDREN = workspace:GetDescendants()
  4386. for index, CHILD in pairs(CHILDREN) do
  4387. if CHILD.ClassName == "Model" and CHILD ~= Character then
  4388. local HUM = CHILD:FindFirstChildOfClass("Humanoid")
  4389. if HUM then
  4390. local TORSO = CHILD:FindFirstChild("Torso") or CHILD:FindFirstChild("UpperTorso")
  4391. if TORSO then
  4392. if (TORSO.Position - POSITION).Magnitude <= RANGE then
  4393. if INSTAKILL == true or HUM.MaxHealth == math.huge then
  4394. CHILD:BreakJoints()
  4395. else
  4396. local DMG = MRANDOM(MINDMG,MAXDMG)
  4397. ApplyDamage(HUM,DMG)
  4398. end
  4399. if FLING > 0 then
  4400. for _, c in pairs(CHILD:GetChildren()) do
  4401. if c:IsA("BasePart") then
  4402. local bv = Instance.new("BodyVelocity")
  4403. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  4404. bv.velocity = CF(POSITION,TORSO.Position).lookVector*FLING
  4405. bv.Parent = c
  4406. Debris:AddItem(bv,0.05)
  4407. end
  4408. end
  4409. end
  4410. end
  4411. end
  4412. end
  4413. end
  4414. end
  4415. end
  4416.  
  4417. --//=================================\\
  4418. --|| ATTACK FUNCTIONS AND STUFF
  4419. --\\=================================//
  4420.  
  4421. function Fireball()
  4422. ATTACK = true
  4423. Rooted = true
  4424. local GYRO = IT("BodyGyro",RootPart)
  4425. GYRO.D = 20
  4426. GYRO.P = 4000
  4427. GYRO.MaxTorque = VT(40000,40000,40000)
  4428. local POSITION = IT("BodyPosition",RootPart)
  4429. POSITION.Position = RootPart.Position+VT(0,2,0)
  4430. POSITION.D = 450
  4431. POSITION.P = 40000
  4432. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4433. CreateSound(CHARGE,RightArm,6,1,false)
  4434. coroutine.resume(coroutine.create(function()
  4435. repeat
  4436. Swait()
  4437. GYRO.CFrame = CF(RootPart.Position,Mouse.Hit.p)
  4438. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(24)), 2 / Animation_Speed)
  4439. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(-24)), 1 / Animation_Speed)
  4440. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, -0.3) * ANGLES(RAD(90), RAD(0), RAD(24)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4441. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.45, 0.75, 0) * ANGLES(RAD(-25), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4442. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(75), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4443. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4444. until ATTACK == false
  4445. GYRO:remove()
  4446. POSITION:remove()
  4447. end))
  4448. wait(1)
  4449. repeat
  4450. coroutine.resume(coroutine.create(function()
  4451. local FIREBALL = CreatePart(3, Effects, "Neon", 0, 1, "Cyan", "Flight", VT(10,10,10))
  4452. FIREBALL.CFrame = CF(RightArm.CFrame*CF(0,-1,0).p,Mouse.Hit.p)
  4453. CreateSound(FIREBALLSOUND,FIREBALL,6,1,false)
  4454. for i = 1, 250 do
  4455. Swait()
  4456. local HIT,HITPOS = Raycast(FIREBALL.Position, FIREBALL.CFrame.lookVector, 10, Character)
  4457. FIREBALL.CFrame = FIREBALL.CFrame*CF(0,0,-5)
  4458. if HIT then
  4459. ApplyAoE(FIREBALL.Position,200,15,25,35,true,{SHAKE = 2, TIMER = 25, DOESFADE = true})
  4460. for i = 1, 3 do
  4461. WACKYEFFECT({Time = 70, EffectType = "Sphere", Size = VT(50,50,50), Size2 = VT(MRANDOM(200,300),MRANDOM(200,300),MRANDOM(200,300)), Transparency = 0.5, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright blue".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4462. end
  4463. for i = 1, 3 do
  4464. WACKYEFFECT({Time = 120, EffectType = "Sphere", Size = VT(50,50,50), Size2 = VT(MRANDOM(200,300),MRANDOM(200,300),MRANDOM(200,300)), Transparency = 0.8, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4465. end
  4466. for i = 1, 5 do
  4467. WACKYEFFECT({Time = 80+(i*5), EffectType = "Ring", Size = VT(0,0,0), Size2 = VT(40,40,0), Transparency = 0.8, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = MRANDOM(-15,15)/15, RotationY = MRANDOM(-15,15)/15, RotationZ = MRANDOM(-15,15)/15, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4468. end
  4469. break
  4470. end
  4471. end
  4472. Debris:AddItem(FIREBALL,7)
  4473. end))
  4474. wait(0.1)
  4475. until KEYHOLD == false
  4476. wait(0.2)
  4477. ATTACK = false
  4478. Rooted = false
  4479. end
  4480.  
  4481. function SearingOrb()
  4482. ATTACK = true
  4483. Rooted = true
  4484. local POSITION = IT("BodyPosition",RootPart)
  4485. POSITION.Position = RootPart.Position+VT(0,2,0)
  4486. POSITION.D = 450
  4487. POSITION.P = 40000
  4488. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4489. CreateSound(CHARGE,Torso,6,1,false)
  4490. local NEWANIM = false
  4491. coroutine.resume(coroutine.create(function()
  4492. repeat
  4493. Swait()
  4494. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4495. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-25 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4496. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, 0) * ANGLES(RAD(170), RAD(0), RAD(-12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  4497. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.75, 0) * ANGLES(RAD(170), RAD(0), RAD(12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  4498. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4499. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4500. until ATTACK == false or NEWANIM == true
  4501. if NEWANIM == true then
  4502. local GYRO = IT("BodyGyro",RootPart)
  4503. GYRO.D = 20
  4504. GYRO.P = 4000
  4505. GYRO.MaxTorque = VT(40000,40000,40000)
  4506. repeat
  4507. Swait()
  4508. GYRO.CFrame = CF(RootPart.Position,Mouse.Hit.p)
  4509. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(24)), 2 / Animation_Speed)
  4510. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(-24)), 1 / Animation_Speed)
  4511. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, -0.3) * ANGLES(RAD(90), RAD(0), RAD(24)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4512. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.45, 0.75, 0) * ANGLES(RAD(-25), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4513. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(75), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4514. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4515. until ATTACK == false
  4516. GYRO:remove()
  4517. end
  4518. POSITION:remove()
  4519. end))
  4520. local ORB = CreatePart(3, Effects, "Neon", 0, 0, BRICKC("Bright red"), "Orb", VT(0,0,0), true)
  4521. MakeForm(ORB,"Ball")
  4522. ORB.CFrame = CF(RootPart.Position+VT(0,8,0))
  4523. local A = IT("Attachment",ORB)
  4524. local LOOP = 0
  4525. for i = 1, 500 do
  4526. Swait()
  4527. LOOP = LOOP + 1
  4528. if LOOP >= 30 then
  4529. LOOP = 0
  4530. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(ORB.Size.X,ORB.Size.X/5,ORB.Size.X), Transparency = 0, Transparency2 = 1, CFrame = CF(RootPart.Position-VT(0,3.5,0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4531. end
  4532. ORB.Size = ORB.Size + VT(0.2,0.2,0.2)
  4533. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  4534. end
  4535. wait(1)
  4536. if KEYHOLD == false then
  4537. coroutine.resume(coroutine.create(function()
  4538. ORB.Transparency = 1
  4539. Debris:AddItem(ORB,10)
  4540. ApplyAoE(ORB.Position,400,75,90,175,true,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  4541. CreateSound(EXPLOSIONLARGESOUND,ORB,10,1,false)
  4542. CreateSound(EXPLOSIONSMALLSOUND,ORB,10,1,false)
  4543. for i = 1, 3 do
  4544. WACKYEFFECT({Time = 40, EffectType = "Sphere", Size = VT(50,50,50), Size2 = VT(MRANDOM(600,700),MRANDOM(600,700),MRANDOM(600,700)), Transparency = 0, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4545. end
  4546. for i = 1, 3 do
  4547. WACKYEFFECT({Time = 60, EffectType = "Sphere", Size = VT(50,50,50), Size2 = VT(MRANDOM(600,700),MRANDOM(600,700),MRANDOM(600,700)), Transparency = 0, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4548. end
  4549. for i = 1, 15 do
  4550. WACKYEFFECT({Time = 40+(i*5), EffectType = "Ring", Size = VT(0,0,0), Size2 = VT(70,70,0), Transparency = 0.8, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = MRANDOM(-15,15)/15, RotationY = MRANDOM(-15,15)/15, RotationZ = MRANDOM(-15,15)/15, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4551. end
  4552. end))
  4553. else
  4554. for i = 1, 100 do
  4555. Swait()
  4556. ORB.Size = ORB.Size - VT(0.2,0.2,0.2)*5
  4557. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  4558. end
  4559. ORB.Transparency = 1
  4560. Debris:AddItem(ORB,10)
  4561. CreateSound(EXPLOSIONSMALLSOUND,Torso,10,1,false)
  4562. for _, c in pairs(Character:GetChildren()) do
  4563. if c:IsA("BasePart") then
  4564. end
  4565. end
  4566. NEWANIM = true
  4567. wait(0.5)
  4568. for i = 1, 15 do
  4569. wait(0.1)
  4570. coroutine.resume(coroutine.create(function()
  4571. local FIREBALL = CreatePart(3, Effects, "Neon", 0, 1, "Cyan", "Flight", VT(2,2,2))
  4572. FIREBALL.CFrame = CF(RightArm.CFrame*CF(0,-1,0).p,Mouse.Hit.p)
  4573. CreateSound(FIREBALLSOUND,FIREBALL,6,1,false)
  4574. for i = 1, 250 do
  4575. Swait()
  4576. local HIT,HITPOS,NORMAL = Raycast(FIREBALL.Position, FIREBALL.CFrame.lookVector, 2, Character)
  4577. FIREBALL.CFrame = FIREBALL.CFrame*CF(0,0,-2)
  4578. if HIT then
  4579. CreateSound(EXPLOSIONSMALLSOUND,FIREBALL,10,1,false)
  4580. local FIELD = CreatePart(3, Effects, "Neon", 0, 1, BRICKC("Pearl"), "Fire", VT(75,0,75), true)
  4581. local FIELD2 = CreatePart(3, Effects, "Neon", 0, 1, BRICKC("Pearl"), "Fire", VT(75,0,75), true)
  4582. FIELD.CFrame = CF(HITPOS,HITPOS+NORMAL) * ANGLES(RAD(90), RAD(0), RAD(0))
  4583. FIELD2.CFrame = CF(HITPOS,HITPOS+NORMAL) * ANGLES(RAD(90), RAD(45), RAD(0))
  4584. coroutine.resume(coroutine.create(function()
  4585. for i = 1, 15 do
  4586. wait(1)
  4587. ApplyAoE(FIELD.Position,FIELD.Size.X/2,5,15,0,false,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  4588. end
  4589. Debris:AddItem(FIELD,5)
  4590. Debris:AddItem(FIELD2,5)
  4591. end))
  4592. break
  4593. end
  4594. end
  4595. Debris:AddItem(FIREBALL,7)
  4596. end))
  4597. end
  4598. end
  4599. wait(0.3)
  4600. ATTACK = false
  4601. Rooted = false
  4602. end
  4603.  
  4604. function Shroud()
  4605. if Mouse.Target ~= nil then
  4606. if Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") or Mouse.Target.Parent.Parent:FindFirstChildOfClass("Humanoid") then
  4607. local HUM = Mouse.Target.Parent:FindFirstChildOfClass("Humanoid") or Mouse.Target.Parent.Parent:FindFirstChildOfClass("Humanoid")
  4608. local TORSO = HUM.Parent:FindFirstChild("HumanoidRootPart") or HUM.Parent:FindFirstChild("Torso") or HUM.Parent:FindFirstChild("UpperTorso")
  4609. if TORSO and HUM.Health > 0 then
  4610. local DISTANCE = (RootPart.Position-TORSO.Position).Magnitude
  4611. if DISTANCE < 100 then
  4612. ATTACK = true
  4613. POSEIDON = false
  4614. Rooted = true
  4615. local GYRO = IT("BodyGyro",RootPart)
  4616. GYRO.D = 20
  4617. GYRO.P = 4000
  4618. GYRO.MaxTorque = VT(40000,40000,40000)
  4619. local POSITION = IT("BodyPosition",RootPart)
  4620. POSITION.Position = RootPart.Position+VT(0,2,0)
  4621. POSITION.D = 450
  4622. POSITION.P = 40000
  4623. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4624. local TARGETTING = true
  4625. local HIT = false
  4626.  
  4627. CreateSound(CHARGE,Torso,6,1,false)
  4628. coroutine.resume(coroutine.create(function()
  4629. repeat
  4630. GYRO.CFrame = CF(RootPart.Position,TORSO.Position)
  4631. Swait()
  4632. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(25), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4633. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4634. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.75, 0) * ANGLES(RAD(-15), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  4635. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.75, 0) * ANGLES(RAD(-15), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  4636. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(-15), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4637. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(20), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4638. until TARGETTING == false
  4639. repeat
  4640. GYRO.CFrame = CF(RootPart.Position,TORSO.Position)
  4641. POSITION.Position = CF(RootPart.Position,TORSO.Position)*CF(0,0,-5).p
  4642. DISTANCE = (RootPart.Position-TORSO.Position).Magnitude
  4643. Swait()
  4644. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(25), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4645. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-15 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4646. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.75, 0) * ANGLES(RAD(-15), RAD(0), RAD(12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  4647. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.75, 0) * ANGLES(RAD(-15), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  4648. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(-15), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4649. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(20), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4650. until HIT == true
  4651. POSITION:remove()
  4652. GYRO:remove()
  4653. end))
  4654. wait(0.5)
  4655. repeat wait() until HOLD == true
  4656. for _, c in pairs(Character:GetChildren()) do
  4657. if c:IsA("BasePart") then
  4658.  
  4659. end
  4660. end
  4661. for _, c in pairs(Character:GetChildren()) do
  4662. if c:IsA("BasePart") then
  4663. c.Transparency = 1
  4664. end
  4665. end
  4666. TARGETTING = false
  4667. for i = 1, 100 do
  4668. wait()
  4669. if DISTANCE < 5 or DISTANCE >= 200 then
  4670. break
  4671. end
  4672. end
  4673. HIT = true
  4674. end
  4675. for _, c in pairs(HUM.Parent:GetChildren()) do
  4676. end
  4677. end
  4678. CreateSound(FIREBALLSOUND,Torso,6,1,false)
  4679. RootPart.CFrame = TORSO.CFrame
  4680. local WELD = weldBetween(RootPart,TORSO)
  4681. repeat wait() until HOLD == true
  4682. CreateSound(416328540,Torso,6,1,false)
  4683. WACKYEFFECT({Time = 45, EffectType = "Swirl", Size = VT(5,15,5), Size2 = VT(30,20,30), Transparency = 0.5, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4684. local bv = Instance.new("BodyVelocity")
  4685. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  4686. bv.velocity = CF(TORSO.Position,TORSO.Position+VT(0,15,0)).lookVector*125
  4687. bv.Parent = TORSO
  4688. for i = 1, 70 do
  4689. wait(0.1)
  4690. if TORSO.Parent == nil then
  4691. break
  4692. end
  4693. WACKYEFFECT({Time = 45, EffectType = "Swirl", Size = VT(5,15,5), Size2 = VT(30,20,30), Transparency = 0.5, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(180),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4694. end
  4695. UNANCHOR = false
  4696. bv:remove()
  4697. wait(1)
  4698. WACKYEFFECT({Time = 35, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(45,1,45), Transparency = 0, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(180),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4699. CreateSound(FIREBALLSOUND,Torso,6,1,false)
  4700. UNANCHOR = true
  4701. local bv = Instance.new("BodyVelocity")
  4702. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  4703. bv.velocity = CF(TORSO.Position,TORSO.Position-VT(0,15,0)).lookVector*450
  4704. bv.Parent = TORSO
  4705. local LANDED = false
  4706. for i = 1, 500 do
  4707. wait()
  4708. Ignore = {Character,HUM.Parent}
  4709. WACKYEFFECT({Time = 45, EffectType = "Swirl", Size = VT(5,15,5), Size2 = VT(30,20,30), Transparency = 0.5, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4710. local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
  4711. local HITFLOOR = CastProperRay(TORSO.Position, TORSO.Position-VT(0,1,0), 10*(TORSO.Size.Y), Ignore)
  4712. if HITFLOOR or FULLREGEN == true then
  4713. LANDED = true
  4714. break
  4715. end
  4716. if TORSO.Parent == nil then
  4717. break
  4718. end
  4719. end
  4720. if TORSO.Parent ~= nil then
  4721. UNANCHOR = false
  4722. bv:remove()
  4723. wait(1)
  4724. WACKYEFFECT({Time = 35, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(45,1,45), Transparency = 0.2, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(180),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Dark indigo".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4725. CreateSound(FIREBALLSOUND,Torso,6,1,false)
  4726. UNANCHOR = true
  4727. local bv = Instance.new("BodyVelocity")
  4728. bv.maxForce = Vector3.new(1e9, 1e9, 1e9)
  4729. bv.velocity = CF(TORSO.Position,TORSO.Position-VT(0,15,0)).lookVector*450
  4730. bv.Parent = TORSO
  4731. local LANDED = false
  4732. for i = 1, 500 do
  4733. wait()
  4734. Ignore = {Character,HUM.Parent}
  4735. WACKYEFFECT({Time = 15, EffectType = "Swirl", Size = VT(5,15,5), Size2 = VT(30,20,30), Transparency = 0.9, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = nil, RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Really black".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4736. local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
  4737. local HITFLOOR = CastProperRay(TORSO.Position, TORSO.Position-VT(0,1,0), 10*(TORSO.Size.Y), Ignore)
  4738. if HITFLOOR or FULLREGEN == true then
  4739. LANDED = true
  4740. break
  4741. end
  4742. if TORSO.Parent == nil then
  4743. break
  4744. end
  4745. end
  4746. bv:remove()
  4747. if LANDED == true then
  4748. UNANCHOR = false
  4749. for i = 1, 10 do
  4750. ApplyAoE(TORSO.Position+VT(0,1,0),10+(2*i),15,15,45,true,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  4751. end
  4752. CreateSound(EXPLOSIONLARGESOUND,TORSO,10,1,false)
  4753. CreateSound(EXPLOSIONSMALLSOUND,TORSO,10,1,false)
  4754. for i = 1, 15 do
  4755. WACKYEFFECT({Time = 40+(i*5), EffectType = "Ring", Size = VT(0,0,0), Size2 = VT(70,70,0), Transparency = 0.8, Transparency2 = 1, CFrame = CF(TORSO.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = MRANDOM(-15,15)/15, RotationY = MRANDOM(-15,15)/15, RotationZ = MRANDOM(-15,15)/15, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4756. end
  4757. WELD:remove()
  4758. wait(0.3)
  4759. UNANCHOR = true
  4760. else
  4761. WELD:remove()
  4762. end
  4763. end
  4764. end
  4765. for _, c in pairs(Character:GetChildren()) do
  4766. if c:IsA("BasePart") and c ~= RootPart then
  4767. c.Transparency = 0
  4768. end
  4769. end
  4770. RootPart.Velocity = VT(0,0,0)
  4771. ATTACK = false
  4772. Rooted = false
  4773. end
  4774. end
  4775.  
  4776. function Spitter()
  4777. ATTACK = true
  4778. Rooted = true
  4779. local GYRO = IT("BodyGyro",RootPart)
  4780. GYRO.D = 20
  4781. GYRO.P = 4000
  4782. GYRO.MaxTorque = VT(40000,40000,40000)
  4783. local POSITION = IT("BodyPosition",RootPart)
  4784. POSITION.Position = RootPart.Position+VT(0,2,0)
  4785. POSITION.D = 450
  4786. POSITION.P = 40000
  4787. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4788. CreateSound(CHARGE,RightArm,6,0.8,false)
  4789. coroutine.resume(coroutine.create(function()
  4790. repeat
  4791. Swait()
  4792. GYRO.CFrame = CF(RootPart.Position,Mouse.Hit.p)
  4793. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(24)), 2 / Animation_Speed)
  4794. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(-24)), 1 / Animation_Speed)
  4795. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, -0.3) * ANGLES(RAD(90), RAD(0), RAD(24)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4796. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.45, 0.75, 0) * ANGLES(RAD(-25), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4797. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(75), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4798. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4799. until ATTACK == false
  4800. GYRO:remove()
  4801. POSITION:remove()
  4802. end))
  4803. local FIREBALL = CreatePart(3, Effects, "Neon", 0, 0, BRICKC("Bright red"), "Orb", VT(0,0,0), true)
  4804. MakeForm(FIREBALL,"Ball")
  4805. FIREBALL.CFrame = RightArm.CFrame*CF(0,-1,0)
  4806. local CORE = IT("Attachment",FIREBALL)
  4807. local LOOP = 0
  4808. repeat
  4809. Swait()
  4810. LOOP = LOOP + 1
  4811. if LOOP == 20 then
  4812. LOOP = 0
  4813. WACKYEFFECT({Time = 45, EffectType = "Swirl", Size = VT(0,0,0), Size2 = VT(FIREBALL.Size.X,FIREBALL.Size.X/2,FIREBALL.Size.X)*3, Transparency = 0.5, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = FIREBALL.Position-VT(0,FIREBALL.Size.Y/4,0), RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4814. end
  4815. if FIREBALL.Size.X < 20 then
  4816. FIREBALL.Size = FIREBALL.Size + VT(0.1,0.1,0.1)
  4817. end
  4818. FIREBALL.CFrame = RightArm.CFrame*CF(0,-1-FIREBALL.Size.Z/2,0)
  4819. until KEYHOLD == false and FIREBALL.Size.X >= 10
  4820. CreateSound(FIREBALLSOUND,FIREBALL,10,0.8,false)
  4821. coroutine.resume(coroutine.create(function()
  4822. FIREBALL.CFrame = CF(FIREBALL.Position,Mouse.Hit.p)
  4823. local RANGE = 75
  4824. for i = 1, 600 do
  4825. LOOP = LOOP + 1
  4826. if LOOP == 20 then
  4827. LOOP = 0
  4828. ApplyAoE(FIREBALL.Position,FIREBALL.Size.X*5,5,25,0,false)
  4829. WACKYEFFECT({Time = 45, EffectType = "Swirl", Size = VT(0,0,0), Size2 = VT(FIREBALL.Size.X,FIREBALL.Size.X/2,FIREBALL.Size.X)*3, Transparency = 0.5, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(0),RAD(MRANDOM(0,360)),RAD(0)), MoveToPos = FIREBALL.Position-VT(0,FIREBALL.Size.Y/4,0), RotationX = 0, RotationY = 15, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = nil, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4830. end
  4831. Swait()
  4832. FIREBALL.CFrame = CF(FIREBALL.Position,FIREBALL.CFrame*CF(0,-0.001,-1).p)*CF(0,0,-0.2)
  4833. local HIT,HITPOS,NORMAL = Raycast(FIREBALL.Position, FIREBALL.CFrame.lookVector, FIREBALL.Size.X/2.5, Character)
  4834. if HIT then
  4835. ApplyAoE(FIREBALL.Position,FIREBALL.Size.X*12,75,90,375,true,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  4836. CreateSound(EXPLOSIONLARGESOUND,FIREBALL,10,1,false)
  4837. CreateSound(EXPLOSIONSMALLSOUND,FIREBALL,10,1,false)
  4838. for i = 1, 3 do
  4839. WACKYEFFECT({Time = 40, EffectType = "Sphere", Size = VT(0,0,0), Size2 = FIREBALL.Size*MRANDOM(18,25), Transparency = 0, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4840. end
  4841. for i = 1, 3 do
  4842. WACKYEFFECT({Time = 60, EffectType = "Sphere", Size = VT(0,0,0), Size2 = FIREBALL.Size*MRANDOM(18,25), Transparency = 0, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4843. end
  4844. for i = 1, 15 do
  4845. WACKYEFFECT({Time = 40+(i*5), EffectType = "Ring", Size = VT(0,0,0), Size2 = VT(FIREBALL.Size.X*10,FIREBALL.Size.X*10,0), Transparency = 0.8, Transparency2 = 1, CFrame = CF(FIREBALL.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = MRANDOM(-15,15)/15, RotationY = MRANDOM(-15,15)/15, RotationZ = MRANDOM(-15,15)/15, Material = "Neon", Color = C3(1,1,1), SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4846. end
  4847. break
  4848. end
  4849. end
  4850. for i = 1, 10 do
  4851. Swait()
  4852. FIREBALL.Mesh.Scale = FIREBALL.Mesh.Scale - VT(0.1,0.1,0.1)
  4853. end
  4854. Debris:AddItem(FIREBALL,5)
  4855. end))
  4856. wait(0.5)
  4857. ATTACK = false
  4858. Rooted = false
  4859. end
  4860.  
  4861. function Devastor()
  4862. ATTACK = true
  4863. Rooted = true
  4864. local POSITION = IT("BodyPosition",RootPart)
  4865. POSITION.Position = RootPart.Position+VT(0,2,0)
  4866. POSITION.D = 450
  4867. POSITION.P = 40000
  4868. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4869. CreateSound(CHARGE,Torso,6,1,false)
  4870. local NEWANIM = false
  4871. coroutine.resume(coroutine.create(function()
  4872. repeat
  4873. Swait()
  4874. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4875. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-25 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4876. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, 0) * ANGLES(RAD(170), RAD(0), RAD(-12)) * RIGHTSHOULDERC0, 0.15 / Animation_Speed)
  4877. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.75, 0) * ANGLES(RAD(170), RAD(0), RAD(12)) * LEFTSHOULDERC0, 0.15 / Animation_Speed)
  4878. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4879. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  4880. until ATTACK == false or NEWANIM == true
  4881. if NEWANIM == true then
  4882. local GYRO = IT("BodyGyro",RootPart)
  4883. GYRO.D = 20
  4884. GYRO.P = 4000
  4885. GYRO.MaxTorque = VT(40000,40000,40000)
  4886. repeat
  4887. Swait()
  4888. GYRO.CFrame = CF(RootPart.Position,Mouse.Hit.p)
  4889. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(24)), 2 / Animation_Speed)
  4890. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(-24)), 1 / Animation_Speed)
  4891. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.75, -0.3) * ANGLES(RAD(90), RAD(0), RAD(24)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  4892. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.45, 0.75, 0) * ANGLES(RAD(-25), RAD(0), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  4893. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(0), RAD(75), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4894. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  4895. until ATTACK == false
  4896. GYRO:remove()
  4897. end
  4898. POSITION:remove()
  4899. end))
  4900. local ORB = CreatePart(3, Effects, "Neon", 0, 0, BRICKC("Bright red"), "Orb", VT(0,0,0), true)
  4901. MakeForm(ORB,"Ball")
  4902. ORB.CFrame = CF(RootPart.Position+VT(0,8,0))
  4903. local A = IT("Attachment",ORB)
  4904. local LOOP = 0
  4905. for i = 1, 200 do
  4906. Swait()
  4907. LOOP = LOOP + 1
  4908. if LOOP >= 30 then
  4909. LOOP = 0
  4910. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(ORB.Size.X,ORB.Size.X/5,ORB.Size.X), Transparency = 0, Transparency2 = 1, CFrame = CF(RootPart.Position-VT(0,3.5,0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4911. end
  4912. ORB.Size = ORB.Size + VT(0.2,0.2,0.2)
  4913. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  4914. end
  4915. RightArm.Transparency = 1
  4916. LeftArm.Transparency = 1
  4917. for _, c in pairs(Character:GetChildren()) do
  4918. if c:IsA("BasePart") then
  4919. end
  4920. end
  4921. CreateSound(CHARGE,Torso,6,0.5,false)
  4922. for i = 1, 200 do
  4923. Swait()
  4924. LOOP = LOOP + 1
  4925. if LOOP >= 30 then
  4926. LOOP = 0
  4927. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(ORB.Size.X,ORB.Size.X/5,ORB.Size.X), Transparency = 0, Transparency2 = 1, CFrame = CF(RootPart.Position-VT(0,3.5,0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4928. end
  4929. ORB.Size = ORB.Size + VT(0.2,0.2,0.2)
  4930. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  4931. end
  4932. for _, c in pairs(Character:GetChildren()) do
  4933. if c:IsA("BasePart") then
  4934. c.Transparency = 1
  4935. end
  4936. end
  4937. for i = 1, 400 do
  4938. Swait()
  4939. LOOP = LOOP + 1
  4940. if LOOP >= 30 then
  4941. LOOP = 0
  4942. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(ORB.Size.X,ORB.Size.X/5,ORB.Size.X), Transparency = 0, Transparency2 = 1, CFrame = CF(RootPart.Position-VT(0,3.5,0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4943. end
  4944. ORB.Size = ORB.Size + VT(0.2,0.2,0.2)
  4945. ORB.CFrame = CF(RootPart.Position+VT(0,8+(ORB.Size.Y/2),0))
  4946. end
  4947. wait(0.5)
  4948. CreateSound(FIREBALLSOUND,Effects,4,1,false)
  4949. coroutine.resume(coroutine.create(function()
  4950. ORB.CFrame = CF(ORB.Position,Mouse.Hit.p)
  4951. for i = 1, 1200 do
  4952. Swait()
  4953. ORB.CFrame = ORB.CFrame*CF(0,0,-1)
  4954. local HIT,HITPOS = Raycast(ORB.Position, ORB.CFrame.lookVector, ORB.Size.X/2.5, Character)
  4955. if HIT then
  4956. break
  4957. end
  4958. end
  4959. for i = 1, 6 do
  4960. ApplyAoE(ORB.Position,ORB.Size.X*10,75,90,375,true,{SHAKE = 4, TIMER = 65, DOESFADE = true})
  4961. CreateSound(EXPLOSIONLARGESOUND,Effects,2,1,false)
  4962. CreateSound(EXPLOSIONSMALLSOUND,Effects,4,1,false)
  4963. for i = 1, 3 do
  4964. WACKYEFFECT({Time = 160, EffectType = "Sphere", Size = VT(0,0,0), Size2 = ORB.Size*MRANDOM(5,20), Transparency = 0.6, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Bright red".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4965. end
  4966. for i = 1, 3 do
  4967. WACKYEFFECT({Time = 120, EffectType = "Sphere", Size = VT(0,0,0), Size2 = ORB.Size*MRANDOM(5,20), Transparency = 0.6, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)))*CF(0,0,45), MoveToPos = nil, RotationX = 0, RotationY = 0, RotationZ = 0, Material = "Neon", Color = BRICKC"Crimson".Color, SoundID = EXPLOSIONMEDIUMSOUND, SoundPitch = MRANDOM(8,12)/10, SoundVolume = MRANDOM(5,10)})
  4968. end
  4969. for i = 1, 15 do
  4970. WACKYEFFECT({Time = 120+(i*5), EffectType = "Wave", Size = VT(0,0,0), Size2 = VT(ORB.Size.X*30,15,ORB.Size.X*30), Transparency = 0.8, Transparency2 = 1, CFrame = CF(ORB.Position)*ANGLES(RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360)),RAD(MRANDOM(0,360))), MoveToPos = nil, RotationX = MRANDOM(-15,15)/15, RotationY = MRANDOM(-15,15)/15, RotationZ = MRANDOM(-15,15)/15, Material = "Neon", Color = BRICKC"Bright blue".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  4971. end
  4972. wait(1)
  4973. end
  4974. for i = 1, 10 do
  4975. Swait()
  4976. ORB.Mesh.Scale = ORB.Mesh.Scale - VT(0.1,0.1,0.1)
  4977. end
  4978. Debris:AddItem(ORB,5)
  4979. end))
  4980. wait(1)
  4981. refit()
  4982. ATTACK = false
  4983. Rooted = false
  4984. end
  4985.  
  4986. --//=================================\\
  4987. --|| MISC
  4988. --\\=================================//
  4989.  
  4990. function Jupiter()
  4991. ATTACK = true
  4992. Rooted = true
  4993. local POSITION = IT("BodyPosition",RootPart)
  4994. POSITION.Position = RootPart.Position+VT(0,0.2,0)
  4995. POSITION.D = 450
  4996. POSITION.P = 40000
  4997. POSITION.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  4998. coroutine.resume(coroutine.create(function()
  4999. repeat
  5000. Swait()
  5001. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -1) * ANGLES(RAD(0), RAD(-5), RAD(-15)), 2 / Animation_Speed)
  5002. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0) * ANGLES(RAD(15), RAD(0), RAD(15)), 0.5 / Animation_Speed)
  5003. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.55 + 0.05 * COS(SINE / 12), 0) * ANGLES(RAD(15), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 2 / Animation_Speed)
  5004. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(-12)) * LEFTSHOULDERC0, 2 / Animation_Speed)
  5005. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.35, -0.25) * ANGLES(RAD(35), RAD(35), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(0)), 2 / Animation_Speed)
  5006. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1.5, -0.4) * ANGLES(RAD(0), RAD(-75), RAD(0)) * ANGLES(RAD(-5), RAD(0), RAD(90)), 2 / Animation_Speed)
  5007. until ATTACK == false
  5008. end))
  5009. wait(0.5)
  5010. repeat wait() until KEYHOLD == false
  5011. WACKYEFFECT({Time = 25, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(35,4,35), Transparency = 0.3, Transparency2 = 1, CFrame = CF(RootPart.Position-VT(0,3,0)), MoveToPos = nil, RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Shamrock".Color, SoundID = 431105970, SoundPitch = 1, SoundVolume = 10})
  5012. POSITION:remove()
  5013. RootPart.Velocity = VT(0,150,0)
  5014. ATTACK = false
  5015. Rooted = false
  5016. end
  5017.  
  5018. function Taunt()
  5019. ATTACK = true
  5020. Rooted = true
  5021. local TAUNT = CreateSound(159882303,Torso,10,1,false)
  5022. coroutine.resume(coroutine.create(function()
  5023. repeat
  5024. Swait()
  5025. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5026. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(25 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5027. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.15, 0.75, -0.5) * ANGLES(RAD(100), RAD(0), RAD(-70)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5028. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.15, 0.25, -0.5) * ANGLES(RAD(90), RAD(0), RAD(80)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5029. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5030. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-80), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5031. until ATTACK == false
  5032. end))
  5033. repeat wait() until TAUNT.Playing == false
  5034. ATTACK = false
  5035. Rooted = false
  5036. end
  5037.  
  5038. --//=================================\\
  5039. --|| ASSIGN THINGS TO KEYS
  5040. --\\=================================//
  5041.  
  5042. function MouseDown(Mouse)
  5043. HOLD = true
  5044. if ATTACK == false then
  5045. end
  5046. end
  5047.  
  5048. function MouseUp(Mouse)
  5049. HOLD = false
  5050. end
  5051.  
  5052. local MUSIC = CreateSound(1416617454,Character,3,1,true)
  5053.  
  5054. function KeyDown(Key)
  5055. KEYHOLD = true
  5056. if ATTACK == false and FULLREGEN == false then
  5057. if Key == "z" then
  5058. Fireball()
  5059. end
  5060.  
  5061. if Key == "v" and SEARING == false then
  5062. SearingOrb()
  5063. end
  5064.  
  5065. if Key == "q" and SEARING == false then
  5066. Shroud()
  5067. end
  5068.  
  5069. if Key == "x" and SEARING == false then
  5070. Jupiter()
  5071. wait(2)
  5072. Devastor()
  5073. end
  5074.  
  5075. if Key == "e" then
  5076. Spitter()
  5077. end
  5078.  
  5079. if Key == "j" then
  5080. Jupiter()
  5081. end
  5082.  
  5083. if Key == "t" and SEARING == false then
  5084. Taunt()
  5085. end
  5086.  
  5087. if Key == "" then
  5088. if POSEIDON == false then
  5089. POSEIDON = true
  5090. CreateSound(POSEIDONSOUND,Torso,5,MRANDOM(8,12)/10,false)
  5091. else
  5092. POSEIDON = false
  5093. end
  5094. end
  5095. end
  5096.  
  5097. if Key == "w" and ATTACK == false and SEARING == true and VALUE2 == false then
  5098. repeat
  5099. VALUE2 = true
  5100. Swait()
  5101. BODYPOS.Position = RootPart.CFrame*CF(0,0,-5).p
  5102. until KEYHOLD == false
  5103. VALUE2 = false
  5104. end
  5105.  
  5106. if string.byte(Key) == 50 and ATTACK == false then
  5107. if Speed == 16 then
  5108. Speed = 60
  5109. elseif Speed == 60 then
  5110. Speed = 16
  5111. end
  5112. end
  5113.  
  5114. if Key == "1" then
  5115. MUSIC:Play()
  5116. CHOSENSONG = CHOSENSONG + 1
  5117. if CHOSENSONG > #SONGS then
  5118. CHOSENSONG = 1
  5119. end
  5120. end
  5121. end
  5122.  
  5123. function KeyUp(Key)
  5124. KEYHOLD = false
  5125. end
  5126.  
  5127. Mouse.Button1Down:connect(function(NEWKEY)
  5128. MouseDown(NEWKEY)
  5129. end)
  5130. Mouse.Button1Up:connect(function(NEWKEY)
  5131. MouseUp(NEWKEY)
  5132. end)
  5133. Mouse.KeyDown:connect(function(NEWKEY)
  5134. KeyDown(NEWKEY)
  5135. end)
  5136. Mouse.KeyUp:connect(function(NEWKEY)
  5137. KeyUp(NEWKEY)
  5138. end)
  5139.  
  5140. --//=================================\\
  5141. --\\=================================//
  5142.  
  5143. function unanchor()
  5144. if UNANCHOR == true then
  5145. for _, c in pairs(Character:GetChildren()) do
  5146. if c:IsA("BasePart") then
  5147. c.Anchored = false
  5148. end
  5149. end
  5150. else
  5151. for _, c in pairs(Character:GetChildren()) do
  5152. if c:IsA("BasePart") then
  5153. c.Anchored = true
  5154. end
  5155. end
  5156. end
  5157. end
  5158.  
  5159. --//=================================\\
  5160. --|| WRAP THE WHOLE SCRIPT UP
  5161. --\\=================================//
  5162.  
  5163. Humanoid.Changed:connect(function(Jump)
  5164. if Jump == "Jump" and (Disable_Jump == true) then
  5165. Humanoid.Jump = false
  5166. end
  5167. end)
  5168.  
  5169. local LOOP = 0
  5170.  
  5171. while true do
  5172. Swait()
  5173. if Character:FindFirstChildOfClass("Humanoid") == nil then
  5174. Humanoid = IT("Humanoid",Character)
  5175. end
  5176. Effects.Parent = Character
  5177. script.Parent = WEAPONGUI
  5178. ANIMATE.Parent = nil
  5179. for _,v in next, Humanoid:GetPlayingAnimationTracks() do
  5180. v:Stop();
  5181. end
  5182. SINE = SINE + CHANGE
  5183. local TORSOVELOCITY = (RootPart.Velocity * VT(1, 0, 1)).magnitude
  5184. local TORSOVERTICALVELOCITY = RootPart.Velocity.y
  5185. Ignore = {Torso,RootPart,RightLeg,LeftLeg,RightLeg,Head,RightArm,LeftArm,Effects}
  5186. local Ignore = ((type(Ignore) == "table" and Ignore) or {Ignore})
  5187. local HITFLOOR,HITPOS = CastProperRay(RootPart.Position, RootPart.Position-VT(0,15,0), 4, Ignore)
  5188. local WALKSPEEDVALUE = 5
  5189. if SEARING == false then
  5190. if ANIM == "Walk" and TORSOVELOCITY > 1 and SEARING == false and Rooted == false then
  5191. if Humanoid.WalkSpeed <= 20 then
  5192. RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, -0.05 * COS(SINE / (WALKSPEEDVALUE / 2))) * ANGLES(RAD(0), RAD(0) - RootPart.RotVelocity.Y / 75, RAD(0)), 2 * 1 / Animation_Speed)
  5193. Neck.C1 = Clerp(Neck.C1, CF(0, -0.5, 0) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(2.5 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0) - Head.RotVelocity.Y / 30), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  5194. RightHip.C1 = Clerp(RightHip.C1, CF(0.5, 0.875 - 0.125 * SIN(SINE / WALKSPEEDVALUE) - 0.05 * COS(SINE / WALKSPEEDVALUE*2), -0.125 * COS(SINE / WALKSPEEDVALUE) +0.2 -0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0) - RightLeg.RotVelocity.Y / 75, RAD(0), RAD(45 * COS(SINE / WALKSPEEDVALUE))), 0.5 / Animation_Speed)
  5195. LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5, 0.875 + 0.125 * SIN(SINE / WALKSPEEDVALUE) - 0.05 * COS(SINE / WALKSPEEDVALUE*2), 0.125 * COS(SINE / WALKSPEEDVALUE) +0.2 +0.2 * COS(SINE / WALKSPEEDVALUE)) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0) + LeftLeg.RotVelocity.Y / 75, RAD(0), RAD(45 * COS(SINE / WALKSPEEDVALUE))), 0.5 / Animation_Speed)
  5196. elseif SEARING == false and Humanoid.WalkSpeed > 20 and Rooted == false then
  5197. RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, 0 * COS(SINE / (WALKSPEEDVALUE / 2)) ) * ANGLES(RAD(0), RAD(0) - RootPart.RotVelocity.Y / 75, RAD(0)), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  5198. Neck.C1 = Clerp(Neck.C1, CF(0 , -0.5 , 0 ) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(2.5 * SIN(SINE / (WALKSPEEDVALUE / 2))), RAD(0), RAD(0) - Head.RotVelocity.Y / 30), 0.2 * (Humanoid.WalkSpeed / 16) / Animation_Speed)
  5199. end
  5200. elseif (ANIM ~= "Walk") or (TORSOVELOCITY < 1) or SEARING == true or Rooted == true then
  5201. RootJoint.C1 = Clerp(RootJoint.C1, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  5202. Neck.C1 = Clerp(Neck.C1, CF(0, -0.5, 0) * ANGLES(RAD(-90), RAD(0), RAD(180)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  5203. RightHip.C1 = Clerp(RightHip.C1, CF(0.5, 1, 0) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  5204. LeftHip.C1 = Clerp(LeftHip.C1, CF(-0.5, 1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  5205. end
  5206. if TORSOVERTICALVELOCITY > 1 and HITFLOOR == nil then
  5207. ANIM = "Jump"
  5208. if ATTACK == false then
  5209. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  5210. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(-20), RAD(0), RAD(0)), 1 / Animation_Speed)
  5211. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.75, 0) * ANGLES(RAD(-5), RAD(0), RAD(-5)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5212. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.75, 0) * ANGLES(RAD(-5), RAD(0), RAD(5)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5213. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.3) * ANGLES(RAD(0), RAD(80), RAD(0)) * ANGLES(RAD(2), RAD(0), RAD(0)), 1 / Animation_Speed)
  5214. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.3) * ANGLES(RAD(0), RAD(-80), RAD(0)) * ANGLES(RAD(2), RAD(0), RAD(0)), 1 / Animation_Speed)
  5215. end
  5216. elseif TORSOVERTICALVELOCITY < -1 and HITFLOOR == nil then
  5217. ANIM = "Fall"
  5218. if ATTACK == false then
  5219. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0) * ANGLES(RAD(0), RAD(0), RAD(8*COS(SINE / 6))), 1 / Animation_Speed)
  5220. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(-8*COS(SINE / 6))), 1 / Animation_Speed)
  5221. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.85, 0) * ANGLES(RAD(0), RAD(0), RAD(110)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5222. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.85, 0) * ANGLES(RAD(0), RAD(0), RAD(-110)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5223. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, -0.3) * ANGLES(RAD(0), RAD(80), RAD(0)) * ANGLES(RAD(-10), RAD(0), RAD(0)), 1 / Animation_Speed)
  5224. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, -0.3) * ANGLES(RAD(0), RAD(-80), RAD(0)) * ANGLES(RAD(-10), RAD(0), RAD(0)), 1 / Animation_Speed)
  5225. end
  5226. elseif TORSOVELOCITY < 1 and HITFLOOR ~= nil then
  5227. ANIM = "Idle"
  5228. if ATTACK == false then
  5229. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0 - 0.05 * COS(SINE / 12), 0 + 0.05 * COS(SINE / 12)) * ANGLES(RAD(-2 + 2 * COS(SINE / 12)), RAD(0), RAD(25)), 1 / Animation_Speed)
  5230. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0 - 2.5 * SIN(SINE / 12)), RAD(0), RAD(-25)), 1 / Animation_Speed)
  5231. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.45, 0.70, 0.05) * ANGLES(RAD(-15 - 2 * COS(SINE / 12)), RAD(-25), RAD(-10 - 1 * COS(SINE / 12))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5232. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.45, 0.70, 0.05) * ANGLES(RAD(-15 - 1 * COS(SINE / 12)), RAD(25), RAD(20 - 1 * COS(SINE / 12))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5233. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(-2 + 2 * COS(SINE / 12)), RAD(50), RAD(0)) * ANGLES(RAD(-2), RAD(0), RAD(0)), 1 / Animation_Speed)
  5234. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(-2 + 2 * COS(SINE / 12)), RAD(-74), RAD(0)) * ANGLES(RAD(-2), RAD(0), RAD(0)), 1 / Animation_Speed)
  5235. end
  5236. elseif TORSOVELOCITY > 1 and HITFLOOR ~= nil then
  5237. ANIM = "Walk"
  5238. if ATTACK == false then
  5239. if Humanoid.WalkSpeed <= 20 then
  5240. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, -0.1) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5241. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1) - 1)) * ANGLES(RAD(0), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5242. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.70, 0) * ANGLES(RAD(30 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(0)) * RIGHTSHOULDERC0, 0.85 / Animation_Speed)
  5243. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.70, 0) * ANGLES(RAD(-30 * COS(SINE / WALKSPEEDVALUE)), RAD(0), RAD(0)) * LEFTSHOULDERC0, 0.85 / Animation_Speed)
  5244. RightHip.C0 = Clerp(RightHip.C0, CF(1 , -1, 0) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(-15)), 2 / Animation_Speed)
  5245. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(15)), 2 / Animation_Speed)
  5246. elseif Humanoid.WalkSpeed > 20 then
  5247. RootJoint.C0 = Clerp(RootJoint.C0,ROOTC0 * CF(0, 0, 1 + 0.5 * COS(SINE / 12)) * ANGLES(RAD(15), RAD(0), RAD(0)), 1 / Animation_Speed)
  5248. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0, 0 + ((1.1) - 1)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  5249. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.25, 0.5, 0.5) * ANGLES(RAD(-35), RAD(-25 + 2.5 * SIN(SINE / WALKSPEEDVALUE)), RAD(-55 + 2.5 * SIN(SINE / WALKSPEEDVALUE))) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5250. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.25, 0.5, 0.5) * ANGLES(RAD(-35), RAD(25 - 2.5 * SIN(SINE / WALKSPEEDVALUE)), RAD(55 - 2.5 * SIN(SINE / WALKSPEEDVALUE))) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5251. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5 - 0.05 * COS(SINE / 12), -0.5) * ANGLES(RAD(0), RAD(90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5252. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -0.8 - 0.05 * COS(SINE / 12), -0.01) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(-8), RAD(0), RAD(0)), 0.15 / Animation_Speed)
  5253. end
  5254. end
  5255. end
  5256. elseif SEARING == true then
  5257. if APPLYGYRO == true then
  5258. if VALUE2 == false and DIRECTTURN == false then
  5259. if GYRO ~= nil then
  5260. GYRO.MaxTorque = VT(0,40000,0)
  5261. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  5262. end
  5263. else
  5264. if GYRO ~= nil then
  5265. GYRO.MaxTorque = VT(80000,40000,80000)
  5266. GYRO.cframe = CF(RootPart.Position,Mouse.Hit.p)
  5267. end
  5268. end
  5269. end
  5270. if VALUE2 == false and ATTACK == false then
  5271. ANIM = "IdleFlight"
  5272. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0 + 1 * SIN(SINE / 24)) * ANGLES(RAD(0), RAD(0), RAD(0)), 2 / Animation_Speed)
  5273. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(20), RAD(0), RAD(0)), 1 / Animation_Speed)
  5274. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.75, 0) * ANGLES(RAD(0), RAD(-15), RAD(25)) * RIGHTSHOULDERC0, 1 / Animation_Speed)
  5275. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.75, 0) * ANGLES(RAD(0), RAD(15), RAD(-25)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5276. RightHip.C0 = Clerp(RightHip.C0, CF(1, -0.5, -0.5) * ANGLES(RAD(0), RAD(75), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  5277. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(0), RAD(-90), RAD(0)) * ANGLES(RAD(0), RAD(0), RAD(0)), 1 / Animation_Speed)
  5278. elseif VALUE2 == true and ATTACK == false then
  5279. ANIM = "Flight"
  5280. RootJoint.C0 = Clerp(RootJoint.C0, ROOTC0 * CF(0, 0, 0 + 1 * SIN(SINE / 24)) * ANGLES(RAD(65), RAD(0), RAD(0)), 1 / Animation_Speed)
  5281. Neck.C0 = Clerp(Neck.C0, NECKC0 * CF(0, 0 , 0 + ((1) - 1)) * ANGLES(RAD(-20), RAD(0), RAD(0)), 1 / Animation_Speed)
  5282. RightShoulder.C0 = Clerp(RightShoulder.C0, CF(1.5, 0.75, 0) * ANGLES(RAD(-15), RAD(0), RAD(15)) * RIGHTSHOULDERC0,1 / Animation_Speed)
  5283. LeftShoulder.C0 = Clerp(LeftShoulder.C0, CF(-1.5, 0.75, 0) * ANGLES(RAD(-15), RAD(0), RAD(-15)) * LEFTSHOULDERC0, 1 / Animation_Speed)
  5284. RightHip.C0 = Clerp(RightHip.C0, CF(1, -1, 0) * ANGLES(RAD(-15), RAD(65), RAD(0)) * ANGLES(RAD(-10), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  5285. LeftHip.C0 = Clerp(LeftHip.C0, CF(-1, -1, 0) * ANGLES(RAD(-15), RAD(-65), RAD(0)) * ANGLES(RAD(-10), RAD(0), RAD(0)), 0.2 / Animation_Speed)
  5286. end
  5287. end
  5288. unanchor()
  5289. Humanoid.MaxHealth = "inf"
  5290. Humanoid.Health = "inf"
  5291. if Rooted == false then
  5292. Disable_Jump = false
  5293. Humanoid.WalkSpeed = Speed
  5294. elseif Rooted == true then
  5295. Disable_Jump = true
  5296. Humanoid.WalkSpeed = 0
  5297. end
  5298. refit()
  5299. if Head:FindFirstChild("face") then
  5300. Head.face.Texture = "rbxassetid://608798717"
  5301. Head.face.Transparency = Head.Transparency
  5302. end
  5303. for _, c in pairs(Character:GetDescendants()) do
  5304. if c.ClassName == "Attachment" and c ~= BACKATTACHMENT1 and c ~= BACKATTACHMENT2 and c.Parent.Parent ~= Effects then
  5305. c:remove()
  5306. end
  5307. end
  5308. for _, c in pairs(Character:GetChildren()) do
  5309. if SEARING == true and c:IsA("BasePart") then
  5310. c.Transparency = 1
  5311. end
  5312. end
  5313. MUSIC.Parent = Character
  5314. MUSIC.SoundId = "rbxassetid://"..SONGS[CHOSENSONG]
  5315. MUSIC.Pitch = 1
  5316. if CHOSENSONG ~= 5 then
  5317. MUSIC.Volume = 2
  5318. else
  5319. MUSIC.Volume = 10
  5320. end
  5321. MUSIC.Playing = true
  5322. if POSEIDON == true and FULLREGEN == false then
  5323. LOOP = LOOP + 1
  5324. local FLOOR = CreatePart(3, SpecialEffects, "Neon", 0, 1, BRICKC("Pearl"), "Floor", VT(15,0,15), true)
  5325. FLOOR.CFrame = CF(HITPOS-VT(0,0.025,0))
  5326. FLOOR.CanCollide = true
  5327. Debris:AddItem(FLOOR,0.2)
  5328. local FLOOR = CreatePart(3, SpecialEffects, "Neon", 0, 1, BRICKC("Pearl"), "Floor", VT(15,0,15), true)
  5329. FLOOR.CFrame = CF(HITPOS-VT(0,0.025,0))*ANGLES(RAD(0),RAD(45),RAD(0))
  5330. FLOOR.CanCollide = true
  5331. Debris:AddItem(FLOOR,0.2)
  5332. if LOOP >= 5 then
  5333. LOOP = 0
  5334. WACKYEFFECT({Time = 15, EffectType = "Wave", Size = VT(5,0,5), Size2 = VT(15,1,15), Transparency = 0.7, Transparency2 = 1, CFrame = CF(HITPOS), MoveToPos = HITPOS+VT(0,0.45,0), RotationX = 0, RotationY = MRANDOM(-2,2)*15, RotationZ = 0, Material = "Neon", Color = BRICKC"Shamrock".Color, SoundID = nil, SoundPitch = nil, SoundVolume = nil})
  5335. end
  5336. end
  5337. RootJoint.Parent = RootPart
  5338. Humanoid.DisplayDistanceType = "None"
  5339. Humanoid.Name = "010101101"
  5340. end
  5341. --//=================================\\
  5342. --\\=================================//
  5343.  
  5344.  
  5345.  
  5346.  
  5347.  
  5348. --//====================================================\\--
  5349. --|| END OF SCRIPT
  5350. --\\====================================================//--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement