Advertisement
iPxter

Untitled

Jan 1st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 133.31 KB | None | 0 0
  1.  
  2. local Player = game.Players.localPlayer
  3. local Character = Player.Character
  4. local Player = game.Players.LocalPlayer
  5. local Character = Player.Character
  6. Character.Humanoid.MaxHealth = math.huge
  7. Character.Humanoid.Health = math.huge
  8. local Effects = {}
  9. local ShootEffects = {}
  10. local Humanoid = Character.Humanoid
  11. local mouse = Player:GetMouse()
  12. local m = Instance.new("Model", Character)
  13. m.Name = "WeaponModel"
  14. local LeftArm = Character["Left Arm"]
  15. local RightArm = Character["Right Arm"]
  16. local LeftLeg = Character["Left Leg"]
  17. local RightLeg = Character["Right Leg"]
  18. local Head = Character.Head
  19. local Torso = Character.Torso
  20. local cam = game.Workspace.CurrentCamera
  21. local RootPart = Character.HumanoidRootPart
  22. local RootJoint = RootPart.RootJoint
  23. local equipped = false
  24. local hobb = 0
  25. local attack = false
  26. local Anim = "Idle"
  27. local idle = 0
  28. local attacktype = 1
  29. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  30. local velocity = RootPart.Velocity.y
  31. local sine = 0
  32. local change = 1
  33. local grabbed = false
  34. local cn = CFrame.new
  35. local mr = math.rad
  36. local angles = CFrame.Angles
  37. local ud = UDim2.new
  38. local c3 = Color3.new
  39. local Face = Head.face
  40. Humanoid.WalkSpeed = 20
  41. Humanoid.Animator.Parent = nil
  42. Character.Animate.Parent = nil
  43. local newMotor = function(part0, part1, c0, c1)
  44.  
  45. local w = Instance.new("Motor", part0)
  46. w.Part0 = part0
  47. w.Part1 = part1
  48. w.C0 = c0
  49. w.C1 = c1
  50. return w
  51. end
  52. Instance.new("ForceField", Character).Visible = false
  53. clerp = function(a, b, t)
  54.  
  55. return a:lerp(b, t)
  56. end
  57.  
  58. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  59. NeckCF = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  60. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  61. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  62. local RH = newMotor(Torso, RightLeg, CFrame.new(0.5, -2, 0), CFrame.new(0, 0, 0))
  63. local LH = newMotor(Torso, LeftLeg, CFrame.new(-0.5, -2, 0), CFrame.new(0, 0, 0))
  64. RootJoint.C1 = CFrame.new(0, 0, 0)
  65. RootJoint.C0 = CFrame.new(0, 0, 0)
  66. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  67. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  68. local rarmc1 = RW.C1
  69. local larmc1 = LW.C1
  70. local rlegc1 = RH.C1
  71. local llegc1 = LH.C1
  72. local resetc1 = false
  73. PlayAnimationFromTable = function(table, speed, bool)
  74.  
  75. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  76. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  77. RW.C0 = clerp(RW.C0, table[3], speed)
  78. LW.C0 = clerp(LW.C0, table[4], speed)
  79. RH.C0 = clerp(RH.C0, table[5], speed)
  80. LH.C0 = clerp(LH.C0, table[6], speed)
  81. if bool == true and resetc1 == false then
  82. resetc1 = true
  83. RootJoint.C1 = RootJoint.C1
  84. Torso.Neck.C1 = Torso.Neck.C1
  85. RW.C1 = rarmc1
  86. LW.C1 = larmc1
  87. RH.C1 = rlegc1
  88. LH.C1 = llegc1
  89. end
  90. end
  91.  
  92. local co1 = 0.2
  93. local co2 = 0.2
  94. local co3 = 0.2
  95. local co4 = 0.2
  96. local cooldown1 = 0
  97. local cooldown2 = 0
  98. local cooldown3 = 0
  99. local cooldown4 = 0
  100. local skillcolorscheme = BrickColor.new("Cyan").Color
  101. local scrn = Instance.new("ScreenGui", Player.PlayerGui)
  102. makeframe = function(par, trans, pos, size, color)
  103.  
  104. local frame = Instance.new("Frame", par)
  105. frame.BackgroundTransparency = trans
  106. frame.BorderSizePixel = 0
  107. frame.Position = pos
  108. frame.Size = size
  109. frame.BackgroundColor3 = color
  110. return frame
  111. end
  112.  
  113. makelabel = function(par, text)
  114.  
  115. local label = Instance.new("TextLabel", par)
  116. label.BackgroundTransparency = 1
  117. label.Size = UDim2.new(1, 0, 1, 0)
  118. label.Position = UDim2.new(0, 0, 0, 0)
  119. label.TextColor3 = Color3.new(255, 255, 255)
  120. label.TextStrokeTransparency = 0
  121. label.FontSize = Enum.FontSize.Size32
  122. label.Font = Enum.Font.SourceSansLight
  123. label.BorderSizePixel = 0
  124. label.TextScaled = true
  125. label.Text = text
  126. end
  127.  
  128. framesk1 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.85, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  129. framesk2 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.74, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  130. framesk3 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.63, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  131. framesk4 = makeframe(scrn, 0.5, UDim2.new(0.8, 0, 0.52, 0), UDim2.new(0.16, 0, 0.1, 0), skillcolorscheme)
  132. bar1 = makeframe(framesk1, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  133. bar2 = makeframe(framesk2, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  134. bar3 = makeframe(framesk3, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  135. bar4 = makeframe(framesk4, 0, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), skillcolorscheme)
  136. text1 = Instance.new("TextLabel", framesk1)
  137. text1.BackgroundTransparency = 1
  138. text1.Size = UDim2.new(1, 0, 1, 0)
  139. text1.Position = UDim2.new(0, 0, 0, 0)
  140. text1.TextColor3 = Color3.new(255, 255, 255)
  141. text1.TextStrokeTransparency = 0
  142. text1.FontSize = Enum.FontSize.Size18
  143. text1.Font = Enum.Font.SourceSansLight
  144. text1.BorderSizePixel = 0
  145. text1.TextScaled = true
  146. text1.Text = "[Z]\n Corrupted Bazooka"
  147. text2 = Instance.new("TextLabel", framesk2)
  148. text2.BackgroundTransparency = 1
  149. text2.Size = UDim2.new(1, 0, 1, 0)
  150. text2.Position = UDim2.new(0, 0, 0, 0)
  151. text2.TextColor3 = Color3.new(255, 255, 255)
  152. text2.TextStrokeTransparency = 0
  153. text2.FontSize = Enum.FontSize.Size18
  154. text2.Font = Enum.Font.SourceSansLight
  155. text2.BorderSizePixel = 0
  156. text2.TextScaled = true
  157. text2.Text = "[X]\n Dark Charger"
  158. text3 = Instance.new("TextLabel", framesk3)
  159. text3.BackgroundTransparency = 1
  160. text3.Size = UDim2.new(1, 0, 1, 0)
  161. text3.Position = UDim2.new(0, 0, 0, 0)
  162. text3.TextColor3 = Color3.new(255, 255, 255)
  163. text3.TextStrokeTransparency = 0
  164. text3.FontSize = Enum.FontSize.Size32
  165. text3.Font = Enum.Font.SourceSansLight
  166. text3.BorderSizePixel = 0
  167. text3.TextScaled = false
  168. text3.Text = "[C]\n Shadow Cannon"
  169. text4 = Instance.new("TextLabel", framesk4)
  170. text4.BackgroundTransparency = 1
  171. text4.Size = UDim2.new(1, 0, 1, 0)
  172. text4.Position = UDim2.new(0, 0, 0, 0)
  173. text4.TextColor3 = Color3.new(255, 255, 255)
  174. text4.TextStrokeTransparency = 0
  175. text4.FontSize = Enum.FontSize.Size18
  176. text4.Font = Enum.Font.SourceSansLight
  177. text4.BorderSizePixel = 0
  178. text4.TextScaled = true
  179. text4.Text = "[V]\n Invincible Nightmare"
  180. ArtificialHB = Instance.new("BindableEvent", Player.PlayerGui)
  181. ArtificialHB.Name = "Heartbeat"
  182. Player.PlayerGui:WaitForChild("Heartbeat")
  183. frame = 0.033333333333333
  184. tf = 0
  185. allowframeloss = false
  186. tossremainder = false
  187. lastframe = tick()
  188. Player.PlayerGui.Heartbeat:Fire()
  189. local gg = false
  190. game:GetService("RunService").Heartbeat:connect(function(s, p)
  191.  
  192. if Player.PlayerGui:FindFirstChild("Heartbeat") == nil then
  193. gg = true
  194. end
  195. if gg == true then
  196. return
  197. end
  198. tf = tf + s
  199. if frame <= tf then
  200. if allowframeloss then
  201. Player.PlayerGui.Heartbeat:Fire()
  202. lastframe = tick()
  203. else
  204. for i = 1, math.floor(tf / frame) do
  205. Player.PlayerGui.Heartbeat:Fire()
  206. end
  207. lastframe = tick()
  208. end
  209. if tossremainder then
  210. tf = 0
  211. else
  212. tf = tf - frame * math.floor(tf / frame)
  213. end
  214. end
  215. end
  216. )
  217. swait = function(num)
  218.  
  219. if num == 0 or num == nil then
  220. ArtificialHB.Event:wait()
  221. else
  222. for i = 0, num do
  223. ArtificialHB.Event:wait()
  224. end
  225. end
  226. end
  227.  
  228. local RbxUtility = LoadLibrary("RbxUtility")
  229. local Create = RbxUtility.Create
  230. RemoveOutlines = function(part)
  231.  
  232. part.TopSurface = 10
  233. end
  234.  
  235. CreateSound = function(id, par, vol, pit)
  236.  
  237. coroutine.resume(coroutine.create(function()
  238.  
  239. local sou = Instance.new("Sound", par or workspace)
  240. sou.Volume = vol
  241. sou.Pitch = pit or 1
  242. sou.SoundId = id
  243. swait()
  244. sou:play()
  245. game:GetService("Debris"):AddItem(sou, 6)
  246. end
  247. ))
  248. end
  249.  
  250. CreatePart = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  251.  
  252. local Part = Create("Part")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  253. RemoveOutlines(Part)
  254. return Part
  255. end
  256.  
  257. CreateMesh = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  258.  
  259. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  260. if Mesh == "SpecialMesh" then
  261. Msh.MeshType = MeshType
  262. Msh.MeshId = MeshId
  263. end
  264. return Msh
  265. end
  266.  
  267. CreateWeld = function(Parent, Part0, Part1, C0, C1)
  268.  
  269. local Weld = Create("Weld")({Parent = Parent, Part0 = Part0, Part1 = Part1, C0 = C0, C1 = C1})
  270. return Weld
  271. end
  272.  
  273. Handle = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "Handle", Vector3.new(0.200000003, 0.200000003, 1.10801423))
  274. HandleWeld = CreateWeld(m, Character["Right Arm"], Handle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0606536865, -1.06880665, -0.053850174, 0.999730885, -0.0130999982, 0.0191449989, -0.0131285042, -0.999912977, 0.00136399036, 0.0191254634, -0.00161496829, -0.999815762))
  275. CreateMesh("BlockMesh", Handle, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  276. FakeHandle = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Really black", "FakeHandle", Vector3.new(0.200000003, 0.200000003, 1.10801423))
  277. FakeHandleWeld = CreateWeld(m, Handle, FakeHandle, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 9.31322575e-10, 1.86264515e-09, 9.31322575e-10, 1.00000012, 2.91038305e-11, 1.86264515e-09, 2.91038305e-11, 1))
  278. CreateMesh("BlockMesh", FakeHandle, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  279. Hitbox = CreatePart(m, Enum.Material.SmoothPlastic, 0, 1, "Black", "Hitbox", Vector3.new(6.04899979, 0.200000003, 6.03399992))
  280. HitboxWeld = CreateWeld(m, FakeHandle, Hitbox, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0141906738, 7.62939453e-06, 0.0669403076, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  281. CreateMesh("BlockMesh", Hitbox, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 1))
  282. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  283. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.85997009, -1.90734863e-05, 0.0141906738, 0.961260498, 3.64240259e-06, -0.275641471, 3.78582627e-06, -1.00000012, -7.15954229e-09, -0.275641441, -1.03772618e-06, -0.961260557))
  284. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  285. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  286. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84391785, 1.52587891e-05, -0.00863647461, 0.587776005, 2.68220901e-06, -0.809023798, -4.56254929e-06, 1.00000012, -3.49245965e-10, 0.809023738, 3.69176269e-06, 0.587775886))
  287. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  288. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  289. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.86808014, 2.38418579e-06, 0.00830078125, -0.559193492, -6.94300979e-07, -0.82903707, 4.35858965e-07, 1.00000012, -1.13036367e-06, 0.82903707, -9.90927219e-07, -0.559193552))
  290. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  291. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  292. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.86782074, 1.76429749e-05, 0.00863647461, -0.587776005, -2.68220901e-06, 0.809023798, -4.56254929e-06, 1.00000012, -3.49245965e-10, -0.809023738, -3.69176269e-06, -0.587775886))
  293. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  294. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  295. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.86455536, 2.43186951e-05, -0.0119171143, 0.809012353, 2.03959644e-07, -0.587791741, -1.99023634e-06, 1.00000012, -2.39547808e-06, 0.587791622, 3.10782343e-06, 0.809012353))
  296. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  297. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  298. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.86489868, 2.33650208e-05, 0.0116729736, -0.788011253, -6.78095967e-06, -0.615660846, -6.26314431e-06, 1.00000012, -2.99766543e-06, 0.615660846, 1.49477273e-06, -0.788011253))
  299. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  300. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  301. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.85084534, 1.14440918e-05, -0.0139045715, 0.939691484, 5.68572432e-06, 0.342023343, -5.19026071e-06, 1.00000012, -2.36293999e-06, -0.342023402, 4.44706529e-07, 0.939691544))
  302. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  303. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  304. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84367371, 3.0040741e-05, 0.00827026367, -0.559193492, -6.94300979e-07, -0.82903707, 4.35858965e-07, 1.00000012, -1.13036367e-06, 0.82903707, -9.90927219e-07, -0.559193552))
  305. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  306. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 1.18188214))
  307. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, 0, 0, 1, 9.31322575e-10, 1.86264515e-09, 9.31322575e-10, 1.00000012, 2.91038305e-11, 1.86264515e-09, 2.91038305e-11, 1))
  308. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  309. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  310. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.86975098, 5.7220459e-06, -0.0050201416, 0.342017025, 2.15275213e-06, -0.939693868, -5.31971455e-06, 1.00000012, 3.5422272e-07, 0.939693809, 4.87826765e-06, 0.342016995))
  311. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  312. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  313. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84202576, 2.38418579e-05, -0.00498962402, 0.342017025, 2.15275213e-06, -0.939693868, -5.31971455e-06, 1.00000012, 3.5422272e-07, 0.939693809, 4.87826765e-06, 0.342016995))
  314. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  315. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  316. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.87003326, 6.19888306e-06, 0.00411987305, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  317. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  318. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  319. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84115601, 1.90734863e-05, -0.000457763672, 0.0348991975, -1.94690074e-07, -0.999390781, -6.48386776e-06, 1.00000012, -4.21277946e-07, 0.9993909, 6.49411231e-06, 0.034899205))
  320. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  321. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  322. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84715271, -1.28746033e-05, -0.0119247437, 0.809012353, 2.03959644e-07, -0.587791741, -1.99023634e-06, 1.00000012, -2.39547808e-06, 0.587791622, 3.10782343e-06, 0.809012353))
  323. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  324. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  325. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84683228, 5.7220459e-06, 0.0116577148, -0.788011253, -6.78095967e-06, -0.615660846, -6.26314431e-06, 1.00000012, -2.99766543e-06, 0.615660846, 1.49477273e-06, -0.788011253))
  326. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  327. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  328. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.85539246, -9.53674316e-07, 0.0147705078, -0.99939096, -8.62684101e-06, -0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, 0.0348977894, 1.24389771e-07, -0.9993909))
  329. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  330. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  331. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.85174561, 9.05990601e-06, 0.0141448975, -0.961260498, -3.64240259e-06, 0.275641471, -3.78582627e-06, 1.00000012, 7.15954229e-09, -0.275641441, -1.03772618e-06, -0.961260557))
  332. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  333. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  334. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.84172058, 7.62939453e-06, 0.00410461426, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  335. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  336. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  337. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.87061691, -3.33786011e-06, -0.00048828125, 0.0348991975, -1.94690074e-07, -0.999390781, -6.48386776e-06, 1.00000012, -4.21277946e-07, 0.9993909, 6.49411231e-06, 0.034899205))
  338. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  339. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  340. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0119552612, 1.28746033e-05, -3.94950104, 0.587784708, 9.48831439e-06, 0.809017479, -8.12485814e-06, 1.00000012, -5.82361827e-06, -0.809017539, -3.14880162e-06, 0.587784648))
  341. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  342. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  343. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00859069824, 1.62124634e-05, 3.92887115, 0.809015155, 4.64636832e-06, 0.587787926, -5.60190529e-06, 1.00000012, -1.93627784e-07, -0.587787926, -3.13622877e-06, 0.809015155))
  344. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  345. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  346. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00868225098, -2.86102295e-06, -3.95278168, 0.809015155, 4.64636832e-06, 0.587787926, -5.60190529e-06, 1.00000012, -1.93627784e-07, -0.587787926, -3.13622877e-06, 0.809015155))
  347. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  348. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  349. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000473022461, 1.14440918e-05, -3.95556831, 0.99939096, 8.62684101e-06, 0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, -0.0348977894, -1.24389771e-07, 0.9993909))
  350. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  351. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  352. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0117034912, 0, -3.94985962, 0.615653992, 3.55765224e-06, -0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, 0.788016617, 2.99792737e-06, 0.615653992))
  353. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  354. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  355. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.013874054, 1.14440918e-05, 3.93579102, 0.342017025, 2.15275213e-06, -0.939693868, -5.31971455e-06, 1.00000012, 3.5422272e-07, 0.939693809, 4.87826765e-06, 0.342016995))
  356. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  357. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  358. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00407409668, 1.09672546e-05, 3.92666626, 0.961259723, 6.65895641e-06, -0.275644481, -7.27362931e-06, 1.00000012, -1.21051562e-06, 0.275644451, 3.16882506e-06, 0.961259663))
  359. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  360. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  361. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0147628784, 4.29153442e-06, 3.94032288, 0.0348991975, -1.94690074e-07, -0.999390781, -6.48386776e-06, 1.00000012, -4.21277946e-07, 0.9993909, 6.49411231e-06, 0.034899205))
  362. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  363. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  364. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0704994202, 1.23977661e-05, 0.763931274, -0.207910523, -4.69619408e-06, -0.978147805, -6.49597496e-06, 1.00000012, -3.42010753e-06, 0.978147864, 5.6438148e-06, -0.207910508))
  365. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  366. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  367. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0730209351, 9.53674316e-06, 0.769554138, -0.587784708, -9.48831439e-06, -0.809017479, -8.12485814e-06, 1.00000012, -5.82361827e-06, 0.809017539, 3.14880162e-06, -0.587784648))
  368. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  369. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  370. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0780181885, 4.00543213e-05, 0.773895264, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  371. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  372. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  373. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0849456787, 1.1920929e-05, -0.775592804, 1, 9.31322575e-10, 1.86264515e-09, 9.31322575e-10, 1.00000012, 2.91038305e-11, 1.86264515e-09, 2.91038305e-11, 1))
  374. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  375. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  376. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0138931274, 1.14440918e-05, -3.94581604, 0.342017025, 2.15275213e-06, -0.939693868, -5.31971455e-06, 1.00000012, 3.5422272e-07, 0.939693809, 4.87826765e-06, 0.342016995))
  377. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  378. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  379. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0141906738, -2.86102295e-06, 3.94491577, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  380. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  381. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  382. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0914611816, 1.38282776e-05, -0.77407074, 0.898792446, 4.78886068e-06, -0.438374549, -5.40539622e-06, 1.00000012, -1.58092007e-07, 0.438374519, 2.51177698e-06, 0.898792386))
  383. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  384. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  385. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000457763672, 1.23977661e-05, 3.92610168, 0.99939096, 8.62684101e-06, 0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, -0.0348977894, -1.24389771e-07, 0.9993909))
  386. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  387. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  388. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.070602417, 1.57356262e-05, 0.757293701, 0.241917431, 2.88034789e-06, -0.97029686, -7.35372305e-06, 1.00000012, 1.13470014e-06, 0.97029686, 6.86012208e-06, 0.241917446))
  389. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  390. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  391. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0992660522, -3.81469727e-06, -0.764343262, 0.241917431, 2.88034789e-06, -0.97029686, -7.35372305e-06, 1.00000012, 1.13470014e-06, 0.97029686, 6.86012208e-06, 0.241917446))
  392. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  393. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  394. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0993690491, 1.43051147e-05, -0.757736206, -0.207910523, -4.69619408e-06, -0.978147805, -6.49597496e-06, 1.00000012, -3.42010753e-06, 0.978147864, 5.6438148e-06, -0.207910508))
  395. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  396. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  397. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00826263428, 6.67572021e-06, 3.92862701, 0.829033315, 8.75815749e-06, -0.559199274, -9.8599121e-06, 1, 1.04334322e-06, 0.559199214, 4.64823097e-06, 0.829033256))
  398. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  399. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  400. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0147399902, 5.7220459e-06, -3.94126892, 0.0348991975, -1.94690074e-07, -0.999390781, -6.48386776e-06, 1.00000012, -4.21277946e-07, 0.9993909, 6.49411231e-06, 0.034899205))
  401. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  402. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  403. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0968551636, 2.05039978e-05, -0.752113342, -0.587784708, -9.48831439e-06, -0.809017479, -8.12485814e-06, 1.00000012, -5.82361827e-06, 0.809017539, 3.14880162e-06, -0.587784648))
  404. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  405. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.590941012))
  406. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0918121338, 9.05990601e-06, -0.821632385, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  407. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  408. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  409. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00497436523, 1.90734863e-06, 3.92697525, 0.939691484, 5.68572432e-06, 0.342023343, -5.19026071e-06, 1.00000012, -2.36293999e-06, -0.342023402, 4.44706529e-07, 0.939691544))
  410. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  411. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  412. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.8608551, 2.28881836e-05, 0.0138702393, -0.939691484, -5.68572432e-06, -0.342023343, -5.19026071e-06, 1.00000012, -2.36293999e-06, 0.342023402, -4.44706529e-07, -0.939691544))
  413. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  414. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  415. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00832366943, 1.1920929e-05, -3.95301819, 0.829033315, 8.75815749e-06, -0.559199274, -9.8599121e-06, 1, 1.04334322e-06, 0.559199214, 4.64823097e-06, 0.829033256))
  416. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  417. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  418. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00410461426, 1.33514404e-05, -3.95498657, 0.961259723, 6.65895641e-06, -0.275644481, -7.27362931e-06, 1.00000012, -1.21051562e-06, 0.275644451, 3.16882506e-06, 0.961259663))
  419. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  420. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  421. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0141601563, 1.85966492e-05, -3.93669128, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  422. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  423. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.443205714, 0.598327696))
  424. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.85630798, 1.62124634e-05, 0.0147399902, -0.99939096, -8.62684101e-06, -0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, 0.0348977894, 1.24389771e-07, -0.9993909))
  425. CreateMesh("SpecialMesh", Part, Enum.MeshType.Cylinder, "", Vector3.new(0, 0, 0), Vector3.new(0.99999994, 1, 1))
  426. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  427. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00503540039, 1.23977661e-05, -3.9547081, 0.939691484, 5.68572432e-06, 0.342023343, -5.19026071e-06, 1.00000012, -2.36293999e-06, -0.342023402, 4.44706529e-07, 0.939691544))
  428. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  429. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  430. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0116043091, 1.23977661e-05, 3.93174744, 0.615653992, 3.55765224e-06, -0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, 0.788016617, 2.99792737e-06, 0.615653992))
  431. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  432. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Cyan", "Part", Vector3.new(0.317630798, 0.443205714, 0.598327696))
  433. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0118484497, 7.15255737e-06, 3.93209076, 0.587784708, 9.48831439e-06, 0.809017479, -8.12485814e-06, 1.00000012, -5.82361827e-06, -0.809017539, -3.14880162e-06, 0.587784648))
  434. CreateMesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/Asset/?id=9756362", Vector3.new(0, 0, 0), Vector3.new(0.369338065, 0.369338065, 0.738676131))
  435. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  436. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.05175781e-05, 1.76429749e-05, 0.598358154, 1, 9.31322575e-10, 1.86264515e-09, 9.31322575e-10, 1.00000012, 2.91038305e-11, 1.86264515e-09, 2.91038305e-11, 1))
  437. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  438. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  439. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143203735, 1.38282776e-05, -0.616622925, 0.241917431, 2.88034789e-06, -0.97029686, -7.35372305e-06, 1.00000012, 1.13470014e-06, 0.97029686, 6.86012208e-06, 0.241917446))
  440. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  441. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  442. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00648498535, 1.66893005e-05, 0.599876404, 0.898792446, 4.78886068e-06, -0.438374549, -5.40539622e-06, 1.00000012, -1.58092007e-07, 0.438374519, 2.51177698e-06, 0.898792386))
  443. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  444. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  445. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144615173, 9.53674316e-06, 0.61618042, -0.207910523, -4.69619408e-06, -0.978147805, -6.49597496e-06, 1.00000012, -3.42010753e-06, 0.978147864, 5.6438148e-06, -0.207910508))
  446. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  447. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  448. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0254669189, 1.09672546e-05, 2.24623871, -0.529915392, -5.53671271e-06, -0.848050594, -7.79144466e-06, 1.00000012, -1.66005339e-06, 0.848050535, 5.72763383e-06, -0.529915333))
  449. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  450. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  451. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.011932373, 1.00135803e-05, 0.621818542, -0.587784708, -9.48831439e-06, -0.809017479, -8.12485814e-06, 1.00000012, -5.82361827e-06, 0.809017539, 3.14880162e-06, -0.587784648))
  452. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  453. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  454. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00685119629, -7.62939453e-06, -2.17710876, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  455. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  456. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.37115026))
  457. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00694274902, 1.52587891e-05, 2.18106461, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  458. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  459. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.07567978))
  460. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0302124023, 1.71661377e-05, 2.26445007, 0.848047256, 4.38932329e-06, -0.529920757, -4.58210707e-06, 1.00000012, 9.47475201e-07, 0.529920757, 1.62469223e-06, 0.848047137))
  461. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  462. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  463. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144233704, 1.14440918e-05, -1.1307373, -0.207910523, -4.69619408e-06, -0.978147805, -6.49597496e-06, 1.00000012, -3.42010753e-06, 0.978147864, 5.6438148e-06, -0.207910508))
  464. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  465. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014465332, 6.67572021e-06, 1.13693237, -0.207910523, -4.69619408e-06, -0.978147805, -6.49597496e-06, 1.00000012, -3.42010753e-06, 0.978147864, 5.6438148e-06, -0.207910508))
  466. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  467. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0116500854, 1.52587891e-05, 0.604064941, 0.615653992, 3.55765224e-06, -0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, 0.788016617, 2.99792737e-06, 0.615653992))
  468. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  469. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  470. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0134735107, 9.53674316e-06, -2.25316238, 0.999390662, 5.35696745e-06, -0.0349050984, -5.36255538e-06, 1.00000012, -1.1944212e-07, 0.0349050872, 3.06405127e-07, 0.999390602))
  471. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  472. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.590941012))
  473. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0965957642, 1.04904175e-05, -0.843780518, 0.615653992, 3.55765224e-06, -0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, 0.788016617, 2.99792737e-06, 0.615653992))
  474. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  475. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  476. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0784606934, 1.8119812e-05, 0.747596741, 0.898792446, 4.78886068e-06, -0.438374549, -5.40539622e-06, 1.00000012, -1.58092007e-07, 0.438374519, 2.51177698e-06, 0.898792386))
  477. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  478. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  479. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0116500854, 1.57356262e-05, -0.622177124, 0.615653992, 3.55765224e-06, -0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, 0.788016617, 2.99792737e-06, 0.615653992))
  480. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  481. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  482. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0849151611, 7.62939453e-06, 0.746095657, 1, 9.31322575e-10, 1.86264515e-09, 9.31322575e-10, 1.00000012, 2.91038305e-11, 1.86264515e-09, 2.91038305e-11, 1))
  483. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  484. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  485. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0143356323, 1.04904175e-05, 0.609573364, 0.241917431, 2.88034789e-06, -0.97029686, -7.35372305e-06, 1.00000012, 1.13470014e-06, 0.97029686, 6.86012208e-06, 0.241917446))
  486. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  487. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.443205714))
  488. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0733108521, 2.14576721e-05, 0.75177002, 0.615653992, 3.55765224e-06, -0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, 0.788016617, 2.99792737e-06, 0.615653992))
  489. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  490. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  491. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00650024414, 5.7220459e-06, -0.626358032, 0.898792446, 4.78886068e-06, -0.438374549, -5.40539622e-06, 1.00000012, -1.58092007e-07, 0.438374519, 2.51177698e-06, 0.898792386))
  492. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  493. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  494. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0144271851, 0, -0.609985352, -0.207910523, -4.69619408e-06, -0.978147805, -6.49597496e-06, 1.00000012, -3.42010753e-06, 0.978147864, 5.6438148e-06, -0.207910508))
  495. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  496. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  497. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0119171143, 2.05039978e-05, -0.604377747, -0.587784708, -9.48831439e-06, -0.809017479, -8.12485814e-06, 1.00000012, -5.82361827e-06, 0.809017539, 3.14880162e-06, -0.587784648))
  498. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  499. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  500. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00686645508, 1.47819519e-05, -0.600028992, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  501. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  502. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630827, 0.200000003, 0.200000003))
  503. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-1.52587891e-05, 6.19888306e-06, -0.62786293, 1, 9.31322575e-10, 1.86264515e-09, 9.31322575e-10, 1.00000012, 2.91038305e-11, 1.86264515e-09, 2.91038305e-11, 1))
  504. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  505. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  506. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0134735107, 1.00135803e-05, 2.17890549, 0.999390662, 5.35696745e-06, -0.0349050984, -5.36255538e-06, 1.00000012, -1.1944212e-07, 0.0349050872, 3.06405127e-07, 0.999390602))
  507. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  508. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  509. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0391311646, 1.1920929e-05, -2.22155762, 0.438364893, 1.95018947e-06, -0.898797095, -5.71552664e-06, 1.00000012, -6.18805643e-07, 0.898797154, 5.40819019e-06, 0.438364923))
  510. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  511. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.07567978))
  512. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.039100647, 1.43051147e-05, 2.28431702, 0.438364893, 1.95018947e-06, -0.898797095, -5.71552664e-06, 1.00000012, -6.18805643e-07, 0.898797154, 5.40819019e-06, 0.438364923))
  513. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  514. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  515. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0302429199, 1.28746033e-05, -2.24144745, 0.848047256, 4.38932329e-06, -0.529920757, -4.58210707e-06, 1.00000012, 9.47475201e-07, 0.529920757, 1.62469223e-06, 0.848047137))
  516. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  517. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.07567978))
  518. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.036655426, 1.38282776e-05, 2.30462646, -0.0697548911, -1.76252797e-07, -0.997564137, -6.46524131e-06, 1.00000012, 2.75234925e-07, 0.997564137, 6.4689666e-06, -0.0697548836))
  519. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  520. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.317630887, 0.200000003, 0.200000003))
  521. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00694274902, 1.90734863e-05, 0.626148224, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  522. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 0.73867619, 0.73867619))
  523. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  524. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0366249084, 1.28746033e-05, -2.20121765, -0.0697548911, -1.76252797e-07, -0.997564137, -6.46524131e-06, 1.00000012, 2.75234925e-07, 0.997564137, 6.4689666e-06, -0.0697548836))
  525. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  526. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 2.22341561))
  527. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0254058838, 1.38282776e-05, -2.1857605, -0.529915392, -5.53671271e-06, -0.848050594, -7.79144466e-06, 1.00000012, -1.66005339e-06, 0.848050535, 5.72763383e-06, -0.529915333))
  528. CreateMesh("BlockMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(0.73867619, 0.73867619, 1))
  529. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  530. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0115890503, 5.24520874e-06, -1.12471008, -0.615659773, -2.24635005e-06, -0.788012147, -4.62308526e-06, 1.00000012, 7.62433046e-07, 0.788012028, 4.11272049e-06, -0.615659714))
  531. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  532. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.000457763672, 4.76837158e-07, 1.14862823, -0.99939096, -8.62684101e-06, -0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, 0.0348977894, 1.24389771e-07, -0.9993909))
  533. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  534. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0113449097, 2.19345093e-05, -1.12442017, -0.642782152, -3.70200723e-06, 0.766049147, -4.58210707e-06, 1.00000012, 9.86823579e-07, -0.766049147, -2.87499279e-06, -0.642782032))
  535. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  536. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00605773926, 1.8119812e-05, -1.12039185, -0.913543046, -3.46451998e-06, 0.406742126, -3.03518027e-06, 1.00000012, 1.70143903e-06, -0.406742096, 3.19443643e-07, -0.913542926))
  537. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  538. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143604279, 1.14440918e-05, -1.13034058, -0.241917431, -2.88034789e-06, 0.97029686, -7.35372305e-06, 1.00000012, 1.13470014e-06, -0.97029686, -6.86012208e-06, -0.241917446))
  539. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  540. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.014749527, 1.33514404e-05, -3.49807739, 0.0348991975, -1.94690074e-07, -0.999390781, -6.48386776e-06, 1.00000012, -4.21277946e-07, 0.9993909, 6.49411231e-06, 0.034899205))
  541. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  542. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0117111206, 1.09672546e-05, 3.50668335, -0.615653992, -3.55765224e-06, 0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, -0.788016617, -2.99792737e-06, -0.615653992))
  543. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  544. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0116271973, 2.14576721e-05, -3.48854065, -0.615653992, -3.55765224e-06, 0.788016558, -4.55323607e-06, 1.00000012, 9.56177246e-07, -0.788016617, -2.99792737e-06, -0.615653992))
  545. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  546. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00408935547, 1.43051147e-06, -3.48344421, -0.961259723, -6.65895641e-06, 0.275644481, -7.27362931e-06, 1.00000012, -1.21051562e-06, -0.275644451, -3.16882506e-06, -0.961259663))
  547. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  548. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00495910645, 1.43051147e-05, -3.48374557, -0.939691484, -5.68572432e-06, -0.342023343, -5.19026071e-06, 1.00000012, -2.36293999e-06, 0.342023402, -4.44706529e-07, -0.939691544))
  549. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  550. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00413513184, 1.09672546e-05, 3.51181793, -0.961259723, -6.65895641e-06, 0.275644481, -7.27362931e-06, 1.00000012, -1.21051562e-06, -0.275644451, -3.16882506e-06, -0.961259663))
  551. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  552. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0143604279, 7.62939453e-06, 1.13735962, -0.241917431, -2.88034789e-06, 0.97029686, -7.35372305e-06, 1.00000012, 1.13470014e-06, -0.97029686, -6.86012208e-06, -0.241917446))
  553. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  554. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.000473022461, 1.09672546e-05, 3.5124054, -0.99939096, -8.62684101e-06, -0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, 0.0348977894, 1.24389771e-07, -0.9993909))
  555. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  556. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00835418701, 9.05990601e-06, 3.50985718, -0.829033315, -8.75815749e-06, 0.559199274, -9.8599121e-06, 1, 1.04334322e-06, -0.559199214, -4.64823097e-06, -0.829033256))
  557. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  558. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00505065918, 2.95639038e-05, 3.51152611, -0.939691484, -5.68572432e-06, -0.342023343, -5.19026071e-06, 1.00000012, -2.36293999e-06, 0.342023402, -4.44706529e-07, -0.939691544))
  559. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  560. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.000457763672, -9.53674316e-07, -3.48287582, -0.99939096, -8.62684101e-06, -0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, 0.0348977894, 1.24389771e-07, -0.9993909))
  561. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  562. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0113754272, 1.28746033e-05, 1.14329529, -0.642782152, -3.70200723e-06, 0.766049147, -4.58210707e-06, 1.00000012, 9.86823579e-07, -0.766049147, -2.87499279e-06, -0.642782032))
  563. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  564. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0138931274, 1.52587891e-05, -3.49258423, -0.342017025, -2.15275213e-06, 0.939693868, -5.31971455e-06, 1.00000012, 3.5422272e-07, -0.939693809, -4.87826765e-06, -0.342016995))
  565. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  566. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0122375488, 2.33650208e-05, 3.50591278, -0.559193492, -6.94300979e-07, -0.82903707, 4.35858965e-07, 1.00000012, -1.13036367e-06, 0.82903707, -9.90927219e-07, -0.559193552))
  567. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  568. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0139312744, 1.09672546e-05, 3.50260925, -0.342017025, -2.15275213e-06, 0.939693868, -5.31971455e-06, 1.00000012, 3.5422272e-07, -0.939693809, -4.87826765e-06, -0.342016995))
  569. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  570. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00909423828, 3.52859497e-05, 3.50928497, -0.788011253, -6.78095967e-06, -0.615660846, -6.26314431e-06, 1.00000012, -2.99766543e-06, 0.615660846, 1.49477273e-06, -0.788011253))
  571. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  572. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00903320313, 0, -3.48596191, -0.788011253, -6.78095967e-06, -0.615660846, -6.26314431e-06, 1.00000012, -2.99766543e-06, 0.615660846, 1.49477273e-06, -0.788011253))
  573. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  574. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0141525269, 1.66893005e-05, -3.4934845, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  575. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  576. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00692749023, 1.62124634e-05, 1.14691925, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  577. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  578. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.000457763672, 1.52587891e-05, -1.11910057, -0.99939096, -8.62684101e-06, -0.0348977856, -8.62590969e-06, 1.00000012, -1.76834874e-07, 0.0348977894, 1.24389771e-07, -0.9993909))
  579. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  580. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00826263428, 1.00135803e-05, -3.48539734, -0.829033315, -8.75815749e-06, 0.559199274, -9.8599121e-06, 1, 1.04334322e-06, -0.559199214, -4.64823097e-06, -0.829033256))
  581. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  582. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.00688171387, 1.43051147e-05, -1.12078857, -0.882944465, -5.23682684e-06, -0.469477326, -4.31761146e-06, 1.00000012, -3.0323281e-06, 0.469477355, -6.50528818e-07, -0.882944584))
  583. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  584. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0121765137, -5.7220459e-06, -3.48931122, -0.559193492, -6.94300979e-07, -0.82903707, 4.35858965e-07, 1.00000012, -1.13036367e-06, 0.82903707, -9.90927219e-07, -0.559193552))
  585. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  586. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0141983032, 0, 3.50172424, -0.275638729, -2.72830948e-06, -0.961261392, -6.43450767e-06, 1.00000012, -9.93430149e-07, 0.961261332, 5.91110438e-06, -0.275638729))
  587. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  588. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.00605773926, 2.38418579e-06, 1.14733124, -0.913543046, -3.46451998e-06, 0.406742126, -3.03518027e-06, 1.00000012, 1.70143903e-06, -0.406742096, 3.19443643e-07, -0.913542926))
  589. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(1.20404208, 0.457979202, 0.598327696))
  590. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0147800446, 6.19888306e-06, 3.49713135, 0.0348991975, -1.94690074e-07, -0.999390781, -6.48386776e-06, 1.00000012, -4.21277946e-07, 0.9993909, 6.49411231e-06, 0.034899205))
  591. Part = CreatePart(m, Enum.Material.SmoothPlastic, 0, 0, "Black", "Part", Vector3.new(0.613101304, 0.457979202, 0.30285719))
  592. PartWeld = CreateWeld(m, FakeHandle, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0116348267, 9.05990601e-06, 1.14299011, -0.615659773, -2.24635005e-06, -0.788012147, -4.62308526e-06, 1.00000012, 7.62433046e-07, 0.788012028, 4.11272049e-06, -0.615659714))
  593. CFuncs = {
  594. Part = {Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  595.  
  596. local Part = Create("Part")({Parent = Parent, Reflectance = Reflectance, Transparency = Transparency, CanCollide = false, Locked = true, BrickColor = BrickColor.new(tostring(BColor)), Name = Name, Size = Size, Material = Material})
  597. RemoveOutlines(Part)
  598. return Part
  599. end
  600. }
  601. ,
  602. Mesh = {Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  603.  
  604. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  605. if Mesh == "SpecialMesh" then
  606. Msh.MeshType = MeshType
  607. Msh.MeshId = MeshId
  608. end
  609. return Msh
  610. end
  611. }
  612. ,
  613. Mesh = {Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  614.  
  615. local Msh = Create(Mesh)({Parent = Part, Offset = OffSet, Scale = Scale})
  616. if Mesh == "SpecialMesh" then
  617. Msh.MeshType = MeshType
  618. Msh.MeshId = MeshId
  619. end
  620. return Msh
  621. end
  622. }
  623. ,
  624. Weld = {Create = function(Parent, Part0, Part1, C0, C1)
  625.  
  626. local Weld = Create("Weld")({Parent = Parent, Part0 = Part0, Part1 = Part1, C0 = C0, C1 = C1})
  627. return Weld
  628. end
  629. }
  630. ,
  631. Sound = {Create = function(id, par, vol, pit)
  632.  
  633. coroutine.resume(coroutine.create(function()
  634.  
  635. local S = Create("Sound")({Volume = vol, Pitch = pit or 1, SoundId = id, Parent = par or workspace})
  636. wait()
  637. S:play()
  638. game:GetService("Debris"):AddItem(S, 6)
  639. end
  640. ))
  641. end
  642. }
  643. ,
  644. ParticleEmitter = {Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  645.  
  646. local fp = Create("ParticleEmitter")({Parent = Parent, Color = ColorSequence.new(Color1, Color2), LightEmission = LightEmission, Size = Size, Texture = Texture, Transparency = Transparency, ZOffset = ZOffset, Acceleration = Accel, Drag = Drag, LockedToPart = LockedToPart, VelocityInheritance = VelocityInheritance, EmissionDirection = EmissionDirection, Enabled = Enabled, Lifetime = LifeTime, Rate = Rate, Rotation = Rotation, RotSpeed = RotSpeed, Speed = Speed, VelocitySpread = VelocitySpread})
  647. return fp
  648. end
  649. }
  650. }
  651. rayCast = function(Position, Direction, Range, Ignore)
  652.  
  653. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  654. end
  655.  
  656. local GetNearest = function(obj, distance)
  657.  
  658. local last, lastx = distance + 1, nil
  659. for i,v in pairs(workspace:GetChildren()) do
  660. if v:IsA("Model") and v ~= Character and v:findFirstChild("Humanoid") and v:findFirstChild("Torso") and v:findFirstChild("Humanoid").Health > 0 then
  661. local t = v.Torso
  662. local dist = t.Position - obj.Position.magnitude
  663. if dist <= distance and dist < last then
  664. last = dist
  665. lastx = v
  666. end
  667. end
  668. end
  669. return lastx
  670. end
  671.  
  672. Damagefunc = function(Part, hit, minim, maxim, knockback, Type, Property, Delay, HitSound, HitPitch)
  673.  
  674. if hit.Parent == nil then
  675. return
  676. end
  677. local h = hit.Parent:FindFirstChild("Humanoid")
  678. for _,v in pairs(hit.Parent:children()) do
  679. if v:IsA("Humanoid") then
  680. h = v
  681. end
  682. end
  683. if h ~= nil and hit.Parent.Name ~= Character.Name and hit.Parent:FindFirstChild("Torso") ~= nil then
  684. if hit.Parent:findFirstChild("DebounceHit") ~= nil and hit.Parent.DebounceHit.Value == true then
  685. return
  686. end
  687. local c = Create("ObjectValue")({Name = "creator", Value = game:service("Players").LocalPlayer, Parent = h})
  688. game:GetService("Debris"):AddItem(c, 0.5)
  689. if HitSound ~= nil and HitPitch ~= nil then
  690. CreateSound(HitSound, hit, 1, HitPitch)
  691. end
  692. local Damage = math.random(minim, maxim)
  693. local blocked = false
  694. local block = hit.Parent:findFirstChild("Block")
  695. if block ~= nil and block.className == "IntValue" and block.Value > 0 then
  696. blocked = true
  697. block.Value = block.Value - 1
  698. print(block.Value)
  699. end
  700. if blocked == false then
  701. h.Health = h.Health - Damage
  702. ShowDamage(Part.CFrame * CFrame.new(0, 0, Part.Size.Z / 2).p + Vector3.new(0, 1.5, 0), -Damage, 1.5, Part.BrickColor.Color)
  703. else
  704. h.Health = h.Health - Damage / 2
  705. ShowDamage(Part.CFrame * CFrame.new(0, 0, Part.Size.Z / 2).p + Vector3.new(0, 1.5, 0), -Damage, 1.5, Part.BrickColor.Color)
  706. end
  707. if Type == "Knockdown" then
  708. local hum = hit.Parent.Humanoid
  709. hum.PlatformStand = true
  710. coroutine.resume(coroutine.create(function(HHumanoid)
  711.  
  712. swait(1)
  713. HHumanoid.PlatformStand = false
  714. end
  715. ), hum)
  716. local angle = hit.Position - (Property.Position + Vector3.new(0, 0, 0)).unit
  717. local bodvol = Create("BodyVelocity")({velocity = angle * knockback, P = 5000, maxForce = Vector3.new(8000, 8000, 8000), Parent = hit})
  718. local rl = Create("BodyAngularVelocity")({P = 3000, maxTorque = Vector3.new(500000, 500000, 500000) * 50000000000000, angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10)), Parent = hit})
  719. game:GetService("Debris"):AddItem(bodvol, 0.5)
  720. game:GetService("Debris"):AddItem(rl, 0.5)
  721. elseif Type == "Normal" then
  722. local vp = Create("BodyVelocity")({P = 500, maxForce = Vector3.new(math.huge, 0, math.huge), velocity = Property.CFrame.lookVector * knockback + Property.Velocity / 1.05})
  723. if knockback > 0 then
  724. vp.Parent = hit.Parent.Torso
  725. end
  726. game:GetService("Debris"):AddItem(vp, 0.5)
  727. elseif Type == "Up" then
  728. local bodyVelocity = Create("BodyVelocity")({velocity = Vector3.new(0, 20, 0), P = 5000, maxForce = Vector3.new(8000, 8000, 8000), Parent = hit})
  729. game:GetService("Debris"):AddItem(bodyVelocity, 0.5)
  730. local bodyVelocity = Create("BodyVelocity")({velocity = Vector3.new(0, 20, 0), P = 5000, maxForce = Vector3.new(8000, 8000, 8000), Parent = hit})
  731. game:GetService("Debris"):AddItem(bodyVelocity, 1)
  732. elseif Type == "Snare" then
  733. local bp = Create("BodyPosition")({P = 2000, D = 100, maxForce = Vector3.new(math.huge, math.huge, math.huge), position = hit.Parent.Torso.Position, Parent = hit.Parent.Torso})
  734. game:GetService("Debris"):AddItem(bp, 1)
  735. elseif Type == "Freeze" then
  736. local BodPos = Create("BodyPosition")({P = 50000, D = 1000, maxForce = Vector3.new(math.huge, math.huge, math.huge), position = hit.Parent.Torso.Position, Parent = hit.Parent.Torso})
  737. local BodGy = Create("BodyGyro")({maxTorque = Vector3.new(400000, 400000, 400000) * math.huge, P = 20000, Parent = hit.Parent.Torso, cframe = hit.Parent.Torso.CFrame})
  738. hit.Parent.Torso.Anchored = true
  739. coroutine.resume(coroutine.create(function(Part)
  740.  
  741. swait(1.5)
  742. Part.Anchored = false
  743. end
  744. ), hit.Parent.Torso)
  745. game:GetService("Debris"):AddItem(BodPos, 3)
  746. game:GetService("Debris"):AddItem(BodGy, 3)
  747. end
  748. local debounce = Create("BoolValue")({Name = "DebounceHit", Parent = hit.Parent, Value = true})
  749. game:GetService("Debris"):AddItem(debounce, Delay)
  750. c = Instance.new("ObjectValue")
  751. c.Name = "creator"
  752. c.Value = Player
  753. c.Parent = h
  754. game:GetService("Debris"):AddItem(c, 0.5)
  755. end
  756. end
  757.  
  758. ShowDamage = function(Pos, Text, Time, Color)
  759.  
  760. local Rate = 0.033333333333333
  761. if not Pos then
  762. local Pos = Vector3.new(0, 0, 0)
  763. end
  764. local Text = Text or ""
  765. local Time = Time or 2
  766. if not Color then
  767. local Color = Color3.new(1, 0, 1)
  768. end
  769. local EffectPart = CreatePart(workspace, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  770. EffectPart.Anchored = true
  771. local BillboardGui = Create("BillboardGui")({Size = UDim2.new(3, 0, 3, 0), Adornee = EffectPart, Parent = EffectPart})
  772. local TextLabel = Create("TextLabel")({BackgroundTransparency = 1, Size = UDim2.new(1, 0, 1, 0), Text = Text, TextColor3 = Color, TextScaled = true, Font = Enum.Font.ArialBold, Parent = BillboardGui})
  773. game.Debris:AddItem(EffectPart, Time + 0.1)
  774. EffectPart.Parent = game:GetService("Workspace")
  775. delay(0, function()
  776.  
  777. local Frames = Time / Rate
  778. for Frame = 1, Frames do
  779. wait(Rate)
  780. local Percent = Frame / Frames
  781. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  782. TextLabel.TextTransparency = Percent
  783. end
  784. if EffectPart and EffectPart.Parent then
  785. EffectPart:Destroy()
  786. end
  787. end
  788. )
  789. end
  790.  
  791. MagniDamage = function(Part, magni, mindam, maxdam, knock, Type)
  792.  
  793. for _,c in pairs(workspace:children()) do
  794. local hum = c:findFirstChild("Humanoid")
  795. if hum ~= nil then
  796. local head = c:findFirstChild("Torso")
  797. if head ~= nil then
  798. local targ = head.Position - Part.Position
  799. local mag = targ.magnitude
  800. if mag <= magni and c.Name ~= Player.Name then
  801. Damagefunc(head, head, mindam, maxdam, knock, Type, RootPart, 0.1, "http://www.roblox.com/asset/?id=231917784", 1)
  802. end
  803. end
  804. end
  805. end
  806. end
  807.  
  808. EffectModel = Instance.new("Model", Character)
  809. EffectModel.Name = "Effects"
  810. Effects = {
  811. Block = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  812.  
  813. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  814. prt.Anchored = true
  815. prt.CFrame = cframe
  816. local msh = CFuncs.Mesh.Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  817. game:GetService("Debris"):AddItem(prt, 10)
  818. if Type == 1 or Type == nil then
  819. table.insert(Effects, {prt, "Block1", delay, x3, y3, z3, msh})
  820. else
  821. if Type == 2 then
  822. table.insert(Effects, {prt, "Block2", delay, x3, y3, z3, msh})
  823. end
  824. end
  825. end
  826. }
  827. ,
  828. Sphere = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  829.  
  830. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  831. prt.Anchored = true
  832. prt.CFrame = cframe
  833. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  834. game:GetService("Debris"):AddItem(prt, 10)
  835. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  836. end
  837. }
  838. ,
  839. Cylinder = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  840.  
  841. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  842. prt.Anchored = true
  843. prt.CFrame = cframe
  844. local msh = CFuncs.Mesh.Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  845. game:GetService("Debris"):AddItem(prt, 10)
  846. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  847. end
  848. }
  849. ,
  850. Ring = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  851.  
  852. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  853. prt.Anchored = true
  854. prt.CFrame = cframe
  855. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://3270017", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  856. game:GetService("Debris"):AddItem(prt, 10)
  857. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  858. end
  859. }
  860. ,
  861. Wave = {Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  862.  
  863. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  864. prt.Anchored = true
  865. prt.CFrame = cframe
  866. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  867. game:GetService("Debris"):AddItem(prt, 10)
  868. table.insert(Effects, {prt, "Cylinder", delay, x3, y3, z3, msh})
  869. end
  870. }
  871. ,
  872. Break = {Create = function(brickcolor, cframe, x1, y1, z1)
  873.  
  874. local prt = CFuncs.Part.Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  875. prt.Anchored = true
  876. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  877. local msh = CFuncs.Mesh.Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  878. local num = math.random(10, 50) / 1000
  879. game:GetService("Debris"):AddItem(prt, 10)
  880. table.insert(Effects, {prt, "Shatter", num, prt.CFrame, math.random() - math.random(), 0, math.random(50, 100) / 100})
  881. end
  882. }
  883. }
  884. attackone = function()
  885.  
  886. attack = true
  887. local con = Hitbox.Touched:connect(function(hit)
  888.  
  889. Damagefunc(Hitbox, hit, 7, 15, math.random(1, 5), "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  890. end
  891. )
  892. for i = 0, 1, 0.1 do
  893. swait()
  894. PlayAnimationFromTable({CFrame.new(0, 0, 0, 0.529917479, 0, -0.848049283, 0, 1, 0, 0.848049283, 0, 0.529917479), CFrame.new(0, 1.49999499, 0, 0.406736165, 0, 0.913545728, 0, 1, 0, -0.913545728, 0, 0.406736165), CFrame.new(1.35679102, 0.782658279, 0.0675592273, 0.707045317, -0.527684033, 0.470782787, 0.133834034, -0.553849995, -0.82178998, 0.694388449, 0.644049466, -0.320975006), CFrame.new(-1.69279337, 0.499999672, -0.79492861, 0.717408359, 0.691137791, 0.0874861553, -0.0527720191, 0.179133937, -0.982408345, -0.694651246, 0.700171173, 0.164984912), CFrame.new(0.641659617, -1.99999392, 0.125842437, 0.882947862, 0, -0.469471127, 0, 1, 0, 0.469471127, 0, 0.882947862), CFrame.new(-0.348587006, -1.99999392, -0.0133331716, 0.898793101, 0, 0.438373119, 0, 1, 0, -0.438373119, 0, 0.898793101)}, 0.3, false)
  895. end
  896. CFuncs.Sound.Create("http://roblox.com/asset/?id=231917950", Torso, 1, 1.5)
  897. for i = 0, 1, 0.1 do
  898. swait()
  899. PlayAnimationFromTable({CFrame.new(0.180807382, 0, 0.0999719128, 0.342022538, 0, 0.939691782, 0, 1, 0, -0.939691782, 0, 0.342022538), CFrame.new(0.0106580649, 1.49999499, -0.0643079877, 0.469472408, 0, -0.882947266, 0, 1, 0, 0.882947266, 0, 0.469472408), CFrame.new(1.83224225, 0.376015127, 0.0757035911, 0.135973215, -0.988979697, 0.0585707389, 0.0630049929, -0.0503679588, -0.996741474, 0.988707185, 0.139220387, 0.0554619655), CFrame.new(-0.541033506, 0.699999869, -0.891753554, 0.658596575, -0.726630569, 0.195598423, 0.0759940296, -0.194378868, -0.977978408, 0.74864924, 0.658957481, -0.072797671), CFrame.new(0.641663194, -1.99999392, 0.125834763, 0.406737477, 0, -0.913545191, 0, 1, 0, 0.913545191, 0, 0.406737477), CFrame.new(-0.590457141, -1.99999392, 0.164175183, 0.984808207, 0, -0.173646241, 0, 1, 0, 0.173646241, 0, 0.984808207)}, 0.3, false)
  900. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.3)
  901. end
  902. con:disconnect()
  903. attack = false
  904. end
  905.  
  906. attacktwo = function()
  907.  
  908. attack = true
  909. local con = Hitbox.Touched:connect(function(hit)
  910.  
  911. Damagefunc(Hitbox, hit, 7, 15, math.random(1, 5), "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  912. end
  913. )
  914. for i = 0, 1, 0.1 do
  915. swait()
  916. PlayAnimationFromTable({CFrame.new(0.338935494, 0, 0.0863927901, -0.0348953009, 0, 0.999391079, 0, 1, 0, -0.999391079, 0, -0.0348953009), CFrame.new(-0.0100401761, 1.49999499, -0.00284555811, 0.500002861, 0, -0.866023898, 0, 1, 0, 0.866023898, 0, 0.500002861), CFrame.new(1.21845579, 0.576015115, -0.684895277, 0.950073838, 0.308843106, 0.0444484204, 0.0630049855, -0.0503680073, -0.996741474, -0.305597931, 0.949778438, -0.0673119873), CFrame.new(-0.681373537, 0.699999809, -0.527025938, 0.839439929, -0.516847908, 0.167955339, 0.0759939924, -0.194378883, -0.977978468, 0.538113117, 0.833717644, -0.123892054), CFrame.new(0.641661644, -1.99999392, 0.125842005, 0.76604569, 0, -0.642786264, 0, 1, 0, 0.642786264, 0, 0.76604569), CFrame.new(-0.451956809, -1.99999392, -0.00807090476, 0.994521499, 0, 0.104533166, 0, 1, 0, -0.104533151, 0, 0.994521499)}, 0.3, false)
  917. end
  918. CFuncs.Sound.Create("http://roblox.com/asset/?id=231917950", Torso, 1, 2)
  919. for i = 0, 1, 0.1 do
  920. swait()
  921. PlayAnimationFromTable({CFrame.new(0.2283867, 0, 0.115197472, 0.438369602, 0, -0.89879483, 0, 1, 0, 0.89879483, 0, 0.438369602), CFrame.new(0.0305867679, 1.49999499, -0.105302036, 0.438370466, 0, 0.898794472, 0, 1, 0, -0.898794472, 0, 0.438370436), CFrame.new(1.67825615, 0.576015353, -0.394908488, 0.46593222, -0.881719947, 0.0740077272, 0.063004978, -0.0503680483, -0.996741474, 0.88257432, 0.469076842, 0.0320846587), CFrame.new(-1.00808418, 0.399999917, -0.988827169, 0.839437604, -0.542131007, 0.0379279964, 0.0759930089, 0.0479900427, -0.995952845, 0.538116753, 0.838922501, 0.0814828053), CFrame.new(0.641682267, -1.99999392, 0.125833988, 0.9993909, 0, -0.0348993391, 0, 1, 0, 0.0348993391, 0, 0.9993909), CFrame.new(-0.451955765, -1.99999392, -0.00807018578, 0.898794293, 0, 0.438370645, 0, 1, 0, -0.438370645, 0, 0.898794293)}, 0.3, false)
  922. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.3)
  923. end
  924. con:disconnect()
  925. attack = false
  926. end
  927.  
  928. attackthree = function()
  929.  
  930. attack = true
  931. local con = Hitbox.Touched:connect(function(hit)
  932.  
  933. Damagefunc(Hitbox, hit, 10, 18, math.random(1, 5), "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  934. end
  935. )
  936. for i = 0, 1, 0.1 do
  937. swait()
  938. PlayAnimationFromTable({CFrame.new(0.071936667, 4.72262116e-07, 0.0242703855, 0.69465822, -2.26574866e-08, -0.719340205, -3.33132277e-08, 1.00000024, 3.05271186e-09, 0.719340444, -2.44307561e-08, 0.694658041), CFrame.new(-0.06742917, 1.49999535, 0.0348889455, 0.587786257, -0.112594232, 0.801143169, -1.90369231e-08, 0.990268111, 0.139174208, -0.809016466, -0.0818046704, 0.582065761), CFrame.new(1.48275638, 1.08772719, 0.0703284144, 0.948658466, -0.162748516, 0.271220356, -0.174170092, -0.984543502, 0.0184163675, 0.264030874, -0.0647092909, -0.962341189), CFrame.new(-1.70999861, 0.400001884, -0.675200582, 0.170180559, 0.752030849, -0.636779845, -0.961551249, -0.0146153672, -0.274236888, -0.215541288, 0.658966064, 0.720628738), CFrame.new(0.499992967, -1.99999571, 5.02169132e-06, 0.939692616, -3.33132277e-08, -0.342021257, -6.1336543e-08, 1.00000024, 3.31135546e-08, 0.342021137, 3.05271186e-09, 0.939692378), CFrame.new(-0.499985337, -1.99999547, -1.91345407e-06, 1.00000036, -3.33132277e-08, 0, -3.33132277e-08, 1.00000024, 3.05271186e-09, 0, 3.05271186e-09, 1)}, 0.3, false)
  939. end
  940. for i = 0, 1, 0.5 do
  941. swait()
  942. PlayAnimationFromTable({CFrame.new(-0.00892008841, -0.0430538058, -0.194138944, 0.481576502, -0.0958696082, 0.871144831, -0.244872004, 0.939692378, 0.238780618, -0.841499925, -0.328310072, 0.429058075), CFrame.new(-0.019540526, 1.47107708, -0.184671223, 0.594002783, 0.0319824666, -0.803827167, -0.0492451973, 0.998781085, 0.00334861875, 0.802954376, 0.0375955552, 0.59485364), CFrame.new(1.44977772, 1.05570471, -0.579476237, -0.248055339, -0.684091806, 0.685920715, 0.938187659, -0.346077472, -0.00586999068, 0.241397351, 0.642066121, 0.727652669), CFrame.new(-1.00610232, 0.414793789, -0.808649838, 0.390035987, -0.254886776, -0.88481909, -0.920793831, -0.111371592, -0.373811543, -0.00326408446, 0.960535944, -0.278137147), CFrame.new(0.500006855, -1.99999928, -6.67572021e-06, 0.939693093, -1.34110451e-06, -0.342019081, 9.983778e-07, 1, -1.13248825e-06, 0.342018992, 7.74860382e-07, 0.939692974), CFrame.new(-0.848742545, -1.53879189, 0.340080202, 1.00000012, -1.43051147e-06, 5.96046448e-08, 3.42726707e-07, 0.275636345, 0.961261988, -1.37090683e-06, -0.961262047, 0.275636375)}, 0.3, false)
  943. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.3)
  944. end
  945. CFuncs.Sound.Create("http://roblox.com/asset/?id=231917950", Torso, 1, 2.5)
  946. Effects.Ring.Create(BrickColor.new("Black"), RootPart.CFrame * angles(0, 0, 0), 5, 5, 5, 1, 1, 1, 0.07)
  947. Effects.Wave.Create(BrickColor.new("Black"), RootPart.CFrame * angles(1.47, 0, 0), 5, 1, 5, 0.2, 0.5, 0.2, 0.07)
  948. CFuncs.Sound.Create("http://roblox.com/asset/?id=191395561", Torso, 1, 1)
  949. for i = 0, 1, 0.1 do
  950. swait()
  951. Effects.Sphere.Create(BrickColor.new("Black"), FakeHandle.CFrame, 46, 0.5, 46, 5, 0.1, 5, 0.3)
  952. PlayAnimationFromTable({CFrame.new(-0.00892008841, -0.0430538058, -0.194138944, 0.481576502, -0.0958696082, 0.871144831, -0.244872004, 0.939692378, 0.238780618, -0.841499925, -0.328310072, 0.429058075), CFrame.new(-0.019540526, 1.47107708, -0.184671223, 0.594002783, 0.0319824666, -0.803827167, -0.0492451973, 0.998781085, 0.00334861875, 0.802954376, 0.0375955552, 0.59485364), CFrame.new(1.44977772, 1.05570471, -0.579476237, -0.248055339, -0.684091806, 0.685920715, 0.938187659, -0.346077472, -0.00586999068, 0.241397351, 0.642066121, 0.727652669), CFrame.new(-1.00610232, 0.414793789, -0.808649838, 0.390035987, -0.254886776, -0.88481909, -0.920793831, -0.111371592, -0.373811543, -0.00326408446, 0.960535944, -0.278137147), CFrame.new(0.500006855, -1.99999928, -6.67572021e-06, 0.939693093, -1.34110451e-06, -0.342019081, 9.983778e-07, 1, -1.13248825e-06, 0.342018992, 7.74860382e-07, 0.939692974), CFrame.new(-0.848742545, -1.53879189, 0.340080202, 1.00000012, -1.43051147e-06, 5.96046448e-08, 3.42726707e-07, 0.275636345, 0.961261988, -1.37090683e-06, -0.961262047, 0.275636375)}, 0.3, false)
  953. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 50, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.1)
  954. end
  955. for i = 0, 1, 0.5 do
  956. swait()
  957. PlayAnimationFromTable({CFrame.new(-0.00892008841, -0.0430538058, -0.194138944, 0.481576502, -0.0958696082, 0.871144831, -0.244872004, 0.939692378, 0.238780618, -0.841499925, -0.328310072, 0.429058075), CFrame.new(-0.019540526, 1.47107708, -0.184671223, 0.594002783, 0.0319824666, -0.803827167, -0.0492451973, 0.998781085, 0.00334861875, 0.802954376, 0.0375955552, 0.59485364), CFrame.new(1.44977772, 1.05570471, -0.579476237, -0.248055339, -0.684091806, 0.685920715, 0.938187659, -0.346077472, -0.00586999068, 0.241397351, 0.642066121, 0.727652669), CFrame.new(-1.00610232, 0.414793789, -0.808649838, 0.390035987, -0.254886776, -0.88481909, -0.920793831, -0.111371592, -0.373811543, -0.00326408446, 0.960535944, -0.278137147), CFrame.new(0.500006855, -1.99999928, -6.67572021e-06, 0.939693093, -1.34110451e-06, -0.342019081, 9.983778e-07, 1, -1.13248825e-06, 0.342018992, 7.74860382e-07, 0.939692974), CFrame.new(-0.848742545, -1.53879189, 0.340080202, 1.00000012, -1.43051147e-06, 5.96046448e-08, 3.42726707e-07, 0.275636345, 0.961261988, -1.37090683e-06, -0.961262047, 0.275636375)}, 0.3, false)
  958. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.3)
  959. end
  960. for i = 0, 1, 0.1 do
  961. swait()
  962. PlayAnimationFromTable({CFrame.new(-0.0089208819, -0.043053925, -0.194139317, 0.928869843, 0.0322815925, 0.368997931, -0.0340980515, 0.999418318, -0.00159931357, -0.368834198, -0.0110964188, 0.929429889), CFrame.new(-0.0971990675, 1.54060555, -0.0178585202, 0.971161544, -0.0423126183, -0.234638825, 0.0335117467, 0.998582244, -0.0413711555, 0.236056596, 0.0323149972, 0.971202195), CFrame.new(1.67760515, 0.555797219, -0.244446576, -0.0376413874, -0.769959748, 0.636981726, 0.999291897, -0.0296303928, 0.0232352596, 0.000983896432, 0.637404978, 0.770529509), CFrame.new(-1.24025631, 0.299959004, -0.613904595, 0.296687156, 0.422165006, -0.856594443, -0.951867223, 0.203043461, -0.229617327, 0.076989457, 0.883488357, 0.462085277), CFrame.new(0.429867148, -1.98851228, -0.115783989, 0.939692855, -5.88595867e-07, 0.342020184, -0.116976775, 0.939694285, 0.321392417, -0.321394563, -0.342018455, 0.88302362), CFrame.new(-0.55632025, -1.87755632, -0.336188763, 0.993323207, -0.0845598057, 0.0784797519, 0.0960802212, 0.982908547, -0.157036394, -0.0638594702, 0.163528249, 0.984470069)}, 0.3, false)
  963. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.3)
  964. end
  965. con:disconnect()
  966. attack = false
  967. end
  968.  
  969. Driver = function()
  970.  
  971. attack = true
  972. Humanoid.AutoRotate = false
  973. Humanoid.WalkSpeed = 22
  974. for i = 0, 1, 0.1 do
  975. swait()
  976. PlayAnimationFromTable({CFrame.new(-0.0513335876, 0, -0.0230912454, 0.961260974, 0, -0.275640309, 0, 1, 0, 0.275640309, 0, 0.961260974), CFrame.new(0.0557098538, 1.49999499, 0.00804524124, 0.848047912, -0.092019558, -0.521869063, 0, 0.98480773, -0.173648119, 0.529919744, 0.147261918, 0.835164189), CFrame.new(1.38364911, 1.19912636, -0.282603741, 0.910838783, 0.197223544, -0.362595797, 0.177413985, -0.98023802, -0.0875091404, -0.372688979, 0.0153771564, -0.927828968), CFrame.new(0.0218285155, 0.799999952, -0.961247504, 0.674040914, -0.709632337, 0.20516099, -0.273780912, -0.49794504, -0.822857797, 0.686085284, 0.498470634, -0.529919088), CFrame.new(0.499983162, -1.99999392, 3.23355198e-06, 0.939692557, 0, -0.342020541, 0, 1, 0, 0.342020541, 0, 0.939692557), CFrame.new(-0.500005722, -1.99999392, 5.7220459e-06, 1, 0, 0, 0, 1, 0, 0, 0, 1)}, 0.3, false)
  977. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(0), math.rad(-90)), 0.3)
  978. end
  979. for i = 0, 1, 0.05 do
  980. swait()
  981. PlayAnimationFromTable({CFrame.new(0.0565546378, -0.0999990329, -0.367125988, 0.961260855, -0.0573087893, -0.269617409, 0, 0.978147745, -0.207911134, 0.275640815, 0.199856818, 0.940255046), CFrame.new(-0.113377631, 1.58891118, -0.22031498, 0.979420662, -0.132742718, 0.152035505, 0.0793425888, 0.945866108, 0.314709842, -0.185580641, -0.296170384, 0.936932743), CFrame.new(1.06543005, 0.449709594, -0.841737628, 0.954402268, 0.290145159, 0.0702303126, 0.00985579193, 0.204505116, -0.978815973, -0.298361093, 0.934876263, 0.192320511), CFrame.new(0.0129491575, 0.461974859, -0.712421119, 0.674041271, -0.727749646, -0.126684859, -0.125153482, 0.0565113388, -0.990526795, 0.728014529, 0.68351084, -0.0529894382), CFrame.new(0.491102874, -1.78353405, 0.747602224, 0.939692736, 0.128122747, -0.317115575, 0.0711097792, 0.833735287, 0.547566354, 0.334546119, -0.537094116, 0.774344087), CFrame.new(-0.566793799, -1.99725187, -0.257866234, 1.00000012, 0, 4.76837158e-07, -9.68575478e-08, 0.978147745, 0.207911164, -4.76837158e-07, -0.207911134, 0.978147745)}, 0.3, false)
  982. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(hobb), math.rad(0), math.rad(-90)), 0.3)
  983. end
  984. Effects.Ring.Create(BrickColor.new("Black"), RootPart.CFrame * angles(0, 0, 0), 5, 5, 5, 1, 1, 1, 0.07)
  985. Effects.Wave.Create(BrickColor.new("Black"), RootPart.CFrame * angles(1.47, 0, 0), 5, 1, 5, 0.2, 0.5, 0.2, 0.07)
  986. Torso.Velocity = RootPart.CFrame.lookVector * -10
  987. CFuncs.Sound.Create("http://roblox.com/asset/?id=231917833", Torso, 1, 1.5)
  988. for i = 0, 1, 0.05 do
  989. swait()
  990. MagniDamage(Hitbox, 10, 5, 10, 0, "Normal")
  991. Effects.Block.Create(BrickColor.new("Black"), FakeHandle.CFrame * angles(0, 0, 0), 5, 5, 5, 5, 5, 5, 0.07)
  992. Effects.Wave.Create(BrickColor.new("Black"), FakeHandle.CFrame * angles(0, 0, 0), 5, 0, 5, 0.2, 0, 0.2, 0.2)
  993. PlayAnimationFromTable({CFrame.new(0.0565546378, -0.0999990329, -0.367125988, 0.961260855, -0.0573087893, -0.269617409, 0, 0.978147745, -0.207911134, 0.275640815, 0.199856818, 0.940255046), CFrame.new(-0.113377631, 1.58891118, -0.22031498, 0.979420662, -0.132742718, 0.152035505, 0.0793425888, 0.945866108, 0.314709842, -0.185580641, -0.296170384, 0.936932743), CFrame.new(1.06543005, 0.449709594, -0.841737628, 0.954402268, 0.290145159, 0.0702303126, 0.00985579193, 0.204505116, -0.978815973, -0.298361093, 0.934876263, 0.192320511), CFrame.new(0.0129491575, 0.461974859, -0.712421119, 0.674041271, -0.727749646, -0.126684859, -0.125153482, 0.0565113388, -0.990526795, 0.728014529, 0.68351084, -0.0529894382), CFrame.new(0.491102874, -1.78353405, 0.747602224, 0.939692736, 0.128122747, -0.317115575, 0.0711097792, 0.833735287, 0.547566354, 0.334546119, -0.537094116, 0.774344087), CFrame.new(-0.566793799, -1.99725187, -0.257866234, 1.00000012, 0, 4.76837158e-07, -9.68575478e-08, 0.978147745, 0.207911164, -4.76837158e-07, -0.207911134, 0.978147745)}, 0.3, false)
  994. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 50, 0) * angles(math.rad(hobb), math.rad(0), math.rad(-90)), 0.1)
  995. end
  996. for i = 0, 1, 0.1 do
  997. swait()
  998. PlayAnimationFromTable({CFrame.new(0.123963438, 0, 0.0531988516, 0.994521797, 0, -0.104530722, 0, 1, 0, 0.104530722, 0, 0.994521797), CFrame.new(-0.128844514, 1.49999499, -0.0399492234, 0.970295668, 0, 0.241922557, 0, 1, 0, -0.241922557, 0, 0.970295668), CFrame.new(1.40182006, 0.402808934, -0.878386736, 0.993312716, 0.112460375, -0.0261276402, -0.0312019922, 0.0436000377, -0.99856174, -0.111159414, 0.992699325, 0.0468174666), CFrame.new(-0.350568444, 0.600000024, -0.86212796, 0.5971663, -0.781921804, -0.17885989, -0.284655899, 0.00188406813, -0.958627939, 0.749909163, 0.623373806, -0.221453562), CFrame.new(0.500002027, -1.99999392, -3.7997961e-06, 0.939692378, 0, -0.342021078, 0, 1, 0, 0.342021078, 0, 0.939692378), CFrame.new(-0.499982893, -1.99999392, -3.81469772e-06, 1.00000012, 0, 0, 0, 1, 0, 0, 0, 1.00000012)}, 0.3, false)
  999. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(hobb), math.rad(0), math.rad(-90)), 0.2)
  1000. end
  1001. for i = 0, 1, 0.1 do
  1002. swait()
  1003. PlayAnimationFromTable({CFrame.new(0.151990771, 0, 0.149191469, 0.615658402, 0, -0.788013339, 0, 1, 0, 0.788013339, 0, 0.615658402), CFrame.new(-0.0442236252, 1.49999607, -0.120861277, 0.927185535, 0.0650490299, -0.368911743, 0, 0.984807849, 0.173648044, 0.374602765, -0.161003947, 0.913099527), CFrame.new(1.12287998, 0.502808988, -0.87687695, 0.610050261, 0.792210698, 0.0155279655, -0.0312019922, 0.0436000377, -0.99856174, -0.791748226, 0.608688354, 0.0513167679), CFrame.new(-0.994351387, 0.600000024, -0.82932061, 0.69363749, -0.662169278, -0.28354758, -0.223153025, 0.176736221, -0.958627701, 0.684886932, 0.728214562, -0.0251742005), CFrame.new(0.463276595, -1.99999392, 0.118201159, 0.866026223, 0, -0.499998897, 0, 1, 0, 0.499998927, 0, 0.866026223), CFrame.new(-0.893108189, -1.99999428, -0.203491271, 0.955555499, 0.238245398, -0.17364642, -0.241920933, 0.970296025, -1.92270409e-06, 0.168487966, 0.042010542, 0.984808207)}, 0.3, false)
  1004. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(hobb), math.rad(0), math.rad(-90)), 0.3)
  1005. end
  1006. Humanoid.WalkSpeed = 27
  1007. Humanoid.AutoRotate = true
  1008. attack = false
  1009. end
  1010.  
  1011. fatguywindmill = function()
  1012.  
  1013. attack = true
  1014. local con = Hitbox.Touched:connect(function(hit)
  1015.  
  1016. Damagefunc(Hitbox, hit, 15, 20, math.random(10, 30), "Normal", RootPart, 0.2, "rbxassetid://199149221", 0.8)
  1017. end
  1018. )
  1019. for i = 0, 1, 0.1 do
  1020. swait()
  1021. PlayAnimationFromTable({CFrame.new(0.153586835, -2.02165875e-08, -0.0448489189, 0.434104621, 0.0610093623, -0.898794293, -0.139172941, 0.990268171, 4.17754276e-09, 0.890047312, 0.125087842, 0.438370794), CFrame.new(-0.0436847657, 1.50859702, -0.143918693, 0.306010813, -0.139172941, 0.941800594, 0.0430069715, 0.990268171, 0.132361293, -0.951056182, 4.17754276e-09, 0.309018165), CFrame.new(1.31507051, 0.982583761, -0.81716466, 0.975905657, 0.0707551092, 0.206402451, 0.206911325, 0.000140555203, -0.978359818, -0.0692529678, 0.997493744, -0.0145028643), CFrame.new(-1.64190447, -0.0893784761, 0.473618746, 0.674146295, 0.189674288, 0.713828146, -0.491761655, 0.836370111, 0.24218908, -0.551087499, -0.514304101, 0.657110333), CFrame.new(0.843345761, -1.9011215, 0.156547144, 0.862016082, -0.230768725, -0.451302767, 0.261689007, 0.965131581, 0.00633261725, 0.434105158, -0.123559788, 0.892348409), CFrame.new(-0.317169666, -2.06422138, 0.021623686, 0.857598782, -0.139172941, 0.495131671, 0.120527521, 0.990268171, 0.0695861429, -0.499997675, 4.17754276e-09, 0.866026878)}, 0.3, false)
  1022. end
  1023. CFuncs.Sound.Create("http://roblox.com/asset/?id=238319531", Torso, 1, 1)
  1024. for i = 0, 3 do
  1025. CFuncs.Sound.Create("http://roblox.com/asset/?id=231917845", Torso, 1, 1)
  1026. Effects.Ring.Create(BrickColor.new("Black"), RootPart.CFrame * angles(0, 0, 0), 5, 5, 5, 1, 1, 1, 0.07)
  1027. for i = 0, 1, 0.05 do
  1028. swait()
  1029. Effects.Wave.Create(BrickColor.new("Black"), FakeHandle.CFrame * angles(3.14, 0, 0), 5, 1, 5, 0.2, 0.1, 0.2, 0.07)
  1030. Torso.Velocity = RootPart.CFrame.lookVector * 50
  1031. PlayAnimationFromTable({CFrame.new(0.41534692, -1.34110451e-07, -0.386532724, 0.662618637, -0.0894249901, 0.743599176, -0.139172986, 0.960852683, 0.239568397, -0.735912681, -0.26223141, 0.624233425), CFrame.new(-0.0485539213, 1.53545654, -0.217515782, 0.758588254, 0.153950363, -0.633121729, -0.0520595983, 0.982900262, 0.176626489, 0.649487257, -0.101026714, 0.753631234), CFrame.new(1.45274282, 0.873826981, -0.949364126, 0.0823617354, -0.743233144, 0.663943648, 0.914199769, -0.208912551, -0.347267181, 0.396806657, 0.635578632, 0.662257135), CFrame.new(-0.909216046, 0.453060716, -0.592161536, 0.364558309, -0.79455018, -0.485579401, -0.703706682, 0.106431037, -0.702473879, 0.609831393, 0.597798049, -0.520329893), CFrame.new(0.843343794, -1.88252175, -0.308028162, 0.862017155, -0.230767742, -0.451301038, 0.14889662, 0.966355145, -0.209731787, 0.484516472, 0.113595188, 0.867375433), CFrame.new(-0.775360465, -2.25170565, 0.232322067, 0.955271602, 0.199518695, 0.218285561, -0.21956712, 0.972969413, 0.0715604872, -0.198107541, -0.116287977, 0.97325772)}, 0.3, false)
  1032. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(hobb), math.rad(0)), 0.3)
  1033. end
  1034. end
  1035. con:disconnect()
  1036. attack = false
  1037. end
  1038.  
  1039. qaeoshotcarnival = function()
  1040.  
  1041. attack = true
  1042. Humanoid.WalkSpeed = 26
  1043. for i = 0, 1, 0.1 do
  1044. swait()
  1045. PlayAnimationFromTable({CFrame.new(0, 0, 0, 0.990268588, 0, 0.139170513, 0, 1, 0, -0.139170498, 0, 0.990268588), CFrame.new(2.98023224e-08, 1.49999511, -5.96046448e-08, 0.970296144, -0.0666821823, -0.232549146, 0, 0.961261988, -0.275636584, 0.241920665, 0.267449111, 0.932708681), CFrame.new(1.50103521, 1.42999959, -0.298871636, 0.866025031, -0.0174468681, -0.499696344, 0, -0.999391139, 0.0348936729, -0.500000834, -0.0302187987, -0.865497649), CFrame.new(-1.36237788, 5.06639481e-07, 0.314577639, 0.852867961, 0.380237699, 0.357820779, -0.173650056, 0.852868438, -0.492403448, -0.492404312, 0.357819498, 0.793412566), CFrame.new(0.504996002, -1.99999166, 0.244792342, 0.999834955, -0.0181521177, -0.000935673714, 0.0181519948, 0.994521856, 0.102941051, -0.000938042998, -0.102941036, 0.99468708), CFrame.new(-0.512197375, -1.99999166, -0.294275373, 0.970295668, 0, 0.241922915, 0, 1, 0, -0.241922885, 0, 0.970295668)}, 0.3, false)
  1046. end
  1047. CFuncs.Sound.Create("http://roblox.com/asset/?id=192410062", Torso, 1, 1)
  1048. for i = 0, 4 do
  1049. for i = 0, 1, 0.1 do
  1050. swait()
  1051. Effects.Wave.Create(BrickColor.new("Black"), FakeHandle.CFrame * angles(3.14, 0, 0), 8, 0, 8, -0.5, 0, -0.5, 0.07)
  1052. PlayAnimationFromTable({CFrame.new(0.0476509482, -0.310000062, 0.16318503, 0.934116066, -0.00962977111, 0.356839776, 0.0531230122, 0.992255092, -0.112285353, -0.35299474, 0.123843968, 0.92739284), CFrame.new(0.0750635117, 1.49534893, -0.109013185, 0.944750905, 0.0997348875, -0.312247932, -0.0282864608, 0.973839819, 0.225468785, 0.326566517, -0.204179406, 0.922857106), CFrame.new(1.23751664, 0.463839352, -1.3716116, 0.974988639, -0.21810995, -0.0427245349, -0.00947946869, 0.151248127, -0.988450527, 0.222052902, 0.964132905, 0.145397604), CFrame.new(-0.0479993224, 0.448333919, -1.40435374, 0.105266429, -0.922096133, 0.37236774, 0.981781542, 0.0367998295, -0.186416894, 0.158191234, 0.385207117, 0.909170568), CFrame.new(0.361511588, -1.68047976, 0.371658564, 0.975161433, 0.177157789, -0.132949159, -0.00886943564, 0.630984306, 0.775744975, 0.221318096, -0.755297303, 0.616882741), CFrame.new(-0.513344169, -1.71515119, -0.34862572, 0.998331547, 0.0523007512, 0.0244735926, -0.0553211533, 0.987769186, 0.145780608, -0.0165498182, -0.146891281, 0.989014208)}, 0.3, false)
  1053. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(hobb), math.rad(0)), 0.3)
  1054. end
  1055. end
  1056. local icepart1 = CreatePart(EffectModel, "SmoothPlastic", 0.5, 0, BrickColor.new("Black"), "Ice", Vector3.new(2, 4, 2))
  1057. icepart1.Anchored = true
  1058. icepart1.Material = Enum.Material.Neon
  1059. i1msh = CreateMesh("SpecialMesh", icepart1, "FileMesh", "http://www.roblox.com/asset/?id=1778999", Vector3.new(0, 0, 0), Vector3.new(3, 4, 3))
  1060. icepart1.CFrame = cn(Handle.Position)
  1061. game:GetService("Debris"):AddItem(icepart1, 20)
  1062. MouseLook = cn(icepart1.Position, mouse.Hit.p)
  1063. CFuncs.Sound.Create("http://roblox.com/asset/?id=233091205", Torso, 1, 1)
  1064. table.insert(ShootEffects, {MouseLook, "Blast", 200, icepart1.Position, 8, 27, 0, icepart1, 7, 2})
  1065. Effects.Wave.Create(BrickColor.new("Black"), RootPart.CFrame * cn(0, 0, 5) * angles(1.47, 0, 0), 5, 10, 5, 0.5, 0.1, 0.5, 0.07)
  1066. Effects.Ring.Create(BrickColor.new("Black"), RootPart.CFrame * angles(0, 0, 0), 5, 5, 5, 1, 1, 1, 0.07)
  1067. for i = 0, 1, 0.1 do
  1068. swait()
  1069. PlayAnimationFromTable({CFrame.new(0.0476517379, -0.310000032, 0.163185105, 0.873793244, -0.00962939486, -0.486202449, -0.0518689938, 0.992255092, -0.112869821, 0.483523667, 0.123843722, 0.866526246), CFrame.new(0.0640103742, 1.51161397, -0.0302033424, 0.857438564, -0.0923023969, 0.506240606, -0.0282860827, 0.973839819, 0.225468546, -0.513808489, -0.207644954, 0.832396865), CFrame.new(0.815435946, 0.639271677, -0.779436171, 0.796812892, 0.598370373, 0.0839184597, -0.00947906636, 0.151247934, -0.988450527, -0.604152024, 0.78681457, 0.126188263), CFrame.new(-0.239385799, 0.38484332, -0.848062754, 0.0876317471, -0.910338521, 0.404480428, 0.945100844, -0.0523413606, -0.322559983, 0.314809799, 0.410541266, 0.855774879), CFrame.new(0.517082453, -1.68048, -0.0380372703, 0.796361029, -0.322351098, 0.511760712, -0.00886903331, 0.839820087, 0.542792559, -0.604756594, -0.436797619, 0.66594106), CFrame.new(-0.717575312, -1.73490179, 0.0509161651, 0.629037082, 0.110529765, 0.769477487, -0.0553207211, 0.993695617, -0.0975131243, -0.775404513, 0.0187713355, 0.631185889)}, 0.3, false)
  1070. end
  1071. Humanoid.WalkSpeed = 26
  1072. attack = false
  1073. end
  1074.  
  1075. Cloak = function()
  1076.  
  1077. Face.Parent = nil
  1078. cloaked = true
  1079. for _,v in pairs(Torso.Parent:children()) do
  1080. do
  1081. if v.className == "Part" and v.Name ~= "HumanoidRootPart" then
  1082. coroutine.resume(coroutine.create(function()
  1083.  
  1084. for i = 0, 1, 0.5 do
  1085. swait()
  1086. v.Transparency = v.Transparency + 0.1
  1087. end
  1088. v.Transparency = 1
  1089. end
  1090. ))
  1091. end
  1092. if v.className == "Accessory" then
  1093. do
  1094. hatp = v.Handle
  1095. coroutine.resume(coroutine.create(function(derp)
  1096.  
  1097. for i = 0, 1, 0.5 do
  1098. swait()
  1099. derp.Transparency = derp.Transparency + 0.1
  1100. end
  1101. derp.Transparency = 1
  1102. end
  1103. ), hatp)
  1104. -- DECOMPILER ERROR at PC38: LeaveBlock: unexpected jumping out IF_THEN_STMT
  1105.  
  1106. -- DECOMPILER ERROR at PC38: LeaveBlock: unexpected jumping out IF_STMT
  1107.  
  1108. end
  1109. end
  1110. end
  1111. end
  1112. end
  1113.  
  1114. UnCloak = function()
  1115.  
  1116. CFuncs.Sound.Create("http://roblox.com/asset/?id=233856106", Torso, 1, 1.5)
  1117. Face.Parent = Head
  1118. cloaked = false
  1119. for _,v in pairs(Torso.Parent:children()) do
  1120. do
  1121. if v.className == "Part" and v.Name ~= "HumanoidRootPart" then
  1122. coroutine.resume(coroutine.create(function()
  1123.  
  1124. for i = 0, 1, 0.2 do
  1125. swait()
  1126. v.Transparency = v.Transparency - 0.1
  1127. end
  1128. v.Transparency = 0
  1129. end
  1130. ))
  1131. end
  1132. if v.className == "Accessory" then
  1133. do
  1134. hatp = v.Handle
  1135. coroutine.resume(coroutine.create(function(derp)
  1136.  
  1137. for i = 0, 1, 0.2 do
  1138. swait()
  1139. derp.Transparency = derp.Transparency - 0.1
  1140. end
  1141. derp.Transparency = 0
  1142. end
  1143. ), hatp)
  1144. -- DECOMPILER ERROR at PC47: LeaveBlock: unexpected jumping out IF_THEN_STMT
  1145.  
  1146. -- DECOMPILER ERROR at PC47: LeaveBlock: unexpected jumping out IF_STMT
  1147.  
  1148. end
  1149. end
  1150. end
  1151. end
  1152. end
  1153.  
  1154. Clone = function()
  1155.  
  1156. CFuncs.Sound.Create("http://roblox.com/asset/?id=2767090", Torso, 1, 1)
  1157. for _,v in pairs(Torso.Parent:children()) do
  1158. if v.className == "Part" and v.Name ~= "HumanoidRootPart" then
  1159. n = v:clone()
  1160. n:BreakJoints()
  1161. n.archivable = true
  1162. n.Anchored = true
  1163. n.CanCollide = false
  1164. n.Name = "TRAILER"
  1165. n.BrickColor = BrickColor.new("Really black")
  1166. n.Parent = EffectModel
  1167. n.CFrame = v.CFrame
  1168. coroutine.resume(coroutine.create(function(ne)
  1169.  
  1170. for i = 1, 80 do
  1171. ne:BreakJoints()
  1172. ne.Transparency = i / 80
  1173. swait()
  1174. end
  1175. ne.Parent = nil
  1176. end
  1177. ), n)
  1178. else
  1179. if v.className == "Accessory" then
  1180. n = v.Handle:clone()
  1181. n:BreakJoints()
  1182. n.archivable = true
  1183. n.Anchored = true
  1184. n.CanCollide = false
  1185. n.Name = "TRAILER"
  1186. n.BrickColor = BrickColor.new("Really black")
  1187. n.Parent = EffectModel
  1188. n.CFrame = v.Handle.CFrame
  1189. coroutine.resume(coroutine.create(function(ne)
  1190.  
  1191. for i = 1, 80 do
  1192. ne:BreakJoints()
  1193. ne.Transparency = i / 80
  1194. swait()
  1195. end
  1196. ne.Parent = nil
  1197. end
  1198. ), n)
  1199. end
  1200. end
  1201. end
  1202. end
  1203.  
  1204. coolflips = function()
  1205.  
  1206. attack = true
  1207. for i = 0, 1, 0.1 do
  1208. swait()
  1209. PlayAnimationFromTable({CFrame.new(-0.00690992922, 5.92321157e-07, 0.229894727, 0.919620454, -0.0784856752, -0.384887546, 0, 0.979835451, -0.199806482, 0.392808437, 0.183746129, 0.901076555), CFrame.new(0.102201059, 1.52183461, -0.0442817062, 0.856003404, 0, 0.516970396, -0.103294045, 0.979835451, 0.171035022, -0.506545842, -0.199806482, 0.838742256), CFrame.new(0.85569036, 0.349804521, -0.98719424, 0.703206182, 0.679262638, -0.210008666, -0.207752883, -0.086173974, -0.974378228, -0.67995584, 0.728818536, 0.0805206746), CFrame.new(-1.76169264, 0.327327907, -0.196545735, 0.230531454, 0.955027282, -0.186489612, -0.944481075, 0.173500761, -0.27902177, -0.23411721, 0.240459174, 0.942002296), CFrame.new(0.368483841, -2.02651429, 0.225678414, 0.839735985, 0.0466858745, -0.540984511, 0.00506230071, 0.995580733, 0.0937745199, 0.542971492, -0.081484437, 0.835788429), CFrame.new(-0.846522689, -1.63205373, -0.700655103, 0.993059099, 0.0466870405, 0.107954189, -0.0550746024, 0.995580792, 0.0760657787, -0.103925794, -0.0814833492, 0.991241574)}, 0.3, false)
  1210. end
  1211. CFuncs.Sound.Create("http://roblox.com/asset/?id=189505639", Torso, 1, 1)
  1212. for i = 0, 1, 0.5 do
  1213. swait()
  1214. Torso.Velocity = RootPart.CFrame.lookVector * 30
  1215. PlayAnimationFromTable({CFrame.new(0.00811391696, 0.370000064, -0.269878775, 0.919620454, 0.101234131, -0.379539251, 0, 0.966219902, 0.257718921, 0.392808437, -0.23700355, 0.888555646), CFrame.new(-0.0505141392, 1.49702644, -0.102675915, 0.856003404, -0.234867454, 0.460538477, 0.133233026, 0.960974038, 0.242441416, -0.49950707, -0.146171704, 0.853889048), CFrame.new(1.55955112, 0.782363236, -0.449855745, 0.974661827, -0.187334329, 0.122230984, 0.0556709319, -0.326094151, -0.943696618, 0.216645598, 0.926589727, -0.307402432), CFrame.new(-1.84929264, 0.0806987882, -0.341354072, 0.792731702, 0.51237613, 0.330223352, -0.0122703984, 0.555034101, -0.831737161, -0.60944736, 0.655292451, 0.446280092), CFrame.new(0.550986409, -1.88015306, -0.209920794, 0.982241988, -0.175711095, 0.0657758713, 0.186057717, 0.957378328, -0.220928043, -0.0241528749, 0.229242906, 0.973069608), CFrame.new(-0.664022982, -1.13358545, -0.868605971, 0.993059337, -0.0156976283, 0.116563737, -0.0029982999, 0.987352729, 0.158510461, -0.117577702, -0.157759756, 0.980452597)}, 0.3, false)
  1216. end
  1217. for i = 0, 1, 0.5 do
  1218. swait()
  1219. Torso.Velocity = RootPart.CFrame.lookVector * 30
  1220. PlayAnimationFromTable({CFrame.new(0.152475744, 1.52000022, -0.745758653, 0.955881655, 0.0903932974, -0.279498786, 0.24949494, 0.252411067, 0.934901536, 0.15505743, -0.963388801, 0.218722403), CFrame.new(-0.0497429445, 1.63352084, 0.192626446, 0.925000131, -0.238143966, 0.296078682, 0.223588675, 0.971176207, 0.0826139227, -0.307218492, -0.010218095, 0.95158422), CFrame.new(1.58332551, 0.759651303, 0.0462321043, 0.686902881, -0.42318809, 0.590826988, -0.115874358, -0.866346538, -0.485815912, 0.717452288, 0.26524654, -0.644132376), CFrame.new(-1.11650932, 0.776724577, -0.221937507, 0.974676251, -0.223312303, -0.0117539689, -0.121502519, -0.484722316, -0.86618793, 0.187733009, 0.845680833, -0.499580115), CFrame.new(0.33232969, -1.16125679, -1.14508665, 0.983165324, 0.173277408, 0.0579746962, -0.180561602, 0.969967067, 0.162977323, -0.0279932618, -0.170701593, 0.984925032), CFrame.new(-0.897608697, -0.0681397319, -1.16375923, 0.951426148, 0.307877541, -0.000286310911, -0.197658598, 0.610105813, -0.767269254, -0.236050248, 0.730056524, 0.641325057)}, 0.3, false)
  1221. end
  1222. for i = 0, 1, 0.5 do
  1223. swait()
  1224. Torso.Velocity = RootPart.CFrame.lookVector * 30
  1225. PlayAnimationFromTable({CFrame.new(0.1742208, 1.61459744, -1.46919191, 0.964953721, 0.0802065879, -0.249863073, 0.217557028, -0.776939809, 0.590790629, -0.146743253, -0.624445021, -0.767160416), CFrame.new(-0.210791871, 1.49392033, -0.405593097, 0.925000727, -0.310072839, 0.219610646, 0.223588035, 0.911501706, 0.345214725, -0.307217181, -0.270221561, 0.912468195), CFrame.new(1.58332491, 0.759655178, 0.0462404191, 0.686901927, -0.423187256, 0.590828776, -0.115873948, -0.866347432, -0.485814393, 0.717453361, 0.265245199, -0.644131958), CFrame.new(-1.47702515, 0.735197544, -0.143782973, 0.93662107, 0.350147337, -0.0117545724, 0.165412977, -0.471547037, -0.866188347, -0.308836341, 0.809345722, -0.499579728), CFrame.new(0.33233428, -1.16125846, -1.14508402, 0.983165562, 0.115874588, -0.141275555, -0.180560663, 0.497687191, -0.848354578, -0.027991727, 0.859581709, 0.510231316), CFrame.new(-0.832379699, -1.34182632, -1.22091162, 0.951426685, 0.307875574, -0.000288084149, -0.197658896, 0.610106587, -0.767268598, -0.236047491, 0.730056643, 0.64132601)}, 0.3, false)
  1226. end
  1227. CFuncs.Sound.Create("http://roblox.com/asset/?id=233856140", Torso, 1, 1)
  1228. for i = 0, 1, 0.5 do
  1229. swait()
  1230. Torso.Velocity = RootPart.CFrame.lookVector * 30
  1231. PlayAnimationFromTable({CFrame.new(0.169285268, 0.769245982, -1.30498338, 0.965617657, 0.0361799002, -0.257436752, -0.197678998, -0.540945709, -0.817496717, -0.168836266, 0.840279102, -0.515194714), CFrame.new(-0.210795462, 1.49391747, -0.405593574, 0.924999416, -0.358151555, 0.126900002, 0.223589733, 0.78308773, 0.580328584, -0.307219416, -0.508430064, 0.804434657), CFrame.new(1.58332229, 0.759656489, 0.046240598, 0.686901867, -0.423185349, 0.590829849, -0.11586953, -0.866347134, -0.485815704, 0.717453957, 0.265248477, -0.644129813), CFrame.new(-1.47702622, 0.735193968, -0.143782526, 0.936620414, 0.350148797, -0.0117530152, 0.165414363, -0.471544653, -0.866189241, -0.308837175, 0.809346378, -0.499577999), CFrame.new(0.332339525, -1.16125762, -1.14507151, 0.983166277, 0.159242243, -0.0895888358, -0.180556744, 0.771637082, -0.60989809, -0.0279914886, 0.615807116, 0.78739965), CFrame.new(-0.832376719, -1.34182751, -1.22090745, 0.951426864, 0.307874799, -0.000286445022, -0.197657242, 0.610107362, -0.767268479, -0.236047834, 0.730056524, 0.641326129)}, 0.3, false)
  1232. end
  1233. for i = 0, 1, 0.5 do
  1234. swait()
  1235. Torso.Velocity = RootPart.CFrame.lookVector * 30
  1236. PlayAnimationFromTable({CFrame.new(0.162270933, 0.147177517, -1.07158732, 0.952594399, 0.050948292, -0.299947292, -0.150473997, 0.935753167, -0.318941563, 0.264427096, 0.348956227, 0.899059594), CFrame.new(-0.210792303, 1.49391997, -0.405592918, 0.924999356, -0.358152807, 0.12689741, 0.223591715, 0.783086181, 0.580329955, -0.307218403, -0.508431554, 0.80443418), CFrame.new(1.78598595, 0.692891896, -0.245257452, 0.231987849, -0.891197741, 0.389805466, 0.930177987, 0.0860349685, -0.356885344, 0.28451848, 0.445381463, 0.848931611), CFrame.new(-1.4213506, 0.388961315, -0.025771223, 0.936619103, 0.313360095, 0.156685382, 0.165415034, -0.00128958165, -0.98622334, -0.30884096, 0.949633539, -0.0530423336), CFrame.new(0.332342386, -1.16125607, -1.1450634, 0.983166397, 0.159242153, -0.0895876288, -0.180555999, 0.771638989, -0.609895945, -0.0279918313, 0.615804732, 0.787401497), CFrame.new(-0.641453028, -1.6045239, -0.608085871, 0.951427519, 0.185394511, 0.245793909, -0.197657406, 0.979927123, 0.025971286, -0.236045152, -0.073292762, 0.968974292)}, 0.3, false)
  1237. end
  1238. CFuncs.Sound.Create("http://roblox.com/asset/?id=233856140", Torso, 1, 1.5)
  1239. for i = 0, 1, 0.3 do
  1240. swait()
  1241. PlayAnimationFromTable({CFrame.new(0.160767108, 0.14717719, -1.02160859, 0.952594995, 0.238799363, -0.188514844, -0.150473922, 0.908329785, 0.39024961, 0.26442498, -0.343383312, 0.901203394), CFrame.new(-0.321655929, 1.37439704, 0.0312955827, 0.924999893, -0.358152241, 0.126895368, 0.371826887, 0.921971738, -0.10822738, -0.0782320499, 0.147293344, 0.98599422), CFrame.new(1.77420104, 0.696196735, 0.23689723, 0.231986672, -0.891198695, 0.389803946, 0.499840558, -0.234563589, -0.833750427, 0.834470987, 0.388258696, 0.391041577), CFrame.new(-1.43313479, 0.323520303, 0.196167648, 0.936619639, 0.313358128, 0.156686097, 0.329728752, -0.637262702, -0.696545362, -0.118417934, 0.704061866, -0.700195789), CFrame.new(0.719272077, -2.04195595, -0.0985198319, 0.983166635, 0.0746142864, 0.166782394, -0.115273967, 0.96152395, 0.249367192, -0.141758889, -0.264395148, 0.95393908), CFrame.new(-0.653234243, -0.76608789, -1.57183135, 0.951428115, 0.185394049, 0.245791838, 0.0114382654, 0.776522517, -0.629985809, -0.307658494, 0.602197468, 0.736684859)}, 0.3, false)
  1242. end
  1243. for i = 0, 1, 0.3 do
  1244. swait()
  1245. PlayAnimationFromTable({CFrame.new(0.0381573439, -1.49011612e-07, -1.26942635, 0.806220829, 0.148509398, -0.572672009, 0, 0.967980981, 0.25102374, 0.591614902, -0.202380553, 0.780406356), CFrame.new(-0.00973952748, 1.61486292, -0.251615822, 0.882300019, -0.18381007, 0.433313608, 0.118153773, 0.977610707, 0.174117848, -0.455616653, -0.102426559, 0.884263754), CFrame.new(0.652459204, 0.396082193, -0.929794967, -0.0270986408, 0.761931241, 0.647090733, 0.991348505, 0.103649907, -0.080529511, -0.128428847, 0.639310181, -0.758148134), CFrame.new(-1.71100199, 0.267971396, -0.395944655, 0.266783148, 0.905740976, 0.329332978, 0.409449279, 0.202826291, -0.889501512, -0.872455239, 0.37214914, -0.316744268), CFrame.new(0.53169024, -1.88774526, -0.687942326, 0.995720208, -0.0339301229, 0.0859656036, 0.0231994763, 0.992150247, 0.122881703, -0.0894602537, -0.120361425, 0.988691151), CFrame.new(-0.372360826, -1.9950316, -0.274230897, 0.904060841, 0, 0.427403927, 0.107288539, 0.967980981, -0.226940736, -0.41371882, 0.25102374, 0.875113726)}, 0.3, false)
  1246. end
  1247. for i = 0, 1, 0.3 do
  1248. swait()
  1249. PlayAnimationFromTable({CFrame.new(-0.701222241, 1.63912773e-07, -1.65863013, -0.53099817, 0.121821165, -0.838570654, 0, 0.989612103, 0.143763334, 0.847373068, 0.0763380677, -0.525482237), CFrame.new(-0.065475136, 1.54302526, -0.187816724, 0.712462306, -0.183808833, 0.67720896, -0.0160306785, 0.960567832, 0.277583569, -0.701527476, -0.208623946, 0.681421697), CFrame.new(0.596708059, 0.61370647, -0.677029669, 0.249248192, 0.720524788, 0.647085488, 0.968428016, -0.188728124, -0.1628775, 0.00476597063, 0.6672526, -0.744816422), CFrame.new(-1.7667433, 0.18842715, -0.184118688, 0.266778052, 0.905742705, 0.329332411, 0.311677277, 0.242272168, -0.918782592, -0.911968708, 0.347756535, -0.217666507), CFrame.new(0.536580145, -2.00117254, -0.136381954, 0.995720088, 0.00438777357, 0.0923160315, 0.0132866465, 0.981700182, -0.189969718, -0.091460228, 0.190383285, 0.977440178), CFrame.new(-0.670648634, -1.98818183, -0.225803435, 0.904057264, 0, 0.427411556, 0.0614461042, 0.989612103, -0.129970267, -0.422971606, 0.143763334, 0.894665956)}, 0.3, false)
  1250. end
  1251. for i = 0, 1, 0.4 do
  1252. swait()
  1253. PlayAnimationFromTable({CFrame.new(0.06436342, -2.23517418e-08, -2.65731883, -0.20339483, -0.140757054, 0.96892637, 0, 0.989612341, 0.143762156, -0.97909683, 0.029240476, -0.201282039), CFrame.new(-0.0654783025, 1.54302526, -0.187817171, 0.814078748, -0.183808208, -0.550899565, 0.26771009, 0.960567772, 0.0751078427, 0.515370965, -0.208625048, 0.831185162), CFrame.new(1.02611399, 0.612237453, -0.666926324, 0.249249265, 0.720524788, 0.647084892, 0.968427658, -0.188727617, -0.162879735, 0.00476393104, 0.6672526, -0.744816422), CFrame.new(-1.38744652, 0.234756529, -0.0856808126, 0.730593145, 0.598141968, 0.329332411, 0.393992484, 0.0246377736, -0.918783486, -0.557676911, 0.801011443, -0.217663303), CFrame.new(0.536582649, -2.00117326, -0.136375591, 0.863181472, 0.00438804273, -0.504874825, -0.0998385102, 0.981700718, -0.162160933, 0.494924486, 0.190380275, 0.847823858), CFrame.new(-0.67065233, -1.98818183, -0.225805357, 0.95443815, 0.075471811, -0.288707316, -0.0428999104, 0.992141724, 0.11753574, 0.295309186, -0.0997950733, 0.950175643)}, 0.3, false)
  1254. end
  1255. HandleWeld.Part0 = RootPart
  1256. HandleWeld.C1 = CFrame.new(-0.796961546, 2.48477173, 0.597694397, -0.004668999, -0.999959767, -0.00765799824, -0.999926627, 0.00458291033, 0.0112209953, -0.0111854468, 0.00770982681, -0.999907732)
  1257. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 5, 10) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.6)
  1258. for i = 0, 1, 0.3 do
  1259. swait()
  1260. PlayAnimationFromTable({CFrame.new(0.125863791, -0.915276229, -2.1584549, 0.982593358, -0.0348575413, -0.182470411, 0.154622063, 0.697892964, 0.69931215, 0.102968521, -0.715353429, 0.691134751), CFrame.new(-0.213870525, 1.34581661, 0.092140317, 0.936451197, -0.146561041, 0.318714857, 0.308226287, 0.77757287, -0.548066795, -0.167498767, 0.611473918, 0.773333013), CFrame.new(1.76334226, 0.526868582, 0.0277193785, -0.0887514204, -0.95147109, 0.294662774, 0.787864506, -0.248058081, -0.563681602, 0.609420121, 0.18212676, 0.771645665), CFrame.new(-1.65707111, -0.0971298218, -1.16121268, 0.927877128, 0.369196832, 0.0523248352, -0.208833575, 0.630765319, -0.747344494, -0.308921874, 0.682516575, 0.662373364), CFrame.new(0.30006063, -2.10434723, -0.640750527, 0.955899656, -0.120036975, 0.268043309, -0.0415630005, 0.848187268, 0.528063416, -0.290738046, -0.515916288, 0.805792689), CFrame.new(-0.893812895, -1.52909434, -0.510264993, 0.8758955, 0.0110150054, 0.482375145, 0.0557557605, 0.990731537, -0.123864494, -0.479268581, 0.135387495, 0.867163181)}, 0.3, false)
  1261. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 5, 10) * angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  1262. end
  1263. Clone()
  1264. Effects.Block.Create(BrickColor.new("Magenta"), Torso.CFrame, 5, 5, 5, 7, 7, 7, 0.09)
  1265. Effects.Block.Create(BrickColor.new("Black"), Torso.CFrame, 5, 5, 5, 7, 7, 7, 0.07)
  1266. Cloak()
  1267. for i = 0, 3 do
  1268. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=231917987", RootPart, 1, 0.5)
  1269. for i = 0, 1, 0.05 do
  1270. swait()
  1271. MagniDamage(Hitbox, 10, 3, 3, 0, "Normal")
  1272. Effects.Block.Create(BrickColor.new("Black"), Torso.CFrame, 35, 35, 35, 1, 1, 1, 0.1)
  1273. Effects.Wave.Create(BrickColor.new("Black"), FakeHandle.CFrame * angles(3.14, 0, 0), 8, 0, 8, -0.5, 0, -0.5, 0.07)
  1274. Torso.Velocity = RootPart.CFrame.lookVector * 50
  1275. PlayAnimationFromTable({CFrame.new(0.125863791, -0.915276229, -2.1584549, 0.982593358, -0.0348575413, -0.182470411, 0.154622063, 0.697892964, 0.69931215, 0.102968521, -0.715353429, 0.691134751), CFrame.new(-0.213870525, 1.34581661, 0.092140317, 0.936451197, -0.146561041, 0.318714857, 0.308226287, 0.77757287, -0.548066795, -0.167498767, 0.611473918, 0.773333013), CFrame.new(1.76334226, 0.526868582, 0.0277193785, -0.0887514204, -0.95147109, 0.294662774, 0.787864506, -0.248058081, -0.563681602, 0.609420121, 0.18212676, 0.771645665), CFrame.new(-1.65707111, -0.0971298218, -1.16121268, 0.927877128, 0.369196832, 0.0523248352, -0.208833575, 0.630765319, -0.747344494, -0.308921874, 0.682516575, 0.662373364), CFrame.new(0.30006063, -2.10434723, -0.640750527, 0.955899656, -0.120036975, 0.268043309, -0.0415630005, 0.848187268, 0.528063416, -0.290738046, -0.515916288, 0.805792689), CFrame.new(-0.893812895, -1.52909434, -0.510264993, 0.8758955, 0.0110150054, 0.482375145, 0.0557557605, 0.990731537, -0.123864494, -0.479268581, 0.135387495, 0.867163181)}, 0.3, false)
  1276. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 2.5, 0) * angles(math.rad(hobb), math.rad(0), math.rad(90)), 0.1)
  1277. end
  1278. end
  1279. UnCloak()
  1280. HandleWeld.Part0 = RightArm
  1281. HandleWeld.C1 = CFrame.new(0.0606536865, -1.06880665, -0.053850174, 0.999730885, -0.0130999982, 0.0191449989, -0.0131285042, -0.999912977, 0.00136399036, 0.0191254634, -0.00161496829, -0.999815762)
  1282. for i = 0, 1, 0.5 do
  1283. swait()
  1284. PlayAnimationFromTable({CFrame.new(1.09005797, -0.232350051, -3.90874863, -0.881864488, 0.254255384, -0.39707619, -0.185724065, 0.586751103, 0.788181305, 0.43338424, 0.768815756, -0.470213503), CFrame.new(0.258969158, 1.400352, -0.0162278637, 0.743144631, 0.39330554, -0.541338265, -0.37417081, 0.914966702, 0.151104152, 0.554736495, 0.0902607068, 0.827115834), CFrame.new(1.73846245, 0.775831819, -0.0439204425, 0.140527159, -0.395116389, 0.907819033, 0.581733346, -0.708998382, -0.398632497, 0.801148236, 0.584127128, 0.130218834), CFrame.new(-1.68719435, 0.382524014, 0.346671909, -0.136132181, 0.961739779, 0.237749517, -0.804788947, 0.0325954258, -0.592665672, -0.577739537, -0.272018939, 0.769560099), CFrame.new(0.861645699, -0.76870501, -1.18031788, 0.84804976, 3.50877258e-07, -0.529916942, -0.296326637, 0.829036951, -0.47422421, 0.439320445, 0.559193969, 0.703064442), CFrame.new(-0.718663335, -1.64913261, -0.752605975, 0.977551818, 0.20778501, 0.0349000692, -0.15327695, 0.814978004, -0.558853567, -0.144564182, 0.540958822, 0.828531682)}, 0.3, false)
  1285. end
  1286. for i = 0, 1, 0.1 do
  1287. swait()
  1288. PlayAnimationFromTable({CFrame.new(1.16874814, 0.087649703, -3.01424098, -0.763847351, -0.15153259, 0.627365112, 0.173436955, 0.88809824, 0.425677389, -0.621665895, 0.433960825, -0.652090073), CFrame.new(0.0102850273, 1.51787925, -0.350119531, 0.994927764, 0.0477949232, 0.0885133147, -0.0699377656, 0.961112738, 0.267153919, -0.0723026991, -0.271989197, 0.959580243), CFrame.new(2.02295327, 0.592894256, -0.21066469, -0.0100331157, -0.678791642, 0.734262586, 0.73821789, -0.500329137, -0.452443808, 0.674487829, 0.537506223, 0.506115854), CFrame.new(-1.7938509, 0.520119309, 0.0475535393, -0.189724207, 0.583259702, -0.789818287, -0.981819034, -0.107761599, 0.156266108, 0.00603163242, 0.805105925, 0.593100309), CFrame.new(0.0529837236, -1.51703501, -1.229298, 0.968206942, 0.1957497, 0.155748278, -0.0553897098, 0.774924576, -0.629622221, -0.243941426, 0.600977659, 0.761129737), CFrame.new(-0.660935342, -1.72367346, -0.239443257, 0.943123341, 0.29291743, 0.157219172, -0.226874918, 0.912781537, -0.339643747, -0.242994219, 0.284656852, 0.927321076)}, 0.3, false)
  1289. end
  1290. attack = false
  1291. end
  1292.  
  1293. mouse.Button1Down:connect(function()
  1294.  
  1295. if attack == false and attacktype == 1 then
  1296. attacktype = 2
  1297. attackone()
  1298. else
  1299. if attack == false and attacktype == 2 then
  1300. attacktype = 3
  1301. attacktwo()
  1302. else
  1303. if attack == false and attacktype == 3 then
  1304. attacktype = 1
  1305. attackthree()
  1306. end
  1307. end
  1308. end
  1309. end
  1310. )
  1311. mouse.KeyDown:connect(function(k)
  1312.  
  1313. k = k:lower()
  1314. if attack == false and k == "z" and co1 <= cooldown1 then
  1315. cooldown1 = 0
  1316. Driver()
  1317. else
  1318. if attack == false and k == "x" and co2 <= cooldown2 then
  1319. cooldown2 = 0
  1320. fatguywindmill()
  1321. else
  1322. if attack == false and k == "c" and co3 <= cooldown3 then
  1323. cooldown3 = 0
  1324. qaeoshotcarnival()
  1325. else
  1326. if attack == false and k == "v" and co4 <= cooldown4 then
  1327. cooldown4 = 0
  1328. coolflips()
  1329. end
  1330. end
  1331. end
  1332. end
  1333. end
  1334. )
  1335. updateskills = function()
  1336.  
  1337. if cooldown1 <= co1 then
  1338. cooldown1 = cooldown1 + 0.033333333333333
  1339. end
  1340. if cooldown2 <= co2 then
  1341. cooldown2 = cooldown2 + 0.033333333333333
  1342. end
  1343. if cooldown3 <= co3 then
  1344. cooldown3 = cooldown3 + 0.033333333333333
  1345. end
  1346. if cooldown4 <= co4 then
  1347. cooldown4 = cooldown4 + 0.033333333333333
  1348. end
  1349. end
  1350.  
  1351. while 1 do
  1352. swait()
  1353. updateskills()
  1354. bar4:TweenSize(UDim2.new(1 * (cooldown4 / co4), 0, 1, 0), "Out", "Quad", 0.5)
  1355. bar3:TweenSize(UDim2.new(1 * (cooldown3 / co3), 0, 1, 0), "Out", "Quad", 0.5)
  1356. bar1:TweenSize(UDim2.new(1 * (cooldown1 / co1), 0, 1, 0), "Out", "Quad", 0.5)
  1357. bar2:TweenSize(UDim2.new(1 * (cooldown2 / co2), 0, 1, 0), "Out", "Quad", 0.5)
  1358. if hobb <= 360 then
  1359. hobb = hobb + 5
  1360. else
  1361. hobb = 0
  1362. end
  1363. for i,v in pairs(Character:GetChildren()) do
  1364. if v:IsA("Part") then
  1365. v.Material = "SmoothPlastic"
  1366. else
  1367. if v:IsA("Accessory") then
  1368. v:WaitForChild("Handle").Material = "SmoothPlastic"
  1369. end
  1370. end
  1371. end
  1372. Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  1373. velocity = RootPart.Velocity.y
  1374. sine = sine + change
  1375. local hit, pos = rayCast(RootPart.Position, CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0)).lookVector, 4, Character)
  1376. if equipped == true or equipped == false then
  1377. if 1 < RootPart.Velocity.y and hit == nil then
  1378. Anim = "Jump"
  1379. if attack == false then
  1380. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1381. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3)
  1382. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.8, -0.5) * angles(math.rad(230), math.rad(0), math.rad(0)), 0.3)
  1383. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1384. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1385. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1386. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(30), math.rad(-60)), 0.3)
  1387. end
  1388. else
  1389. if RootPart.Velocity.y < -1 and hit == nil then
  1390. Anim = "Fall"
  1391. if attack == false then
  1392. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1393. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(10), math.rad(0), math.rad(0)), 0.3)
  1394. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.8, -0.5) * angles(math.rad(230), math.rad(0), math.rad(0)), 0.3)
  1395. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1396. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1397. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1398. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(30), math.rad(-60)), 0.3)
  1399. end
  1400. else
  1401. if Torsovelocity < 1 and hit ~= nil then
  1402. Anim = "Idle"
  1403. if attack == false then
  1404. change = 1
  1405. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(40), math.rad(0)), 0.3)
  1406. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(-10), math.rad(-40), math.rad(0)), 0.3)
  1407. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.8, -0.5) * angles(math.rad(220), math.rad(0), math.rad(0)), 0.3)
  1408. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  1409. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2, 0) * angles(math.rad(0), math.rad(-20), math.rad(0)), 0.3)
  1410. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1411. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(30), math.rad(-60)), 0.3)
  1412. end
  1413. else
  1414. if 2 < Torsovelocity and hit ~= nil then
  1415. Anim = "Walk"
  1416. if attack == false then
  1417. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1418. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new(0, 1.5, 0) * angles(math.rad(-10), math.rad(0), math.rad(0)), 0.3)
  1419. RW.C0 = clerp(RW.C0, CFrame.new(1.5, 0.8, -0.5) * angles(math.rad(230), math.rad(0), math.rad(0)), 0.3)
  1420. LW.C0 = clerp(LW.C0, CFrame.new(-1.5, 0, 0) * angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  1421. RH.C0 = clerp(RH.C0, CFrame.new(0.5, -2, 0 + 1 * math.cos((sine) / 3)) * angles(math.rad(0 - 50 * math.cos((sine) / 3)), math.rad(0), math.rad(0)), 0.3)
  1422. LH.C0 = clerp(LH.C0, CFrame.new(-0.5, -2, 0 - 1 * math.cos((sine) / 3)) * angles(math.rad(0 + 50 * math.cos((sine) / 3)), math.rad(0), math.rad(0)), 0.3)
  1423. FakeHandleWeld.C0 = clerp(FakeHandleWeld.C0, CFrame.new(0, 0, 0) * angles(math.rad(60), math.rad(30), math.rad(-60)), 0.3)
  1424. end
  1425. end
  1426. end
  1427. end
  1428. end
  1429. end
  1430. if 0 < #Effects then
  1431. for e = 1, #Effects do
  1432. if Effects[e] ~= nil then
  1433. local Thing = Effects[e]
  1434. if Thing ~= nil then
  1435. local Part = Thing[1]
  1436. local Mode = Thing[2]
  1437. local Delay = Thing[3]
  1438. local IncX = Thing[4]
  1439. local IncY = Thing[5]
  1440. local IncZ = Thing[6]
  1441. if Thing[1].Transparency <= 1 then
  1442. if Thing[2] == "Block1" then
  1443. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  1444. Mesh = Thing[1].Mesh
  1445. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1446. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1447. else
  1448. if Thing[2] == "Block2" then
  1449. Thing[1].CFrame = Thing[1].CFrame
  1450. Mesh = Thing[7]
  1451. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1452. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1453. else
  1454. if Thing[2] == "Cylinder" then
  1455. Mesh = Thing[1].Mesh
  1456. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1457. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1458. else
  1459. if Thing[2] == "Blood" then
  1460. Mesh = Thing[7]
  1461. Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, 0.5, 0)
  1462. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  1463. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1464. else
  1465. if Thing[2] == "Elec" then
  1466. Mesh = Thing[1].Mesh
  1467. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  1468. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1469. else
  1470. if Thing[2] == "Disappear" then
  1471. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1472. else
  1473. if Thing[2] == "Shatter" then
  1474. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  1475. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  1476. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  1477. Thing[6] = Thing[6] + Thing[5]
  1478. end
  1479. end
  1480. end
  1481. end
  1482. end
  1483. end
  1484. end
  1485. else
  1486. Part.Parent = nil
  1487. table.remove(Effects, e)
  1488. end
  1489. end
  1490. end
  1491. end
  1492. end
  1493. do
  1494. do
  1495. if 0 < #ShootEffects then
  1496. for e = 1, #ShootEffects do
  1497. if ShootEffects[e] ~= nil then
  1498. local Thing = ShootEffects[e]
  1499. if Thing ~= nil then
  1500. local Part = Thing[1]
  1501. local Mode = Thing[2]
  1502. local Delay = Thing[3]
  1503. local IncX = Thing[4]
  1504. local IncY = Thing[5]
  1505. local IncZ = Thing[6]
  1506. if Thing[2] == "Blast" then
  1507. local Look = Thing[1]
  1508. local hit, pos = rayCast(Thing[4], Look.lookVector, Thing[9], Character)
  1509. local mag = (Thing[4] - pos).magnitude
  1510. Thing[8].CFrame = CFrame.new((Thing[4] + pos) / 2, pos) * angles(-1.57, 0, 0)
  1511. Thing[4] = Thing[4] + Look.lookVector * Thing[9]
  1512. Thing[3] = Thing[3] - 1
  1513. Effects.Ring.Create(BrickColor.new("Black"), Thing[8].CFrame * angles(1.47, 0, 0), 10, 10, 10, 0.5, 0.5, 0.5, 0.07)
  1514. if hit ~= nil or Thing[3] <= 0 then
  1515. Thing[3] = 0
  1516. ref = CreatePart(EffectModel, "SmoothPlastic", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new())
  1517. ref.Anchored = true
  1518. ref.CFrame = cn(pos)
  1519. game:GetService("Debris"):AddItem(ref, 1)
  1520. ref2 = CreatePart(EffectModel, "SmoothPlastic", 0, 1, BrickColor.new("Really red"), "Reference", Vector3.new(5, 5, 5))
  1521. ref2.Anchored = true
  1522. ref2.CFrame = cn(pos)
  1523. game:GetService("Debris"):AddItem(ref2, 5)
  1524. size = 3
  1525. if Thing[10] == 2 then
  1526. freeze = true
  1527. size = 4
  1528. CreateSound("http://www.roblox.com/asset/?id=188959279", ref, 1, 1)
  1529. else
  1530. CreateSound("http://www.roblox.com/asset/?id=188959279", ref, 1, 2)
  1531. end
  1532. MagniDamage(ref, 20, Thing[5], Thing[6], Thing[7], "Knockdown")
  1533. freeze = false
  1534. for i = 1, 8 do
  1535. Effects.Break.Create(BrickColor.new("Black"), ref.CFrame * cn(math.random(-200, 200) / 100, math.random(-200, 200) / 100, math.random(-200, 200) / 100), math.random(20, 50) / 100, math.random(1, 5), math.random(20, 50) / 100)
  1536. end
  1537. if Thing[10] == 2 then
  1538. Effects.Sphere.Create(BrickColor.new("Black"), cn(ref.Position), 30, 30, 30, 5, 5, 5, 0.02)
  1539. Effects.Block.Create(BrickColor.new("Black"), cn(ref.Position), 30, 30, 30, 5, 5, 5, 0.03)
  1540. end
  1541. end
  1542. if Thing[3] <= 0 then
  1543. Thing[8].Transparency = 1
  1544. game:GetService("Debris"):AddItem(Thing[8], 5)
  1545. table.remove(ShootEffects, e)
  1546. end
  1547. else
  1548. Part.Parent = nil
  1549. table.remove(ShootEffects, e)
  1550. end
  1551. end
  1552. end
  1553. end
  1554. end
  1555. -- DECOMPILER ERROR at PC10455: LeaveBlock: unexpected jumping out DO_STMT
  1556.  
  1557. end
  1558. end
  1559. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement