Advertisement
AgentVK

ULTIMATE COMBINATION!

Oct 28th, 2017
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 421.94 KB | None | 0 0
  1. Player=game:GetService("Players").LocalPlayer
  2. -----------------------------------------------------------------
  3. local p = game.Players.LocalPlayer
  4. local char = p.Character
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. z = Instance.new("Sound", torso)
  13. z.SoundId = "rbxassetid://206153677" -- Put Music ID Here.
  14. z.Looped = true
  15. z.Pitch = 0.73
  16. z.Volume = 1
  17. wait(.1)
  18. z:Play()
  19. local hum = char.Humanoid
  20. local cam = game.Workspace.CurrentCamera
  21. local root = char.HumanoidRootPart
  22. local deb = false
  23. local shot = 0
  24. local stanceToggle = "Normal"
  25. local l = game:GetService("Lighting")
  26. local runs = game:GetService("RunService")
  27. local debris=game:service"Debris"
  28. local rs = runs.RenderStepped
  29. local hb = runs.Heartbeat
  30. local step = runs.Stepped
  31. local stanceToggle = "Normal"
  32. math.randomseed(os.time())
  33. pts = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  34. ptz = {0.75, 0.8, 0.85, 0.9, 0.95, 1}
  35. idz = {"231917856", "231917863"}
  36. ----------------------------------------------------
  37. --[[for i,v in pairs(char:children()) do
  38. if v:IsA("Hat") then
  39. v:Destroy()
  40. end
  41. end]]--
  42. for i,v in pairs (hed:GetChildren()) do
  43. if v:IsA("Sound") then
  44. v:Destroy()
  45. end
  46. end
  47. ----------------------------------------------------
  48. Debounces = {
  49. CanAttack = true;
  50. CanJoke = true;
  51. NoIdl = false;
  52. Slashing = false;
  53. Slashed = false;
  54. ks = false;
  55. RKick = false;
  56. RKicked = false;
  57. }
  58. ----------------------------------------------------
  59. function weld5(part0, part1, c0, c1)
  60. weeld=Instance.new("Weld", part0)
  61. weeld.Part0=part0
  62. weeld.Part1=part1
  63. weeld.C0=c0
  64. weeld.C1=c1
  65. return weeld
  66. end
  67. ----------------------------------------------------
  68. function lerp(a, b, t) -- Linear interpolation
  69. return a + (b - a)*t
  70. end
  71.  
  72. function slerp(a, b, t) --Spherical interpolation
  73. dot = a:Dot(b)
  74. if dot > 0.99999 or dot < -0.99999 then
  75. return t <= 0.5 and a or b
  76. else
  77. r = math.acos(dot)
  78. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  79. end
  80. end
  81.  
  82. function matrixInterpolate(a, b, t)
  83. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  84. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  85. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  86. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  87. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  88. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  89. local t = v1:Dot(v2)
  90. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  91. return CFrame.new()
  92. end
  93. return CFrame.new(
  94. v0.x, v0.y, v0.z,
  95. v1.x, v1.y, v1.z,
  96. v2.x, v2.y, v2.z,
  97. v3.x, v3.y, v3.z)
  98. end
  99. ----------------------------------------------------
  100. function genWeld(a,b)
  101. local w = Instance.new("Weld",a)
  102. w.Part0 = a
  103. w.Part1 = b
  104. return w
  105. end
  106. function weld(a, b)
  107. local weld = Instance.new("Weld")
  108. weld.Name = "W"
  109. weld.Part0 = a
  110. weld.Part1 = b
  111. weld.C0 = a.CFrame:inverse() * b.CFrame
  112. weld.Parent = a
  113. return weld;
  114. end
  115. ----------------------------------------------------
  116. function Lerp(c1,c2,al)
  117. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  118. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  119. for i,v in pairs(com1) do
  120. com1[i] = v+(com2[i]-v)*al
  121. end
  122. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  123. end
  124. ----------------------------------------------------
  125. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  126. local wld = Instance.new("Weld", wp1)
  127. wld.Part0 = wp0
  128. wld.Part1 = wp1
  129. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  130. end
  131. ----------------------------------------------------
  132. function Tween(a,b,c)
  133. return a+(b-a)*c
  134. end
  135. ----------------------------------------------------
  136. function NewPart(prnt,siz,cf,col,mat)
  137. local prt=Instance.new("Part")
  138. prt.Parent=prnt
  139. prt.FormFactor=3
  140. prt.Name="Part"
  141. prt.Size=siz
  142. prt.CanCollide=false
  143. prt.Anchored=true
  144. prt.Locked=true
  145. prt.TopSurface=10
  146. prt.BottomSurface=10
  147. prt.FrontSurface=10
  148. prt.BackSurface=10
  149. prt.LeftSurface=10
  150. prt.RightSurface=10
  151. prt:BreakJoints()
  152. prt.CFrame=cf or CFrame.new(30,10,30)
  153. prt.Material=mat
  154. prt.BrickColor=BrickColor.new(col)
  155. m=Instance.new("SpecialMesh",prt)
  156. m.MeshType=6
  157. return prt
  158. end
  159. ----------------------------------------------------
  160. newWeld(torso, larm, -1.5, 0.5, 0)
  161. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  162. newWeld(torso, rarm, 1.5, 0.5, 0)
  163. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  164. newWeld(torso, hed, 0, 1.5, 0)
  165. newWeld(torso, lleg, -0.5, -1, 0)
  166. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  167. newWeld(torso, rleg, 0.5, -1, 0)
  168. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  169. newWeld(root, torso, 0, -1, 0)
  170. torso.Weld.C1 = CFrame.new(0, -1, 0)
  171. ----------------------------------------------------
  172. z = Instance.new("Sound",char)
  173. z.SoundId = "rbxassetid://343691920"
  174. z.Looped = true
  175. z.Volume = 1
  176. z.Pitch = 1
  177. wait(1)
  178. --z:Play()
  179. ----------------------------------------------------
  180. local m = Instance.new("Model")
  181. m.Name = "Sword"
  182. p1 = Instance.new("Part", m)
  183. p1.BrickColor = BrickColor.new("Dark Indigo")
  184. p1.Material = Enum.Material.SmoothPlastic
  185. p1.Reflectance = 0.30000001192093
  186. p1.CFrame = CFrame.new(0.0817779973, 16.9978428, 24.1231575, 4.35829861e-008, -3.15302451e-010, -1, -1.2260136e-008, 1.00000417, -2.07065101e-010, 1.00000417, 1.22591297e-008, 4.31318767e-008)
  187. p1.CanCollide = false
  188. p1.Locked = true
  189. p1.FormFactor = Enum.FormFactor.Custom
  190. p1.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  191. p1.BottomSurface = Enum.SurfaceType.Smooth
  192. p1.TopSurface = Enum.SurfaceType.Smooth
  193. b1 = Instance.new("SpecialMesh", p1)
  194. b1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  195. b1.TextureId = ""
  196. b1.MeshType = Enum.MeshType.FileMesh
  197. b1.Name = "Mesh"
  198. b1.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  199. p2 = Instance.new("Part", m)
  200. p2.BrickColor = BrickColor.new("Dark Indigo")
  201. p2.Material = Enum.Material.SmoothPlastic
  202. p2.Reflectance = 0.30000001192093
  203. p2.CFrame = CFrame.new(-0.091170989, 17.6237793, 24.1108494, 4.40342767e-008, -4.2354209e-010, -1, -1.22612445e-008, 1.00001252, -9.88276266e-011, 1.00001252, 1.22582255e-008, 4.2680945e-008)
  204. p2.CanCollide = false
  205. p2.Locked = true
  206. p2.FormFactor = Enum.FormFactor.Custom
  207. p2.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  208. p2.BottomSurface = Enum.SurfaceType.Smooth
  209. p2.TopSurface = Enum.SurfaceType.Smooth
  210. b2 = Instance.new("SpecialMesh", p2)
  211. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  212. b2.TextureId = ""
  213. b2.MeshType = Enum.MeshType.FileMesh
  214. b2.Name = "Mesh"
  215. b2.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  216. p3 = Instance.new("Part", m)
  217. p3.BrickColor = BrickColor.new("Dark Indigo")
  218. p3.Material = Enum.Material.SmoothPlastic
  219. p3.Reflectance = 0.30000001192093
  220. p3.CFrame = CFrame.new(-0.001290977, 17.3269539, 23.416975, -1, -5.31782618e-010, -7.71617437e-010, 9.4117214e-012, 1.00002086, 1.22623529e-008, -1.49195145e-009, 1.22573214e-008, -1.00002086)
  221. p3.CanCollide = false
  222. p3.Locked = true
  223. p3.FormFactor = Enum.FormFactor.Custom
  224. p3.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  225. p3.BottomSurface = Enum.SurfaceType.Smooth
  226. p3.TopSurface = Enum.SurfaceType.Smooth
  227. b3 = Instance.new("SpecialMesh", p3)
  228. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  229. b3.TextureId = ""
  230. b3.MeshType = Enum.MeshType.FileMesh
  231. b3.Name = "Mesh"
  232. b3.Scale = Vector3.new(0.204801083, 0.204801321, 0.136534423)
  233. p4 = Instance.new("Part", m)
  234. p4.BrickColor = BrickColor.new("Black")
  235. p4.CFrame = CFrame.new(-0.00478596753, 17.3274307, 23.980545, 1, -1.23001165e-009, -6.40024533e-010, -1.1765143e-010, 1.22634614e-008, 1.00002921, 1.95034877e-009, -1.00002921, 1.22564172e-008)
  236. p4.CanCollide = false
  237. p4.Locked = true
  238. p4.FormFactor = Enum.FormFactor.Custom
  239. p4.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  240. p4.TopSurface = Enum.SurfaceType.Weld
  241. b4 = Instance.new("SpecialMesh", p4)
  242. b4.MeshId = "http://www.roblox.com/asset/?id=1033714"
  243. b4.TextureId = ""
  244. b4.MeshType = Enum.MeshType.FileMesh
  245. b4.Name = "Mesh"
  246. b4.VertexColor = Vector3.new(0, 0.899999976, 0.699999988)
  247. b4.Scale = Vector3.new(0.0455113538, 0.455114096, 0.0455114767)
  248. p5 = Instance.new("Part", m)
  249. p5.BrickColor = BrickColor.new("Really black")
  250. p5.Material = Enum.Material.Neon
  251. p5.Reflectance = 0.5
  252. p5.Transparency = 0.0099999997764826
  253. p5.CFrame = CFrame.new(-0.00582695846, 17.0333862, 24.0054722, -1, -3.17473727e-008, 8.22757613e-008, -8.72001635e-008, 0.342033029, -0.939727962, -2.40875098e-009, -0.939727962, -0.342033029)
  254. p5.CanCollide = false
  255. p5.Locked = true
  256. p5.FormFactor = Enum.FormFactor.Custom
  257. p5.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  258. b5 = Instance.new("SpecialMesh", p5)
  259. b5.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  260. b5.TextureId = ""
  261. b5.MeshType = Enum.MeshType.FileMesh
  262. b5.Name = "Mesh"
  263. b5.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  264. p6 = Instance.new("Part", m)
  265. p6.BrickColor = BrickColor.new("Dark Indigo")
  266. p6.Material = Enum.Material.SmoothPlastic
  267. p6.Reflectance = 0.30000001192093
  268. p6.CFrame = CFrame.new(-0.0911659524, 17.3251324, 24.1947174, 4.58651641e-008, -8.57646398e-010, -1, 0, 1.00004601, 3.3526959e-010, 1.00004601, 0, 4.08515106e-008)
  269. p6.CanCollide = false
  270. p6.Locked = true
  271. p6.FormFactor = Enum.FormFactor.Custom
  272. p6.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  273. p6.BottomSurface = Enum.SurfaceType.Smooth
  274. p6.TopSurface = Enum.SurfaceType.Smooth
  275. b6 = Instance.new("SpecialMesh", p6)
  276. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  277. b6.TextureId = ""
  278. b6.MeshType = Enum.MeshType.FileMesh
  279. b6.Name = "Mesh"
  280. b6.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  281. p7 = Instance.new("Part", m)
  282. p7.BrickColor = BrickColor.new("Dark Indigo")
  283. p7.Material = Enum.Material.SmoothPlastic
  284. p7.Reflectance = 0.30000001192093
  285. p7.CFrame = CFrame.new(-0.00128895044, 17.3275337, 23.4541702, -1, -9.6589059e-010, -2.60252264e-009, 4.43512033e-010, 1.00005436, 1.00633792e-012, -3.32286376e-009, -1.006348e-012, -1.00005436)
  286. p7.CanCollide = false
  287. p7.Locked = true
  288. p7.FormFactor = Enum.FormFactor.Custom
  289. p7.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  290. p7.BottomSurface = Enum.SurfaceType.Smooth
  291. p7.TopSurface = Enum.SurfaceType.Smooth
  292. b7 = Instance.new("SpecialMesh", p7)
  293. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  294. b7.TextureId = ""
  295. b7.MeshType = Enum.MeshType.FileMesh
  296. b7.Name = "Mesh"
  297. b7.Scale = Vector3.new(0.141085163, 0.150187641, 0.0728183538)
  298. p8 = Instance.new("Part", m)
  299. p8.BrickColor = BrickColor.new("Dark Indigo")
  300. p8.Material = Enum.Material.SmoothPlastic
  301. p8.Reflectance = 0.30000001192093
  302. p8.CFrame = CFrame.new(-0.0911709517, 16.9988403, 24.124567, 4.67748862e-008, -1.07413611e-009, -1, -2.01272679e-012, 1.0000627, 5.5175492e-010, 1.0000627, -2.01271768e-012, 3.99425133e-008)
  303. p8.CanCollide = false
  304. p8.Locked = true
  305. p8.FormFactor = Enum.FormFactor.Custom
  306. p8.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  307. p8.BottomSurface = Enum.SurfaceType.Smooth
  308. p8.TopSurface = Enum.SurfaceType.Smooth
  309. b8 = Instance.new("SpecialMesh", p8)
  310. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  311. b8.TextureId = ""
  312. b8.MeshType = Enum.MeshType.FileMesh
  313. b8.Name = "Mesh"
  314. b8.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  315. p9 = Instance.new("Part", m)
  316. p9.BrickColor = BrickColor.new("Dark Indigo")
  317. p9.Material = Enum.Material.SmoothPlastic
  318. p9.Reflectance = 0.30000001192093
  319. p9.CFrame = CFrame.new(0.0817780346, 17.0240288, 24.112257, 4.72262052e-008, -1.18238208e-009, -1, -3.01911295e-012, 1.00007105, 6.59998722e-010, 1.00007105, -3.01909929e-012, 3.94915567e-008)
  320. p9.CanCollide = false
  321. p9.Locked = true
  322. p9.FormFactor = Enum.FormFactor.Custom
  323. p9.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  324. p9.BottomSurface = Enum.SurfaceType.Smooth
  325. p9.TopSurface = Enum.SurfaceType.Smooth
  326. b9 = Instance.new("SpecialMesh", p9)
  327. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  328. b9.TextureId = ""
  329. b9.MeshType = Enum.MeshType.FileMesh
  330. b9.Name = "Mesh"
  331. b9.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  332. p10 = Instance.new("Part", m)
  333. p10.BrickColor = BrickColor.new("Dark Indigo")
  334. p10.Material = Enum.Material.SmoothPlastic
  335. p10.Reflectance = 0.30000001192093
  336. p10.CFrame = CFrame.new(-0.00128594786, 17.3279648, 23.4923096, -1, -1.29062894e-009, -3.96357436e-009, 7.68243857e-010, 1.00007939, 4.02548698e-012, -4.68392258e-009, -4.02549782e-012, -1.00007939)
  337. p10.CanCollide = false
  338. p10.Locked = true
  339. p10.FormFactor = Enum.FormFactor.Custom
  340. p10.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  341. p10.BottomSurface = Enum.SurfaceType.Smooth
  342. p10.TopSurface = Enum.SurfaceType.Smooth
  343. b10 = Instance.new("SpecialMesh", p10)
  344. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  345. b10.TextureId = ""
  346. b10.MeshType = Enum.MeshType.FileMesh
  347. b10.Name = "Mesh"
  348. b10.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  349. p11 = Instance.new("Part", m)
  350. p11.BrickColor = BrickColor.new("Dark Indigo")
  351. p11.Material = Enum.Material.Neon
  352. p11.Reflectance = 0.5
  353. p11.Transparency = 0.30000001192093
  354. p11.CFrame = CFrame.new(-0.00582293561, 17.1578236, 24.0415058, -1, -3.45386226e-008, 8.19521944e-008, -8.65539533e-008, 0.342050195, -0.939775169, -5.14234655e-009, -0.939775169, -0.342050195)
  355. p11.CanCollide = false
  356. p11.Locked = true
  357. p11.FormFactor = Enum.FormFactor.Custom
  358. p11.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  359. b11 = Instance.new("SpecialMesh", p11)
  360. b11.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  361. b11.TextureId = ""
  362. b11.MeshType = Enum.MeshType.FileMesh
  363. b11.Name = "Mesh"
  364. b11.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  365. p12 = Instance.new("Part", m)
  366. p12.BrickColor = BrickColor.new("Dark Indigo")
  367. p12.Material = Enum.Material.SmoothPlastic
  368. p12.Reflectance = 0.30000001192093
  369. p12.CFrame = CFrame.new(0.081781067, 17.6252537, 24.1378975, 4.85987641e-008, -1.50826196e-009, -1, 0, 1.00009632, 9.8587094e-010, 1.00009632, 0, 3.81200884e-008)
  370. p12.CanCollide = false
  371. p12.Locked = true
  372. p12.FormFactor = Enum.FormFactor.Custom
  373. p12.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  374. p12.BottomSurface = Enum.SurfaceType.Smooth
  375. p12.TopSurface = Enum.SurfaceType.Smooth
  376. b12 = Instance.new("SpecialMesh", p12)
  377. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  378. b12.TextureId = ""
  379. b12.MeshType = Enum.MeshType.FileMesh
  380. b12.Name = "Mesh"
  381. b12.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  382. p13 = Instance.new("Part", m)
  383. p13.BrickColor = BrickColor.new("Dark Indigo")
  384. p13.Material = Enum.Material.SmoothPlastic
  385. p13.Reflectance = 0.30000001192093
  386. p13.CFrame = CFrame.new(-0.0911709294, 17.6003609, 24.1255779, 4.90500973e-008, -1.61651148e-009, -1, -1.00640351e-012, 1.00010467, 1.09411835e-009, 1.00010467, -1.00639896e-012, 3.76691176e-008)
  387. p13.CanCollide = false
  388. p13.Locked = true
  389. p13.FormFactor = Enum.FormFactor.Custom
  390. p13.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  391. p13.BottomSurface = Enum.SurfaceType.Smooth
  392. p13.TopSurface = Enum.SurfaceType.Smooth
  393. b13 = Instance.new("SpecialMesh", p13)
  394. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  395. b13.TextureId = ""
  396. b13.MeshType = Enum.MeshType.FileMesh
  397. b13.Name = "Mesh"
  398. b13.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  399. p14 = Instance.new("Part", m)
  400. p14.BrickColor = BrickColor.new("Really black")
  401. p14.Material = Enum.Material.Neon
  402. p14.Reflectance = 0.5
  403. p14.Transparency = 0.0099999997764826
  404. p14.CFrame = CFrame.new(-0.00582291186, 17.1595592, 24.0385437, -1, -3.59332226e-008, 8.17913985e-008, -8.62302869e-008, 0.342058837, -0.939798892, -6.50784671e-009, -0.939798892, -0.342058837)
  405. p14.CanCollide = false
  406. p14.Locked = true
  407. p14.FormFactor = Enum.FormFactor.Custom
  408. p14.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  409. b14 = Instance.new("SpecialMesh", p14)
  410. b14.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  411. b14.TextureId = ""
  412. b14.MeshType = Enum.MeshType.FileMesh
  413. b14.Name = "Mesh"
  414. b14.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  415. p15 = Instance.new("Part", m)
  416. p15.BrickColor = BrickColor.new("Dark Indigo")
  417. p15.Material = Enum.Material.SmoothPlastic
  418. p15.Reflectance = 0.30000001192093
  419. p15.CFrame = CFrame.new(0.0817780942, 17.6473274, 24.125988, 4.99642638e-008, -1.83414528e-009, -1, 0, 1.00012159, 1.31174716e-009, 1.00012159, 0, 3.67556794e-008)
  420. p15.CanCollide = false
  421. p15.Locked = true
  422. p15.FormFactor = Enum.FormFactor.Custom
  423. p15.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  424. p15.BottomSurface = Enum.SurfaceType.Smooth
  425. p15.TopSurface = Enum.SurfaceType.Smooth
  426. b15 = Instance.new("SpecialMesh", p15)
  427. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  428. b15.TextureId = ""
  429. b15.MeshType = Enum.MeshType.FileMesh
  430. b15.Name = "Mesh"
  431. b15.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  432. p16 = Instance.new("Part", m)
  433. p16.BrickColor = BrickColor.new("Really black")
  434. p16.Material = Enum.Material.Neon
  435. p16.Reflectance = 0.5
  436. p16.Transparency = 0.0099999997764826
  437. p16.CFrame = CFrame.new(-0.00581388921, 17.3299732, 23.85042, 1, -6.70165434e-009, -1.94239758e-009, -1.41999779e-009, 1.00637185e-012, 1.00012994, 7.42203454e-009, -1.00012994, -1.00642454e-012)
  438. p16.CanCollide = false
  439. p16.Locked = true
  440. p16.FormFactor = Enum.FormFactor.Custom
  441. p16.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  442. b16 = Instance.new("SpecialMesh", p16)
  443. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  444. b16.TextureId = ""
  445. b16.MeshType = Enum.MeshType.FileMesh
  446. b16.Name = "Mesh"
  447. b16.Scale = Vector3.new(0.115295447, 0.288239002, 0.115295798)
  448. p17 = Instance.new("Part", m)
  449. p17.BrickColor = BrickColor.new("Dark Indigo")
  450. p17.Material = Enum.Material.Neon
  451. p17.Reflectance = 0.5
  452. p17.Transparency = 0.30000001192093
  453. p17.CFrame = CFrame.new(-0.00582687836, 17.033802, 24.0114479, -1, -3.73345159e-008, 8.16281727e-008, -8.59066134e-008, 0.34206748, -0.939822674, -7.88048204e-009, -0.939822674, -0.34206748)
  454. p17.CanCollide = false
  455. p17.Locked = true
  456. p17.FormFactor = Enum.FormFactor.Custom
  457. p17.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  458. b17 = Instance.new("SpecialMesh", p17)
  459. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  460. b17.TextureId = ""
  461. b17.MeshType = Enum.MeshType.FileMesh
  462. b17.Name = "Mesh"
  463. b17.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  464. p18 = Instance.new("Part", m)
  465. p18.BrickColor = BrickColor.new("Really black")
  466. p18.Material = Enum.Material.Neon
  467. p18.Reflectance = 0.5
  468. p18.Transparency = 0.0099999997764826
  469. p18.CFrame = CFrame.new(-0.00582286948, 17.506052, 24.0348091, 1, -6.42979714e-009, -4.6364903e-009, -1.63763048e-009, -0.342070431, 0.939830661, 8.34332603e-009, -0.939830661, -0.342070431)
  470. p18.CanCollide = false
  471. p18.Locked = true
  472. p18.FormFactor = Enum.FormFactor.Custom
  473. p18.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  474. b18 = Instance.new("SpecialMesh", p18)
  475. b18.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  476. b18.TextureId = ""
  477. b18.MeshType = Enum.MeshType.FileMesh
  478. b18.Name = "Mesh"
  479. b18.Scale = Vector3.new(0.0637515709, 0.151704669, 0.060681954)
  480. p19 = Instance.new("Part", m)
  481. p19.BrickColor = BrickColor.new("Dark Indigo")
  482. p19.Material = Enum.Material.SmoothPlastic
  483. p19.Reflectance = 0.30000001192093
  484. p19.CFrame = CFrame.new(-0.091168873, 17.626297, 24.1393166, 5.18002103e-008, -2.26601116e-009, -1, 2.98023224e-008, 1.00015533, 1.74360792e-009, 1.00015533, -2.98023224e-008, 3.49211859e-008)
  485. p19.CanCollide = false
  486. p19.Locked = true
  487. p19.FormFactor = Enum.FormFactor.Custom
  488. p19.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  489. p19.BottomSurface = Enum.SurfaceType.Smooth
  490. p19.TopSurface = Enum.SurfaceType.Smooth
  491. b19 = Instance.new("SpecialMesh", p19)
  492. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  493. b19.TextureId = ""
  494. b19.MeshType = Enum.MeshType.FileMesh
  495. b19.Name = "Mesh"
  496. b19.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  497. p20 = Instance.new("Part", m)
  498. p20.BrickColor = BrickColor.new("Dark Indigo")
  499. p20.Material = Enum.Material.Neon
  500. p20.Reflectance = 0.5
  501. p20.Transparency = 0.30000001192093
  502. p20.CFrame = CFrame.new(-0.00582686067, 17.6325226, 24.0075035, 1, -7.21604465e-009, -5.15064613e-009, -1.85186089e-009, -0.342076212, 0.939846516, 9.25801658e-009, -0.939846516, -0.342076212)
  503. p20.CanCollide = false
  504. p20.Locked = true
  505. p20.FormFactor = Enum.FormFactor.Custom
  506. p20.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  507. b20 = Instance.new("SpecialMesh", p20)
  508. b20.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  509. b20.TextureId = ""
  510. b20.MeshType = Enum.MeshType.FileMesh
  511. b20.Name = "Mesh"
  512. b20.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  513. p21 = Instance.new("Part", m)
  514. p21.BrickColor = BrickColor.new("Really black")
  515. p21.Material = Enum.Material.Neon
  516. p21.Reflectance = 0.5
  517. p21.Transparency = 0.0099999997764826
  518. p21.CFrame = CFrame.new(-0.00582685182, 17.6313725, 24.0041409, 1, -7.61518404e-009, -5.40870415e-009, -1.95783967e-009, -0.342079103, 0.939854443, 9.72134995e-009, -0.939854443, -0.342079103)
  519. p21.CanCollide = false
  520. p21.Locked = true
  521. p21.FormFactor = Enum.FormFactor.Custom
  522. p21.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  523. b21 = Instance.new("SpecialMesh", p21)
  524. b21.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  525. b21.TextureId = ""
  526. b21.MeshType = Enum.MeshType.FileMesh
  527. b21.Name = "Mesh"
  528. b21.Scale = Vector3.new(0.0606827289, 0.151704669, 0.0606819652)
  529. p22 = Instance.new("Part", m)
  530. p22.BrickColor = BrickColor.new("Dark Indigo")
  531. p22.Material = Enum.Material.Neon
  532. p22.Reflectance = 0.5
  533. p22.Transparency = 0.30000001192093
  534. p22.CFrame = CFrame.new(-0.00581384357, 17.3308601, 23.8497276, 1, -9.4642818e-009, -2.58623145e-009, -2.06381934e-009, -5.96046448e-008, 1.00018072, 1.0184686e-008, -1.00018072, -5.96046448e-008)
  535. p22.CanCollide = false
  536. p22.Locked = true
  537. p22.FormFactor = Enum.FormFactor.Custom
  538. p22.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  539. b22 = Instance.new("SpecialMesh", p22)
  540. b22.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  541. b22.TextureId = ""
  542. b22.MeshType = Enum.MeshType.FileMesh
  543. b22.Name = "Mesh"
  544. b22.Scale = Vector3.new(0.182045415, 0.455114096, 0.182045907)
  545. p23 = Instance.new("Part", m)
  546. p23.BrickColor = BrickColor.new("Dark Indigo")
  547. p23.Material = Enum.Material.SmoothPlastic
  548. p23.Reflectance = 0.30000001192093
  549. p23.CFrame = CFrame.new(0.0817781463, 17.6018543, 24.1276073, 5.3636704e-008, -2.69449041e-009, -1, 5.96041367e-008, 1.00018907, 2.17207852e-009, 1.00018907, -5.96061511e-008, 3.30861596e-008)
  550. p23.CanCollide = false
  551. p23.Locked = true
  552. p23.FormFactor = Enum.FormFactor.Custom
  553. p23.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  554. p23.BottomSurface = Enum.SurfaceType.Smooth
  555. p23.TopSurface = Enum.SurfaceType.Smooth
  556. b23 = Instance.new("SpecialMesh", p23)
  557. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  558. b23.TextureId = ""
  559. b23.MeshType = Enum.MeshType.FileMesh
  560. b23.Name = "Mesh"
  561. b23.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  562. p24 = Instance.new("Part", m)
  563. p24.BrickColor = BrickColor.new("Dark Indigo")
  564. p24.Material = Enum.Material.SmoothPlastic
  565. p24.Reflectance = 0.30000001192093
  566. p24.CFrame = CFrame.new(0.0817811489, 17.0261841, 24.1403275, 5.40880798e-008, -2.80274981e-009, -1, 5.96036287e-008, 1.00019741, 2.28033592e-009, 1.00019741, -5.96076575e-008, 3.26351461e-008)
  567. p24.CanCollide = false
  568. p24.Locked = true
  569. p24.FormFactor = Enum.FormFactor.Custom
  570. p24.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  571. p24.BottomSurface = Enum.SurfaceType.Smooth
  572. p24.TopSurface = Enum.SurfaceType.Smooth
  573. b24 = Instance.new("SpecialMesh", p24)
  574. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  575. b24.TextureId = ""
  576. b24.MeshType = Enum.MeshType.FileMesh
  577. b24.Name = "Mesh"
  578. b24.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  579. p25 = Instance.new("Part", m)
  580. p25.BrickColor = BrickColor.new("Dark Indigo")
  581. p25.Material = Enum.Material.SmoothPlastic
  582. p25.Reflectance = 0.30000001192093
  583. p25.CFrame = CFrame.new(-0.0911658406, 17.3279057, 24.1985741, 5.45394592e-008, -2.9110101e-009, -1, 5.96031207e-008, 1.00020576, 2.38859421e-009, 1.00020576, -5.96091638e-008, 3.21841291e-008)
  584. p25.CanCollide = false
  585. p25.Locked = true
  586. p25.FormFactor = Enum.FormFactor.Custom
  587. p25.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  588. p25.BottomSurface = Enum.SurfaceType.Smooth
  589. p25.TopSurface = Enum.SurfaceType.Smooth
  590. b25 = Instance.new("SpecialMesh", p25)
  591. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  592. b25.TextureId = ""
  593. b25.MeshType = Enum.MeshType.FileMesh
  594. b25.Name = "Mesh"
  595. b25.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  596. p26 = Instance.new("Part", m)
  597. p26.BrickColor = BrickColor.new("Dark Indigo")
  598. p26.Material = Enum.Material.SmoothPlastic
  599. p26.Reflectance = 0.30000001192093
  600. p26.CFrame = CFrame.new(0.0817781538, 17.0480747, 24.1282158, 5.49908421e-008, -3.01927128e-009, -1, 5.96026126e-008, 1.0002141, 2.49685339e-009, 1.0002141, -5.96106702e-008, 3.17331086e-008)
  601. p26.CanCollide = false
  602. p26.Locked = true
  603. p26.FormFactor = Enum.FormFactor.Custom
  604. p26.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  605. p26.BottomSurface = Enum.SurfaceType.Smooth
  606. p26.TopSurface = Enum.SurfaceType.Smooth
  607. b26 = Instance.new("SpecialMesh", p26)
  608. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  609. b26.TextureId = ""
  610. b26.MeshType = Enum.MeshType.FileMesh
  611. b26.Name = "Mesh"
  612. b26.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  613. p27 = Instance.new("Part", m)
  614. p27.BrickColor = BrickColor.new("Dark Indigo")
  615. p27.Material = Enum.Material.Neon
  616. p27.Reflectance = 0.5
  617. p27.Transparency = 0.30000001192093
  618. p27.CFrame = CFrame.new(-0.0058228299, 17.5086784, 24.0401821, 1, -9.95665062e-009, -6.94975455e-009, -2.60511146e-009, -0.342096329, 0.93990171, 1.2448691e-008, -0.93990171, -0.342096329)
  619. p27.CanCollide = false
  620. p27.Locked = true
  621. p27.FormFactor = Enum.FormFactor.Custom
  622. p27.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  623. b27 = Instance.new("SpecialMesh", p27)
  624. b27.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  625. b27.TextureId = ""
  626. b27.MeshType = Enum.MeshType.FileMesh
  627. b27.Name = "Mesh"
  628. b27.Scale = Vector3.new(0.0728192627, 0.182045639, 0.0728183538)
  629. p28 = Instance.new("Part", m)
  630. p28.BrickColor = BrickColor.new("Dark Indigo")
  631. p28.Material = Enum.Material.SmoothPlastic
  632. p28.Reflectance = 0.30000001192093
  633. p28.CFrame = CFrame.new(-0.0911708325, 17.0483608, 24.128624, 5.59055877e-008, -3.23352145e-009, -1, 5.96046448e-008, 1.00023103, 2.71109712e-009, 1.00023103, -5.96046448e-008, 3.08190948e-008)
  634. p28.CanCollide = false
  635. p28.Locked = true
  636. p28.FormFactor = Enum.FormFactor.Custom
  637. p28.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  638. p28.BottomSurface = Enum.SurfaceType.Smooth
  639. p28.TopSurface = Enum.SurfaceType.Smooth
  640. b28 = Instance.new("SpecialMesh", p28)
  641. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  642. b28.TextureId = ""
  643. b28.MeshType = Enum.MeshType.FileMesh
  644. b28.Name = "Mesh"
  645. b28.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  646. p29 = Instance.new("Part", m)
  647. p29.BrickColor = BrickColor.new("Dark Indigo")
  648. p29.Material = Enum.Material.SmoothPlastic
  649. p29.Reflectance = 0.30000001192093
  650. p29.CFrame = CFrame.new(-0.0911708325, 17.0268955, 24.1163101, 5.63569813e-008, -3.34178551e-009, -1, 5.96041367e-008, 1.00023937, 2.81935919e-009, 1.00023937, -5.96061511e-008, 3.03680636e-008)
  651. p29.CanCollide = false
  652. p29.Locked = true
  653. p29.FormFactor = Enum.FormFactor.Custom
  654. p29.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  655. p29.BottomSurface = Enum.SurfaceType.Smooth
  656. p29.TopSurface = Enum.SurfaceType.Smooth
  657. b29 = Instance.new("SpecialMesh", p29)
  658. b29.MeshId = "http://www.roblox.com/asset/?id=3270017"
  659. b29.TextureId = ""
  660. b29.MeshType = Enum.MeshType.FileMesh
  661. b29.Name = "Mesh"
  662. b29.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  663. p30 = Instance.new("Part", m)
  664. p30.BrickColor = BrickColor.new("Dark Indigo")
  665. p30.Material = Enum.Material.SmoothPlastic
  666. p30.Reflectance = 0.30000001192093
  667. p30.CFrame = CFrame.new(-0.0911708325, 17.6495552, 24.1290302, 5.68083784e-008, -3.45005047e-009, -1, 5.96036287e-008, 1.00024772, 2.92762214e-009, 1.00024772, -5.96076575e-008, 2.99170289e-008)
  668. p30.CanCollide = false
  669. p30.Locked = true
  670. p30.FormFactor = Enum.FormFactor.Custom
  671. p30.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  672. p30.BottomSurface = Enum.SurfaceType.Smooth
  673. p30.TopSurface = Enum.SurfaceType.Smooth
  674. b30 = Instance.new("SpecialMesh", p30)
  675. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  676. b30.TextureId = ""
  677. b30.MeshType = Enum.MeshType.FileMesh
  678. b30.Name = "Mesh"
  679. b30.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  680. p31 = Instance.new("Part", m)
  681. p31.BrickColor = BrickColor.new("Dark Indigo")
  682. p31.Material = Enum.Material.SmoothPlastic
  683. p31.Reflectance = 0.30000001192093
  684. p31.CFrame = CFrame.new(0.0817831606, 17.3287735, 24.199791, 5.72597791e-008, -3.55831631e-009, -1, 5.96031207e-008, 1.00025606, 3.03588599e-009, 1.00025606, -5.96091638e-008, 2.94659888e-008)
  685. p31.CanCollide = false
  686. p31.Locked = true
  687. p31.FormFactor = Enum.FormFactor.Custom
  688. p31.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  689. p31.BottomSurface = Enum.SurfaceType.Smooth
  690. p31.TopSurface = Enum.SurfaceType.Smooth
  691. b31 = Instance.new("SpecialMesh", p31)
  692. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  693. b31.TextureId = ""
  694. b31.MeshType = Enum.MeshType.FileMesh
  695. b31.Name = "Mesh"
  696. b31.Scale = Vector3.new(0.0682670251, 0.068267107, 0.0682672113)
  697. p32 = Instance.new("Part", m)
  698. p32.BrickColor = BrickColor.new("Dark Indigo")
  699. p32.Material = Enum.Material.SmoothPlastic
  700. p32.Reflectance = 0.30000001192093
  701. p32.CFrame = CFrame.new(0.0817781538, 17.6282234, 24.1169167, 5.77111834e-008, -3.66658304e-009, -1, 5.96026126e-008, 1.00026441, 3.14415072e-009, 1.00026441, -5.96106702e-008, 2.90149451e-008)
  702. p32.CanCollide = false
  703. p32.Locked = true
  704. p32.FormFactor = Enum.FormFactor.Custom
  705. p32.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  706. p32.BottomSurface = Enum.SurfaceType.Smooth
  707. p32.TopSurface = Enum.SurfaceType.Smooth
  708. b32 = Instance.new("SpecialMesh", p32)
  709. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  710. b32.TextureId = ""
  711. b32.MeshType = Enum.MeshType.FileMesh
  712. b32.Name = "Mesh"
  713. b32.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  714. p33 = Instance.new("Part", m)
  715. p33.BrickColor = BrickColor.new("Dark Indigo")
  716. p33.Material = Enum.Material.SmoothPlastic
  717. p33.Reflectance = 0.30000001192093
  718. p33.CFrame = CFrame.new(0.081783168, 17.3290653, 24.2001972, 5.81625947e-008, -3.77485065e-009, -1, 5.96021046e-008, 1.00027275, 3.25241634e-009, 1.00027275, -5.96121765e-008, 2.85638979e-008)
  719. p33.CanCollide = false
  720. p33.Locked = true
  721. p33.FormFactor = Enum.FormFactor.Custom
  722. p33.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  723. p33.BottomSurface = Enum.SurfaceType.Smooth
  724. p33.TopSurface = Enum.SurfaceType.Smooth
  725. b33 = Instance.new("SpecialMesh", p33)
  726. b33.MeshId = "http://www.roblox.com/asset/?id=3270017"
  727. b33.TextureId = ""
  728. b33.MeshType = Enum.MeshType.FileMesh
  729. b33.Name = "Mesh"
  730. b33.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  731. p34 = Instance.new("Part", m)
  732. p34.BrickColor = BrickColor.new("Dark Indigo")
  733. p34.Material = Enum.Material.SmoothPlastic
  734. p34.Reflectance = 0.30000001192093
  735. p34.CFrame = CFrame.new(-0.0911688283, 17.027607, 24.1423588, 5.86140096e-008, -3.88311916e-009, -1, 5.96015965e-008, 1.0002811, 3.36068284e-009, 1.0002811, -5.96136829e-008, 2.81128472e-008)
  736. p34.CanCollide = false
  737. p34.Locked = true
  738. p34.FormFactor = Enum.FormFactor.Custom
  739. p34.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  740. p34.BottomSurface = Enum.SurfaceType.Smooth
  741. p34.TopSurface = Enum.SurfaceType.Smooth
  742. b34 = Instance.new("SpecialMesh", p34)
  743. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  744. b34.TextureId = ""
  745. b34.MeshType = Enum.MeshType.FileMesh
  746. b34.Name = "Mesh"
  747. b34.Scale = Vector3.new(0.0455113538, 0.0455114096, 0.0682672113)
  748. p35 = Instance.new("Part", m)
  749. p35.BrickColor = BrickColor.new("Dark Indigo")
  750. p35.Material = Enum.Material.Neon
  751. p35.CFrame = CFrame.new(0.00079318881, 16.6618919, 24.1201324, 1.48590857e-007, 7.99790578e-005, -1, -0.996490002, 0.0871035904, 6.82584687e-006, 0.0871035904, 0.996490002, 7.96798267e-005)
  752. p35.CanCollide = false
  753. p35.Locked = true
  754. p35.FormFactor = Enum.FormFactor.Custom
  755. p35.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  756. p35.BottomSurface = Enum.SurfaceType.Smooth
  757. p35.TopSurface = Enum.SurfaceType.Smooth
  758. b35 = Instance.new("SpecialMesh", p35)
  759. b35.MeshType = Enum.MeshType.Sphere
  760. b35.Name = "Mesh"
  761. b35.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  762. p36 = Instance.new("Part", m)
  763. p36.BrickColor = BrickColor.new("Dark Indigo")
  764. p36.Material = Enum.Material.Neon
  765. p36.CFrame = CFrame.new(0.000820193964, 17.8605766, 24.1365757, -6.68205757e-008, -7.99445916e-005, 1, 0.966234148, -0.25882116, -2.06344412e-005, 0.25882116, 0.966234148, 7.72948988e-005)
  766. p36.CanCollide = false
  767. p36.Locked = true
  768. p36.FormFactor = Enum.FormFactor.Custom
  769. p36.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  770. p36.BottomSurface = Enum.SurfaceType.Smooth
  771. p36.TopSurface = Enum.SurfaceType.Smooth
  772. b36 = Instance.new("SpecialMesh", p36)
  773. b36.MeshType = Enum.MeshType.Sphere
  774. b36.Name = "Mesh"
  775. b36.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  776. p37 = Instance.new("Part", m)
  777. p37.BrickColor = BrickColor.new("Dark Indigo")
  778. p37.Material = Enum.Material.Neon
  779. p37.CFrame = CFrame.new(0.000820202637, 18.0012093, 24.120554, -5.89434421e-008, -7.99551053e-005, 1, 0.996507406, -0.087105006, -6.91361038e-006, 0.087105006, 0.996507406, 7.97143366e-005)
  780. p37.CanCollide = false
  781. p37.Locked = true
  782. p37.FormFactor = Enum.FormFactor.Custom
  783. p37.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  784. p37.BottomSurface = Enum.SurfaceType.Smooth
  785. p37.TopSurface = Enum.SurfaceType.Smooth
  786. b37 = Instance.new("SpecialMesh", p37)
  787. b37.MeshType = Enum.MeshType.Sphere
  788. b37.Name = "Mesh"
  789. b37.Scale = Vector3.new(0.120086089, 0.637123406, 0.200143486)
  790. p38 = Instance.new("Part", m)
  791. p38.BrickColor = BrickColor.new("Dark Indigo")
  792. p38.Material = Enum.Material.Neon
  793. p38.CFrame = CFrame.new(0.000820217829, 16.8028069, 24.1370029, 1.59892807e-007, 7.99534173e-005, -1, -0.966251016, 0.258825779, 2.05475681e-005, 0.258825779, 0.966251016, 7.72621788e-005)
  794. p38.CanCollide = false
  795. p38.Locked = true
  796. p38.FormFactor = Enum.FormFactor.Custom
  797. p38.Size = Vector3.new(0.341090173, 0.490385354, 0.341090739)
  798. p38.BottomSurface = Enum.SurfaceType.Smooth
  799. p38.TopSurface = Enum.SurfaceType.Smooth
  800. b38 = Instance.new("SpecialMesh", p38)
  801. b38.MeshType = Enum.MeshType.Sphere
  802. b38.Name = "Mesh"
  803. b38.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  804. p39 = Instance.new("Part", m)
  805. p39.BrickColor = BrickColor.new("Gold")
  806. p39.Material = Enum.Material.SmoothPlastic
  807. p39.Reflectance = 0.20000000298023
  808. p39.Name = "Circle"
  809. p39.CFrame = CFrame.new(-0.00478575425, 17.3325539, 25.3061905, 1, -1.65309757e-008, -4.80958988e-008, 3.98413249e-008, -1.20796713e-007, 1.00032449, 1.86919351e-008, -1.00032449, -1.17619138e-007)
  810. p39.CanCollide = false
  811. p39.Locked = true
  812. p39.FormFactor = Enum.FormFactor.Custom
  813. p39.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  814. p39.BottomSurface = Enum.SurfaceType.Smooth
  815. p39.TopSurface = Enum.SurfaceType.Smooth
  816. b39 = Instance.new("CylinderMesh", p39)
  817. b39.Name = "Mesh"
  818. b39.Scale = Vector3.new(0.400286943, 0.423637152, 0.467001528)
  819. p40 = Instance.new("Part", m)
  820. p40.BrickColor = BrickColor.new("Really black")
  821. p40.Material = Enum.Material.SmoothPlastic
  822. p40.Name = "Block"
  823. p40.CFrame = CFrame.new(-0.00477576628, 17.2029457, 24.1130314, -1, -1.92565636e-007, 9.19236101e-008, -8.34673628e-008, -1.63873466e-007, -1.00033283, 1.56490643e-007, -1.00033283, 1.60694682e-007)
  824. p40.CanCollide = false
  825. p40.Locked = true
  826. p40.FormFactor = Enum.FormFactor.Custom
  827. p40.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  828. p40.BottomSurface = Enum.SurfaceType.Smooth
  829. p40.TopSurface = Enum.SurfaceType.Smooth
  830. b40 = Instance.new("SpecialMesh", p40)
  831. b40.MeshType = Enum.MeshType.Wedge
  832. b40.Name = "WedgeMesh"
  833. b40.Scale = Vector3.new(0.533715904, 0.200143531, 0.773888171)
  834. p41 = Instance.new("Part", m)
  835. p41.BrickColor = BrickColor.new("Really black")
  836. p41.Material = Enum.Material.SmoothPlastic
  837. p41.Name = "Block"
  838. p41.CFrame = CFrame.new(-0.0047757579, 17.4648685, 24.1132374, 1, 1.56679448e-007, -4.60911309e-009, -4.09274037e-009, -7.64161499e-008, 1.00034118, 1.93782128e-007, -1.00034118, -7.32396686e-008)
  839. p41.CanCollide = false
  840. p41.Locked = true
  841. p41.FormFactor = Enum.FormFactor.Custom
  842. p41.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  843. p41.BottomSurface = Enum.SurfaceType.Smooth
  844. p41.TopSurface = Enum.SurfaceType.Smooth
  845. b41 = Instance.new("SpecialMesh", p41)
  846. b41.MeshType = Enum.MeshType.Wedge
  847. b41.Name = "WedgeMesh"
  848. b41.Scale = Vector3.new(0.533715904, 0.200143531, 0.760545254)
  849. p42 = Instance.new("Part", m)
  850. p42.BrickColor = BrickColor.new("Really black")
  851. p42.Material = Enum.Material.SmoothPlastic
  852. p42.Name = "Circle"
  853. p42.CFrame = CFrame.new(-0.00477172295, 17.3329887, 25.4724331, -6.16132638e-008, -1, -5.37222489e-009, -7.64230563e-008, 3.54596352e-009, 1.00034952, -1.00034952, 2.36759945e-008, -7.32485077e-008)
  854. p42.CanCollide = false
  855. p42.Locked = true
  856. p42.FormFactor = Enum.FormFactor.Custom
  857. p42.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  858. p42.BottomSurface = Enum.SurfaceType.Smooth
  859. p42.TopSurface = Enum.SurfaceType.Smooth
  860. b42 = Instance.new("CylinderMesh", p42)
  861. b42.Name = "Mesh"
  862. b42.Scale = Vector3.new(0.667144895, 0.400287062, 0.667144954)
  863. p43 = Instance.new("Part", m)
  864. p43.BrickColor = BrickColor.new("Really black")
  865. p43.Material = Enum.Material.SmoothPlastic
  866. p43.Name = "Circle"
  867. p43.CFrame = CFrame.new(-0.00478171511, 17.3331299, 25.3588276, 1, -1.83507538e-008, -4.85290101e-008, 3.94096844e-008, -1.20799953e-007, 1.00035787, 2.05117843e-008, -1.00035787, -1.17623841e-007)
  868. p43.CanCollide = false
  869. p43.Locked = true
  870. p43.FormFactor = Enum.FormFactor.Custom
  871. p43.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  872. p43.BottomSurface = Enum.SurfaceType.Smooth
  873. p43.TopSurface = Enum.SurfaceType.Smooth
  874. b43 = Instance.new("CylinderMesh", p43)
  875. b43.Name = "Mesh"
  876. b43.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  877. p44 = Instance.new("Part", m)
  878. p44.BrickColor = BrickColor.new("Dark Indigo")
  879. p44.Material = Enum.Material.Neon
  880. p44.CFrame = CFrame.new(0.0008072583, 17.5270195, 23.6464233, -9.34702626e-008, -7.99179834e-005, 1, 0.940010309, 0.342218608, 2.74279228e-005, -0.342218608, 0.940010309, 7.51314947e-005)
  881. p44.CanCollide = false
  882. p44.Locked = true
  883. p44.FormFactor = Enum.FormFactor.Custom
  884. p44.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  885. p44.BottomSurface = Enum.SurfaceType.Smooth
  886. p44.TopSurface = Enum.SurfaceType.Smooth
  887. b44 = Instance.new("SpecialMesh", p44)
  888. b44.MeshType = Enum.MeshType.Sphere
  889. b44.Name = "Mesh"
  890. b44.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  891. p45 = Instance.new("Part", m)
  892. p45.BrickColor = BrickColor.new("Dark Indigo")
  893. p45.Material = Enum.Material.Neon
  894. p45.CFrame = CFrame.new(0.00080726546, 17.6835766, 23.6418419, -8.36607796e-008, -7.99489135e-005, 1, 0.766281724, 0.6430884, 5.14687308e-005, -0.6430884, 0.766281724, 6.12501899e-005)
  895. p45.CanCollide = false
  896. p45.Locked = true
  897. p45.FormFactor = Enum.FormFactor.Custom
  898. p45.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  899. p45.BottomSurface = Enum.SurfaceType.Smooth
  900. p45.TopSurface = Enum.SurfaceType.Smooth
  901. b45 = Instance.new("SpecialMesh", p45)
  902. b45.MeshType = Enum.MeshType.Sphere
  903. b45.Name = "Mesh"
  904. b45.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  905. p46 = Instance.new("Part", m)
  906. p46.BrickColor = BrickColor.new("Dark Indigo")
  907. p46.Material = Enum.Material.Neon
  908. p46.CFrame = CFrame.new(0.000824270712, 17.7363682, 23.5002213, -7.51324478e-008, -7.99625777e-005, 1, 0.642974615, 0.766388476, 6.13208758e-005, -0.766388476, 0.642974615, 5.13978084e-005)
  909. p46.CanCollide = false
  910. p46.Locked = true
  911. p46.FormFactor = Enum.FormFactor.Custom
  912. p46.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  913. p46.BottomSurface = Enum.SurfaceType.Smooth
  914. p46.TopSurface = Enum.SurfaceType.Smooth
  915. b46 = Instance.new("SpecialMesh", p46)
  916. b46.MeshType = Enum.MeshType.Sphere
  917. b46.Name = "Mesh"
  918. b46.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  919. p47 = Instance.new("Part", m)
  920. p47.BrickColor = BrickColor.new("Really black")
  921. p47.Material = Enum.Material.SmoothPlastic
  922. p47.Name = "Handle"
  923. p47.CFrame = CFrame.new(-0.00476768985, 17.3337212, 24.8452072, 1, -2.01071089e-008, -4.89962986e-008, 3.89482011e-008, -1.52160879e-007, 1.0003922, 2.22717063e-008, -1.0003922, -1.45863055e-007)
  924. p47.CanCollide = false
  925. p47.Locked = true
  926. p47.FormFactor = Enum.FormFactor.Custom
  927. p47.Size = Vector3.new(0.341090173, 1.06951797, 0.341090739)
  928. p47.BottomSurface = Enum.SurfaceType.Smooth
  929. p47.TopSurface = Enum.SurfaceType.Smooth
  930. b47 = Instance.new("CylinderMesh", p47)
  931. b47.Name = "Mesh"
  932. b47.Scale = Vector3.new(0.333572447, 1, 0.467001528)
  933. p48 = Instance.new("Part", m)
  934. p48.BrickColor = BrickColor.new("Really black")
  935. p48.Material = Enum.Material.SmoothPlastic
  936. p48.Name = "Block"
  937. p48.CFrame = CFrame.new(-0.00476769311, 17.1517487, 24.2165375, 1, 5.40123679e-009, -2.12932623e-008, -4.88056529e-009, -1.00040054, -1.51509539e-007, 2.20023999e-008, 1.45210194e-007, -1.00040054)
  938. p48.CanCollide = false
  939. p48.Locked = true
  940. p48.FormFactor = Enum.FormFactor.Custom
  941. p48.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  942. p48.BottomSurface = Enum.SurfaceType.Smooth
  943. p48.TopSurface = Enum.SurfaceType.Smooth
  944. b48 = Instance.new("SpecialMesh", p48)
  945. b48.MeshType = Enum.MeshType.Wedge
  946. b48.Name = "WedgeMesh"
  947. b48.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  948. p49 = Instance.new("Part", m)
  949. p49.BrickColor = BrickColor.new("Really black")
  950. p49.Material = Enum.Material.SmoothPlastic
  951. p49.Name = "Block"
  952. p49.CFrame = CFrame.new(-0.00476768566, 17.5161419, 24.2167358, -1, -9.29322965e-008, -2.1751827e-008, -8.24696684e-008, 1.00040889, -1.51509795e-007, -2.24609593e-008, -1.45212695e-007, -1.00040889)
  953. p49.CanCollide = false
  954. p49.Locked = true
  955. p49.FormFactor = Enum.FormFactor.Custom
  956. p49.Size = Vector3.new(0.341090173, 0.364091188, 0.341090739)
  957. p49.BottomSurface = Enum.SurfaceType.Smooth
  958. p49.TopSurface = Enum.SurfaceType.Smooth
  959. b49 = Instance.new("SpecialMesh", p49)
  960. b49.MeshType = Enum.MeshType.Wedge
  961. b49.Name = "WedgeMesh"
  962. b49.Scale = Vector3.new(0.533715785, 1, 0.263522238)
  963. p50 = Instance.new("Part", m)
  964. p50.BrickColor = BrickColor.new("Really black")
  965. p50.Material = Enum.Material.SmoothPlastic
  966. p50.Name = "Block"
  967. p50.CFrame = CFrame.new(-0.00477567874, 17.6471729, 24.1264477, 1, -2.22103953e-008, -5.61780666e-009, -5.09713516e-009, -1.51509767e-007, 1.00041723, 2.29195471e-008, -1.00041723, -1.45214912e-007)
  968. p50.CanCollide = false
  969. p50.Locked = true
  970. p50.FormFactor = Enum.FormFactor.Custom
  971. p50.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  972. p50.BottomSurface = Enum.SurfaceType.Smooth
  973. p50.TopSurface = Enum.SurfaceType.Smooth
  974. b50 = Instance.new("BlockMesh", p50)
  975. b50.Name = "Mesh"
  976. b50.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  977. p51 = Instance.new("Part", m)
  978. p51.BrickColor = BrickColor.new("Really black")
  979. p51.Material = Enum.Material.SmoothPlastic
  980. p51.Name = "Block"
  981. p51.CFrame = CFrame.new(-0.0047756657, 17.0212688, 24.126646, 1, -2.26689671e-008, -5.72609116e-009, -5.20541787e-009, -1.51510022e-007, 1.00042558, 2.33781261e-008, -1.00042558, -1.45217129e-007)
  982. p51.CanCollide = false
  983. p51.Locked = true
  984. p51.FormFactor = Enum.FormFactor.Custom
  985. p51.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  986. p51.BottomSurface = Enum.SurfaceType.Smooth
  987. p51.TopSurface = Enum.SurfaceType.Smooth
  988. b51 = Instance.new("BlockMesh", p51)
  989. b51.Name = "Mesh"
  990. b51.Scale = Vector3.new(0.533715785, 0.266858011, 0.300215244)
  991. p52 = Instance.new("Part", m)
  992. p52.BrickColor = BrickColor.new("Really black")
  993. p52.Material = Enum.Material.SmoothPlastic
  994. p52.Name = "Block"
  995. p52.CFrame = CFrame.new(-0.00477165729, 17.334446, 24.1609974, 1, -2.31275425e-008, -5.83437654e-009, -5.31370148e-009, -1.51510278e-007, 1.00043392, 2.38367086e-008, -1.00043392, -1.45219346e-007)
  996. p52.CanCollide = false
  997. p52.Locked = true
  998. p52.FormFactor = Enum.FormFactor.Custom
  999. p52.Size = Vector3.new(0.341090173, 0.341090739, 0.523380995)
  1000. p52.BottomSurface = Enum.SurfaceType.Smooth
  1001. p52.TopSurface = Enum.SurfaceType.Smooth
  1002. b52 = Instance.new("BlockMesh", p52)
  1003. b52.Name = "Mesh"
  1004. b52.Scale = Vector3.new(0.533715785, 0.0667145103, 1)
  1005. p53 = Instance.new("Part", m)
  1006. p53.BrickColor = BrickColor.new("Deep orange")
  1007. p53.Material = Enum.Material.Neon
  1008. p53.Name = "Circle"
  1009. p53.CFrame = CFrame.new(-0.00477161724, 17.3345947, 25.4747982, -6.65724826e-008, -1, -6.5974981e-009, -1.07784714e-007, 4.76686246e-009, 1.00044227, -1.00044227, 1.87171736e-008, -1.01495679e-007)
  1010. p53.CanCollide = false
  1011. p53.Locked = true
  1012. p53.FormFactor = Enum.FormFactor.Custom
  1013. p53.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1014. p53.BottomSurface = Enum.SurfaceType.Smooth
  1015. p53.TopSurface = Enum.SurfaceType.Smooth
  1016. b53 = Instance.new("CylinderMesh", p53)
  1017. b53.Name = "Mesh"
  1018. b53.Scale = Vector3.new(0.533715785, 0.467001498, 0.42771104)
  1019. p54 = Instance.new("Part", m)
  1020. p54.BrickColor = BrickColor.new("Really black")
  1021. p54.Material = Enum.Material.Neon
  1022. p54.Name = "Circle"
  1023. p54.CFrame = CFrame.new(-0.00477160793, 17.3347397, 25.4750118, -6.70239686e-008, -1, -6.7057826e-009, -1.07784665e-007, 4.87513985e-009, 1.00045061, -1.00045061, 1.82660429e-008, -1.01497477e-007)
  1024. p54.CanCollide = false
  1025. p54.Locked = true
  1026. p54.FormFactor = Enum.FormFactor.Custom
  1027. p54.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1028. p54.BottomSurface = Enum.SurfaceType.Smooth
  1029. p54.TopSurface = Enum.SurfaceType.Smooth
  1030. b54 = Instance.new("CylinderMesh", p54)
  1031. b54.Name = "Mesh"
  1032. b54.Scale = Vector3.new(0.533715785, 0.490944952, 0.188277081)
  1033. p55 = Instance.new("Part", m)
  1034. p55.BrickColor = BrickColor.new("Dark Indigo")
  1035. p55.Material = Enum.Material.Metal
  1036. p55.CFrame = CFrame.new(-0.00487261312, 17.3358631, 24.8431625, 1.57569445e-007, 7.99628251e-005, -1, -1.00045907, -7.75639055e-005, -1.52042574e-007, -7.75701919e-005, 1.00045907, 7.99498011e-005)
  1037. p55.CanCollide = false
  1038. p55.Locked = true
  1039. p55.FormFactor = Enum.FormFactor.Custom
  1040. p55.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1041. p55.BottomSurface = Enum.SurfaceType.Smooth
  1042. p55.TopSurface = Enum.SurfaceType.Smooth
  1043. b55 = Instance.new("SpecialMesh", p55)
  1044. b55.MeshType = Enum.MeshType.Sphere
  1045. b55.Name = "Mesh"
  1046. b55.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1047. p56 = Instance.new("Part", m)
  1048. p56.BrickColor = BrickColor.new("Dark Indigo")
  1049. p56.Material = Enum.Material.Metal
  1050. p56.CFrame = CFrame.new(-0.00489160931, 17.3360176, 24.6020527, 1.57678528e-007, 7.9963298e-005, -1, -1.00046766, -7.75645822e-005, -1.51934799e-007, -7.75708468e-005, 1.00046766, 7.99500122e-005)
  1051. p56.CanCollide = false
  1052. p56.Locked = true
  1053. p56.FormFactor = Enum.FormFactor.Custom
  1054. p56.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1055. p56.BottomSurface = Enum.SurfaceType.Smooth
  1056. p56.TopSurface = Enum.SurfaceType.Smooth
  1057. b56 = Instance.new("SpecialMesh", p56)
  1058. b56.MeshType = Enum.MeshType.Sphere
  1059. b56.Name = "Mesh"
  1060. b56.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1061. p57 = Instance.new("Part", m)
  1062. p57.BrickColor = BrickColor.new("Dark Indigo")
  1063. p57.Material = Enum.Material.Metal
  1064. p57.CFrame = CFrame.new(-0.00487858616, 17.3361664, 25.1031246, 1.57787611e-007, 7.9963771e-005, -1, -1.00047624, -7.75652588e-005, -1.51827024e-007, -7.75715016e-005, 1.00047624, 7.99502232e-005)
  1065. p57.CanCollide = false
  1066. p57.Locked = true
  1067. p57.FormFactor = Enum.FormFactor.Custom
  1068. p57.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1069. p57.BottomSurface = Enum.SurfaceType.Smooth
  1070. p57.TopSurface = Enum.SurfaceType.Smooth
  1071. b57 = Instance.new("SpecialMesh", p57)
  1072. b57.MeshType = Enum.MeshType.Sphere
  1073. b57.Name = "Mesh"
  1074. b57.Scale = Vector3.new(0.253515154, 0.903981686, 0.400287092)
  1075. p58 = Instance.new("Part", m)
  1076. p58.BrickColor = BrickColor.new("Really black")
  1077. p58.Material = Enum.Material.SmoothPlastic
  1078. p58.Name = "Block"
  1079. p58.CFrame = CFrame.new(-0.00478160288, 16.9596806, 24.0546551, 1, 1.48938852e-007, -1.81332169e-007, 1.68964405e-007, -1.07752044e-007, 1.0004847, 2.01558578e-007, -1.0004847, -1.01534603e-007)
  1080. p58.CanCollide = false
  1081. p58.Locked = true
  1082. p58.FormFactor = Enum.FormFactor.Custom
  1083. p58.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1084. p58.BottomSurface = Enum.SurfaceType.Smooth
  1085. p58.TopSurface = Enum.SurfaceType.Smooth
  1086. b58 = Instance.new("SpecialMesh", p58)
  1087. b58.MeshType = Enum.MeshType.Wedge
  1088. b58.Name = "WedgeMesh"
  1089. b58.Scale = Vector3.new(0.533715785, 0.43030858, 0.0667144954)
  1090. p59 = Instance.new("Part", m)
  1091. p59.BrickColor = BrickColor.new("Really black")
  1092. p59.Material = Enum.Material.SmoothPlastic
  1093. p59.Name = "Block"
  1094. p59.CFrame = CFrame.new(-0.00478159869, 17.711134, 24.0548553, -1, -2.01216096e-007, 9.40176719e-008, -8.1391633e-008, -1.95222029e-007, -1.00049305, 1.47857392e-007, -1.00049305, 1.89007366e-007)
  1095. p59.CanCollide = false
  1096. p59.Locked = true
  1097. p59.FormFactor = Enum.FormFactor.Custom
  1098. p59.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1099. p59.BottomSurface = Enum.SurfaceType.Smooth
  1100. p59.TopSurface = Enum.SurfaceType.Smooth
  1101. b59 = Instance.new("SpecialMesh", p59)
  1102. b59.MeshType = Enum.MeshType.Wedge
  1103. b59.Name = "WedgeMesh"
  1104. b59.Scale = Vector3.new(0.533715785, 0.430308461, 0.066714488)
  1105. p60 = Instance.new("Part", m)
  1106. p60.BrickColor = BrickColor.new("Really black")
  1107. p60.Material = Enum.Material.SmoothPlastic
  1108. p60.Name = "Block"
  1109. p60.CFrame = CFrame.new(-0.00477158185, 16.9599533, 24.151247, -1, -6.06010246e-008, -6.70318911e-009, 6.18247498e-009, 1.95222356e-007, 1.00050139, -1.15000091e-007, 1.00050139, -1.89009967e-007)
  1110. p60.CanCollide = false
  1111. p60.Locked = true
  1112. p60.FormFactor = Enum.FormFactor.Custom
  1113. p60.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1114. p60.BottomSurface = Enum.SurfaceType.Smooth
  1115. p60.TopSurface = Enum.SurfaceType.Smooth
  1116. b60 = Instance.new("SpecialMesh", p60)
  1117. b60.MeshType = Enum.MeshType.Wedge
  1118. b60.Name = "WedgeMesh"
  1119. b60.Scale = Vector3.new(0.533715785, 0.133429006, 0.0667144954)
  1120. p61 = Instance.new("Part", m)
  1121. p61.BrickColor = BrickColor.new("Really black")
  1122. p61.Material = Enum.Material.SmoothPlastic
  1123. p61.Name = "Block"
  1124. p61.CFrame = CFrame.new(-0.00477157859, 17.7114239, 24.1514492, 1, 1.14698487e-007, -8.06112936e-008, -9.3758139e-008, 1.07750871e-007, -1.00050974, -5.9477852e-008, 1.00050974, 1.01540152e-007)
  1125. p61.CanCollide = false
  1126. p61.Locked = true
  1127. p61.FormFactor = Enum.FormFactor.Custom
  1128. p61.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1129. p61.BottomSurface = Enum.SurfaceType.Smooth
  1130. p61.TopSurface = Enum.SurfaceType.Smooth
  1131. b61 = Instance.new("SpecialMesh", p61)
  1132. b61.MeshType = Enum.MeshType.Wedge
  1133. b61.Name = "WedgeMesh"
  1134. b61.Scale = Vector3.new(0.533715785, 0.133429006, 0.066714488)
  1135. p62 = Instance.new("Part", m)
  1136. p62.BrickColor = BrickColor.new("Dark Indigo")
  1137. p62.Material = Enum.Material.Neon
  1138. p62.CFrame = CFrame.new(0.00079741748, 16.927433, 23.5033798, -1.67933258e-008, 7.99278641e-005, -1, -0.643061221, -0.766491234, -6.12398726e-005, -0.766491234, 0.643061221, 5.13551895e-005)
  1139. p62.CanCollide = false
  1140. p62.Locked = true
  1141. p62.FormFactor = Enum.FormFactor.Custom
  1142. p62.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1143. p62.BottomSurface = Enum.SurfaceType.Smooth
  1144. p62.TopSurface = Enum.SurfaceType.Smooth
  1145. b62 = Instance.new("SpecialMesh", p62)
  1146. b62.MeshType = Enum.MeshType.Sphere
  1147. b62.Name = "Mesh"
  1148. b62.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1149. p63 = Instance.new("Part", m)
  1150. p63.BrickColor = BrickColor.new("Dark Indigo")
  1151. p63.Material = Enum.Material.Neon
  1152. p63.CFrame = CFrame.new(0.000782429241, 17.1366653, 23.6502075, -3.03043635e-009, 7.99336412e-005, -1, -0.940160811, -0.342273146, -2.7342714e-005, -0.342273146, 0.940160811, 7.50943873e-005)
  1153. p63.CanCollide = false
  1154. p63.Locked = true
  1155. p63.FormFactor = Enum.FormFactor.Custom
  1156. p63.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1157. p63.BottomSurface = Enum.SurfaceType.Smooth
  1158. p63.TopSurface = Enum.SurfaceType.Smooth
  1159. b63 = Instance.new("SpecialMesh", p63)
  1160. b63.MeshType = Enum.MeshType.Sphere
  1161. b63.Name = "Mesh"
  1162. b63.Scale = Vector3.new(0.120086111, 0.903981566, 0.200143546)
  1163. p64 = Instance.new("Part", m)
  1164. p64.BrickColor = BrickColor.new("Dark Indigo")
  1165. p64.Material = Enum.Material.Neon
  1166. p64.Name = "Blade"
  1167. p64.CFrame = CFrame.new(0.000641356688, 17.335743, 20.9020824, 7.15408532e-009, 7.99334157e-005, -1, -1.00053501, -7.74263026e-005, 4.5656634e-010, -7.74243817e-005, 1.00053501, 7.99181071e-005)
  1168. p64.CanCollide = false
  1169. p64.Locked = true
  1170. p64.FormFactor = Enum.FormFactor.Custom
  1171. p64.Size = Vector3.new(0.341090173, 5.01877022, 0.341090739)
  1172. p64.BottomSurface = Enum.SurfaceType.Smooth
  1173. p64.TopSurface = Enum.SurfaceType.Smooth
  1174. b64 = Instance.new("SpecialMesh", p64)
  1175. b64.MeshType = Enum.MeshType.Sphere
  1176. b64.Name = "Mesh"
  1177. b64.Scale = Vector3.new(0.787231028, 1, 0.333572537)
  1178. p65 = Instance.new("Part", m)
  1179. p65.BrickColor = BrickColor.new("Dark Indigo")
  1180. p65.Material = Enum.Material.Neon
  1181. p65.CFrame = CFrame.new(0.00080744864, 16.980526, 23.6458302, -1.31658453e-008, 7.99317349e-005, -1, -0.766410947, -0.643196464, -5.13876876e-005, -0.643196464, 0.766410947, 6.12100048e-005)
  1182. p65.CanCollide = false
  1183. p65.Locked = true
  1184. p65.FormFactor = Enum.FormFactor.Custom
  1185. p65.Size = Vector3.new(0.341090173, 0.535896719, 0.341090739)
  1186. p65.BottomSurface = Enum.SurfaceType.Smooth
  1187. p65.TopSurface = Enum.SurfaceType.Smooth
  1188. b65 = Instance.new("SpecialMesh", p65)
  1189. b65.MeshType = Enum.MeshType.Sphere
  1190. b65.Name = "Mesh"
  1191. b65.Scale = Vector3.new(0.253515095, 1, 0.333572537)
  1192. p66 = Instance.new("Part", m)
  1193. p66.BrickColor = BrickColor.new("Dark Indigo")
  1194. p66.Material = Enum.Material.Neon
  1195. p66.CFrame = CFrame.new(0.000547376403, 17.3361092, 21.0322189, 7.37782102e-009, 7.99343616e-005, -1, -1.00055218, -7.74254731e-005, 6.87577995e-010, -7.74232903e-005, 1.00055218, 7.99185291e-005)
  1196. p66.CanCollide = false
  1197. p66.Locked = true
  1198. p66.FormFactor = Enum.FormFactor.Custom
  1199. p66.Size = Vector3.new(0.341090173, 3.76720667, 0.341090739)
  1200. p66.BottomSurface = Enum.SurfaceType.Smooth
  1201. p66.TopSurface = Enum.SurfaceType.Smooth
  1202. b66 = Instance.new("SpecialMesh", p66)
  1203. b66.MeshType = Enum.MeshType.Sphere
  1204. b66.Name = "Mesh"
  1205. b66.Scale = Vector3.new(0.920660138, 1, 0.333572537)
  1206. p67 = Instance.new("Part", m)
  1207. p67.BrickColor = BrickColor.new("Gold")
  1208. p67.Material = Enum.Material.SmoothPlastic
  1209. p67.Reflectance = 0.30000001192093
  1210. p67.Name = "Circle"
  1211. p67.CFrame = CFrame.new(-0.00478551397, 17.336647, 24.348484, 1, 3.08064045e-008, -3.62128816e-008, -5.07114386e-008, 2.21291032e-007, -1.00056064, 3.00788088e-008, 1.00056064, 2.23485017e-007)
  1212. p67.CanCollide = false
  1213. p67.Locked = true
  1214. p67.FormFactor = Enum.FormFactor.Custom
  1215. p67.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1216. p67.BottomSurface = Enum.SurfaceType.Smooth
  1217. p67.TopSurface = Enum.SurfaceType.Smooth
  1218. b67 = Instance.new("CylinderMesh", p67)
  1219. b67.Name = "Mesh"
  1220. b67.Scale = Vector3.new(0.400286883, 0.533716023, 0.467001468)
  1221. p68 = Instance.new("Part", m)
  1222. p68.BrickColor = BrickColor.new("Gold")
  1223. p68.Material = Enum.Material.SmoothPlastic
  1224. p68.Reflectance = 0.30000001192093
  1225. p68.Name = "Circle"
  1226. p68.CFrame = CFrame.new(-0.00478850631, 17.3367958, 24.2894917, 1, 3.12650421e-008, -3.61045807e-008, -5.08201019e-008, 2.21288374e-007, -1.00056899, 3.05374463e-008, 1.00056899, 2.23491384e-007)
  1227. p68.CanCollide = false
  1228. p68.Locked = true
  1229. p68.FormFactor = Enum.FormFactor.Custom
  1230. p68.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1231. p68.BottomSurface = Enum.SurfaceType.Smooth
  1232. p68.TopSurface = Enum.SurfaceType.Smooth
  1233. b68 = Instance.new("CylinderMesh", p68)
  1234. b68.Name = "Mesh"
  1235. b68.Scale = Vector3.new(0.467001408, 0.266858011, 0.467001468)
  1236. p69 = Instance.new("Part", m)
  1237. p69.BrickColor = BrickColor.new("Really black")
  1238. p69.Material = Enum.Material.SmoothPlastic
  1239. p69.Name = "Block"
  1240. p69.CFrame = CFrame.new(-0.00478150323, 17.0238495, 24.0341129, -1, -2.05844628e-007, 9.51298489e-008, -8.02730185e-008, -1.76898766e-007, -1.00057733, 1.43231958e-007, -1.00057733, 1.79107602e-007)
  1241. p69.CanCollide = false
  1242. p69.Locked = true
  1243. p69.FormFactor = Enum.FormFactor.Custom
  1244. p69.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1245. p69.BottomSurface = Enum.SurfaceType.Smooth
  1246. p69.TopSurface = Enum.SurfaceType.Smooth
  1247. b69 = Instance.new("SpecialMesh", p69)
  1248. b69.MeshType = Enum.MeshType.Wedge
  1249. b69.Name = "WedgeMesh"
  1250. b69.Scale = Vector3.new(0.533715904, 0.29687953, 0.300215244)
  1251. p70 = Instance.new("Part", m)
  1252. p70.BrickColor = BrickColor.new("Really black")
  1253. p70.Material = Enum.Material.SmoothPlastic
  1254. p70.Name = "Block"
  1255. p70.CFrame = CFrame.new(-0.00478149857, 17.6501446, 24.0343189, 1, 1.43400342e-007, -7.81537324e-009, -7.30847916e-009, -8.94201833e-008, 1.00058568, 2.07126419e-007, -1.00058568, -9.16313638e-008)
  1256. p70.CanCollide = false
  1257. p70.Locked = true
  1258. p70.FormFactor = Enum.FormFactor.Custom
  1259. p70.Size = Vector3.new(0.341090173, 0.341090739, 0.341090739)
  1260. p70.BottomSurface = Enum.SurfaceType.Smooth
  1261. p70.TopSurface = Enum.SurfaceType.Smooth
  1262. b70 = Instance.new("SpecialMesh", p70)
  1263. b70.MeshType = Enum.MeshType.Wedge
  1264. b70.Name = "WedgeMesh"
  1265. b70.Scale = Vector3.new(0.533715785, 0.29687953, 0.300215244)
  1266. w1 = Instance.new("Weld", p1)
  1267. w1.Name = "Part_Weld"
  1268. w1.Part0 = p1
  1269. w1.C0 = CFrame.new(-24.1230564, -16.9977722, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1270. w1.Part1 = p2
  1271. w1.C1 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1272. w2 = Instance.new("Weld", p2)
  1273. w2.Name = "Part_Weld"
  1274. w2.Part0 = p2
  1275. w2.C0 = CFrame.new(-24.1105461, -17.623558, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1276. w2.Part1 = p3
  1277. w2.C1 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1278. w3 = Instance.new("Weld", p3)
  1279. w3.Name = "Part_Weld"
  1280. w3.Part0 = p3
  1281. w3.C0 = CFrame.new(-0.00129098259, -17.3265915, 23.4164867, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1282. w3.Part1 = p4
  1283. w3.C1 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1284. w4 = Instance.new("Weld", p4)
  1285. w4.Name = "Part_Weld"
  1286. w4.Part0 = p4
  1287. w4.C0 = CFrame.new(0.00478598243, 23.979847, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1288. w4.Part1 = p5
  1289. w4.C1 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1290. w5 = Instance.new("Weld", p5)
  1291. w5.Name = "Part_Weld"
  1292. w5.Part0 = p5
  1293. w5.C0 = CFrame.new(-0.00582549348, 16.7313747, 24.2155914, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1294. w5.Part1 = p6
  1295. w5.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1296. w6 = Instance.new("Weld", p6)
  1297. w6.Name = "Part_Weld"
  1298. w6.Part0 = p6
  1299. w6.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1300. w6.Part1 = p7
  1301. w6.C1 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1302. w7 = Instance.new("Weld", p7)
  1303. w7.Name = "Part_Weld"
  1304. w7.Part0 = p7
  1305. w7.C0 = CFrame.new(-0.00128898257, -17.3265896, 23.452898, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1306. w7.Part1 = p8
  1307. w7.C1 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1308. w8 = Instance.new("Weld", p8)
  1309. w8.Name = "Part_Weld"
  1310. w8.Part0 = p8
  1311. w8.C0 = CFrame.new(-24.1230564, -16.9977722, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1312. w8.Part1 = p9
  1313. w8.C1 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1314. w9 = Instance.new("Weld", p9)
  1315. w9.Name = "Part_Weld"
  1316. w9.Part0 = p9
  1317. w9.C0 = CFrame.new(-24.1105442, -17.0228176, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1318. w9.Part1 = p10
  1319. w9.C1 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1320. w10 = Instance.new("Weld", p10)
  1321. w10.Name = "Part_Weld"
  1322. w10.Part0 = p10
  1323. w10.C0 = CFrame.new(-0.00128598255, -17.3265877, 23.4904461, -1, -2.0706413e-010, -5.89352567e-010, -3.15302451e-010, 1.00000417, 1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1324. w10.Part1 = p11
  1325. w10.C1 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1326. w11 = Instance.new("Weld", p11)
  1327. w11.Name = "Part_Weld"
  1328. w11.Part0 = p11
  1329. w11.C0 = CFrame.new(-0.00582148228, 16.721838, 24.3436203, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1330. w11.Part1 = p12
  1331. w11.C1 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1332. w12 = Instance.new("Weld", p12)
  1333. w12.Name = "Part_Weld"
  1334. w12.Part0 = p12
  1335. w12.C0 = CFrame.new(-24.1355762, -17.6235542, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1336. w12.Part1 = p13
  1337. w12.C1 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1338. w13 = Instance.new("Weld", p13)
  1339. w13.Name = "Part_Weld"
  1340. w13.Part0 = p13
  1341. w13.C0 = CFrame.new(-24.1230564, -17.5985184, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1342. w13.Part1 = p14
  1343. w13.C1 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1344. w14 = Instance.new("Weld", p14)
  1345. w14.Name = "Part_Weld"
  1346. w14.Part0 = p14
  1347. w14.C0 = CFrame.new(-0.00582148228, 16.7180405, 24.3436241, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1348. w14.Part1 = p15
  1349. w14.C1 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1350. w15 = Instance.new("Weld", p15)
  1351. w15.Name = "Part_Weld"
  1352. w15.Part0 = p15
  1353. w15.C0 = CFrame.new(-24.1230602, -17.6451797, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1354. w15.Part1 = p16
  1355. w15.C1 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1356. w16 = Instance.new("Weld", p16)
  1357. w16.Name = "Part_Weld"
  1358. w16.Part0 = p16
  1359. w16.C0 = CFrame.new(0.00581398234, 23.8473282, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1360. w16.Part1 = p17
  1361. w16.C1 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1362. w17 = Instance.new("Weld", p17)
  1363. w17.Name = "Part_Weld"
  1364. w17.Part0 = p17
  1365. w17.C0 = CFrame.new(-0.00582549348, 16.7351685, 24.2155857, -1, -8.76302053e-008, -5.89353621e-010, -2.98896339e-008, 0.342021614, -0.93969661, 8.24911695e-008, -0.93969661, -0.342021614)
  1366. w17.Part1 = p18
  1367. w17.C1 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1368. w18 = Instance.new("Weld", p18)
  1369. w18.Name = "Part_Weld"
  1370. w18.Part0 = p18
  1371. w18.C0 = CFrame.new(0.00582298217, 28.5685654, -8.22870255, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1372. w18.Part1 = p19
  1373. w18.C1 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1374. w19 = Instance.new("Weld", p19)
  1375. w19.Name = "Part_Weld"
  1376. w19.Part0 = p19
  1377. w19.C0 = CFrame.new(-24.1355762, -17.6235542, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1378. w19.Part1 = p20
  1379. w19.C1 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1380. w20 = Instance.new("Weld", p20)
  1381. w20.Name = "Part_Weld"
  1382. w20.Part0 = p20
  1383. w20.C0 = CFrame.new(0.0058269822, 28.5856762, -8.35672283, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1384. w20.Part1 = p21
  1385. w20.C1 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1386. w21 = Instance.new("Weld", p21)
  1387. w21.Name = "Part_Weld"
  1388. w21.Part0 = p21
  1389. w21.C0 = CFrame.new(0.0058269822, 28.5818806, -8.35671997, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1390. w21.Part1 = p22
  1391. w21.C1 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1392. w22 = Instance.new("Weld", p22)
  1393. w22.Name = "Part_Weld"
  1394. w22.Part0 = p22
  1395. w22.C0 = CFrame.new(0.00581398234, 23.8454285, -17.3277187, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1396. w22.Part1 = p23
  1397. w22.C1 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1398. w23 = Instance.new("Weld", p23)
  1399. w23.Name = "Part_Weld"
  1400. w23.Part0 = p23
  1401. w23.C0 = CFrame.new(-24.1230564, -17.5985184, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1402. w23.Part1 = p24
  1403. w23.C1 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1404. w24 = Instance.new("Weld", p24)
  1405. w24.Name = "Part_Weld"
  1406. w24.Part0 = p24
  1407. w24.C0 = CFrame.new(-24.1355724, -17.0228157, 0.0817799568, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1408. w24.Part1 = p25
  1409. w24.C1 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1410. w25 = Instance.new("Weld", p25)
  1411. w25.Name = "Part_Weld"
  1412. w25.Part0 = p25
  1413. w25.C0 = CFrame.new(-24.1936054, -17.3243332, -0.0911670402, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1414. w25.Part1 = p26
  1415. w25.C1 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1416. w26 = Instance.new("Weld", p26)
  1417. w26.Name = "Part_Weld"
  1418. w26.Part0 = p26
  1419. w26.C0 = CFrame.new(-24.1230602, -17.0444183, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1420. w26.Part1 = p27
  1421. w26.C1 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1422. w27 = Instance.new("Weld", p27)
  1423. w27.Name = "Part_Weld"
  1424. w27.Part0 = p27
  1425. w27.C0 = CFrame.new(0.00582298217, 28.5723495, -8.22870922, 1, 2.0706413e-010, 5.89352567e-010, 2.25554686e-010, -0.342021614, -0.93969661, -2.51020538e-010, 0.93969661, -0.342021614)
  1426. w27.Part1 = p28
  1427. w27.C1 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1428. w28 = Instance.new("Weld", p28)
  1429. w28.Name = "Part_Weld"
  1430. w28.Part0 = p28
  1431. w28.C0 = CFrame.new(-24.1230602, -17.0444183, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1432. w28.Part1 = p29
  1433. w28.C1 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1434. w29 = Instance.new("Weld", p29)
  1435. w29.Name = "Part_Weld"
  1436. w29.Part0 = p29
  1437. w29.C0 = CFrame.new(-24.1105461, -17.0228176, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1438. w29.Part1 = p30
  1439. w29.C1 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1440. w30 = Instance.new("Weld", p30)
  1441. w30.Name = "Part_Weld"
  1442. w30.Part0 = p30
  1443. w30.C0 = CFrame.new(-24.1230602, -17.6451797, -0.0911720395, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1444. w30.Part1 = p31
  1445. w30.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1446. w31 = Instance.new("Weld", p31)
  1447. w31.Name = "Part_Weld"
  1448. w31.Part0 = p31
  1449. w31.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1450. w31.Part1 = p32
  1451. w31.C1 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1452. w32 = Instance.new("Weld", p32)
  1453. w32.Name = "Part_Weld"
  1454. w32.Part0 = p32
  1455. w32.C0 = CFrame.new(-24.1105461, -17.623558, 0.0817769542, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1456. w32.Part1 = p33
  1457. w32.C1 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1458. w33 = Instance.new("Weld", p33)
  1459. w33.Name = "Part_Weld"
  1460. w33.Part0 = p33
  1461. w33.C0 = CFrame.new(-24.1936016, -17.3243332, 0.0817819536, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1462. w33.Part1 = p34
  1463. w33.C1 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1464. w34 = Instance.new("Weld", p34)
  1465. w34.Name = "Part_Weld"
  1466. w34.Part0 = p34
  1467. w34.C0 = CFrame.new(-24.1355762, -17.0228157, -0.0911700428, 4.35829861e-008, -1.2260136e-008, 1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008, -1, -2.07065101e-010, 4.31318767e-008)
  1468. w34.Part1 = p35
  1469. w34.C1 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
  1470. w35 = Instance.new("Weld", p35)
  1471. w35.Name = "Part_Weld"
  1472. w35.Part0 = p35
  1473. w35.C0 = CFrame.new(14.4940586, -25.472023, -0.00124175288, 1.43580564e-007, -0.996205807, 0.0870786756, 7.99639602e-005, 0.0870786756, 0.996205807, -1, 6.82021982e-006, 7.96725799e-005)
  1474. w35.Part1 = p36
  1475. w35.C1 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
  1476. w36 = Instance.new("Weld", p36)
  1477. w36.Name = "Part_Weld"
  1478. w36.Part0 = p36
  1479. w36.C0 = CFrame.new(-23.4905338, -18.6877365, -0.00231588027, -6.73044269e-008, 0.965950191, 0.258745164, -7.9960977e-005, -0.258745164, 0.965950191, 1, -2.06246077e-005, 7.72562125e-005)
  1480. w36.Part1 = p37
  1481. w36.C1 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
  1482. w37 = Instance.new("Weld", p37)
  1483. w37.Name = "Part_Weld"
  1484. w37.Part0 = p37
  1485. w37.C0 = CFrame.new(-20.0270557, -22.4545212, -0.00261686975, -5.65146365e-008, 0.996205807, 0.0870787427, -7.99718109e-005, -0.0870787427, 0.996205807, 1, -6.90764546e-006, 7.96737659e-005)
  1486. w37.Part1 = p38
  1487. w37.C1 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
  1488. w38 = Instance.new("Weld", p38)
  1489. w38.Name = "Circle_Weld"
  1490. w38.Part0 = p38
  1491. w38.C0 = CFrame.new(9.9821434, -27.6539307, -0.00138907926, 1.51681888e-007, -0.965950251, 0.258745104, 7.99381232e-005, 0.258745104, 0.965950251, -1, 2.05371834e-005, 7.7255012e-005)
  1492. w38.Part1 = p39
  1493. w38.C1 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1494. w39 = Instance.new("Weld", p39)
  1495. w39.Name = "Block_Weld"
  1496. w39.Part0 = p39
  1497. w39.C0 = CFrame.new(0.0047852057, 25.2979832, -17.3269272, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1498. w39.Part1 = p40
  1499. w39.C1 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1500. w40 = Instance.new("Weld", p40)
  1501. w40.Name = "Block_Weld"
  1502. w40.Part0 = p40
  1503. w40.C0 = CFrame.new(-0.0047786939, 24.1050091, 17.197216, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1504. w40.Part1 = p41
  1505. w40.C1 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1506. w41 = Instance.new("Weld", p41)
  1507. w41.Name = "Circle_Weld"
  1508. w41.Part0 = p41
  1509. w41.C0 = CFrame.new(0.00477176718, 24.105011, -17.4589081, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1510. w41.Part1 = p42
  1511. w41.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1512. w42 = Instance.new("Weld", p42)
  1513. w42.Name = "Circle_Weld"
  1514. w42.Part0 = p42
  1515. w42.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1516. w42.Part1 = p43
  1517. w42.C1 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1518. w43 = Instance.new("Weld", p43)
  1519. w43.Name = "Part_Weld"
  1520. w43.Part0 = p43
  1521. w43.C0 = CFrame.new(0.00478120567, 25.3497562, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1522. w43.Part1 = p44
  1523. w43.C1 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
  1524. w44 = Instance.new("Weld", p44)
  1525. w44.Name = "Part_Weld"
  1526. w44.Part0 = p44
  1527. w44.C0 = CFrame.new(-8.3771925, -28.2052784, -0.00306228409, -8.2402039e-008, 0.939670146, -0.34209463, -7.99348854e-005, 0.34209463, 0.939670146, 1, 2.74226113e-005, 7.50846593e-005)
  1528. w44.Part1 = p45
  1529. w44.C1 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
  1530. w45 = Instance.new("Weld", p45)
  1531. w45.Name = "Part_Weld"
  1532. w45.Part0 = p45
  1533. w45.C0 = CFrame.new(1.65195179, -29.4663048, -0.00316305994, -6.7120709e-008, 0.765997827, -0.642849922, -7.99612535e-005, 0.642849922, 0.765997827, 1, 5.14543863e-005, 6.12074291e-005)
  1534. w45.Part1 = p46
  1535. w45.C1 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
  1536. w46 = Instance.new("Weld", p46)
  1537. w46.Name = "Handle_Weld"
  1538. w46.Part0 = p46
  1539. w46.C0 = CFrame.new(6.60119534, -28.6809769, -0.00311731314, -5.62940841e-008, 0.642730832, -0.766097665, -7.99720437e-005, 0.766097665, 0.642730832, 1, 6.13024604e-005, 5.13578198e-005)
  1540. w46.Part1 = p47
  1541. w46.C1 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1542. w47 = Instance.new("Weld", p47)
  1543. w47.Name = "Block_Weld"
  1544. w47.Part0 = p47
  1545. w47.C0 = CFrame.new(0.0047672065, 24.8354683, -17.3269234, 1, 4.39105889e-008, 1.31694888e-009, 8.58562998e-010, 1.16052998e-008, -1.00000417, -4.40186483e-008, 1.00000417, 1.16077858e-008)
  1546. w47.Part1 = p48
  1547. w47.C1 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1548. w48 = Instance.new("Weld", p48)
  1549. w48.Name = "Block_Weld"
  1550. w48.Part0 = p48
  1551. w48.C0 = CFrame.new(0.00476798182, 17.1448765, 24.2068424, 1, 2.0706413e-010, 5.89352567e-010, 3.15302451e-010, -1.00000417, -1.22591297e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1552. w48.Part1 = p49
  1553. w48.C1 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1554. w49 = Instance.new("Weld", p49)
  1555. w49.Name = "Block_Weld"
  1556. w49.Part0 = p49
  1557. w49.C0 = CFrame.new(-0.00476645119, -17.5089798, 24.2068386, -1, -8.76302053e-008, -5.89353621e-010, -8.77380799e-008, 1.00000417, 1.22588393e-008, 1.30967237e-010, 1.2260136e-008, -1.00000417)
  1558. w49.Part1 = p50
  1559. w49.C1 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1560. w50 = Instance.new("Weld", p50)
  1561. w50.Name = "Block_Weld"
  1562. w50.Part0 = p50
  1563. w50.C0 = CFrame.new(0.00477598188, 24.1163845, -17.6398087, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1564. w50.Part1 = p51
  1565. w50.C1 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1566. w51 = Instance.new("Weld", p51)
  1567. w51.Name = "Block_Weld"
  1568. w51.Part0 = p51
  1569. w51.C0 = CFrame.new(0.00477598188, 24.1163807, -17.0140247, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1570. w51.Part1 = p52
  1571. w51.C1 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1572. w52 = Instance.new("Weld", p52)
  1573. w52.Name = "Circle_Weld"
  1574. w52.Part0 = p52
  1575. w52.C0 = CFrame.new(0.00477198185, 24.1505146, -17.3269234, 1, 2.0706413e-010, 5.89352567e-010, 1.30967237e-010, 1.2260136e-008, -1.00000417, -3.15302451e-010, 1.00000417, 1.22591297e-008)
  1576. w52.Part1 = p53
  1577. w52.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1578. w53 = Instance.new("Weld", p53)
  1579. w53.Name = "Circle_Weld"
  1580. w53.Part0 = p53
  1581. w53.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1582. w53.Part1 = p54
  1583. w53.C1 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1584. w54 = Instance.new("Weld", p54)
  1585. w54.Name = "Part_Weld"
  1586. w54.Part0 = p54
  1587. w54.C0 = CFrame.new(25.4635296, -0.00477306498, -17.3269291, -4.28553903e-008, 5.59668152e-008, -1.00000417, -1, -8.61907934e-010, 4.2404281e-008, -9.70138636e-010, 1.00000417, 5.59658631e-008)
  1588. w54.Part1 = p55
  1589. w54.C1 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1590. w55 = Instance.new("Weld", p55)
  1591. w55.Name = "Part_Weld"
  1592. w55.Part0 = p55
  1593. w55.C0 = CFrame.new(17.3298321, -24.83041, -0.00685525918, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1594. w55.Part1 = p56
  1595. w55.C1 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1596. w56 = Instance.new("Weld", p56)
  1597. w56.Name = "Part_Weld"
  1598. w56.Part0 = p56
  1599. w56.C0 = CFrame.new(17.3298187, -24.589201, -0.00685497746, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1600. w56.Part1 = p57
  1601. w56.C1 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1602. w57 = Instance.new("Weld", p57)
  1603. w57.Name = "Block_Weld"
  1604. w57.Part0 = p57
  1605. w57.C0 = CFrame.new(17.3298569, -25.0898247, -0.00688199606, 1.51727434e-007, -1.00000429, -7.7692348e-005, 7.99382033e-005, -7.7692348e-005, 1.00000429, -1, -1.57829589e-007, 7.99380578e-005)
  1606. w57.Part1 = p58
  1607. w57.C1 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
  1608. w58 = Instance.new("Weld", p58)
  1609. w58.Name = "Block_Weld"
  1610. w58.Part0 = p58
  1611. w58.C0 = CFrame.new(0.00477481494, 24.0429974, -16.9514599, 1, 1.75053344e-007, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -1.75160864e-007, 1.00000417, 5.59724995e-008)
  1612. w58.Part1 = p59
  1613. w58.C1 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
  1614. w59 = Instance.new("Weld", p59)
  1615. w59.Name = "Block_Weld"
  1616. w59.Part0 = p59
  1617. w59.C0 = CFrame.new(-0.00478463899, 24.0429974, 17.7023983, -1, -8.76302053e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380728e-008, -1.00000417, 3.14551158e-008)
  1618. w59.Part1 = p60
  1619. w59.C1 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
  1620. w60 = Instance.new("Weld", p60)
  1621. w60.Name = "Block_Weld"
  1622. w60.Part0 = p60
  1623. w60.C0 = CFrame.new(-0.00476987194, -24.1391392, -16.9514465, -1, -2.07070638e-010, -8.80099833e-008, -8.7551598e-008, 3.14538156e-008, 1.00000417, -3.1531e-010, 1.00000417, -3.14548245e-008)
  1624. w60.Part1 = p61
  1625. w60.C1 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
  1626. w61 = Instance.new("Weld", p61)
  1627. w61.Name = "Part_Weld"
  1628. w61.Part0 = p61
  1629. w61.C0 = CFrame.new(0.00477564055, -24.1391373, 17.7023945, 1, -8.72160655e-008, -8.68385541e-008, 8.72896635e-008, -5.59740911e-008, 1.00000417, -8.71074661e-008, -1.00000417, -5.59733735e-008)
  1630. w61.Part1 = p62
  1631. w61.C1 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
  1632. w62 = Instance.new("Weld", p62)
  1633. w62.Name = "Part_Weld"
  1634. w62.Part0 = p62
  1635. w62.C0 = CFrame.new(28.8705769, -2.13716507, 0.000626247609, 3.0559022e-010, -0.642730772, -0.766097605, 7.99049012e-005, -0.766097605, 0.642730772, -1, -6.12150252e-005, 5.13566411e-005)
  1636. w62.Part1 = p63
  1637. w62.C1 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
  1638. w63 = Instance.new("Weld", p63)
  1639. w63.Name = "Blade_Weld"
  1640. w63.Part0 = p63
  1641. w63.C0 = CFrame.new(24.1805763, -16.3523483, -0.000524612726, 3.40151018e-010, -0.939669967, -0.3420946, 7.99047266e-005, -0.3420946, 0.939669967, -1, -2.73351798e-005, 7.50834879e-005)
  1642. w63.Part1 = p64
  1643. w63.C1 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1644. w64 = Instance.new("Weld", p64)
  1645. w64.Name = "Part_Weld"
  1646. w64.Part0 = p64
  1647. w64.C0 = CFrame.new(17.3280849, -20.8895588, -0.00102815893, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1648. w64.Part1 = p65
  1649. w64.C1 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
  1650. w65 = Instance.new("Weld", p65)
  1651. w65.Name = "Part_Weld"
  1652. w65.Part0 = p65
  1653. w65.C0 = CFrame.new(28.1923103, -7.19278717, 0.000232279766, 3.23780114e-010, -0.765997767, -0.642849863, 7.99048503e-005, -0.642849863, 0.765997767, -1, -5.13669547e-005, 6.12062577e-005)
  1654. w65.Part1 = p66
  1655. w65.C1 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1656. w66 = Instance.new("Weld", p66)
  1657. w66.Name = "Circle_Weld"
  1658. w66.Part0 = p66
  1659. w66.C0 = CFrame.new(17.3281631, -21.0192661, -0.00113252318, 3.16360438e-010, -1.00000429, -7.75284352e-005, 7.99046247e-005, -7.75284352e-005, 1.00000429, -1, -6.39990949e-009, 7.99044938e-005)
  1660. w66.Part1 = p67
  1661. w66.C1 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1662. w67 = Instance.new("Weld", p67)
  1663. w67.Name = "Circle_Weld"
  1664. w67.Part0 = p67
  1665. w67.C0 = CFrame.new(0.00478675682, -24.3348389, 17.3269215, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1666. w67.Part1 = p68
  1667. w67.C1 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1668. w68 = Instance.new("Weld", p68)
  1669. w68.Name = "Block_Weld"
  1670. w68.Part0 = p68
  1671. w68.C0 = CFrame.new(0.00478975661, -24.2756767, 17.3269253, 1, -4.34964633e-008, -1.38243708e-010, 5.96628524e-010, 7.58153291e-008, 1.00000417, -4.33880416e-008, -1.00000417, 7.58198269e-008)
  1672. w68.Part1 = p69
  1673. w68.C1 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1674. w69 = Instance.new("Weld", p69)
  1675. w69.Name = "Block_Weld"
  1676. w69.Part0 = p69
  1677. w69.C0 = CFrame.new(-0.00478469487, 24.0202389, 17.0140171, -1, -8.76301982e-008, 1.74266461e-007, -1.7471757e-007, -3.14538156e-008, -1.00000417, 8.77380799e-008, -1.00000417, 3.14551158e-008)
  1678. w69.Part1 = p70
  1679. w69.C1 = CFrame.new(0.00477778213, 24.0202408, -17.6398048, 1, 2.07054943e-010, 1.7543789e-007, 1.74979505e-007, 5.59740911e-008, -1.00000417, -3.15302451e-010, 1.00000417, 5.59730822e-008)
  1680. m.Parent = char
  1681. m:MakeJoints()
  1682. ----------------------------------------------------
  1683. local cor = Instance.new("Part", char.Sword)
  1684. cor.Name = "Thingy"
  1685. cor.Locked = true
  1686. cor.BottomSurface = 0
  1687. cor.CanCollide = false
  1688. cor.Size = Vector3.new(1, 1, 1)
  1689. cor.Transparency = 1
  1690. cor.TopSurface = 0
  1691. corw = Instance.new("Weld", cor)
  1692. corw.Part0 = rarm
  1693. corw.Part1 = cor
  1694. corw.C0 = CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
  1695. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1696. weld1 = Instance.new("Weld", char.Sword)
  1697. weld1.Part0 = cor
  1698. weld1.Part1 = char.Sword.Handle
  1699. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1700. ----------------------------------------------------
  1701. local m2 = Instance.new("Model")
  1702. m2.Name = "Wings"
  1703. p1 = Instance.new("Part", m2)
  1704. p1.BrickColor = BrickColor.new("Dark Indigo")
  1705. p1.Material = Enum.Material.Neon
  1706. p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
  1707. p1.FormFactor = Enum.FormFactor.Custom
  1708. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  1709. p1.BottomSurface = Enum.SurfaceType.Smooth
  1710. p1.TopSurface = Enum.SurfaceType.Smooth
  1711. b1 = Instance.new("SpecialMesh", p1)
  1712. b1.MeshType = Enum.MeshType.Sphere
  1713. b1.Name = "Mesh"
  1714. p2 = Instance.new("Part", m2)
  1715. p2.BrickColor = BrickColor.new("Dark Indigo")
  1716. p2.Material = Enum.Material.SmoothPlastic
  1717. p2.Reflectance = 0.30000001192093
  1718. p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
  1719. p2.CanCollide = false
  1720. p2.FormFactor = Enum.FormFactor.Custom
  1721. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1722. p2.BottomSurface = Enum.SurfaceType.Smooth
  1723. p2.TopSurface = Enum.SurfaceType.Smooth
  1724. b2 = Instance.new("SpecialMesh", p2)
  1725. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1726. b2.TextureId = ""
  1727. b2.MeshType = Enum.MeshType.FileMesh
  1728. b2.Name = "Mesh"
  1729. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1730. p3 = Instance.new("Part", m2)
  1731. p3.BrickColor = BrickColor.new("Dark Indigo")
  1732. p3.Material = Enum.Material.SmoothPlastic
  1733. p3.Reflectance = 0.30000001192093
  1734. p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
  1735. p3.CanCollide = false
  1736. p3.FormFactor = Enum.FormFactor.Custom
  1737. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1738. p3.BottomSurface = Enum.SurfaceType.Smooth
  1739. p3.TopSurface = Enum.SurfaceType.Smooth
  1740. b3 = Instance.new("SpecialMesh", p3)
  1741. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1742. b3.TextureId = ""
  1743. b3.MeshType = Enum.MeshType.FileMesh
  1744. b3.Name = "Mesh"
  1745. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1746. p4 = Instance.new("Part", m2)
  1747. p4.BrickColor = BrickColor.new("Dark Indigo")
  1748. p4.Material = Enum.Material.SmoothPlastic
  1749. p4.Reflectance = 0.30000001192093
  1750. p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
  1751. p4.CanCollide = false
  1752. p4.FormFactor = Enum.FormFactor.Custom
  1753. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1754. p4.BottomSurface = Enum.SurfaceType.Smooth
  1755. p4.TopSurface = Enum.SurfaceType.Smooth
  1756. b4 = Instance.new("SpecialMesh", p4)
  1757. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1758. b4.TextureId = ""
  1759. b4.MeshType = Enum.MeshType.FileMesh
  1760. b4.Name = "Mesh"
  1761. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1762. p5 = Instance.new("Part", m2)
  1763. p5.BrickColor = BrickColor.new("Dark Indigo")
  1764. p5.Material = Enum.Material.SmoothPlastic
  1765. p5.Reflectance = 0.30000001192093
  1766. p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
  1767. p5.CanCollide = false
  1768. p5.FormFactor = Enum.FormFactor.Custom
  1769. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1770. p5.BottomSurface = Enum.SurfaceType.Smooth
  1771. p5.TopSurface = Enum.SurfaceType.Smooth
  1772. b5 = Instance.new("SpecialMesh", p5)
  1773. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1774. b5.TextureId = ""
  1775. b5.MeshType = Enum.MeshType.FileMesh
  1776. b5.Name = "Mesh"
  1777. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1778. p6 = Instance.new("Part", m2)
  1779. p6.BrickColor = BrickColor.new("Dark Indigo")
  1780. p6.Material = Enum.Material.SmoothPlastic
  1781. p6.Reflectance = 0.30000001192093
  1782. p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
  1783. p6.CanCollide = false
  1784. p6.FormFactor = Enum.FormFactor.Custom
  1785. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1786. p6.BottomSurface = Enum.SurfaceType.Smooth
  1787. p6.TopSurface = Enum.SurfaceType.Smooth
  1788. b6 = Instance.new("SpecialMesh", p6)
  1789. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1790. b6.TextureId = ""
  1791. b6.MeshType = Enum.MeshType.FileMesh
  1792. b6.Name = "Mesh"
  1793. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1794. p7 = Instance.new("Part", m2)
  1795. p7.BrickColor = BrickColor.new("Dark Indigo")
  1796. p7.Material = Enum.Material.SmoothPlastic
  1797. p7.Reflectance = 0.30000001192093
  1798. p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
  1799. p7.CanCollide = false
  1800. p7.FormFactor = Enum.FormFactor.Custom
  1801. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1802. p7.BottomSurface = Enum.SurfaceType.Smooth
  1803. p7.TopSurface = Enum.SurfaceType.Smooth
  1804. b7 = Instance.new("SpecialMesh", p7)
  1805. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1806. b7.TextureId = ""
  1807. b7.MeshType = Enum.MeshType.FileMesh
  1808. b7.Name = "Mesh"
  1809. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1810. p8 = Instance.new("Part", m2)
  1811. p8.BrickColor = BrickColor.new("Dark Indigo")
  1812. p8.Material = Enum.Material.SmoothPlastic
  1813. p8.Reflectance = 0.30000001192093
  1814. p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
  1815. p8.CanCollide = false
  1816. p8.FormFactor = Enum.FormFactor.Custom
  1817. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1818. p8.BottomSurface = Enum.SurfaceType.Smooth
  1819. p8.TopSurface = Enum.SurfaceType.Smooth
  1820. b8 = Instance.new("SpecialMesh", p8)
  1821. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1822. b8.TextureId = ""
  1823. b8.MeshType = Enum.MeshType.FileMesh
  1824. b8.Name = "Mesh"
  1825. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1826. p9 = Instance.new("Part", m2)
  1827. p9.BrickColor = BrickColor.new("Dark Indigo")
  1828. p9.Material = Enum.Material.SmoothPlastic
  1829. p9.Reflectance = 0.30000001192093
  1830. p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
  1831. p9.CanCollide = false
  1832. p9.FormFactor = Enum.FormFactor.Custom
  1833. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1834. p9.BottomSurface = Enum.SurfaceType.Smooth
  1835. p9.TopSurface = Enum.SurfaceType.Smooth
  1836. b9 = Instance.new("SpecialMesh", p9)
  1837. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1838. b9.TextureId = ""
  1839. b9.MeshType = Enum.MeshType.FileMesh
  1840. b9.Name = "Mesh"
  1841. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1842. p10 = Instance.new("Part", m2)
  1843. p10.BrickColor = BrickColor.new("Dark Indigo")
  1844. p10.Material = Enum.Material.SmoothPlastic
  1845. p10.Reflectance = 0.30000001192093
  1846. p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
  1847. p10.CanCollide = false
  1848. p10.FormFactor = Enum.FormFactor.Custom
  1849. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1850. p10.BottomSurface = Enum.SurfaceType.Smooth
  1851. p10.TopSurface = Enum.SurfaceType.Smooth
  1852. b10 = Instance.new("SpecialMesh", p10)
  1853. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1854. b10.TextureId = ""
  1855. b10.MeshType = Enum.MeshType.FileMesh
  1856. b10.Name = "Mesh"
  1857. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1858. p11 = Instance.new("Part", m2)
  1859. p11.BrickColor = BrickColor.new("Dark Indigo")
  1860. p11.Material = Enum.Material.SmoothPlastic
  1861. p11.Reflectance = 0.30000001192093
  1862. p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
  1863. p11.CanCollide = false
  1864. p11.FormFactor = Enum.FormFactor.Custom
  1865. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1866. p11.BottomSurface = Enum.SurfaceType.Smooth
  1867. p11.TopSurface = Enum.SurfaceType.Smooth
  1868. b11 = Instance.new("SpecialMesh", p11)
  1869. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1870. b11.TextureId = ""
  1871. b11.MeshType = Enum.MeshType.FileMesh
  1872. b11.Name = "Mesh"
  1873. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1874. p12 = Instance.new("Part", m2)
  1875. p12.BrickColor = BrickColor.new("Dark Indigo")
  1876. p12.Material = Enum.Material.SmoothPlastic
  1877. p12.Reflectance = 0.30000001192093
  1878. p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
  1879. p12.CanCollide = false
  1880. p12.FormFactor = Enum.FormFactor.Custom
  1881. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1882. p12.BottomSurface = Enum.SurfaceType.Smooth
  1883. p12.TopSurface = Enum.SurfaceType.Smooth
  1884. b12 = Instance.new("SpecialMesh", p12)
  1885. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1886. b12.TextureId = ""
  1887. b12.MeshType = Enum.MeshType.FileMesh
  1888. b12.Name = "Mesh"
  1889. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1890. p13 = Instance.new("Part", m2)
  1891. p13.BrickColor = BrickColor.new("Dark Indigo")
  1892. p13.Material = Enum.Material.SmoothPlastic
  1893. p13.Reflectance = 0.30000001192093
  1894. p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
  1895. p13.CanCollide = false
  1896. p13.FormFactor = Enum.FormFactor.Custom
  1897. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1898. p13.BottomSurface = Enum.SurfaceType.Smooth
  1899. p13.TopSurface = Enum.SurfaceType.Smooth
  1900. b13 = Instance.new("SpecialMesh", p13)
  1901. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1902. b13.TextureId = ""
  1903. b13.MeshType = Enum.MeshType.FileMesh
  1904. b13.Name = "Mesh"
  1905. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1906. p14 = Instance.new("Part", m2)
  1907. p14.BrickColor = BrickColor.new("Dark Indigo")
  1908. p14.Material = Enum.Material.SmoothPlastic
  1909. p14.Reflectance = 0.30000001192093
  1910. p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
  1911. p14.CanCollide = false
  1912. p14.FormFactor = Enum.FormFactor.Custom
  1913. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1914. p14.BottomSurface = Enum.SurfaceType.Smooth
  1915. p14.TopSurface = Enum.SurfaceType.Smooth
  1916. b14 = Instance.new("SpecialMesh", p14)
  1917. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1918. b14.TextureId = ""
  1919. b14.MeshType = Enum.MeshType.FileMesh
  1920. b14.Name = "Mesh"
  1921. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1922. p15 = Instance.new("Part", m2)
  1923. p15.BrickColor = BrickColor.new("Dark Indigo")
  1924. p15.Material = Enum.Material.SmoothPlastic
  1925. p15.Reflectance = 0.30000001192093
  1926. p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
  1927. p15.CanCollide = false
  1928. p15.FormFactor = Enum.FormFactor.Custom
  1929. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1930. p15.BottomSurface = Enum.SurfaceType.Smooth
  1931. p15.TopSurface = Enum.SurfaceType.Smooth
  1932. b15 = Instance.new("SpecialMesh", p15)
  1933. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1934. b15.TextureId = ""
  1935. b15.MeshType = Enum.MeshType.FileMesh
  1936. b15.Name = "Mesh"
  1937. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1938. p16 = Instance.new("Part", m2)
  1939. p16.BrickColor = BrickColor.new("Dark Indigo")
  1940. p16.Material = Enum.Material.SmoothPlastic
  1941. p16.Reflectance = 0.30000001192093
  1942. p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
  1943. p16.CanCollide = false
  1944. p16.FormFactor = Enum.FormFactor.Custom
  1945. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1946. p16.BottomSurface = Enum.SurfaceType.Smooth
  1947. p16.TopSurface = Enum.SurfaceType.Smooth
  1948. b16 = Instance.new("SpecialMesh", p16)
  1949. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1950. b16.TextureId = ""
  1951. b16.MeshType = Enum.MeshType.FileMesh
  1952. b16.Name = "Mesh"
  1953. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1954. p17 = Instance.new("Part", m2)
  1955. p17.BrickColor = BrickColor.new("Dark Indigo")
  1956. p17.Material = Enum.Material.SmoothPlastic
  1957. p17.Reflectance = 0.30000001192093
  1958. p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
  1959. p17.CanCollide = false
  1960. p17.FormFactor = Enum.FormFactor.Custom
  1961. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1962. p17.BottomSurface = Enum.SurfaceType.Smooth
  1963. p17.TopSurface = Enum.SurfaceType.Smooth
  1964. b17 = Instance.new("SpecialMesh", p17)
  1965. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1966. b17.TextureId = ""
  1967. b17.MeshType = Enum.MeshType.FileMesh
  1968. b17.Name = "Mesh"
  1969. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1970. p18 = Instance.new("Part", m2)
  1971. p18.BrickColor = BrickColor.new("Dark Indigo")
  1972. p18.Material = Enum.Material.SmoothPlastic
  1973. p18.Reflectance = 0.30000001192093
  1974. p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
  1975. p18.CanCollide = false
  1976. p18.FormFactor = Enum.FormFactor.Custom
  1977. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1978. p18.BottomSurface = Enum.SurfaceType.Smooth
  1979. p18.TopSurface = Enum.SurfaceType.Smooth
  1980. b18 = Instance.new("SpecialMesh", p18)
  1981. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1982. b18.TextureId = ""
  1983. b18.MeshType = Enum.MeshType.FileMesh
  1984. b18.Name = "Mesh"
  1985. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1986. p19 = Instance.new("Part", m2)
  1987. p19.BrickColor = BrickColor.new("Dark Indigo")
  1988. p19.Material = Enum.Material.SmoothPlastic
  1989. p19.Reflectance = 0.30000001192093
  1990. p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
  1991. p19.CanCollide = false
  1992. p19.FormFactor = Enum.FormFactor.Custom
  1993. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1994. p19.BottomSurface = Enum.SurfaceType.Smooth
  1995. p19.TopSurface = Enum.SurfaceType.Smooth
  1996. b19 = Instance.new("SpecialMesh", p19)
  1997. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1998. b19.TextureId = ""
  1999. b19.MeshType = Enum.MeshType.FileMesh
  2000. b19.Name = "Mesh"
  2001. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2002. p20 = Instance.new("Part", m2)
  2003. p20.BrickColor = BrickColor.new("Dark Indigo")
  2004. p20.Material = Enum.Material.SmoothPlastic
  2005. p20.Reflectance = 0.30000001192093
  2006. p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
  2007. p20.CanCollide = false
  2008. p20.FormFactor = Enum.FormFactor.Custom
  2009. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2010. p20.BottomSurface = Enum.SurfaceType.Smooth
  2011. p20.TopSurface = Enum.SurfaceType.Smooth
  2012. b20 = Instance.new("SpecialMesh", p20)
  2013. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2014. b20.TextureId = ""
  2015. b20.MeshType = Enum.MeshType.FileMesh
  2016. b20.Name = "Mesh"
  2017. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2018. p21 = Instance.new("Part", m2)
  2019. p21.BrickColor = BrickColor.new("Dark Indigo")
  2020. p21.Material = Enum.Material.SmoothPlastic
  2021. p21.Reflectance = 0.30000001192093
  2022. p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
  2023. p21.CanCollide = false
  2024. p21.FormFactor = Enum.FormFactor.Custom
  2025. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2026. p21.BottomSurface = Enum.SurfaceType.Smooth
  2027. p21.TopSurface = Enum.SurfaceType.Smooth
  2028. b21 = Instance.new("SpecialMesh", p21)
  2029. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2030. b21.TextureId = ""
  2031. b21.MeshType = Enum.MeshType.FileMesh
  2032. b21.Name = "Mesh"
  2033. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2034. p22 = Instance.new("Part", m2)
  2035. p22.BrickColor = BrickColor.new("Dark Indigo")
  2036. p22.Material = Enum.Material.SmoothPlastic
  2037. p22.Reflectance = 0.30000001192093
  2038. p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
  2039. p22.CanCollide = false
  2040. p22.FormFactor = Enum.FormFactor.Custom
  2041. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2042. p22.BottomSurface = Enum.SurfaceType.Smooth
  2043. p22.TopSurface = Enum.SurfaceType.Smooth
  2044. b22 = Instance.new("SpecialMesh", p22)
  2045. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2046. b22.TextureId = ""
  2047. b22.MeshType = Enum.MeshType.FileMesh
  2048. b22.Name = "Mesh"
  2049. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2050. p23 = Instance.new("Part", m2)
  2051. p23.BrickColor = BrickColor.new("Dark Indigo")
  2052. p23.Material = Enum.Material.SmoothPlastic
  2053. p23.Reflectance = 0.30000001192093
  2054. p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
  2055. p23.CanCollide = false
  2056. p23.FormFactor = Enum.FormFactor.Custom
  2057. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2058. p23.BottomSurface = Enum.SurfaceType.Smooth
  2059. p23.TopSurface = Enum.SurfaceType.Smooth
  2060. b23 = Instance.new("SpecialMesh", p23)
  2061. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2062. b23.TextureId = ""
  2063. b23.MeshType = Enum.MeshType.FileMesh
  2064. b23.Name = "Mesh"
  2065. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2066. p24 = Instance.new("Part", m2)
  2067. p24.BrickColor = BrickColor.new("Dark Indigo")
  2068. p24.Material = Enum.Material.SmoothPlastic
  2069. p24.Reflectance = 0.30000001192093
  2070. p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
  2071. p24.CanCollide = false
  2072. p24.FormFactor = Enum.FormFactor.Custom
  2073. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2074. p24.BottomSurface = Enum.SurfaceType.Smooth
  2075. p24.TopSurface = Enum.SurfaceType.Smooth
  2076. b24 = Instance.new("SpecialMesh", p24)
  2077. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2078. b24.TextureId = ""
  2079. b24.MeshType = Enum.MeshType.FileMesh
  2080. b24.Name = "Mesh"
  2081. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2082. p25 = Instance.new("Part", m2)
  2083. p25.BrickColor = BrickColor.new("Dark Indigo")
  2084. p25.Material = Enum.Material.SmoothPlastic
  2085. p25.Reflectance = 0.30000001192093
  2086. p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
  2087. p25.CanCollide = false
  2088. p25.FormFactor = Enum.FormFactor.Custom
  2089. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2090. p25.BottomSurface = Enum.SurfaceType.Smooth
  2091. p25.TopSurface = Enum.SurfaceType.Smooth
  2092. b25 = Instance.new("SpecialMesh", p25)
  2093. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2094. b25.TextureId = ""
  2095. b25.MeshType = Enum.MeshType.FileMesh
  2096. b25.Name = "Mesh"
  2097. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2098. p26 = Instance.new("Part", m2)
  2099. p26.BrickColor = BrickColor.new("Dark Indigo")
  2100. p26.Material = Enum.Material.SmoothPlastic
  2101. p26.Reflectance = 0.30000001192093
  2102. p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
  2103. p26.CanCollide = false
  2104. p26.FormFactor = Enum.FormFactor.Custom
  2105. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2106. p26.BottomSurface = Enum.SurfaceType.Smooth
  2107. p26.TopSurface = Enum.SurfaceType.Smooth
  2108. b26 = Instance.new("SpecialMesh", p26)
  2109. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2110. b26.TextureId = ""
  2111. b26.MeshType = Enum.MeshType.FileMesh
  2112. b26.Name = "Mesh"
  2113. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2114. p27 = Instance.new("Part", m2)
  2115. p27.BrickColor = BrickColor.new("Dark Indigo")
  2116. p27.Material = Enum.Material.SmoothPlastic
  2117. p27.Reflectance = 0.30000001192093
  2118. p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
  2119. p27.CanCollide = false
  2120. p27.FormFactor = Enum.FormFactor.Custom
  2121. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2122. p27.BottomSurface = Enum.SurfaceType.Smooth
  2123. p27.TopSurface = Enum.SurfaceType.Smooth
  2124. b27 = Instance.new("SpecialMesh", p27)
  2125. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2126. b27.TextureId = ""
  2127. b27.MeshType = Enum.MeshType.FileMesh
  2128. b27.Name = "Mesh"
  2129. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2130. p28 = Instance.new("Part", m2)
  2131. p28.BrickColor = BrickColor.new("Dark Indigo")
  2132. p28.Material = Enum.Material.SmoothPlastic
  2133. p28.Reflectance = 0.30000001192093
  2134. p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
  2135. p28.CanCollide = false
  2136. p28.FormFactor = Enum.FormFactor.Custom
  2137. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2138. p28.BottomSurface = Enum.SurfaceType.Smooth
  2139. p28.TopSurface = Enum.SurfaceType.Smooth
  2140. b28 = Instance.new("SpecialMesh", p28)
  2141. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2142. b28.TextureId = ""
  2143. b28.MeshType = Enum.MeshType.FileMesh
  2144. b28.Name = "Mesh"
  2145. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2146. p29 = Instance.new("Part", m2)
  2147. p29.BrickColor = BrickColor.new("Dark Indigo")
  2148. p29.Material = Enum.Material.Neon
  2149. p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
  2150. p29.FormFactor = Enum.FormFactor.Custom
  2151. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2152. p29.BottomSurface = Enum.SurfaceType.Smooth
  2153. p29.TopSurface = Enum.SurfaceType.Smooth
  2154. b29 = Instance.new("SpecialMesh", p29)
  2155. b29.MeshType = Enum.MeshType.Sphere
  2156. b29.Name = "Mesh"
  2157. p30 = Instance.new("Part", m2)
  2158. p30.BrickColor = BrickColor.new("Dark Indigo")
  2159. p30.Material = Enum.Material.SmoothPlastic
  2160. p30.Reflectance = 0.30000001192093
  2161. p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
  2162. p30.CanCollide = false
  2163. p30.FormFactor = Enum.FormFactor.Custom
  2164. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2165. p30.BottomSurface = Enum.SurfaceType.Smooth
  2166. p30.TopSurface = Enum.SurfaceType.Smooth
  2167. b30 = Instance.new("SpecialMesh", p30)
  2168. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2169. b30.TextureId = ""
  2170. b30.MeshType = Enum.MeshType.FileMesh
  2171. b30.Name = "Mesh"
  2172. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2173. p31 = Instance.new("Part", m2)
  2174. p31.BrickColor = BrickColor.new("Dark Indigo")
  2175. p31.Material = Enum.Material.SmoothPlastic
  2176. p31.Reflectance = 0.30000001192093
  2177. p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
  2178. p31.CanCollide = false
  2179. p31.FormFactor = Enum.FormFactor.Custom
  2180. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2181. p31.BottomSurface = Enum.SurfaceType.Smooth
  2182. p31.TopSurface = Enum.SurfaceType.Smooth
  2183. b31 = Instance.new("SpecialMesh", p31)
  2184. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2185. b31.TextureId = ""
  2186. b31.MeshType = Enum.MeshType.FileMesh
  2187. b31.Name = "Mesh"
  2188. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2189. p32 = Instance.new("Part", m2)
  2190. p32.BrickColor = BrickColor.new("Dark Indigo")
  2191. p32.Material = Enum.Material.SmoothPlastic
  2192. p32.Reflectance = 0.30000001192093
  2193. p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
  2194. p32.CanCollide = false
  2195. p32.FormFactor = Enum.FormFactor.Custom
  2196. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2197. p32.BottomSurface = Enum.SurfaceType.Smooth
  2198. p32.TopSurface = Enum.SurfaceType.Smooth
  2199. b32 = Instance.new("SpecialMesh", p32)
  2200. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2201. b32.TextureId = ""
  2202. b32.MeshType = Enum.MeshType.FileMesh
  2203. b32.Name = "Mesh"
  2204. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2205. p33 = Instance.new("Part", m2)
  2206. p33.BrickColor = BrickColor.new("Dark Indigo")
  2207. p33.Material = Enum.Material.Neon
  2208. p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
  2209. p33.FormFactor = Enum.FormFactor.Custom
  2210. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2211. p33.BottomSurface = Enum.SurfaceType.Smooth
  2212. p33.TopSurface = Enum.SurfaceType.Smooth
  2213. b33 = Instance.new("SpecialMesh", p33)
  2214. b33.MeshType = Enum.MeshType.Sphere
  2215. b33.Name = "Mesh"
  2216. p34 = Instance.new("Part", m2)
  2217. p34.BrickColor = BrickColor.new("Dark Indigo")
  2218. p34.Material = Enum.Material.SmoothPlastic
  2219. p34.Reflectance = 0.30000001192093
  2220. p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
  2221. p34.CanCollide = false
  2222. p34.FormFactor = Enum.FormFactor.Custom
  2223. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2224. p34.BottomSurface = Enum.SurfaceType.Smooth
  2225. p34.TopSurface = Enum.SurfaceType.Smooth
  2226. b34 = Instance.new("SpecialMesh", p34)
  2227. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2228. b34.TextureId = ""
  2229. b34.MeshType = Enum.MeshType.FileMesh
  2230. b34.Name = "Mesh"
  2231. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2232. p35 = Instance.new("Part", m2)
  2233. p35.BrickColor = BrickColor.new("Dark Indigo")
  2234. p35.Material = Enum.Material.SmoothPlastic
  2235. p35.Reflectance = 0.30000001192093
  2236. p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
  2237. p35.CanCollide = false
  2238. p35.FormFactor = Enum.FormFactor.Custom
  2239. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2240. p35.BottomSurface = Enum.SurfaceType.Smooth
  2241. p35.TopSurface = Enum.SurfaceType.Smooth
  2242. b35 = Instance.new("SpecialMesh", p35)
  2243. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2244. b35.TextureId = ""
  2245. b35.MeshType = Enum.MeshType.FileMesh
  2246. b35.Name = "Mesh"
  2247. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2248. p36 = Instance.new("Part", m2)
  2249. p36.BrickColor = BrickColor.new("Dark Indigo")
  2250. p36.Material = Enum.Material.SmoothPlastic
  2251. p36.Reflectance = 0.30000001192093
  2252. p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
  2253. p36.CanCollide = false
  2254. p36.FormFactor = Enum.FormFactor.Custom
  2255. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2256. p36.BottomSurface = Enum.SurfaceType.Smooth
  2257. p36.TopSurface = Enum.SurfaceType.Smooth
  2258. b36 = Instance.new("SpecialMesh", p36)
  2259. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2260. b36.TextureId = ""
  2261. b36.MeshType = Enum.MeshType.FileMesh
  2262. b36.Name = "Mesh"
  2263. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2264. p37 = Instance.new("Part", m2)
  2265. p37.BrickColor = BrickColor.new("Dark Indigo")
  2266. p37.Material = Enum.Material.Neon
  2267. p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
  2268. p37.FormFactor = Enum.FormFactor.Custom
  2269. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2270. p37.BottomSurface = Enum.SurfaceType.Smooth
  2271. p37.TopSurface = Enum.SurfaceType.Smooth
  2272. b37 = Instance.new("SpecialMesh", p37)
  2273. b37.MeshType = Enum.MeshType.Sphere
  2274. b37.Name = "Mesh"
  2275. p38 = Instance.new("Part", m2)
  2276. p38.BrickColor = BrickColor.new("Dark Indigo")
  2277. p38.Material = Enum.Material.Neon
  2278. p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
  2279. p38.FormFactor = Enum.FormFactor.Custom
  2280. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2281. p38.BottomSurface = Enum.SurfaceType.Smooth
  2282. p38.TopSurface = Enum.SurfaceType.Smooth
  2283. b38 = Instance.new("SpecialMesh", p38)
  2284. b38.MeshType = Enum.MeshType.Sphere
  2285. b38.Name = "Mesh"
  2286. p39 = Instance.new("Part", m2)
  2287. p39.BrickColor = BrickColor.new("Dark Indigo")
  2288. p39.Material = Enum.Material.SmoothPlastic
  2289. p39.Reflectance = 0.30000001192093
  2290. p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2291. p39.CanCollide = false
  2292. p39.FormFactor = Enum.FormFactor.Custom
  2293. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2294. p39.BottomSurface = Enum.SurfaceType.Smooth
  2295. p39.TopSurface = Enum.SurfaceType.Smooth
  2296. b39 = Instance.new("SpecialMesh", p39)
  2297. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2298. b39.TextureId = ""
  2299. b39.MeshType = Enum.MeshType.FileMesh
  2300. b39.Name = "Mesh"
  2301. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2302. p40 = Instance.new("Part", m2)
  2303. p40.BrickColor = BrickColor.new("Dark Indigo")
  2304. p40.Material = Enum.Material.SmoothPlastic
  2305. p40.Reflectance = 0.30000001192093
  2306. p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2307. p40.CanCollide = false
  2308. p40.FormFactor = Enum.FormFactor.Custom
  2309. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2310. p40.BottomSurface = Enum.SurfaceType.Smooth
  2311. p40.TopSurface = Enum.SurfaceType.Smooth
  2312. b40 = Instance.new("SpecialMesh", p40)
  2313. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2314. b40.TextureId = ""
  2315. b40.MeshType = Enum.MeshType.FileMesh
  2316. b40.Name = "Mesh"
  2317. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2318. p41 = Instance.new("Part", m2)
  2319. p41.BrickColor = BrickColor.new("Dark Indigo")
  2320. p41.Material = Enum.Material.SmoothPlastic
  2321. p41.Reflectance = 0.30000001192093
  2322. p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  2323. p41.CanCollide = false
  2324. p41.FormFactor = Enum.FormFactor.Custom
  2325. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2326. p41.BottomSurface = Enum.SurfaceType.Smooth
  2327. p41.TopSurface = Enum.SurfaceType.Smooth
  2328. b41 = Instance.new("SpecialMesh", p41)
  2329. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2330. b41.TextureId = ""
  2331. b41.MeshType = Enum.MeshType.FileMesh
  2332. b41.Name = "Mesh"
  2333. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2334. p42 = Instance.new("Part", m2)
  2335. p42.BrickColor = BrickColor.new("Dark Indigo")
  2336. p42.Material = Enum.Material.SmoothPlastic
  2337. p42.Reflectance = 0.30000001192093
  2338. p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
  2339. p42.CanCollide = false
  2340. p42.FormFactor = Enum.FormFactor.Custom
  2341. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2342. p42.BottomSurface = Enum.SurfaceType.Smooth
  2343. p42.TopSurface = Enum.SurfaceType.Smooth
  2344. b42 = Instance.new("SpecialMesh", p42)
  2345. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2346. b42.TextureId = ""
  2347. b42.MeshType = Enum.MeshType.FileMesh
  2348. b42.Name = "Mesh"
  2349. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2350. p43 = Instance.new("Part", m2)
  2351. p43.BrickColor = BrickColor.new("Dark Indigo")
  2352. p43.Material = Enum.Material.SmoothPlastic
  2353. p43.Reflectance = 0.30000001192093
  2354. p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
  2355. p43.CanCollide = false
  2356. p43.FormFactor = Enum.FormFactor.Custom
  2357. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2358. p43.BottomSurface = Enum.SurfaceType.Smooth
  2359. p43.TopSurface = Enum.SurfaceType.Smooth
  2360. b43 = Instance.new("SpecialMesh", p43)
  2361. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2362. b43.TextureId = ""
  2363. b43.MeshType = Enum.MeshType.FileMesh
  2364. b43.Name = "Mesh"
  2365. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2366. p44 = Instance.new("Part", m2)
  2367. p44.BrickColor = BrickColor.new("Dark Indigo")
  2368. p44.Material = Enum.Material.SmoothPlastic
  2369. p44.Reflectance = 0.30000001192093
  2370. p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
  2371. p44.CanCollide = false
  2372. p44.FormFactor = Enum.FormFactor.Custom
  2373. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2374. p44.BottomSurface = Enum.SurfaceType.Smooth
  2375. p44.TopSurface = Enum.SurfaceType.Smooth
  2376. b44 = Instance.new("SpecialMesh", p44)
  2377. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2378. b44.TextureId = ""
  2379. b44.MeshType = Enum.MeshType.FileMesh
  2380. b44.Name = "Mesh"
  2381. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2382. p45 = Instance.new("Part", m2)
  2383. p45.BrickColor = BrickColor.new("Dark Indigo")
  2384. p45.Material = Enum.Material.SmoothPlastic
  2385. p45.Reflectance = 0.30000001192093
  2386. p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
  2387. p45.CanCollide = false
  2388. p45.FormFactor = Enum.FormFactor.Custom
  2389. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2390. p45.BottomSurface = Enum.SurfaceType.Smooth
  2391. p45.TopSurface = Enum.SurfaceType.Smooth
  2392. b45 = Instance.new("SpecialMesh", p45)
  2393. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2394. b45.TextureId = ""
  2395. b45.MeshType = Enum.MeshType.FileMesh
  2396. b45.Name = "Mesh"
  2397. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2398. p46 = Instance.new("Part", m2)
  2399. p46.BrickColor = BrickColor.new("Dark Indigo")
  2400. p46.Material = Enum.Material.SmoothPlastic
  2401. p46.Reflectance = 0.30000001192093
  2402. p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
  2403. p46.CanCollide = false
  2404. p46.FormFactor = Enum.FormFactor.Custom
  2405. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2406. p46.BottomSurface = Enum.SurfaceType.Smooth
  2407. p46.TopSurface = Enum.SurfaceType.Smooth
  2408. b46 = Instance.new("SpecialMesh", p46)
  2409. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2410. b46.TextureId = ""
  2411. b46.MeshType = Enum.MeshType.FileMesh
  2412. b46.Name = "Mesh"
  2413. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2414. p47 = Instance.new("Part", m2)
  2415. p47.BrickColor = BrickColor.new("Dark Indigo")
  2416. p47.Material = Enum.Material.SmoothPlastic
  2417. p47.Reflectance = 0.30000001192093
  2418. p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
  2419. p47.CanCollide = false
  2420. p47.FormFactor = Enum.FormFactor.Custom
  2421. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2422. p47.BottomSurface = Enum.SurfaceType.Smooth
  2423. p47.TopSurface = Enum.SurfaceType.Smooth
  2424. b47 = Instance.new("SpecialMesh", p47)
  2425. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2426. b47.TextureId = ""
  2427. b47.MeshType = Enum.MeshType.FileMesh
  2428. b47.Name = "Mesh"
  2429. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2430. p48 = Instance.new("Part", m2)
  2431. p48.BrickColor = BrickColor.new("Dark Indigo")
  2432. p48.Material = Enum.Material.Neon
  2433. p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
  2434. p48.FormFactor = Enum.FormFactor.Custom
  2435. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2436. p48.BottomSurface = Enum.SurfaceType.Smooth
  2437. p48.TopSurface = Enum.SurfaceType.Smooth
  2438. b48 = Instance.new("SpecialMesh", p48)
  2439. b48.MeshType = Enum.MeshType.Sphere
  2440. b48.Name = "Mesh"
  2441. p49 = Instance.new("Part", m2)
  2442. p49.BrickColor = BrickColor.new("Dark Indigo")
  2443. p49.Material = Enum.Material.SmoothPlastic
  2444. p49.Reflectance = 0.30000001192093
  2445. p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2446. p49.CanCollide = false
  2447. p49.FormFactor = Enum.FormFactor.Custom
  2448. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2449. p49.BottomSurface = Enum.SurfaceType.Smooth
  2450. p49.TopSurface = Enum.SurfaceType.Smooth
  2451. b49 = Instance.new("SpecialMesh", p49)
  2452. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2453. b49.TextureId = ""
  2454. b49.MeshType = Enum.MeshType.FileMesh
  2455. b49.Name = "Mesh"
  2456. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2457. p50 = Instance.new("Part", m2)
  2458. p50.BrickColor = BrickColor.new("Dark Indigo")
  2459. p50.Material = Enum.Material.SmoothPlastic
  2460. p50.Reflectance = 0.30000001192093
  2461. p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2462. p50.CanCollide = false
  2463. p50.FormFactor = Enum.FormFactor.Custom
  2464. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2465. p50.BottomSurface = Enum.SurfaceType.Smooth
  2466. p50.TopSurface = Enum.SurfaceType.Smooth
  2467. b50 = Instance.new("SpecialMesh", p50)
  2468. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2469. b50.TextureId = ""
  2470. b50.MeshType = Enum.MeshType.FileMesh
  2471. b50.Name = "Mesh"
  2472. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2473. p51 = Instance.new("Part", m2)
  2474. p51.BrickColor = BrickColor.new("Dark Indigo")
  2475. p51.Material = Enum.Material.SmoothPlastic
  2476. p51.Reflectance = 0.30000001192093
  2477. p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  2478. p51.CanCollide = false
  2479. p51.FormFactor = Enum.FormFactor.Custom
  2480. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2481. p51.BottomSurface = Enum.SurfaceType.Smooth
  2482. p51.TopSurface = Enum.SurfaceType.Smooth
  2483. b51 = Instance.new("SpecialMesh", p51)
  2484. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2485. b51.TextureId = ""
  2486. b51.MeshType = Enum.MeshType.FileMesh
  2487. b51.Name = "Mesh"
  2488. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2489. p52 = Instance.new("Part", m2)
  2490. p52.BrickColor = BrickColor.new("Dark Indigo")
  2491. p52.Material = Enum.Material.Neon
  2492. p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
  2493. p52.FormFactor = Enum.FormFactor.Custom
  2494. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2495. p52.BottomSurface = Enum.SurfaceType.Smooth
  2496. p52.TopSurface = Enum.SurfaceType.Smooth
  2497. b52 = Instance.new("SpecialMesh", p52)
  2498. b52.MeshType = Enum.MeshType.Sphere
  2499. b52.Name = "Mesh"
  2500. p53 = Instance.new("Part", m2)
  2501. p53.BrickColor = BrickColor.new("Dark Indigo")
  2502. p53.Material = Enum.Material.Neon
  2503. p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
  2504. p53.FormFactor = Enum.FormFactor.Custom
  2505. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  2506. p53.BottomSurface = Enum.SurfaceType.Smooth
  2507. p53.TopSurface = Enum.SurfaceType.Smooth
  2508. b53 = Instance.new("SpecialMesh", p53)
  2509. b53.MeshType = Enum.MeshType.Sphere
  2510. b53.Name = "Mesh"
  2511. p54 = Instance.new("Part", m2)
  2512. p54.BrickColor = BrickColor.new("Dark Indigo")
  2513. p54.Material = Enum.Material.Neon
  2514. p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
  2515. p54.FormFactor = Enum.FormFactor.Custom
  2516. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  2517. p54.BottomSurface = Enum.SurfaceType.Smooth
  2518. p54.TopSurface = Enum.SurfaceType.Smooth
  2519. b54 = Instance.new("SpecialMesh", p54)
  2520. b54.MeshType = Enum.MeshType.Sphere
  2521. b54.Name = "Mesh"
  2522. p55 = Instance.new("Part", m2)
  2523. p55.BrickColor = BrickColor.new("Dark Indigo")
  2524. p55.Material = Enum.Material.Neon
  2525. p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
  2526. p55.FormFactor = Enum.FormFactor.Custom
  2527. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2528. p55.BottomSurface = Enum.SurfaceType.Smooth
  2529. p55.TopSurface = Enum.SurfaceType.Smooth
  2530. b55 = Instance.new("SpecialMesh", p55)
  2531. b55.MeshType = Enum.MeshType.Sphere
  2532. b55.Name = "Mesh"
  2533. p56 = Instance.new("Part", m2)
  2534. p56.BrickColor = BrickColor.new("Dark Indigo")
  2535. p56.Material = Enum.Material.SmoothPlastic
  2536. p56.Reflectance = 0.30000001192093
  2537. p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2538. p56.CanCollide = false
  2539. p56.FormFactor = Enum.FormFactor.Custom
  2540. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2541. p56.BottomSurface = Enum.SurfaceType.Smooth
  2542. p56.TopSurface = Enum.SurfaceType.Smooth
  2543. b56 = Instance.new("SpecialMesh", p56)
  2544. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2545. b56.TextureId = ""
  2546. b56.MeshType = Enum.MeshType.FileMesh
  2547. b56.Name = "Mesh"
  2548. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2549. p57 = Instance.new("Part", m2)
  2550. p57.BrickColor = BrickColor.new("Dark Indigo")
  2551. p57.Material = Enum.Material.SmoothPlastic
  2552. p57.Reflectance = 0.30000001192093
  2553. p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2554. p57.CanCollide = false
  2555. p57.FormFactor = Enum.FormFactor.Custom
  2556. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2557. p57.BottomSurface = Enum.SurfaceType.Smooth
  2558. p57.TopSurface = Enum.SurfaceType.Smooth
  2559. b57 = Instance.new("SpecialMesh", p57)
  2560. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2561. b57.TextureId = ""
  2562. b57.MeshType = Enum.MeshType.FileMesh
  2563. b57.Name = "Mesh"
  2564. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2565. p58 = Instance.new("Part", m2)
  2566. p58.BrickColor = BrickColor.new("Dark Indigo")
  2567. p58.Material = Enum.Material.SmoothPlastic
  2568. p58.Reflectance = 0.30000001192093
  2569. p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  2570. p58.CanCollide = false
  2571. p58.FormFactor = Enum.FormFactor.Custom
  2572. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2573. p58.BottomSurface = Enum.SurfaceType.Smooth
  2574. p58.TopSurface = Enum.SurfaceType.Smooth
  2575. b58 = Instance.new("SpecialMesh", p58)
  2576. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2577. b58.TextureId = ""
  2578. b58.MeshType = Enum.MeshType.FileMesh
  2579. b58.Name = "Mesh"
  2580. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2581. p59 = Instance.new("Part", m2)
  2582. p59.BrickColor = BrickColor.new("Dark Indigo")
  2583. p59.Material = Enum.Material.SmoothPlastic
  2584. p59.Reflectance = 0.30000001192093
  2585. p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
  2586. p59.CanCollide = false
  2587. p59.FormFactor = Enum.FormFactor.Custom
  2588. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2589. p59.BottomSurface = Enum.SurfaceType.Smooth
  2590. p59.TopSurface = Enum.SurfaceType.Smooth
  2591. b59 = Instance.new("SpecialMesh", p59)
  2592. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2593. b59.TextureId = ""
  2594. b59.MeshType = Enum.MeshType.FileMesh
  2595. b59.Name = "Mesh"
  2596. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2597. p60 = Instance.new("Part", m2)
  2598. p60.BrickColor = BrickColor.new("Dark Indigo")
  2599. p60.Material = Enum.Material.SmoothPlastic
  2600. p60.Reflectance = 0.30000001192093
  2601. p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
  2602. p60.CanCollide = false
  2603. p60.FormFactor = Enum.FormFactor.Custom
  2604. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2605. p60.BottomSurface = Enum.SurfaceType.Smooth
  2606. p60.TopSurface = Enum.SurfaceType.Smooth
  2607. b60 = Instance.new("SpecialMesh", p60)
  2608. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2609. b60.TextureId = ""
  2610. b60.MeshType = Enum.MeshType.FileMesh
  2611. b60.Name = "Mesh"
  2612. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2613. p61 = Instance.new("Part", m2)
  2614. p61.BrickColor = BrickColor.new("Dark Indigo")
  2615. p61.Material = Enum.Material.SmoothPlastic
  2616. p61.Reflectance = 0.30000001192093
  2617. p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
  2618. p61.CanCollide = false
  2619. p61.FormFactor = Enum.FormFactor.Custom
  2620. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2621. p61.BottomSurface = Enum.SurfaceType.Smooth
  2622. p61.TopSurface = Enum.SurfaceType.Smooth
  2623. b61 = Instance.new("SpecialMesh", p61)
  2624. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2625. b61.TextureId = ""
  2626. b61.MeshType = Enum.MeshType.FileMesh
  2627. b61.Name = "Mesh"
  2628. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2629. p62 = Instance.new("Part", m2)
  2630. p62.BrickColor = BrickColor.new("Dark Indigo")
  2631. p62.Material = Enum.Material.SmoothPlastic
  2632. p62.Reflectance = 0.30000001192093
  2633. p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
  2634. p62.CanCollide = false
  2635. p62.FormFactor = Enum.FormFactor.Custom
  2636. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2637. p62.BottomSurface = Enum.SurfaceType.Smooth
  2638. p62.TopSurface = Enum.SurfaceType.Smooth
  2639. b62 = Instance.new("SpecialMesh", p62)
  2640. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2641. b62.TextureId = ""
  2642. b62.MeshType = Enum.MeshType.FileMesh
  2643. b62.Name = "Mesh"
  2644. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2645. p63 = Instance.new("Part", m2)
  2646. p63.BrickColor = BrickColor.new("Dark Indigo")
  2647. p63.Material = Enum.Material.SmoothPlastic
  2648. p63.Reflectance = 0.30000001192093
  2649. p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
  2650. p63.CanCollide = false
  2651. p63.FormFactor = Enum.FormFactor.Custom
  2652. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2653. p63.BottomSurface = Enum.SurfaceType.Smooth
  2654. p63.TopSurface = Enum.SurfaceType.Smooth
  2655. b63 = Instance.new("SpecialMesh", p63)
  2656. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2657. b63.TextureId = ""
  2658. b63.MeshType = Enum.MeshType.FileMesh
  2659. b63.Name = "Mesh"
  2660. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2661. p64 = Instance.new("Part", m2)
  2662. p64.BrickColor = BrickColor.new("Dark Indigo")
  2663. p64.Material = Enum.Material.SmoothPlastic
  2664. p64.Reflectance = 0.30000001192093
  2665. p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
  2666. p64.CanCollide = false
  2667. p64.FormFactor = Enum.FormFactor.Custom
  2668. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2669. p64.BottomSurface = Enum.SurfaceType.Smooth
  2670. p64.TopSurface = Enum.SurfaceType.Smooth
  2671. b64 = Instance.new("SpecialMesh", p64)
  2672. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2673. b64.TextureId = ""
  2674. b64.MeshType = Enum.MeshType.FileMesh
  2675. b64.Name = "Mesh"
  2676. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2677. p65 = Instance.new("Part", m2)
  2678. p65.BrickColor = BrickColor.new("Medium stone grey")
  2679. p65.Transparency = 1
  2680. p65.Name = "TorsoPart"
  2681. p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
  2682. p65.FormFactor = Enum.FormFactor.Symmetric
  2683. p65.Size = Vector3.new(4, 4, 2)
  2684. w1 = Instance.new("Weld", p1)
  2685. w1.Name = "Part_Weld"
  2686. w1.Part0 = p1
  2687. w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
  2688. w1.Part1 = p2
  2689. w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2690. w2 = Instance.new("Weld", p2)
  2691. w2.Name = "Part_Weld"
  2692. w2.Part0 = p2
  2693. w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2694. w2.Part1 = p3
  2695. w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2696. w3 = Instance.new("Weld", p3)
  2697. w3.Name = "Part_Weld"
  2698. w3.Part0 = p3
  2699. w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2700. w3.Part1 = p4
  2701. w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2702. w4 = Instance.new("Weld", p4)
  2703. w4.Name = "Part_Weld"
  2704. w4.Part0 = p4
  2705. w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2706. w4.Part1 = p5
  2707. w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2708. w5 = Instance.new("Weld", p5)
  2709. w5.Name = "Part_Weld"
  2710. w5.Part0 = p5
  2711. w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2712. w5.Part1 = p6
  2713. w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2714. w6 = Instance.new("Weld", p6)
  2715. w6.Name = "Part_Weld"
  2716. w6.Part0 = p6
  2717. w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2718. w6.Part1 = p7
  2719. w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2720. w7 = Instance.new("Weld", p7)
  2721. w7.Name = "Part_Weld"
  2722. w7.Part0 = p7
  2723. w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2724. w7.Part1 = p8
  2725. w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2726. w8 = Instance.new("Weld", p8)
  2727. w8.Name = "Part_Weld"
  2728. w8.Part0 = p8
  2729. w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  2730. w8.Part1 = p9
  2731. w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2732. w9 = Instance.new("Weld", p9)
  2733. w9.Name = "Part_Weld"
  2734. w9.Part0 = p9
  2735. w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2736. w9.Part1 = p10
  2737. w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2738. w10 = Instance.new("Weld", p10)
  2739. w10.Name = "Part_Weld"
  2740. w10.Part0 = p10
  2741. w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2742. w10.Part1 = p11
  2743. w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2744. w11 = Instance.new("Weld", p11)
  2745. w11.Name = "Part_Weld"
  2746. w11.Part0 = p11
  2747. w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2748. w11.Part1 = p12
  2749. w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2750. w12 = Instance.new("Weld", p12)
  2751. w12.Name = "Part_Weld"
  2752. w12.Part0 = p12
  2753. w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2754. w12.Part1 = p13
  2755. w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2756. w13 = Instance.new("Weld", p13)
  2757. w13.Name = "Part_Weld"
  2758. w13.Part0 = p13
  2759. w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2760. w13.Part1 = p14
  2761. w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2762. w14 = Instance.new("Weld", p14)
  2763. w14.Name = "Part_Weld"
  2764. w14.Part0 = p14
  2765. w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2766. w14.Part1 = p15
  2767. w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2768. w15 = Instance.new("Weld", p15)
  2769. w15.Name = "Part_Weld"
  2770. w15.Part0 = p15
  2771. w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2772. w15.Part1 = p16
  2773. w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2774. w16 = Instance.new("Weld", p16)
  2775. w16.Name = "Part_Weld"
  2776. w16.Part0 = p16
  2777. w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2778. w16.Part1 = p17
  2779. w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2780. w17 = Instance.new("Weld", p17)
  2781. w17.Name = "Part_Weld"
  2782. w17.Part0 = p17
  2783. w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2784. w17.Part1 = p18
  2785. w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2786. w18 = Instance.new("Weld", p18)
  2787. w18.Name = "Part_Weld"
  2788. w18.Part0 = p18
  2789. w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2790. w18.Part1 = p19
  2791. w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2792. w19 = Instance.new("Weld", p19)
  2793. w19.Name = "Part_Weld"
  2794. w19.Part0 = p19
  2795. w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2796. w19.Part1 = p20
  2797. w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2798. w20 = Instance.new("Weld", p20)
  2799. w20.Name = "Part_Weld"
  2800. w20.Part0 = p20
  2801. w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2802. w20.Part1 = p21
  2803. w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2804. w21 = Instance.new("Weld", p21)
  2805. w21.Name = "Part_Weld"
  2806. w21.Part0 = p21
  2807. w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2808. w21.Part1 = p22
  2809. w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2810. w22 = Instance.new("Weld", p22)
  2811. w22.Name = "Part_Weld"
  2812. w22.Part0 = p22
  2813. w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2814. w22.Part1 = p23
  2815. w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2816. w23 = Instance.new("Weld", p23)
  2817. w23.Name = "Part_Weld"
  2818. w23.Part0 = p23
  2819. w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2820. w23.Part1 = p24
  2821. w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2822. w24 = Instance.new("Weld", p24)
  2823. w24.Name = "Part_Weld"
  2824. w24.Part0 = p24
  2825. w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2826. w24.Part1 = p25
  2827. w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2828. w25 = Instance.new("Weld", p25)
  2829. w25.Name = "Part_Weld"
  2830. w25.Part0 = p25
  2831. w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2832. w25.Part1 = p26
  2833. w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2834. w26 = Instance.new("Weld", p26)
  2835. w26.Name = "Part_Weld"
  2836. w26.Part0 = p26
  2837. w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2838. w26.Part1 = p27
  2839. w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2840. w27 = Instance.new("Weld", p27)
  2841. w27.Name = "Part_Weld"
  2842. w27.Part0 = p27
  2843. w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2844. w27.Part1 = p28
  2845. w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2846. w28 = Instance.new("Weld", p28)
  2847. w28.Name = "Part_Weld"
  2848. w28.Part0 = p28
  2849. w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2850. w28.Part1 = p29
  2851. w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  2852. w29 = Instance.new("Weld", p29)
  2853. w29.Name = "Part_Weld"
  2854. w29.Part0 = p29
  2855. w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  2856. w29.Part1 = p30
  2857. w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2858. w30 = Instance.new("Weld", p30)
  2859. w30.Name = "Part_Weld"
  2860. w30.Part0 = p30
  2861. w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2862. w30.Part1 = p31
  2863. w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2864. w31 = Instance.new("Weld", p31)
  2865. w31.Name = "Part_Weld"
  2866. w31.Part0 = p31
  2867. w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2868. w31.Part1 = p32
  2869. w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2870. w32 = Instance.new("Weld", p32)
  2871. w32.Name = "Part_Weld"
  2872. w32.Part0 = p32
  2873. w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2874. w32.Part1 = p33
  2875. w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  2876. w33 = Instance.new("Weld", p33)
  2877. w33.Name = "Part_Weld"
  2878. w33.Part0 = p33
  2879. w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  2880. w33.Part1 = p34
  2881. w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2882. w34 = Instance.new("Weld", p34)
  2883. w34.Name = "Part_Weld"
  2884. w34.Part0 = p34
  2885. w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2886. w34.Part1 = p35
  2887. w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2888. w35 = Instance.new("Weld", p35)
  2889. w35.Name = "Part_Weld"
  2890. w35.Part0 = p35
  2891. w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2892. w35.Part1 = p36
  2893. w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2894. w36 = Instance.new("Weld", p36)
  2895. w36.Name = "Part_Weld"
  2896. w36.Part0 = p36
  2897. w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2898. w36.Part1 = p37
  2899. w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  2900. w37 = Instance.new("Weld", p37)
  2901. w37.Name = "Part_Weld"
  2902. w37.Part0 = p37
  2903. w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  2904. w37.Part1 = p38
  2905. w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  2906. w38 = Instance.new("Weld", p38)
  2907. w38.Name = "Part_Weld"
  2908. w38.Part0 = p38
  2909. w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  2910. w38.Part1 = p39
  2911. w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2912. w39 = Instance.new("Weld", p39)
  2913. w39.Name = "Part_Weld"
  2914. w39.Part0 = p39
  2915. w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2916. w39.Part1 = p40
  2917. w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2918. w40 = Instance.new("Weld", p40)
  2919. w40.Name = "Part_Weld"
  2920. w40.Part0 = p40
  2921. w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2922. w40.Part1 = p41
  2923. w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2924. w41 = Instance.new("Weld", p41)
  2925. w41.Name = "Part_Weld"
  2926. w41.Part0 = p41
  2927. w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2928. w41.Part1 = p42
  2929. w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2930. w42 = Instance.new("Weld", p42)
  2931. w42.Name = "Part_Weld"
  2932. w42.Part0 = p42
  2933. w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2934. w42.Part1 = p43
  2935. w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2936. w43 = Instance.new("Weld", p43)
  2937. w43.Name = "Part_Weld"
  2938. w43.Part0 = p43
  2939. w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2940. w43.Part1 = p44
  2941. w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2942. w44 = Instance.new("Weld", p44)
  2943. w44.Name = "Part_Weld"
  2944. w44.Part0 = p44
  2945. w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2946. w44.Part1 = p45
  2947. w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2948. w45 = Instance.new("Weld", p45)
  2949. w45.Name = "Part_Weld"
  2950. w45.Part0 = p45
  2951. w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2952. w45.Part1 = p46
  2953. w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2954. w46 = Instance.new("Weld", p46)
  2955. w46.Name = "Part_Weld"
  2956. w46.Part0 = p46
  2957. w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2958. w46.Part1 = p47
  2959. w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2960. w47 = Instance.new("Weld", p47)
  2961. w47.Name = "Part_Weld"
  2962. w47.Part0 = p47
  2963. w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2964. w47.Part1 = p48
  2965. w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  2966. w48 = Instance.new("Weld", p48)
  2967. w48.Name = "Part_Weld"
  2968. w48.Part0 = p48
  2969. w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  2970. w48.Part1 = p49
  2971. w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2972. w49 = Instance.new("Weld", p49)
  2973. w49.Name = "Part_Weld"
  2974. w49.Part0 = p49
  2975. w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2976. w49.Part1 = p50
  2977. w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2978. w50 = Instance.new("Weld", p50)
  2979. w50.Name = "Part_Weld"
  2980. w50.Part0 = p50
  2981. w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2982. w50.Part1 = p51
  2983. w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2984. w51 = Instance.new("Weld", p51)
  2985. w51.Name = "Part_Weld"
  2986. w51.Part0 = p51
  2987. w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2988. w51.Part1 = p52
  2989. w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  2990. w52 = Instance.new("Weld", p52)
  2991. w52.Name = "Part_Weld"
  2992. w52.Part0 = p52
  2993. w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  2994. w52.Part1 = p53
  2995. w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  2996. w53 = Instance.new("Weld", p53)
  2997. w53.Name = "Part_Weld"
  2998. w53.Part0 = p53
  2999. w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  3000. w53.Part1 = p54
  3001. w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  3002. w54 = Instance.new("Weld", p54)
  3003. w54.Name = "Part_Weld"
  3004. w54.Part0 = p54
  3005. w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  3006. w54.Part1 = p55
  3007. w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  3008. w55 = Instance.new("Weld", p55)
  3009. w55.Name = "Part_Weld"
  3010. w55.Part0 = p55
  3011. w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  3012. w55.Part1 = p56
  3013. w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3014. w56 = Instance.new("Weld", p56)
  3015. w56.Name = "Part_Weld"
  3016. w56.Part0 = p56
  3017. w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3018. w56.Part1 = p57
  3019. w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3020. w57 = Instance.new("Weld", p57)
  3021. w57.Name = "Part_Weld"
  3022. w57.Part0 = p57
  3023. w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3024. w57.Part1 = p58
  3025. w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3026. w58 = Instance.new("Weld", p58)
  3027. w58.Name = "Part_Weld"
  3028. w58.Part0 = p58
  3029. w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  3030. w58.Part1 = p59
  3031. w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3032. w59 = Instance.new("Weld", p59)
  3033. w59.Name = "Part_Weld"
  3034. w59.Part0 = p59
  3035. w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3036. w59.Part1 = p60
  3037. w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3038. w60 = Instance.new("Weld", p60)
  3039. w60.Name = "Part_Weld"
  3040. w60.Part0 = p60
  3041. w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3042. w60.Part1 = p61
  3043. w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3044. w61 = Instance.new("Weld", p61)
  3045. w61.Name = "Part_Weld"
  3046. w61.Part0 = p61
  3047. w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3048. w61.Part1 = p62
  3049. w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3050. w62 = Instance.new("Weld", p62)
  3051. w62.Name = "Part_Weld"
  3052. w62.Part0 = p62
  3053. w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3054. w62.Part1 = p63
  3055. w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3056. w63 = Instance.new("Weld", p63)
  3057. w63.Name = "Part_Weld"
  3058. w63.Part0 = p63
  3059. w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3060. w63.Part1 = p64
  3061. w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3062. w64 = Instance.new("Weld", p64)
  3063. w64.Name = "TorsoPart_Weld"
  3064. w64.Part0 = p64
  3065. w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  3066. w64.Part1 = p65
  3067. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3068. m2.Parent = char
  3069. m2:MakeJoints()
  3070. ----------------------------------------------------
  3071. local cor2 = Instance.new("Part", char.Wings)
  3072. cor2.Name = "Thingy"
  3073. cor2.Locked = true
  3074. cor2.BottomSurface = 0
  3075. cor2.CanCollide = false
  3076. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  3077. cor2.Transparency = 1
  3078. cor2.TopSurface = 0
  3079. corw2 = Instance.new("Weld", cor2)
  3080. corw2.Part0 = torso
  3081. corw2.Part1 = cor2
  3082. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  3083. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3084. weld2 = Instance.new("Weld", char.Wings)
  3085. weld2.Part0 = cor2
  3086. weld2.Part1 = char.Wings.TorsoPart
  3087. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3088. ----------------------------------------------------
  3089. local animpose = "Idle"
  3090. local lastanimpose = "Idle"
  3091. local sine = 0
  3092. local change = 1
  3093. local val = 0
  3094. local ffing = false
  3095. local och = 0
  3096. ----------------------------------------------------
  3097. wPart = function(x,y,z,color,tr,cc,an,parent)
  3098. local wp = Instance.new('WedgePart',parent or Weapon)
  3099. wp.formFactor = 'Custom'
  3100. wp.Size = Vector3.new(x,y,z)
  3101. wp.BrickColor = BrickColor.new(color)
  3102. wp.CanCollide = cc
  3103. wp.Transparency = tr
  3104. wp.Anchored = an
  3105. wp.TopSurface,wp.BottomSurface = 0,0
  3106. return wp
  3107. end
  3108.  
  3109. Mesh = function(par,num,x,y,z)
  3110. local msh = _
  3111. if num == 1 then
  3112. msh = Instance.new("CylinderMesh",par)
  3113. elseif num == 2 then
  3114. msh = Instance.new("SpecialMesh",par)
  3115. msh.MeshType = 3
  3116. elseif num == 3 then
  3117. msh = Instance.new("BlockMesh",par)
  3118. elseif num == 4 then
  3119. msh = Instance.new("SpecialMesh",par)
  3120. msh.MeshType = "Torso"
  3121. elseif type(num) == 'string' then
  3122. msh = Instance.new("SpecialMesh",par)
  3123. msh.MeshId = num
  3124. end
  3125. msh.Scale = Vector3.new(x,y,z)
  3126. return msh
  3127. end
  3128.  
  3129. local function CFrameFromTopBack(at, top, back)
  3130. local right = top:Cross(back)
  3131. return CFrame.new(at.x, at.y, at.z,
  3132. right.x, top.x, back.x,
  3133. right.y, top.y, back.y,
  3134. right.z, top.z, back.z)
  3135. end
  3136.  
  3137. function Triangle(a, b, c)
  3138. local edg1 = (c-a):Dot((b-a).unit)
  3139. local edg2 = (a-b):Dot((c-b).unit)
  3140. local edg3 = (b-c):Dot((a-c).unit)
  3141. if edg1 <= (b-a).magnitude and edg1 >= 0 then
  3142. a, b, c = a, b, c
  3143. elseif edg2 <= (c-b).magnitude and edg2 >= 0 then
  3144. a, b, c = b, c, a
  3145. elseif edg3 <= (a-c).magnitude and edg3 >= 0 then
  3146. a, b, c = c, a, b
  3147. else
  3148. print("unreachable")
  3149. end
  3150. local len1 = (c-a):Dot((b-a).unit)
  3151. local len2 = (b-a).magnitude - len1
  3152. local width = (a + (b-a).unit*len1 - c).magnitude
  3153. local maincf = CFrameFromTopBack(a, (b-a):Cross(c-b).unit, -(b-a).unit)
  3154. local list = {}
  3155. if len1 > 0.01 then
  3156. local w1 = wPart(0,0,0,'Dark Indigo',0.5,false,true,char)
  3157. local sz = Vector3.new(0.2, width, len1)
  3158. w1.Size = sz
  3159. local sp = Mesh(w1,2,0,0,0)
  3160. sp.MeshType='Wedge'
  3161. sp.Scale=Vector3.new(0,1,1)*sz/w1.Size
  3162. w1:BreakJoints()
  3163. w1.Anchored = true
  3164. w1.Transparency = 0.7
  3165. Spawn(function()
  3166. for i=0,1,0.1 do
  3167. wait()
  3168. w1.Transparency=w1.Transparency+0.03
  3169. end
  3170. end)
  3171. w1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  3172. table.insert(list,w1)
  3173. end
  3174. if len2 > 0.01 then
  3175. local w2 = wPart(0,0,0,'Dark Indigo',0.5,false,true,char)
  3176. local sz = Vector3.new(0.2, width, len2)
  3177. w2.Size = sz
  3178. local sp = Mesh(w2,2,0,0,0)
  3179. sp.MeshType='Wedge'
  3180. sp.Scale=Vector3.new(0,1,1)*sz/w2.Size
  3181. w2:BreakJoints()
  3182. w2.Anchored = true
  3183. w2.Transparency = 0.7
  3184. Spawn(function()
  3185. for i=0,1,0.1 do
  3186. wait()
  3187. w2.Transparency=w2.Transparency+0.03
  3188. end
  3189. end)
  3190. w2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  3191. table.insert(list,w2)
  3192. end
  3193. return unpack(list)
  3194. end
  3195.  
  3196. function trail(p,t,h)
  3197. Spawn(function()
  3198. local blcf = p.CFrame
  3199. local scfr = blcf
  3200. for i=1,t do
  3201. local blcf = p.CFrame
  3202. if scfr and (p.Position-scfr.p).magnitude > .1 then
  3203. local a,b = Triangle((scfr*CFrame.new(0,h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p,(blcf*CFrame.new(0,h/2,0)).p)
  3204. if a then game.Debris:AddItem(a,1) end
  3205. if b then game.Debris:AddItem(b,1) end
  3206. local a,b = Triangle((blcf*CFrame.new(0,h/2,0)).p,(blcf*CFrame.new(0,-h/2,0)).p,(scfr*CFrame.new(0,-h/2,0)).p)
  3207. if a then game.Debris:AddItem(a,1) end
  3208. if b then game.Debris:AddItem(b,1) end
  3209. scfr = blcf
  3210. elseif not scfr then
  3211. scfr = blcf
  3212. end
  3213. game:service'RunService'.RenderStepped:wait()
  3214. end
  3215. scfr=nil
  3216. end)
  3217. end
  3218. trail(char.Sword.Blade,1e1000,5)
  3219. ----------------------------------------------------
  3220. char.Sword.Blade.Touched:connect(function(ht)
  3221. hit = ht.Parent
  3222. if ht and hit:IsA("Model") then
  3223. if hit:FindFirstChild("Humanoid") then
  3224. if hit.Name ~= p.Name then
  3225. if Debounces.Slashing == true and Debounces.Slashed == false then
  3226. Debounces.Slashed = true
  3227. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,10000))
  3228. wait(.3)
  3229. Debounces.Slashed = false
  3230. end
  3231. end
  3232. end
  3233. elseif ht and hit:IsA("Hat") then
  3234. if hit.Parent.Name ~= p.Name then
  3235. if hit.Parent:FindFirstChild("Humanoid") then
  3236. if Debounces.Slashing == true and Debounces.Slashed == false then
  3237. Debounces.Slashed = true
  3238. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(8000,1000))
  3239. wait(.3)
  3240. Debounces.Slashed = false
  3241. end
  3242. end
  3243. end
  3244. end
  3245. end)
  3246.  
  3247. ----------------------------------------------------
  3248. function attackone()
  3249. for i = 1, 10 do
  3250. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.6, 0.9, -0.62)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(-60)), 0.56)
  3251. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.6, 0.2)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.5)
  3252. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(10),math.rad(-46),0), 0.47)
  3253. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-8), math.rad(46), 0), 0.55)
  3254. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.43)
  3255. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.43)
  3256. if Debounces.on == false then break end
  3257. rs:wait()
  3258. end
  3259. --trail(char.Sword.Blade,5,6)
  3260. Debounces.Slashing = true
  3261. z = Instance.new("Sound", hed)
  3262. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3263. z.Pitch = ptz[math.random(1,#ptz)]
  3264. z.Volume = 1
  3265. wait(.01)
  3266. z:Play()
  3267. for i = 1, 10 do
  3268. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, .3)*CFrame.Angles(math.rad(-10),math.rad(-15),math.rad(50)), 0.67)
  3269. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.7, -0.3)*CFrame.Angles(math.rad(80),math.rad(-10),math.rad(-20)), 0.58)
  3270. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(40),0), 0.54)
  3271. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(-40), 0), 0.66)
  3272. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
  3273. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
  3274. if Debounces.on == false then break end
  3275. rs:wait()
  3276. end
  3277. Debounces.Slashing = false
  3278. end
  3279. ----------------------------------------------------
  3280. function attacktwo()
  3281. for i = 1, 5 do
  3282. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.25, 0.9, 0)*CFrame.Angles(math.rad(170),math.rad(20),math.rad(60)), 0.8)
  3283. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0.17)*CFrame.Angles(math.rad(-30),math.rad(-10),math.rad(-20)), 0.8)
  3284. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2)*CFrame.Angles(math.rad(-10),math.rad(46),0), 0.8)
  3285. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(8), math.rad(-46), 0), 0.8)
  3286. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(20), math.rad(-10)), 0.8)
  3287. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(-20), math.rad(10)), 0.8)
  3288. if Debounces.on == false then break end
  3289. rs:wait()
  3290. end
  3291. --trail(char.Sword.Blade,5,6)
  3292. Debounces.Slashing = true
  3293. z = Instance.new("Sound", hed)
  3294. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3295. z.Pitch = ptz[math.random(1,#ptz)]
  3296. z.Volume = 1
  3297. wait(.01)
  3298. z:Play()
  3299. for i = 1, 10 do
  3300. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8, 0.5, -0.35)*CFrame.Angles(math.rad(0),math.rad(-15),math.rad(-50)), 0.77)
  3301. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4, 0.6, -0.35)*CFrame.Angles(math.rad(-50),math.rad(10),math.rad(-20)), 0.58)
  3302. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2)*CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.54)
  3303. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-9), math.rad(40), 0), 0.66)
  3304. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(20), math.rad(-10)), 0.5)
  3305. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-20), math.rad(10)), 0.5)
  3306. if Debounces.on == false then break end
  3307. rs:wait()
  3308. end
  3309. Debounces.Slashing = false
  3310. end
  3311. ----------------------------------------------------
  3312. function attackthree()
  3313. for i = 1, 10 do
  3314. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
  3315. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
  3316. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
  3317. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3318. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
  3319. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
  3320. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3321. if Debounces.on == false then
  3322. break
  3323. end
  3324. rs:wait()
  3325. end
  3326. --trail(char.Sword.Blade,5,6)
  3327. Debounces.Slashing = true
  3328. z = Instance.new("Sound", hed)
  3329. z.SoundId = "rbxassetid://"..idz[math.random(1,#idz)]
  3330. z.Pitch = ptz[math.random(1,#ptz)]
  3331. z.Volume = 1
  3332. wait(.01)
  3333. z:Play()
  3334. for i = 1, 10 do
  3335. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
  3336. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
  3337. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3338. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3339. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3340. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3341. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3342. if Debounces.on==false then
  3343. break
  3344. end
  3345. rs:wait()
  3346. end
  3347. Debounces.Slashing = false
  3348. end
  3349. ----------------------------------------------------
  3350. ComboNum = 0
  3351. mouse.Button1Down:connect(function()
  3352. if Debounces.CanAttack == true then
  3353. Debounces.CanAttack = false
  3354. Debounces.NoIdl = true
  3355. Debounces.on = true
  3356. if ComboNum == 0 then
  3357. attackone()
  3358. elseif ComboNum == 1 then
  3359. attacktwo()
  3360. elseif ComboNum == 2 then
  3361. attackthree()
  3362. end
  3363. ComboNum = ComboNum + 1
  3364. Debounces.CanAttack = true
  3365. Debounces.NoIdl = false
  3366. Debounces.on = false
  3367. wait(.5)
  3368. if Debounces.CanAttack == true then
  3369. ComboNum = 0
  3370. end
  3371. end
  3372. end)
  3373. ----------------------------------------------------
  3374. local player = game.Players.LocalPlayer
  3375. local pchar = player.Character
  3376. local mouse = player:GetMouse()
  3377. local cam = workspace.CurrentCamera
  3378.  
  3379. local rad = math.rad
  3380.  
  3381. local keysDown = {}
  3382. local flySpeed = 0
  3383. local MAX_FLY_SPEED = 150
  3384.  
  3385. local canFly = false
  3386. local flyToggled = false
  3387.  
  3388. local forward, side = 0, 0
  3389. local lastForward, lastSide = 0, 0
  3390.  
  3391. local floatBP = Instance.new("BodyPosition")
  3392. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  3393. local flyBV = Instance.new("BodyVelocity")
  3394. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  3395. local turnBG = Instance.new("BodyGyro")
  3396. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  3397.  
  3398. mouse.KeyDown:connect(function(key)
  3399. keysDown[key] = true
  3400.  
  3401. if key == "f" then
  3402. flyToggled = not flyToggled
  3403.  
  3404. if not flyToggled then
  3405. stanceToggle = "Normal"
  3406. floatBP.Parent = nil
  3407. flyBV.Parent = nil
  3408. turnBG.Parent = nil
  3409. root.Velocity = Vector3.new()
  3410. pchar.Humanoid.PlatformStand = false
  3411. end
  3412. end
  3413.  
  3414. end)
  3415. mouse.KeyUp:connect(function(key)
  3416. keysDown[key] = nil
  3417. end)
  3418.  
  3419. local function updateFly()
  3420.  
  3421. if not flyToggled then return end
  3422.  
  3423. lastForward = forward
  3424. lastSide = side
  3425.  
  3426. forward = 0
  3427. side = 0
  3428.  
  3429. if keysDown.w then
  3430. forward = forward + 1
  3431. end
  3432. if keysDown.s then
  3433. forward = forward - 1
  3434. end
  3435. if keysDown.a then
  3436. side = side - 1
  3437. end
  3438. if keysDown.d then
  3439. side = side + 1
  3440. end
  3441.  
  3442. canFly = (forward ~= 0 or side ~= 0)
  3443.  
  3444. if canFly then
  3445. stanceToggle = "Floating"
  3446. turnBG.Parent = root
  3447. floatBP.Parent = nil
  3448. flyBV.Parent = root
  3449.  
  3450. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  3451. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  3452. else
  3453. floatBP.position = root.Position
  3454. floatBP.Parent = root
  3455.  
  3456. flySpeed = flySpeed - 1
  3457. if flySpeed < 0 then flySpeed = 0 end
  3458. end
  3459.  
  3460. local camCF = cam.CoordinateFrame
  3461. local in_forward = canFly and forward or lastForward
  3462. local in_side = canFly and side or lastSide
  3463.  
  3464. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  3465. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  3466.  
  3467. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  3468. 0)
  3469. end
  3470.  
  3471. game:service'RunService'.RenderStepped:connect(function()
  3472. if flyToggled then
  3473. pchar.Humanoid.PlatformStand = true
  3474. end
  3475. updateFly()
  3476. end)
  3477. ----------------------------------------------------
  3478. function Charge()
  3479. pt=Instance.new('Part',torso)
  3480. pt.Anchored=true
  3481. pt.CanCollide=false
  3482. pt.Locked = true
  3483. pt.FormFactor='Custom'
  3484. pt.Size=Vector3.new(1,1,1)
  3485. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3486. pt.Transparency=0.2
  3487. pt.BrickColor=BrickColor.new("Dark Indigo")
  3488. msh=Instance.new('SpecialMesh',pt)
  3489. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3490. msh.Scale=Vector3.new(6,3,6)
  3491. pt2=pt:clone()
  3492. pt2.Parent = torso
  3493. pt2.Transparency=0.4
  3494. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3495. pt2.BrickColor=BrickColor.new("Dark Indigo")
  3496. msh2=msh:clone()
  3497. msh2.Parent=pt2
  3498. msh2.Scale=Vector3.new(8,4,8)
  3499. pt3=Instance.new('Part',torso)
  3500. pt3.Anchored=true
  3501. pt3.CanCollide=false
  3502. pt3.Locked = true
  3503. pt3.FormFactor='Custom'
  3504. pt3.Size=Vector3.new(1,1,1)
  3505. pt3.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3506. pt3.Transparency=0.6
  3507. pt3.BrickColor=BrickColor.new("Dark Indigo")
  3508. msh3=Instance.new('SpecialMesh',pt3)
  3509. msh3.MeshId='http://www.roblox.com/asset/?id=20329976'
  3510. msh3.Scale=Vector3.new(12,6,12)
  3511. pt4=pt:clone()
  3512. pt4.Parent = torso
  3513. pt4.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3514. pt4.Transparency=0.8
  3515. pt4.BrickColor=BrickColor.new("Dark Indigo")
  3516. msh4=msh:clone()
  3517. msh4.Parent=pt4
  3518. msh4.Scale=Vector3.new(16,8,16)
  3519. coroutine.resume(coroutine.create(function()
  3520. for i=1, math.huge, 4 do
  3521. if Charging == true then
  3522. wait()
  3523. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.11*math.cos(sine/10)),0)
  3524. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.12*math.cos(sine/12)),0)
  3525. pt3.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2+0.13*math.cos(sine/14)),0)
  3526. pt4.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2+0.14*math.cos(sine/16)),0)
  3527. pt.CFrame = pt.CFrame+Vector3.new(0,0.01,0)
  3528. pt2.CFrame = pt2.CFrame+Vector3.new(0,0.01,0)
  3529. pt3.CFrame = pt3.CFrame+Vector3.new(0,0.01,0)
  3530. pt4.CFrame = pt4.CFrame+Vector3.new(0,0.01,0)
  3531. msh.Scale = msh.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/9),0.05)
  3532. msh2.Scale = msh2.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/7),0.05)
  3533. msh3.Scale = msh3.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/5),0.05)
  3534. msh4.Scale = msh4.Scale + Vector3.new(0.05,0.04+0.8*math.cos(sine/3),0.05)
  3535. elseif Charging == false then
  3536. pt:Remove()
  3537. pt2:Remove()
  3538. pt3:Remove()
  3539. pt4:Remove()
  3540. break
  3541. end
  3542. end
  3543. end))
  3544. end
  3545. ----------------------------------------------------
  3546. local chot={}
  3547. local cns=0
  3548. mod3 = Instance.new("Model",char)
  3549. mouse.KeyDown:connect(function(key)
  3550. if key == "e" then
  3551. Charging = true
  3552. if Debounces.CanAttack == true then
  3553. Debounces.CanAttack = false
  3554. Debounces.NoIdl = true
  3555. Debounces.on = true
  3556. chot={}
  3557. Charge()
  3558. for i = 1, 20 do
  3559. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(20)), 0.4)
  3560. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-26),math.rad(0),math.rad(-40)), 0.4)
  3561. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),0), 0.2)
  3562. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-40),math.rad(0),0), 0.2)
  3563. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(0, math.rad(50), math.rad(0)), 0.05)
  3564. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(10), math.rad(-10)), 0.4)
  3565. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.4)
  3566. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.8, 0.44) * CFrame.Angles(math.rad(-150), math.rad(0), math.rad(0)), 0.4)
  3567. if Debounces.on == false then
  3568. break
  3569. end
  3570. rs:wait()
  3571. end
  3572. local nt=0
  3573. for i=0,5,0.02 do
  3574. nt=nt+1
  3575. cns=i
  3576. if nt>=2 then
  3577. nt=0
  3578. local cho=NewPart(mod3,Vector3.new(2,2,2),char.Sword.Blade.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Dark Indigo","Neon")
  3579. debris:AddItem(cho,1)
  3580. cho.Mesh.MeshType=3
  3581. table.insert(chot,cho)
  3582. end
  3583. wait()
  3584. end
  3585. Charging = false
  3586. for i = 1, 10 do
  3587. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-50)), 0.63)
  3588. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.95, 1.1, -0.15)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(50)), 0.63)
  3589. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0.1)*CFrame.Angles(math.rad(10),math.rad(0),0), 0.54)
  3590. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(10), math.rad(0), 0), 0.66)
  3591. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.5)
  3592. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.5, -0.5) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.5)
  3593. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3594. if Debounces.on == false then
  3595. break
  3596. end
  3597. rs:wait()
  3598. end
  3599. Spawn(function()
  3600. local Parts = {}
  3601. for Y = -5,5 do
  3602. local P = Instance.new("Part",char)
  3603. P.Anchored = true
  3604. P.FormFactor = "Custom"
  3605. P.CanCollide = false
  3606. P.Size = Vector3.new(1,2,1)
  3607. P.Material = "Neon"
  3608. P.TopSurface = "SmoothNoOutlines"
  3609. P.BottomSurface = "SmoothNoOutlines"
  3610. P.BrickColor = BrickColor.new("Dark Indigo")
  3611. P.Name = tostring(Y)
  3612. local i = (Y+5)/(10)
  3613. i = 1-math.cos(math.pi*i-(math.pi/2))
  3614. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3615. --[[P.Touched:connect(function(ht)
  3616. local hit = ht.Parent
  3617. if hit:FindFirstChild("Humanoid") then
  3618. hit.Humanoid:TakeDamage(math.random(20,50))
  3619. end
  3620. end)]]--
  3621. P.Touched:connect(function(ht)
  3622. hit = ht.Parent
  3623. if ht and hit:IsA("Model") then
  3624. if hit:FindFirstChild("Humanoid") then
  3625. if hit.Name ~= p.Name then
  3626. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  3627. hit:FindFirstChild("Humanoid").PlatformStand = true
  3628. wait(1)
  3629. end
  3630. end
  3631. elseif ht and hit:IsA("Hat") then
  3632. if hit.Parent.Name ~= p.Name then
  3633. if hit.Parent:FindFirstChild("Humanoid") then
  3634. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5000,7500))
  3635. hit:FindFirstChild("Humanoid").PlatformStand = true
  3636. wait(1)
  3637. end
  3638. end
  3639. end
  3640. end)
  3641. Parts[#Parts+1] = P
  3642. end
  3643. local BREAKIT = false
  3644. local CParts = {}
  3645. local Rocks = {}
  3646. local LastPos = nil
  3647. for i = 1,70 do
  3648. for i2,v in pairs(Parts) do
  3649. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3650. local cf = v.CFrame
  3651. v.Size = v.Size+Vector3.new(1.1,0.35,0.2)
  3652. v.CFrame = cf
  3653. v.Transparency = v.Transparency+0.02
  3654. if v.Transparency >= 0.975 then BREAKIT = true end
  3655. if v.Name == "0" then
  3656. local Ignore = {}
  3657. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3658. if v.Character ~= nil then
  3659. Ignore[#Ignore+1] = v.Character
  3660. end
  3661. end
  3662. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3663. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3664. if Hit ~= nil then
  3665. if #Rocks == 0 then
  3666. for i = 1,5 do
  3667. local P = Instance.new("Part",char)
  3668. Rocks[#Rocks+1] = P
  3669. P.Anchored = true
  3670. P.FormFactor = "Custom"
  3671. P.BrickColor = Hit.BrickColor
  3672. P.Material = Hit.Material
  3673. P.TopSurface = "Smooth"
  3674. P.BottomSurface = "Smooth"
  3675. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3676. end
  3677. end
  3678. for i,P in pairs(Rocks) do
  3679. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3680. end
  3681. local P = Instance.new("Part",char)
  3682. CParts[#CParts+1] = {P,tick()}
  3683. P.Anchored = true
  3684. P.FormFactor = "Custom"
  3685. P.BrickColor = Hit.BrickColor
  3686. P.Material = Hit.Material
  3687. P.TopSurface = "Smooth"
  3688. P.BottomSurface = "Smooth"
  3689. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3690. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3691. Pos = Pos.p
  3692. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3693. local P = P:Clone()
  3694. CParts[#CParts+1] = {P,tick()}
  3695. P.Parent = char
  3696. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3697. Pos = Pos.p
  3698. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  3699. if LastPos ~= nil then
  3700. local P = P:Clone()
  3701. CParts[#CParts+1] = {P,tick()}
  3702. P.Parent = char
  3703. P.BrickColor = BrickColor.new("Crimson")
  3704. P.Material = "Granite"
  3705. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3706. Pos = Pos.p
  3707. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3708. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3709. --P.Velocity = Vector3.new(0,-1000,0)
  3710. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3711. end
  3712. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3713. end
  3714. end
  3715. end
  3716. if BREAKIT then break end
  3717. wait(0.002)
  3718. end
  3719. for i,v in pairs(Rocks) do
  3720. CParts[#CParts+1] = {v,tick()}
  3721. end
  3722. for i,v in pairs(Parts) do
  3723. v:Destroy()
  3724. end
  3725. Parts = nil
  3726. while true do
  3727. local t = tick()
  3728. local p = nil
  3729. for i,v in pairs(CParts) do
  3730. if t-v[2] > 4 then
  3731. v[1].Transparency = v[1].Transparency+0.05
  3732. if v[1].Transparency >= 1 then
  3733. v[1]:Destroy()
  3734. CParts[i] = nil
  3735. end
  3736. end
  3737. p = v
  3738. end
  3739. if p == nil then break end
  3740. wait(0.002)
  3741. end
  3742. for i,v in pairs(CParts) do
  3743. v:Destroy()
  3744. end
  3745. CParts = {}
  3746. end)
  3747. for i = 1, 10 do
  3748. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(40)), 0.7)
  3749. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.1, 0.6, -.4) * CFrame.Angles(math.rad(20), 0, math.rad(-40)), 0.7)
  3750. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), 0, 0), 0.7)
  3751. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(10), 0, 0), 0.7)
  3752. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3753. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.1) * CFrame.Angles(math.rad(-16), 0, 0), 0.7)
  3754. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(-40), math.rad(0)), 0.4)
  3755. if Debounces.on==false then
  3756. break
  3757. end
  3758. rs:wait()
  3759. end
  3760. if Debounces.CanAttack == false then
  3761. Debounces.CanAttack = true
  3762. Debounces.NoIdl = false
  3763. Debounces.on = false
  3764. end
  3765. end
  3766. end
  3767. end)
  3768. ----------------------------------------------------
  3769. mouse.KeyDown:connect(function(key)
  3770. if string.byte(key) == 52 then
  3771. char.Humanoid.WalkSpeed = 28
  3772. end
  3773. end)
  3774. mouse.KeyUp:connect(function(key)
  3775. if string.byte(key) == 52 then
  3776. char.Humanoid.WalkSpeed = 16
  3777. end
  3778. end)
  3779. ----------------------------------------------------
  3780. game:GetService("RunService").RenderStepped:connect(function()
  3781. if char.Humanoid.Jump == true then
  3782. jump = true
  3783. else
  3784. jump = false
  3785. end
  3786. char.Humanoid.FreeFalling:connect(function(f)
  3787. if f then
  3788. ffing = true
  3789. else
  3790. ffing = false
  3791. end
  3792. end)
  3793. sine = sine + change
  3794. if jumpn == true then
  3795. animpose = "Jumping"
  3796. elseif ffing == true then
  3797. animpose = "Freefalling"
  3798. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 5 then
  3799. animpose = "Idle"
  3800. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3801. animpose = "Walking"
  3802. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3803. animpose = "Running"
  3804. end
  3805. if animpose ~= lastanimpose then
  3806. sine = 0
  3807. if Debounces.NoIdl == false then
  3808. for i = 1, 2 do
  3809. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  3810. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  3811. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  3812. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3813. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.05)
  3814. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  3815. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  3816. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3817. end
  3818. wait()
  3819. end
  3820. else
  3821. end
  3822. lastanimpose = animpose
  3823. if Debounces.NoIdl == false then
  3824. if animpose == "Idle" then
  3825. change = 0.5
  3826. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-10),math.rad(-10),math.rad(14+2*math.cos(sine/10))), 0.4)
  3827. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-20),math.rad(6),math.rad(-10-2*math.cos(sine/10))), 0.4)
  3828. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
  3829. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3830. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
  3831. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(10), math.rad(-0-2*math.cos(sine/10))), 0.4)
  3832. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
  3833. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
  3834. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3835. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(-10+4*math.cos(sine/8)),math.rad(-20-2*math.cos(sine/8)),math.rad(10+2*math.cos(sine/8))), 0.2)
  3836. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65+0.1*math.cos(sine/8),0)*CFrame.Angles(math.rad(0),math.rad(10+2*math.cos(sine/8)),math.rad(-18-2*math.cos(sine/8))), 0.2)
  3837. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-18),math.rad(20+4*math.cos(sine/8)),0), 0.2)
  3838. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(-12-3*math.cos(sine/8)),math.rad(0),0), 0.2)
  3839. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0+2*math.cos(sine/8)), math.rad(-20-4*math.cos(sine/8)), 0), 0.2)
  3840. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0-2*math.cos(sine/8)), math.rad(20+4*math.cos(sine/8)), math.rad(-5+1*math.cos(sine/8))), 0.2)
  3841. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0-4*math.cos(sine/8)), math.rad(-10-4*math.cos(sine/8)), math.rad(5+1*math.cos(sine/8))), 0.2)]]--
  3842. elseif animpose == "Walking" then
  3843. change = 1
  3844. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3845. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3846. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3847. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3848. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.17*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3849. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3850. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3851. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.05)
  3852. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3853. elseif animpose == "Running" then
  3854. change = 1
  3855. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-22),math.rad(20+2*math.cos(sine/14))), 0.2)
  3856. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-10),math.rad(10),math.rad(-14-2*math.cos(sine/14))), 0.2)
  3857. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(20),0,0), 0.4)
  3858. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3859. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1, 0) * CFrame.Angles(math.rad(-40),0, math.rad(0)), 0.05)
  3860. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-8)), 0.4)
  3861. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(8)), 0.4)
  3862. corw2.C0 = Lerp(corw2.C0, CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(0)), 0.05)
  3863. corw.C0 = Lerp(corw.C0, CFrame.new(0, -0.85, 0) * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0)), 0.4)
  3864. end
  3865. end
  3866. och=och+1
  3867. for _,v in pairs(chot) do
  3868. pcall(function()
  3869. v.CFrame=v.CFrame:lerp(char.Sword.Blade.CFrame,0.1)
  3870. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  3871. end)
  3872. end
  3873. end)
  3874. --[[while true do wait(0.2) https://preview.c9users.io/jaspher/rbx_stoof/RMMech.lua
  3875. if charge == true then
  3876. MagicRing(BrickColor.new('Dark Indigo'),torso.CFrame*CFrame.new(0,0,0)*CFrame.Angles(math.rad(90),0,math.rad(90)),0,-0.2,0,0,0,0,0.4,0.4,0.4,.08)
  3877. end
  3878. end]]--
  3879.  
  3880.  
  3881.  
  3882.  
  3883.  
  3884. Me = game.Players.LocalPlayer
  3885. char = Me.Character
  3886. larm = char["Left Arm"]
  3887. rarm = char["Right Arm"]
  3888. lleg = char["Left Leg"]
  3889. rleg = char["Right Leg"]
  3890. torso = char.Torso
  3891.  
  3892. lleg.Transparency = 1
  3893. rleg.Transparency = 1
  3894. larm.Transparency = 1
  3895. rarm.Transparency = 1
  3896. torso.Transparency = 1
  3897. ------------------------------------------------------------------ Player -------------------------------------------------------------------
  3898.  
  3899. ----------------------------------------------------------------- Left Arm -----------------------------------------------------------------
  3900. larm1 = Instance.new("Part", char)
  3901. larm1.Name = "Middle"
  3902. larm1.BrickColor = BrickColor.new("Royal purple")
  3903. larm1.Size = Vector3.new(1, 2, 1)
  3904. larm1.CanCollide = false
  3905. larm1.BottomSurface = "Smooth"
  3906. larm1.TopSurface = "Smooth"
  3907. larm1.Material = "Neon"
  3908. Weld = Instance.new("Weld",larm)
  3909. Weld.Part0 = larm
  3910. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3911. Weld.Part1 = larm1
  3912. Weld.C1 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3913.  
  3914. larm2 = Instance.new("Part", char)
  3915. larm2.BrickColor = BrickColor.new("Really black")
  3916. larm2.Size = Vector3.new(1, 0.4, 1)
  3917. larm2.CanCollide = false
  3918. larm2.BottomSurface = "Smooth"
  3919. larm2.TopSurface = "Smooth"
  3920. Weld = Instance.new("Weld",larm)
  3921. Weld.Part0 = larm
  3922. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3923. Weld.Part1 = larm2
  3924. Weld.C1 = CFrame.new(-0.452633858, -0.349740982, -1.50225353, -0.00506608887, 0.999986708, -0.00096991309, -0.0106740929, 0.000915773562, 0.999942601, 0.999930143, 0.0050761546, 0.0106693096)
  3925.  
  3926. larm3 = Instance.new("Part", char)
  3927. larm3.BrickColor = BrickColor.new("Really black")
  3928. larm3.Size = Vector3.new(1, 0.4, 1)
  3929. larm3.CanCollide = false
  3930. larm3.BottomSurface = "Smooth"
  3931. larm3.TopSurface = "Smooth"
  3932. Weld = Instance.new("Weld",larm)
  3933. Weld.Part0 = larm
  3934. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3935. Weld.Part1 = larm3
  3936. Weld.C1 = CFrame.new(-0.452513218, -1.90224648, -0.0102577209, -0.00506604509, 0.999986708, -0.000969912624, 0.999930143, 0.00507611083, 0.0106693096, 0.0106740929, -0.000915773562, -0.999942601)
  3937.  
  3938. larm4 = Instance.new("Part", char)
  3939. larm4.BrickColor = BrickColor.new("Really black")
  3940. larm4.Size = Vector3.new(1, 0.4, 1)
  3941. larm4.CanCollide = false
  3942. larm4.BottomSurface = "Smooth"
  3943. larm4.TopSurface = "Smooth"
  3944. Weld = Instance.new("Weld",larm)
  3945. Weld.Part0 = larm
  3946. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3947. Weld.Part1 = larm4
  3948. Weld.C1 = CFrame.new(-0.452511787, -0.41024971, 1.50225258, -0.00506623974, 0.999986708, -0.000969914719, 0.0106740929, -0.000915773562, -0.999942601, -0.999930143, -0.00507630548, -0.0106693096)
  3949.  
  3950. larm5 = Instance.new("Part", char)
  3951. larm5.BrickColor = BrickColor.new("Really black")
  3952. larm5.Size = Vector3.new(1, 0.4, 1)
  3953. larm5.CanCollide = false
  3954. larm5.BottomSurface = "Smooth"
  3955. larm5.TopSurface = "Smooth"
  3956. Weld = Instance.new("Weld",larm)
  3957. Weld.Part0 = larm
  3958. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3959. Weld.Part1 = larm5
  3960. Weld.C1 = CFrame.new(-1.50225163, -0.762512684, 0.0102577209, 0.999930143, 0.0050761546, 0.0106693534, -0.00506608794, 0.999986708, -0.000970000518, -0.0106741367, 0.000915860757, 0.999942601)
  3961.  
  3962. larm6 = Instance.new("Part", char)
  3963. larm6.BrickColor = BrickColor.new("Really black")
  3964. larm6.Size = Vector3.new(1, 0.4, 1)
  3965. larm6.CanCollide = false
  3966. larm6.BottomSurface = "Smooth"
  3967. larm6.TopSurface = "Smooth"
  3968. Mesh = Instance.new("SpecialMesh", larm6)
  3969. Mesh.MeshType = "Brick"
  3970. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  3971. Weld = Instance.new("Weld",larm)
  3972. Weld.Part0 = larm
  3973. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3974. Weld.Part1 = larm6
  3975. Weld.C1 = CFrame.new(0.0102558136, 0.847481251, 1.50225353, -0.0106740929, 0.00091586099, 0.999942601, -0.00506608794, 0.999986708, -0.000970000518, -0.999930143, -0.0050761546, -0.0106693096)
  3976.  
  3977. larm7 = Instance.new("Part", char)
  3978. larm7.BrickColor = BrickColor.new("Royal purple")
  3979. larm7.Size = Vector3.new(0.5, 0.3, 2)
  3980. larm7.CanCollide = false
  3981. larm7.BottomSurface = "Smooth"
  3982. larm7.TopSurface = "Smooth"
  3983. larm7.Material = "Neon"
  3984. Weld = Instance.new("Weld",larm)
  3985. Weld.Part0 = larm
  3986. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3987. Weld.Part1 = larm7
  3988. Weld.C1 = CFrame.new(-0.339956284, 1.83238316, 1.50933075, 0.11770986, 0.484406531, 0.866887927, -0.967169523, 0.253912479, -0.0105566857, -0.225227386, -0.837184966, 0.498391271)
  3989.  
  3990. larm8 = Instance.new("Part", char)
  3991. larm8.BrickColor = BrickColor.new("Really black")
  3992. larm8.Size = Vector3.new(1, 0.4, 1)
  3993. larm8.CanCollide = false
  3994. larm8.BottomSurface = "Smooth"
  3995. larm8.TopSurface = "Smooth"
  3996. Weld = Instance.new("Weld",larm)
  3997. Weld.Part0 = larm
  3998. Weld.C0 = CFrame.new(1.50225258, 0.0474791527, -0.0102558136, -0.999930143, -0.0050761546, -0.0106693096, -0.00506608794, 0.999986708, -0.000970000518, 0.0106740929, -0.00091586099, -0.999942601)
  3999. Weld.Part1 = larm8
  4000. Weld.C1 = CFrame.new(0.247514963, -0.0102424622, 1.58225441, -0.00506623974, 0.999986708, -0.000969914719, 0.0106740929, -0.000915773562, -0.999942601, -0.999930143, -0.00507630548, -0.0106693096)
  4001. ----------------------------------------------------------------- Right Arm -----------------------------------------------------------------
  4002. rarm1 = Instance.new("Part", char)
  4003. rarm1.Name = "Middle"
  4004. rarm1.BrickColor = BrickColor.new("Royal purple")
  4005. rarm1.Size = Vector3.new(1, 2, 1)
  4006. rarm1.CanCollide = false
  4007. rarm1.BottomSurface = "Smooth"
  4008. rarm1.TopSurface = "Smooth"
  4009. rarm1.Material = "Neon"
  4010. Weld = Instance.new("Weld",rarm)
  4011. Weld.Part0 = rarm
  4012. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4013. Weld.Part1 = rarm1
  4014. Weld.C1 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4015.  
  4016. rarm2 = Instance.new("Part", char)
  4017. rarm2.BrickColor = BrickColor.new("Really black")
  4018. rarm2.Size = Vector3.new(1, 0.4, 1)
  4019. rarm2.CanCollide = false
  4020. rarm2.BottomSurface = "Smooth"
  4021. rarm2.TopSurface = "Smooth"
  4022. Weld = Instance.new("Weld",rarm)
  4023. Weld.Part0 = rarm
  4024. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4025. Weld.Part1 = rarm2
  4026. Weld.C1 = CFrame.new(-0.458259583, -0.356315613, 1.50168037, 0.00366159994, 0.999978125, -0.00550877256, 0.00621323148, 0.00548594771, 0.999965668, 0.999974012, -0.00369570963, -0.00619300362)
  4027.  
  4028. rarm3 = Instance.new("Part", char)
  4029. rarm3.BrickColor = BrickColor.new("Really black")
  4030. rarm3.Size = Vector3.new(1, 0.4, 1)
  4031. rarm3.CanCollide = false
  4032. rarm3.BottomSurface = "Smooth"
  4033. rarm3.TopSurface = "Smooth"
  4034. Weld = Instance.new("Weld",rarm)
  4035. Weld.Part0 = rarm
  4036. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4037. Weld.Part1 = rarm3
  4038. Weld.C1 = CFrame.new(-1.50168133, -0.768137932, -0.00367927551, -0.999974012, 0.00369570986, 0.00619304739, 0.00366159948, 0.999978125, -0.00550886011, -0.00621327572, -0.00548603525, -0.999965668)
  4039.  
  4040. rarm4 = Instance.new("Part", char)
  4041. rarm4.BrickColor = BrickColor.new("Really black")
  4042. rarm4.Size = Vector3.new(1, 0.4, 1)
  4043. rarm4.CanCollide = false
  4044. rarm4.BottomSurface = "Smooth"
  4045. rarm4.TopSurface = "Smooth"
  4046. Weld = Instance.new("Weld",rarm)
  4047. Weld.Part0 = rarm
  4048. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4049. Weld.Part1 = rarm4
  4050. Weld.C1 = CFrame.new(-0.00368309021, 1.8716774, 0.458146095, -0.00621323194, -0.00548603525, -0.999965668, 0.999974012, -0.0036957534, -0.00619300315, -0.00366164325, -0.999978125, 0.00550886057)
  4051.  
  4052. rarm5 = Instance.new("Part", char)
  4053. rarm5.BrickColor = BrickColor.new("Really black")
  4054. rarm5.Size = Vector3.new(1, 0.4, 1)
  4055. rarm5.CanCollide = false
  4056. rarm5.BottomSurface = "Smooth"
  4057. rarm5.TopSurface = "Smooth"
  4058. Mesh = Instance.new("SpecialMesh", rarm5)
  4059. Mesh.MeshType = "Brick"
  4060. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4061. Weld = Instance.new("Weld",rarm)
  4062. Weld.Part0 = rarm
  4063. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4064. Weld.Part1 = rarm5
  4065. Weld.C1 = CFrame.new(0.00368118286, 0.841855764, -1.50168228, 0.00621323194, 0.00548603525, 0.999965668, 0.00366159948, 0.999978125, -0.00550886011, -0.999974012, 0.00369570963, 0.00619300362)
  4066.  
  4067. rarm6 = Instance.new("Part", char)
  4068. rarm6.BrickColor = BrickColor.new("Really black")
  4069. rarm6.Size = Vector3.new(1, 0.4, 1)
  4070. rarm6.CanCollide = false
  4071. rarm6.BottomSurface = "Smooth"
  4072. rarm6.TopSurface = "Smooth"
  4073. Weld = Instance.new("Weld",rarm)
  4074. Weld.Part0 = rarm
  4075. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4076. Weld.Part1 = rarm6
  4077. Weld.C1 = CFrame.new(-1.50168133, -0.403675079, 0.458138466, -0.999974012, 0.00369575364, 0.00619304692, -0.00621327572, -0.00548603525, -0.999965668, -0.00366164325, -0.999978125, 0.00550886057)
  4078.  
  4079. rarm7 = Instance.new("Part", char)
  4080. rarm7.BrickColor = BrickColor.new("Royal purple")
  4081. rarm7.Size = Vector3.new(0.5, 0.3, 2)
  4082. rarm7.CanCollide = false
  4083. rarm7.BottomSurface = "Smooth"
  4084. rarm7.TopSurface = "Smooth"
  4085. rarm7.Material = "Neon"
  4086. Weld = Instance.new("Weld",rarm)
  4087. Weld.Part0 = rarm
  4088. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4089. Weld.Part1 = rarm7
  4090. Weld.C1 = CFrame.new(0.344418526, -1.80139351, -1.50391006, 0.122256897, -0.48818168, -0.864136577, -0.966848493, -0.25524351, 0.00740774209, -0.224181563, 0.834583461, -0.503202915)
  4091.  
  4092. rarm8 = Instance.new("Part", char)
  4093. rarm8.BrickColor = BrickColor.new("Really black")
  4094. rarm8.Size = Vector3.new(1, 0.4, 1)
  4095. rarm8.CanCollide = false
  4096. rarm8.BottomSurface = "Smooth"
  4097. rarm8.TopSurface = "Smooth"
  4098. Weld = Instance.new("Weld",rarm)
  4099. Weld.Part0 = rarm
  4100. Weld.C0 = CFrame.new(-1.50168228, 0.0418539047, -0.00368309021, -0.999974012, 0.00369570963, 0.00619300362, 0.00366159948, 0.999978125, -0.00550886011, -0.00621323194, -0.00548603525, -0.999965668)
  4101. Weld.Part1 = rarm8
  4102. Weld.C1 = CFrame.new(0.241888285, -0.00366973877, -1.56167889, 0.00366144883, 0.999978125, -0.00550877163, -0.00621323148, -0.00548594771, -0.999965668, -0.999974012, 0.00369555852, 0.00619300455)
  4103. ----------------------------------------------------------------- Left Leg -----------------------------------------------------------------
  4104. lleg1 = Instance.new("Part", char)
  4105. lleg1.Name = "Middle"
  4106. lleg1.BrickColor = BrickColor.new("Royal purple")
  4107. lleg1.Size = Vector3.new(1, 2, 1)
  4108. lleg1.CanCollide = false
  4109. lleg1.BottomSurface = "Smooth"
  4110. lleg1.TopSurface = "Smooth"
  4111. lleg1.Material = "Neon"
  4112. Weld = Instance.new("Weld",lleg)
  4113. Weld.Part0 = lleg
  4114. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4115. Weld.Part1 = lleg1
  4116. Weld.C1 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4117.  
  4118. lleg2 = Instance.new("Part", char)
  4119. lleg2.BrickColor = BrickColor.new("Really black")
  4120. lleg2.Size = Vector3.new(1, 0.4, 1)
  4121. lleg2.CanCollide = false
  4122. lleg2.BottomSurface = "Smooth"
  4123. lleg2.TopSurface = "Smooth"
  4124. Weld = Instance.new("Weld",lleg)
  4125. Weld.Part0 = lleg
  4126. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4127. Weld.Part1 = lleg2
  4128. Weld.C1 = CFrame.new(0.898587704, 4.77446556, 2.3581152, -7.17753299e-023, 1, 4.37113883e-008, 1.64202821e-015, -4.37113883e-008, 1, 1, -1.4355066e-022, 0)
  4129.  
  4130. lleg3 = Instance.new("Part", char)
  4131. lleg3.BrickColor = BrickColor.new("Really black")
  4132. lleg3.Size = Vector3.new(0.5, 0.3, 2)
  4133. lleg3.CanCollide = false
  4134. lleg3.BottomSurface = "Smooth"
  4135. lleg3.TopSurface = "Smooth"
  4136. Weld = Instance.new("Weld",lleg)
  4137. Weld.Part0 = lleg
  4138. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4139. Weld.Part1 = lleg3
  4140. Weld.C1 = CFrame.new(4.69929504, -1.49470997, 3.25491428, 0.183012843, 0.683012605, 0.707106829, -0.965925813, 0.258819133, 1.06770166e-007, -0.183012709, -0.683012724, 0.707106769)
  4141.  
  4142. lleg4 = Instance.new("Part", char)
  4143. lleg4.BrickColor = BrickColor.new("Really black")
  4144. lleg4.Size = Vector3.new(1, 0.4, 1)
  4145. lleg4.CanCollide = false
  4146. lleg4.BottomSurface = "Smooth"
  4147. lleg4.TopSurface = "Smooth"
  4148. Weld = Instance.new("Weld",lleg)
  4149. Weld.Part0 = lleg
  4150. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4151. Weld.Part1 = lleg4
  4152. Weld.C1 = CFrame.new(0.899408102, 1.9581213, -5.17447472, 4.37113883e-008, 1, 8.74227766e-008, 1, -4.37113883e-008, -2.68657252e-016, -1.37337096e-015, 8.74227766e-008, -1)
  4153.  
  4154. lleg5 = Instance.new("Part", char)
  4155. lleg5.BrickColor = BrickColor.new("Really black")
  4156. lleg5.Size = Vector3.new(1, 0.4, 1)
  4157. lleg5.CanCollide = false
  4158. lleg5.BottomSurface = "Smooth"
  4159. lleg5.TopSurface = "Smooth"
  4160. Weld = Instance.new("Weld",lleg)
  4161. Weld.Part0 = lleg
  4162. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4163. Weld.Part1 = lleg5
  4164. Weld.C1 = CFrame.new(0.899407625, -5.57446861, -2.3581152, -1.50995788e-007, 1, 8.74227766e-008, -1.20315126e-014, 8.74227766e-008, -1, -1, -1.50995788e-007, -8.24226416e-015)
  4165.  
  4166. lleg6 = Instance.new("Part", char)
  4167. lleg6.BrickColor = BrickColor.new("Really black")
  4168. lleg6.Size = Vector3.new(1, 0.4, 1)
  4169. lleg6.CanCollide = false
  4170. lleg6.BottomSurface = "Smooth"
  4171. lleg6.TopSurface = "Smooth"
  4172. Weld = Instance.new("Weld",lleg)
  4173. Weld.Part0 = lleg
  4174. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4175. Weld.Part1 = lleg6
  4176. Weld.C1 = CFrame.new(1.49948871, -2.31810665, 5.08444977, -4.37113883e-008, 1, 8.74227766e-008, -1, -4.37113883e-008, -3.55271368e-015, 8.47879895e-015, -8.74227766e-008, 1)
  4177.  
  4178. lleg7 = Instance.new("Part", char)
  4179. lleg7.BrickColor = BrickColor.new("Really black")
  4180. lleg7.Size = Vector3.new(1, 0.4, 1)
  4181. lleg7.CanCollide = false
  4182. lleg7.BottomSurface = "Smooth"
  4183. lleg7.TopSurface = "Smooth"
  4184. Weld = Instance.new("Weld",lleg)
  4185. Weld.Part0 = lleg
  4186. Weld.C0 = CFrame.new(-2.3581152, 0.999663353, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4187. Weld.Part1 = lleg7
  4188. Weld.C1 = CFrame.new(1.4994036, -2.33812618, 5.26447296, -4.37113883e-008, 1, 8.74227766e-008, -1, -4.37113883e-008, -3.55271368e-015, 8.47879895e-015, -8.74227766e-008, 1)
  4189. ----------------------------------------------------------------- Right Leg -----------------------------------------------------------------
  4190. rleg1 = Instance.new("Part", char)
  4191. rleg1.Name = "Middle"
  4192. rleg1.BrickColor = BrickColor.new("Royal purple")
  4193. rleg1.Size = Vector3.new(1, 2, 1)
  4194. rleg1.CanCollide = false
  4195. rleg1.BottomSurface = "Smooth"
  4196. rleg1.TopSurface = "Smooth"
  4197. rleg1.Material = "Neon"
  4198. Weld = Instance.new("Weld",rleg)
  4199. Weld.Part0 = rleg
  4200. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4201. Weld.Part1 = rleg1
  4202. Weld.C1 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4203.  
  4204. rleg2 = Instance.new("Part", char)
  4205. rleg2.BrickColor = BrickColor.new("Really black")
  4206. rleg2.Size = Vector3.new(1, 0.4, 1)
  4207. rleg2.CanCollide = false
  4208. rleg2.BottomSurface = "Smooth"
  4209. rleg2.TopSurface = "Smooth"
  4210. Weld = Instance.new("Weld",rleg)
  4211. Weld.Part0 = rleg
  4212. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4213. Weld.Part1 = rleg2
  4214. Weld.C1 = CFrame.new(0.905565023, 3.75810814, -5.17447472, 4.37113883e-008, 1, 8.74227766e-008, 1, -4.37113883e-008, -2.68657252e-016, -1.37337096e-015, 8.74227766e-008, -1)
  4215.  
  4216. rleg3 = Instance.new("Part", char)
  4217. rleg3.BrickColor = BrickColor.new("Really black")
  4218. rleg3.Size = Vector3.new(1, 0.4, 1)
  4219. rleg3.CanCollide = false
  4220. rleg3.BottomSurface = "Smooth"
  4221. rleg3.TopSurface = "Smooth"
  4222. Weld = Instance.new("Weld",rleg)
  4223. Weld.Part0 = rleg
  4224. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4225. Weld.Part1 = rleg3
  4226. Weld.C1 = CFrame.new(1.4545058, -3.34725952, 5.0867691, -0.0153048551, 0.999882877, -5.25215728e-006, -0.999882638, -0.0153048476, 0.000690514687, 0.000690353394, 1.58197654e-005, 0.999999762)
  4227.  
  4228. rleg4 = Instance.new("Part", char)
  4229. rleg4.BrickColor = BrickColor.new("Really black")
  4230. rleg4.Size = Vector3.new(1, 0.4, 1)
  4231. rleg4.CanCollide = false
  4232. rleg4.BottomSurface = "Smooth"
  4233. rleg4.TopSurface = "Smooth"
  4234. Weld = Instance.new("Weld",rleg)
  4235. Weld.Part0 = rleg
  4236. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4237. Weld.Part1 = rleg4
  4238. Weld.C1 = CFrame.new(1.5055685, -3.33812618, 5.26447296, -4.37113883e-008, 1, 8.74227766e-008, -1, -4.37113883e-008, -3.55271368e-015, 8.47879895e-015, -8.74227766e-008, 1)
  4239.  
  4240. rleg5 = Instance.new("Part", char)
  4241. rleg5.BrickColor = BrickColor.new("Really black")
  4242. rleg5.Size = Vector3.new(1, 0.4, 1)
  4243. rleg5.CanCollide = false
  4244. rleg5.BottomSurface = "Smooth"
  4245. rleg5.TopSurface = "Smooth"
  4246. Weld = Instance.new("Weld",rleg)
  4247. Weld.Part0 = rleg
  4248. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4249. Weld.Part1 = rleg5
  4250. Weld.C1 = CFrame.new(0.905564308, -5.57446861, -3.3581152, -1.50995788e-007, 1, 8.74227766e-008, -1.20315126e-014, 8.74227766e-008, -1, -1, -1.50995788e-007, -8.24226416e-015)
  4251.  
  4252. rleg6 = Instance.new("Part", char)
  4253. rleg6.BrickColor = BrickColor.new("Really black")
  4254. rleg6.Size = Vector3.new(1, 0.4, 1)
  4255. rleg6.CanCollide = false
  4256. rleg6.BottomSurface = "Smooth"
  4257. rleg6.TopSurface = "Smooth"
  4258. Weld = Instance.new("Weld",rleg)
  4259. Weld.Part0 = rleg
  4260. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4261. Weld.Part1 = rleg6
  4262. Weld.C1 = CFrame.new(0.904744625, 4.77446556, 3.3581152, -7.17753299e-023, 1, 4.37113883e-008, 1.64202821e-015, -4.37113883e-008, 1, 1, -1.4355066e-022, 0)
  4263.  
  4264. rleg7 = Instance.new("Part", char)
  4265. rleg7.BrickColor = BrickColor.new("Really black")
  4266. rleg7.Size = Vector3.new(0.5, 0.3, 2)
  4267. rleg7.CanCollide = false
  4268. rleg7.BottomSurface = "Smooth"
  4269. rleg7.TopSurface = "Smooth"
  4270. Weld = Instance.new("Weld",rleg)
  4271. Weld.Part0 = rleg
  4272. Weld.C0 = CFrame.new(-3.3581152, 1.00582027, -5.17447472, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4273. Weld.Part1 = rleg7
  4274. Weld.C1 = CFrame.new(-3.66284275, -3.99935341, -4.29136944, 0.183012664, -0.683012724, -0.707106829, -0.965925872, -0.258818954, -3.53088581e-008, -0.183012635, 0.683012784, -0.707106769)
  4275. ----------------------------------------------------------------- Torso -----------------------------------------------------------------
  4276. Chest1 = Instance.new("Part", char)
  4277. Chest1.Name = "Ball"
  4278. Chest1.BrickColor = BrickColor.new("Royal purple")
  4279. Chest1.Size = Vector3.new(1, 0.4, 1)
  4280. Chest1.CanCollide = false
  4281. Chest1.BottomSurface = "Smooth"
  4282. Chest1.TopSurface = "Smooth"
  4283. Chest1.Material = "Neon"
  4284. Mesh = Instance.new("CylinderMesh", Chest1)
  4285. Mesh.Scale = Vector3.new(0.9, 0.4, 0.9)
  4286. Weld = Instance.new("Weld",torso)
  4287. Weld.Part0 = torso
  4288. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4289. Weld.Part1 = Chest1
  4290. Weld.C1 = CFrame.new(0, 0.700000763, 0.176463604, -1, 0, 0, 0, 0, -1, 0, -1, 0)
  4291.  
  4292. Chest2 = Instance.new("Part", char)
  4293. Chest2.BrickColor = BrickColor.new("Royal purple")
  4294. Chest2.Name = "Middle"
  4295. Chest2.Size = Vector3.new(2, 2, 1)
  4296. Chest2.CanCollide = false
  4297. Chest2.BottomSurface = "Smooth"
  4298. Chest2.TopSurface = "Smooth"
  4299. Chest2.Material = "Neon"
  4300. Weld = Instance.new("Weld",torso)
  4301. Weld.Part0 = torso
  4302. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4303. Weld.Part1 = Chest2
  4304. Weld.C1 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4305.  
  4306. Chest3 = Instance.new("Part", char)
  4307. Chest3.BrickColor = BrickColor.new("Really black")
  4308. Chest3.Size = Vector3.new(1, 0.4, 1)
  4309. Chest3.CanCollide = false
  4310. Chest3.BottomSurface = "Smooth"
  4311. Chest3.TopSurface = "Smooth"
  4312. Weld = Instance.new("Weld",torso)
  4313. Weld.Part0 = torso
  4314. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4315. Weld.Part1 = Chest3
  4316. Weld.C1 = CFrame.new(-0.476491928, -0.5, -0.499999046, 5.15558582e-008, 1, -7.54979013e-008, -3.35276091e-008, 7.54979013e-008, 1, 1, -5.15558582e-008, 3.35276091e-008)
  4317.  
  4318. Chest4 = Instance.new("Part", char)
  4319. Chest4.BrickColor = BrickColor.new("Really black")
  4320. Chest4.Size = Vector3.new(1, 0.4, 1)
  4321. Chest4.CanCollide = false
  4322. Chest4.BottomSurface = "Smooth"
  4323. Chest4.TopSurface = "Smooth"
  4324. Weld = Instance.new("Weld",torso)
  4325. Weld.Part0 = torso
  4326. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4327. Weld.Part1 = Chest4
  4328. Weld.C1 = CFrame.new(-0.476491451, -0.5, 0.5, -1.4355066e-022, 1, 4.37113883e-008, 3.28405643e-015, -4.37113883e-008, 1, 1, -2.8710132e-022, 1.64202821e-015)
  4329.  
  4330. Chest5 = Instance.new("Part", char)
  4331. Chest5.BrickColor = BrickColor.new("Really black")
  4332. Chest5.Size = Vector3.new(1, 0.4, 1)
  4333. Chest5.CanCollide = false
  4334. Chest5.BottomSurface = "Smooth"
  4335. Chest5.TopSurface = "Smooth"
  4336. Weld = Instance.new("Weld",torso)
  4337. Weld.Part0 = torso
  4338. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4339. Weld.Part1 = Chest5
  4340. Weld.C1 = CFrame.new(-0.499999046, 0.5, 0.476491451, 1, -4.37113918e-008, 4.37113847e-008, -4.37113847e-008, 0, 1, -4.37113883e-008, -1, 0)
  4341.  
  4342. Chest6 = Instance.new("Part", char)
  4343. Chest6.BrickColor = BrickColor.new("Really black")
  4344. Chest6.Size = Vector3.new(1, 0.4, 1)
  4345. Chest6.CanCollide = false
  4346. Chest6.BottomSurface = "Smooth"
  4347. Chest6.TopSurface = "Smooth"
  4348. Weld = Instance.new("Weld",torso)
  4349. Weld.Part0 = torso
  4350. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4351. Weld.Part1 = Chest6
  4352. Weld.C1 = CFrame.new(0.5236063, -0.449995041, 0, 0, 1, 8.74227766e-008, 3.28405643e-015, -8.74227766e-008, 1, 1, -1.4355066e-022, 0)
  4353.  
  4354. Chest7 = Instance.new("Part", char)
  4355. Chest7.BrickColor = BrickColor.new("Really black")
  4356. Chest7.Size = Vector3.new(1, 0.4, 1)
  4357. Chest7.CanCollide = false
  4358. Chest7.BottomSurface = "Smooth"
  4359. Chest7.TopSurface = "Smooth"
  4360. Weld = Instance.new("Weld",torso)
  4361. Weld.Part0 = torso
  4362. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4363. Weld.Part1 = Chest7
  4364. Weld.C1 = CFrame.new(0.5, 0.5, 0.476491928, 1, -4.37113918e-008, 4.37113847e-008, -4.37113847e-008, 0, 1, -4.37113883e-008, -1, 0)
  4365.  
  4366. Chest8 = Instance.new("Part", char)
  4367. Chest8.BrickColor = BrickColor.new("Really black")
  4368. Chest8.Size = Vector3.new(1, 0.4, 1)
  4369. Chest8.CanCollide = false
  4370. Chest8.BottomSurface = "Smooth"
  4371. Chest8.TopSurface = "Smooth"
  4372. Weld = Instance.new("Weld",torso)
  4373. Weld.Part0 = torso
  4374. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4375. Weld.Part1 = Chest8
  4376. Weld.C1 = CFrame.new(0, 0.389970779, -0.473520517, 1, -4.37113954e-008, 4.37113847e-008, -4.37113883e-008, -4.37113883e-008, 1, -4.37113883e-008, -1, -4.37113883e-008)
  4377.  
  4378. Chest9 = Instance.new("Part", char)
  4379. Chest9.BrickColor = BrickColor.new("Really black")
  4380. Chest9.Size = Vector3.new(0.5, 0.3, 2)
  4381. Chest9.CanCollide = false
  4382. Chest9.BottomSurface = "Smooth"
  4383. Chest9.TopSurface = "Smooth"
  4384. Weld = Instance.new("Weld",torso)
  4385. Weld.Part0 = torso
  4386. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4387. Weld.Part1 = Chest9
  4388. Weld.C1 = CFrame.new(-0.458083153, 0.580001831, 0.306574821, -0.866025448, -0.49999997, 4.37113883e-008, -3.78551732e-008, -2.18556924e-008, -1, 0.49999997, -0.866025448, 0)
  4389.  
  4390. Chest10 = Instance.new("Part", char)
  4391. Chest10.BrickColor = BrickColor.new("Really black")
  4392. Chest10.Size = Vector3.new(1, 0.4, 1)
  4393. Chest10.CanCollide = false
  4394. Chest10.BottomSurface = "Smooth"
  4395. Chest10.TopSurface = "Smooth"
  4396. Mesh = Instance.new("SpecialMesh", Chest10)
  4397. Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4398. Weld = Instance.new("Weld",torso)
  4399. Weld.Part0 = torso
  4400. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4401. Weld.Part1 = Chest10
  4402. Weld.C1 = CFrame.new(-1.07653379, 0.899993896, 0, -4.37113883e-008, 1, 8.74227766e-008, -1, -4.37113883e-008, -3.55271368e-015, 8.47879895e-015, -8.74227766e-008, 1)
  4403.  
  4404. Chest11 = Instance.new("Part", char)
  4405. Chest11.BrickColor = BrickColor.new("Really black")
  4406. Chest11.Size = Vector3.new(0.5, 0.3, 2)
  4407. Chest11.CanCollide = false
  4408. Chest11.BottomSurface = "Smooth"
  4409. Chest11.TopSurface = "Smooth"
  4410. Weld = Instance.new("Weld",torso)
  4411. Weld.Part0 = torso
  4412. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4413. Weld.Part1 = Chest11
  4414. Weld.C1 = CFrame.new(0.973486662, -0.460004807, -9.53674316e-007, 1.50995803e-007, 1, 7.54979013e-008, -1.85052948e-014, -7.54979013e-008, 1, 1, -1.50995803e-007, 7.10542736e-015)
  4415.  
  4416. Chest12 = Instance.new("Part", char)
  4417. Chest12.BrickColor = BrickColor.new("Really black")
  4418. Chest12.Size = Vector3.new(0.5, 0.3, 2)
  4419. Chest12.CanCollide = false
  4420. Chest12.BottomSurface = "Smooth"
  4421. Chest12.TopSurface = "Smooth"
  4422. Weld = Instance.new("Weld",torso)
  4423. Weld.Part0 = torso
  4424. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4425. Weld.Part1 = Chest12
  4426. Weld.C1 = CFrame.new(-0.973600388, 0.450008392, -7.62939453e-006, -9.32088255e-008, -1, -4.37113883e-008, 5.82035878e-011, -4.37113883e-008, 1, -1, 9.32088255e-008, 5.82076609e-011)
  4427.  
  4428. Chest13 = Instance.new("Part", char)
  4429. Chest13.BrickColor = BrickColor.new("Really black")
  4430. Chest13.Size = Vector3.new(0.5, 0.3, 2)
  4431. Chest13.CanCollide = false
  4432. Chest13.BottomSurface = "Smooth"
  4433. Chest13.TopSurface = "Smooth"
  4434. Weld = Instance.new("Weld",torso)
  4435. Weld.Part0 = torso
  4436. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4437. Weld.Part1 = Chest13
  4438. Weld.C1 = CFrame.new(-0.729999542, -0.117254257, -1.91926646, -1, -3.23980487e-008, -4.22219593e-008, 3.23980487e-008, 0.258819044, -0.965925813, 4.22219593e-008, -0.965925813, -0.258819044)
  4439.  
  4440. Chest14 = Instance.new("Part", char)
  4441. Chest14.BrickColor = BrickColor.new("Really black")
  4442. Chest14.Size = Vector3.new(0.5, 0.3, 2)
  4443. Chest14.CanCollide = false
  4444. Chest14.BottomSurface = "Smooth"
  4445. Chest14.TopSurface = "Smooth"
  4446. Weld = Instance.new("Weld",torso)
  4447. Weld.Part0 = torso
  4448. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4449. Weld.Part1 = Chest14
  4450. Weld.C1 = CFrame.new(0.769999504, -0.150730133, -1.91693306, -1, -3.31366472e-008, -4.24129745e-008, 3.31366472e-008, 0.241921902, -0.970295727, 4.24129745e-008, -0.970295727, -0.241921902)
  4451.  
  4452. Chest15 = Instance.new("Part", char)
  4453. Chest15.BrickColor = BrickColor.new("Really black")
  4454. Chest15.Size = Vector3.new(0.5, 0.3, 2)
  4455. Chest15.CanCollide = false
  4456. Chest15.BottomSurface = "Smooth"
  4457. Chest15.TopSurface = "Smooth"
  4458. Weld = Instance.new("Weld",torso)
  4459. Weld.Part0 = torso
  4460. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4461. Weld.Part1 = Chest15
  4462. Weld.C1 = CFrame.new(-0.209440231, 1.25000095, 1.42984772, -6.16862437e-008, 0.656059027, 0.754709601, -1, -6.53672387e-008, -2.49122056e-008, 3.2989405e-008, -0.754709601, 0.656059027)
  4463.  
  4464. Chest16 = Instance.new("Part", char)
  4465. Chest16.BrickColor = BrickColor.new("Really black")
  4466. Chest16.Size = Vector3.new(0.5, 0.3, 2)
  4467. Chest16.CanCollide = false
  4468. Chest16.BottomSurface = "Smooth"
  4469. Chest16.TopSurface = "Smooth"
  4470. Weld = Instance.new("Weld",torso)
  4471. Weld.Part0 = torso
  4472. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4473. Weld.Part1 = Chest16
  4474. Weld.C1 = CFrame.new(-0.158526421, 1.25000095, 1.0131588, -7.35374925e-008, 0.927183867, 0.374606639, -1, -7.43167945e-008, -1.23653887e-008, 1.63745764e-008, -0.374606639, 0.927183867)
  4475.  
  4476. Chest17 = Instance.new("Part", char)
  4477. Chest17.BrickColor = BrickColor.new("Really black")
  4478. Chest17.Size = Vector3.new(0.5, 0.3, 2)
  4479. Chest17.CanCollide = false
  4480. Chest17.BottomSurface = "Smooth"
  4481. Chest17.TopSurface = "Smooth"
  4482. Weld = Instance.new("Weld",torso)
  4483. Weld.Part0 = torso
  4484. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4485. Weld.Part1 = Chest17
  4486. Weld.C1 = CFrame.new(-0.229999542, -0.117254257, -1.91926742, -1, -3.23980487e-008, -4.22219593e-008, 3.23980487e-008, 0.258819044, -0.965925813, 4.22219593e-008, -0.965925813, -0.258819044)
  4487.  
  4488. Chest18 = Instance.new("Part", char)
  4489. Chest18.BrickColor = BrickColor.new("Really black")
  4490. Chest18.Size = Vector3.new(0.5, 0.3, 2)
  4491. Chest18.CanCollide = false
  4492. Chest18.BottomSurface = "Smooth"
  4493. Chest18.TopSurface = "Smooth"
  4494. Weld = Instance.new("Weld",torso)
  4495. Weld.Part0 = torso
  4496. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4497. Weld.Part1 = Chest18
  4498. Weld.C1 = CFrame.new(0.269999504, -0.117254257, -1.91926742, -1, -3.23980487e-008, -4.22219593e-008, 3.23980487e-008, 0.258819044, -0.965925813, 4.22219593e-008, -0.965925813, -0.258819044)
  4499.  
  4500. Chest19 = Instance.new("Part", char)
  4501. Chest19.BrickColor = BrickColor.new("Really black")
  4502. Chest19.Size = Vector3.new(0.5, 0.3, 2)
  4503. Chest19.CanCollide = false
  4504. Chest19.BottomSurface = "Smooth"
  4505. Chest19.TopSurface = "Smooth"
  4506. Weld = Instance.new("Weld",torso)
  4507. Weld.Part0 = torso
  4508. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4509. Weld.Part1 = Chest19
  4510. Weld.C1 = CFrame.new(-0.00685310364, 1.25, 1.45221233, -2.47515253e-008, 0.224950925, 0.974370122, -1, -4.7067342e-008, -1.45362469e-008, 4.2591072e-008, -0.974370122, 0.224950925)
  4511.  
  4512. Chest20 = Instance.new("Part", char)
  4513. Chest20.BrickColor = BrickColor.new("Really black")
  4514. Chest20.Size = Vector3.new(1, 0.4, 1)
  4515. Chest20.CanCollide = false
  4516. Chest20.BottomSurface = "Smooth"
  4517. Chest20.TopSurface = "Smooth"
  4518. Mesh = Instance.new("SpecialMesh",Chest20)
  4519. Mesh.Scale = Vector3.new(1.1,1.1,1.1)
  4520. Weld = Instance.new("Weld",torso)
  4521. Weld.Part0 = torso
  4522. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4523. Weld.Part1 = Chest20
  4524. Weld.C1 = CFrame.new(-1.07653379, -0.899992943, 0, -4.37113883e-008, 1, 8.74227766e-008, -1, -4.37113883e-008, -3.55271368e-015, 8.47879895e-015, -8.74227766e-008, 1)
  4525.  
  4526. Chest21 = Instance.new("Part", char)
  4527. Chest21.BrickColor = BrickColor.new("Really black")
  4528. Chest21.Size = Vector3.new(0.5, 0.3, 2)
  4529. Chest21.CanCollide = false
  4530. Chest21.BottomSurface = "Smooth"
  4531. Chest21.TopSurface = "Smooth"
  4532. Weld = Instance.new("Weld",torso)
  4533. Weld.Part0 = torso
  4534. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4535. Weld.Part1 = Chest21
  4536. Weld.C1 = CFrame.new(-0.209432602, -1.14999962, 1.429842, -6.16862437e-008, 0.656059027, 0.754709601, -1, -6.53672387e-008, -2.49122056e-008, 3.2989405e-008, -0.754709601, 0.656059027)
  4537.  
  4538. Chest22 = Instance.new("Part", char)
  4539. Chest22.BrickColor = BrickColor.new("Really black")
  4540. Chest22.Size = Vector3.new(0.5, 0.3, 2)
  4541. Chest22.CanCollide = false
  4542. Chest22.BottomSurface = "Smooth"
  4543. Chest22.TopSurface = "Smooth"
  4544. Weld = Instance.new("Weld",torso)
  4545. Weld.Part0 = torso
  4546. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4547. Weld.Part1 = Chest22
  4548. Weld.C1 = CFrame.new(-0.00685119629, -1.15000057, 1.45220757, -2.47515253e-008, 0.224950925, 0.974370122, -1, -4.7067342e-008, -1.45362469e-008, 4.2591072e-008, -0.974370122, 0.224950925)
  4549.  
  4550. Chest23 = Instance.new("Part", char)
  4551. Chest23.BrickColor = BrickColor.new("Really black")
  4552. Chest23.Size = Vector3.new(0.5, 0.3, 2)
  4553. Chest23.CanCollide = false
  4554. Chest23.BottomSurface = "Smooth"
  4555. Chest23.TopSurface = "Smooth"
  4556. Weld = Instance.new("Weld",torso)
  4557. Weld.Part0 = torso
  4558. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4559. Weld.Part1 = Chest23
  4560. Weld.C1 = CFrame.new(-0.158511639, -1.15000057, 1.01315498, -7.35374925e-008, 0.927183926, 0.374606401, -1, -7.43168016e-008, -1.23653807e-008, 1.63745657e-008, -0.374606401, 0.927183926)
  4561.  
  4562. Chest24 = Instance.new("Part", char)
  4563. Chest24.BrickColor = BrickColor.new("Really black")
  4564. Chest24.Size = Vector3.new(0.5, 0.3, 2)
  4565. Chest24.CanCollide = false
  4566. Chest24.BottomSurface = "Smooth"
  4567. Chest24.TopSurface = "Smooth"
  4568. Weld = Instance.new("Weld",torso)
  4569. Weld.Part0 = torso
  4570. Weld.C0 = CFrame.new(0, 0.0235004425, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4571. Weld.Part1 = Chest24
  4572. Weld.C1 = CFrame.new(-0.458065987, -0.579999924, 0.306604624, 0.866025388, -0.50000006, 4.37113883e-008, 4.53686155e-008, 1.66003517e-007, 1, -0.50000006, -0.866025388, 1.66447563e-007)
  4573.  
  4574.  
  4575.  
  4576.  
  4577.  
  4578.  
  4579. local verlet = {}
  4580. verlet.step_time = 1 / 50
  4581. verlet.gravity = Vector3.new(0, -10, 0)
  4582.  
  4583. local char = game.Players.LocalPlayer.Character
  4584. local torso = char:WaitForChild("Torso")
  4585. local parts = {}
  4586. local render = game:GetService("RunService").RenderStepped
  4587.  
  4588. wait(2)
  4589.  
  4590. local point = {}
  4591. local link = {}
  4592. local rope = {}
  4593.  
  4594. local function ccw(A,B,C)
  4595. return (C.y-A.y) * (B.x-A.x) > (B.y-A.y) * (C.x-A.x)
  4596. end
  4597.  
  4598. local function intersect(A,B,C,D)
  4599. return ccw(A,C,D) ~= ccw(B,C,D) and ccw(A,B,C) ~= ccw(A,B,D)
  4600. end
  4601.  
  4602. local function vec2(v)
  4603. return Vector2.new(v.x, v.z)
  4604. end
  4605.  
  4606. function point:step()
  4607. if not self.fixed then
  4608. local derivative = (self.position - self.last_position) * 0.95
  4609. self.last_position = self.position
  4610. self.position = self.position + derivative + (self.velocity * verlet.step_time ^ 2)
  4611. --[[local torsoP = torso.CFrame * CFrame.new(-1, 0, 0.5)
  4612. local torsoE = torso.CFrame * CFrame.new(1, 0, 0.5)
  4613. local pointE = self.position + torso.CFrame.lookVector * 100
  4614. local doIntersect = intersect(vec2(torsoP.p), vec2(torsoE.p), vec2(self.position), vec2(pointE))
  4615. if not doIntersect then
  4616. self.postition = self.position - torso.CFrame.lookVector * 10
  4617. end]]
  4618. end
  4619. end
  4620.  
  4621. function link:step()
  4622. for i = 1, 1 do
  4623. local distance = self.point1.position - self.point2.position
  4624. local magnitude = distance.magnitude
  4625. local differance = (self.length - magnitude) / magnitude
  4626. local translation = ((self.point1.fixed or self.point2.fixed) and 1 or 0.6) * distance * differance
  4627. if not self.point1.fixed then
  4628. self.point1.position = self.point1.position + translation
  4629. end
  4630. if not self.point2.fixed then
  4631. self.point2.position = self.point2.position - translation
  4632. end
  4633. end
  4634. end
  4635.  
  4636. function verlet.new(class, a, b, c)
  4637. if class == "Point" then
  4638. local new = {}
  4639. setmetatable(new, {__index = point})
  4640. new.class = class
  4641. new.position = a or Vector3.new()
  4642. new.last_position = new.position
  4643. new.velocity = verlet.gravity
  4644. new.fixed = false
  4645. return new
  4646. elseif class == "Link" then
  4647. local new = {}
  4648. setmetatable(new, {__index = link})
  4649. new.class = class
  4650. new.point1 = a
  4651. new.point2 = b
  4652. new.length = c or (a.position - b.position).magnitude
  4653. return new
  4654. elseif class == "Rope" then
  4655. local new = {}
  4656. setmetatable(new, {__index = link})
  4657. new.class = class
  4658. new.start_point = a
  4659. new.finish_point = b
  4660. new.points = {}
  4661. new.links = {}
  4662. local inc = (b - a) / 10
  4663. for i = 0, 10 do
  4664. table.insert(new.points, verlet.new("Point", a + (i * inc)))
  4665. end
  4666. for i = 2, #new.points do
  4667. table.insert(new.links, verlet.new("Link", new.points[i - 1], new.points[i]))
  4668. end
  4669. return new
  4670. end
  4671. end
  4672.  
  4673. local tris = {}
  4674. local triParts = {}
  4675.  
  4676. local function GetDiscoColor(hue)
  4677. local section = hue % 1 * 3
  4678. local secondary = 0.5 * math.pi * (section % 1)
  4679. if section < 1 then
  4680. return Color3.new(1, 1 - math.cos(secondary), 1 - math.sin(secondary))
  4681. elseif section < 2 then
  4682. return Color3.new(1 - math.sin(secondary), 1, 1 - math.cos(secondary))
  4683. else
  4684. return Color3.new(1 - math.cos(secondary), 1 - math.sin(secondary), 1)
  4685. end
  4686. end
  4687.  
  4688. local function setupPart(part)
  4689. part.Anchored = true
  4690. part.FormFactor = 3
  4691. part.CanCollide = false
  4692. part.TopSurface = 10
  4693. part.BottomSurface = 10
  4694. part.LeftSurface = 10
  4695. part.RightSurface = 10
  4696. part.FrontSurface = 10
  4697. part.BackSurface = 10
  4698. part.Material = "Neon"
  4699. local m = Instance.new("SpecialMesh", part)
  4700. m.MeshType = "Wedge"
  4701. m.Scale = Vector3.new(0.2, 1, 1)
  4702. return part
  4703. end
  4704.  
  4705. local function CFrameFromTopBack(at, top, back)
  4706. local right = top:Cross(back)
  4707. return CFrame.new(at.x, at.y, at.z, right.x, top.x, back.x, right.y, top.y, back.y, right.z, top.z, back.z)
  4708. end
  4709.  
  4710. local function drawTri(parent, a, b, c)
  4711. local this = {}
  4712. local mPart1 = table.remove(triParts, 1) or setupPart(Instance.new("Part"))
  4713. local mPart2 = table.remove(triParts, 1) or setupPart(Instance.new("Part"))
  4714. function this:Set(a, b, c)
  4715. local ab, bc, ca = b-a, c-b, a-c
  4716. local abm, bcm, cam = ab.magnitude, bc.magnitude, ca.magnitude
  4717. local edg1 = math.abs(0.5 + ca:Dot(ab)/(abm*abm))
  4718. local edg2 = math.abs(0.5 + ab:Dot(bc)/(bcm*bcm))
  4719. local edg3 = math.abs(0.5 + bc:Dot(ca)/(cam*cam))
  4720. if edg1 < edg2 then
  4721. if edg1 >= edg3 then
  4722. a, b, c = c, a, b
  4723. ab, bc, ca = ca, ab, bc
  4724. abm = cam
  4725. end
  4726. else
  4727. if edg2 < edg3 then
  4728. a, b, c = b, c, a
  4729. ab, bc, ca = bc, ca, ab
  4730. abm = bcm
  4731. else
  4732. a, b, c = c, a, b
  4733. ab, bc, ca = ca, ab, bc
  4734. abm = cam
  4735. end
  4736. end
  4737.  
  4738. local len1 = -ca:Dot(ab)/abm
  4739. local len2 = abm - len1
  4740. local width = (ca + ab.unit*len1).magnitude
  4741.  
  4742. local maincf = CFrameFromTopBack(a, ab:Cross(bc).unit, -ab.unit)
  4743.  
  4744. if len1 > 0.2 then
  4745. mPart1.Parent = parent
  4746. mPart1.Size = Vector3.new(0.2, width, len1)
  4747. mPart1.CFrame = maincf*CFrame.Angles(math.pi,0,math.pi/2)*CFrame.new(0,width/2,len1/2)
  4748. else
  4749. mPart1.Parent = nil
  4750. end
  4751.  
  4752. if len2 > 0.2 then
  4753. mPart2.Parent = parent
  4754. mPart2.Size = Vector3.new(0.2, width, len2)
  4755. mPart2.CFrame = maincf*CFrame.Angles(math.pi,math.pi,-math.pi/2)*CFrame.new(0,width/2,-len1 - len2/2)
  4756. else
  4757. mPart2.Parent = nil
  4758. end
  4759. end
  4760. function this:SetProperty(prop, value)
  4761. mPart1[prop] = value
  4762. mPart2[prop] = value
  4763. end
  4764. this:Set(a, b, c)
  4765. function this:Destroy()
  4766. mPart1:Destroy()
  4767. mPart2:Destroy()
  4768. end
  4769. this.p1 = mPart1
  4770. this.p2 = mPart2
  4771. this.p1.BrickColor = BrickColor.new(GetDiscoColor(math.noise(0.5, 0.5, this.p1.CFrame.Y * 0.5 + time())))
  4772. this.p2.BrickColor = BrickColor.new(GetDiscoColor(math.noise(0.5, 0.5, this.p2.CFrame.Y * 0.5 + time())))
  4773. return this
  4774. end
  4775.  
  4776. function verlet.draw(object, id)
  4777. if object.class == "Point" then
  4778. local part = parts[id]
  4779. part.BrickColor = BrickColor.new(1, 1, 1)
  4780. part.Transparency = 0
  4781. part.formFactor = 3
  4782. part.Anchored = true
  4783. part.CanCollide = false
  4784. part.TopSurface = 0
  4785. part.BottomSurface = 0
  4786. part.Size = Vector3.new(0.35, 0.35, 0.35)
  4787. part.Material = "Neon"
  4788. part.CFrame = CFrame.new(object.position)
  4789. part.Parent = torso
  4790. return part
  4791. elseif object.class == "Link" then
  4792. local part = parts[id]
  4793. local dist = (object.point1.position - object.point2.position).magnitude
  4794. part.Size = Vector3.new(0.2, 0.2, dist)
  4795. part.CFrame = CFrame.new(object.point1.position, object.point2.position) * CFrame.new(0, 0, dist * -0.5)
  4796. part.Parent = torso
  4797. return part
  4798. end
  4799. end
  4800.  
  4801. function verlet.clear()
  4802. for _, v in pairs(workspace:GetChildren()) do
  4803. if v.Name == "Part" then
  4804. v:Destroy()
  4805. end
  4806. end
  4807. end
  4808.  
  4809. local points = {}
  4810. local links = {}
  4811.  
  4812. for x = 0, 2 do
  4813. points[x] = {}
  4814. for y = 0, 3 do
  4815. points[x][y] = verlet.new("Point", torso.Position + Vector3.new(x * 0.8 - 2, 2 - y * 0.8, 5 + y * 0.4))
  4816. points[x][y].fixed = y == 0
  4817. end
  4818. end
  4819.  
  4820. for x = 1, 2 do
  4821. for y = 0, 3 do
  4822. links[#links + 1] = verlet.new("Link", points[x][y], points[x - 1][y], 1 + y * 0.08)
  4823. end
  4824. end
  4825.  
  4826. for x = 0, 2 do
  4827. for y = 1, 3 do
  4828. links[#links + 1] = verlet.new("Link", points[x][y], points[x][y - 1], 1.2 + y * 0.03)
  4829. end
  4830. end
  4831.  
  4832. render:connect(function()
  4833. for x = 0, 2 do
  4834. for y = 0, 3 do
  4835. if y == 0 then
  4836. points[x][y].position = (torso.CFrame * CFrame.new(x * 1 - 1, 1, 0.5)).p
  4837. else
  4838. points[x][y]:step()
  4839. end
  4840. end
  4841. end
  4842. for i = 1, #links do
  4843. links[i]:step()
  4844. end
  4845. for i = 1, #tris do
  4846. triParts[#triParts + 1] = tris[i].p1
  4847. triParts[#triParts + 1] = tris[i].p2
  4848. end
  4849. tris = {}
  4850. for x = 1, 2 do
  4851. for y = 1, 3 do
  4852. tris[#tris + 1] = drawTri(torso, points[x - 1][y - 1].position, points[x - 1][y].position, points[x][y - 1].position)
  4853. tris[#tris + 1] = drawTri(torso, points[x][y].position, points[x - 1][y].position, points[x][y - 1].position)
  4854. end
  4855. end
  4856. end)
  4857.  
  4858.  
  4859.  
  4860. local player = game:GetService('Players').LocalPlayer
  4861. local rightclone = Instance.new('Motor6D')
  4862. rightclone.Name = "Right Shoulder"
  4863. rightclone.C0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4864. rightclone.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4865. local leftclone = Instance.new('Motor6D')
  4866. leftclone.Name = "Left Shoulder"
  4867. leftclone.C0 = CFrame.new(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4868. leftclone.C1 = CFrame.new(0.5, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4869. local leftlegclone = Instance.new('Motor6D')
  4870. leftlegclone.Name = "Left Hip"
  4871. leftlegclone.C0 = CFrame.new(-1, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4872. leftlegclone.C1 = CFrame.new(-0.5, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  4873. local rightlegclone = Instance.new('Motor6D')
  4874. rightlegclone.Name = "Right Hip"
  4875. rightlegclone.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4876. rightlegclone.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  4877. local torsoclone = Instance.new('Motor6D')
  4878. torsoclone.Name = "RootJoint"
  4879. torsoclone.C0 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  4880. torsoclone.C1 = CFrame.new(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  4881. local mouse = player:GetMouse()
  4882. local rag1 = true
  4883. local rag2 = true
  4884. local firsttime = true
  4885. local firsttime2 = true
  4886. local firsttime3 = true
  4887. local firsttime4 = true
  4888. local firsttime5 = true
  4889. local childlock = false
  4890. local math1 = math.random(1,5)
  4891. math1 = math1+(math.random(0,9)/10)
  4892. local math2 = math.random(1,15)
  4893. math2 = math2+(math.random(0,9)/10)
  4894. local math3 = math.random(1,10)
  4895. math3 = math3+(math.random(0,9)/10)
  4896. local math4 = math.random(5,100)
  4897. math4 = math4+(math.random(0,9)/10)
  4898. local answer = (math4+(math1*math3))/(math1*math2)
  4899. answer = math.floor((answer*10)+0.5)
  4900. answer = answer/10
  4901. print([[To be fair, you have to have a very high IQ to understand Rick and Morty.
  4902. The humor is extremely subtle, and without a solid grasp of theoretical physics most of the jokes will go over a typical viewer's head.
  4903. There's also Rick's nihilistic outlook, which is deftly woven into his characterisation -
  4904. his personal philosophy draws heavily from Narodnaya Volya literature, for instance.
  4905. The fans understand this stuff;
  4906. they have the intellectual capacity to truly appreciate the depths of these jokes, to realize that they're not just funny- they say something deep about LIFE.
  4907. As a consequence people who dislike Rick and Morty truly ARE idiots-
  4908. of course they wouldn't appreciate, for instance, the humour in Rick's existencial catchphrase "Wubba Lubba Dub Dub," which itself is a cryptic reference to Turgenev's Russian epic Fathers and Sons.
  4909. I'm smirking right now just imagining one of those addlepated simpletons scratching their heads in confusion as Dan Harmon's genius unfolds itself on their television screens.
  4910. What fools... how I pity them.
  4911. And yes by the way, I DO have a Rick and Morty tattoo.
  4912. And no, you cannot see it.
  4913. It's for the ladies' eyes only-
  4914. And even they have to demonstrate that they're within ]]..answer..[[ IQ points of my own (preferably lower) beforehand.]])
  4915. local rekt = {}
  4916.  
  4917. -- Objects
  4918.  
  4919. local MainGUI = Instance.new("ScreenGui")
  4920. local Customize = Instance.new("TextButton")
  4921. local Frame = Instance.new("Frame")
  4922. local TextLabel = Instance.new("TextLabel")
  4923. local Frame_2 = Instance.new("Frame")
  4924. local Frame_3 = Instance.new("Frame")
  4925. local ImageLabel = Instance.new("ImageLabel")
  4926. local R = Instance.new("TextBox")
  4927. local G = Instance.new("TextBox")
  4928. local B = Instance.new("TextBox")
  4929. local TextLabel_2 = Instance.new("TextLabel")
  4930. local TextLabel_3 = Instance.new("TextLabel")
  4931. local TextLabel_4 = Instance.new("TextLabel")
  4932. local Slider = Instance.new("Frame")
  4933. local Slidee = Instance.new("ImageButton")
  4934. local ChildLock = Instance.new("Frame")
  4935. local TextLabel_5 = Instance.new("TextLabel")
  4936. local mathz = Instance.new("TextLabel")
  4937. local TextBox = Instance.new("TextBox")
  4938. local Black = Instance.new('Frame')
  4939. local fps = Instance.new('TextLabel')
  4940.  
  4941. -- Properties
  4942.  
  4943. MainGUI.Name = "MainGUI"
  4944. MainGUI.ResetOnSpawn = false
  4945. pcall(function()
  4946. MainGUI.Parent = player.PlayerGui
  4947. end)
  4948. pcall(function()
  4949. MainGUI.Parent = game.CoreGui
  4950. game.CoreGui.RobloxGui.Backpack.Hotbar.AnchorPoint = Vector2.new(0.5,0.5)
  4951. game.CoreGui.RobloxGui.Backpack.Hotbar.Position = UDim2.new(0.5,0,0.85,0)
  4952. end)
  4953.  
  4954.  
  4955. Customize.Name = "Customize"
  4956. Customize.Parent = MainGUI
  4957. Customize.BackgroundColor3 = Color3.new(0, 0.776471, 0.282353)
  4958. Customize.BorderSizePixel = 0
  4959. Customize.Position = UDim2.new(0.15, 0, 0.9, 0)
  4960. Customize.Size = UDim2.new(0.699999988, 0, 0.100000001, 0)
  4961. Customize.Font = Enum.Font.SourceSans
  4962. Customize.FontSize = Enum.FontSize.Size14
  4963. Customize.Text = "Customize Knife V4 Cracked"
  4964. Customize.TextColor3 = Color3.new(1, 1, 1)
  4965. Customize.TextScaled = true
  4966. Customize.TextSize = 14
  4967. Customize.TextWrapped = true
  4968.  
  4969. Frame.Parent = Customize
  4970. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  4971. Frame.BorderSizePixel = 0
  4972. Frame.Position = UDim2.new(0, 0, 1, 0)
  4973. Frame.Size = UDim2.new(1, 0, 6.5, 0)
  4974.  
  4975. TextLabel.Parent = Frame
  4976. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4977. TextLabel.BackgroundTransparency = 1
  4978. TextLabel.Position = UDim2.new(0, 0, 0.100000001, 0)
  4979. TextLabel.Size = UDim2.new(0.300000012, 0, 0.200000003, 0)
  4980. TextLabel.Font = Enum.Font.SourceSansLight
  4981. TextLabel.FontSize = Enum.FontSize.Size14
  4982. TextLabel.Text = "Blood Color: [255, 255, 255]"
  4983. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  4984. TextLabel.TextScaled = true
  4985. TextLabel.TextSize = 14
  4986. TextLabel.TextWrapped = true
  4987. TextLabel.TextXAlignment = Enum.TextXAlignment.Right
  4988.  
  4989. Frame_2.Parent = TextLabel
  4990. Frame_2.BackgroundColor3 = Color3.new(0.458824, 0, 0)
  4991. Frame_2.BorderSizePixel = 0
  4992. Frame_2.Position = UDim2.new(1.04999995, 0, 0, 0)
  4993. Frame_2.Size = UDim2.new(1, 0, 1, 0)
  4994. Frame_2.SizeConstraint = Enum.SizeConstraint.RelativeYY
  4995.  
  4996. Frame_3.Parent = Frame
  4997. Frame_3.BackgroundColor3 = Color3.new(1, 1, 1)
  4998. Frame_3.BackgroundTransparency = 1
  4999. Frame_3.BorderSizePixel = 0
  5000. Frame_3.Position = UDim2.new(0.0500000007, 0, 0.449999988, 0)
  5001. Frame_3.Size = UDim2.new(0.5, 0, 0.5, 0)
  5002. Frame_3.SizeConstraint = Enum.SizeConstraint.RelativeYY
  5003.  
  5004. ImageLabel.Parent = Frame_3
  5005. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  5006. ImageLabel.BackgroundTransparency = 1
  5007. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  5008. ImageLabel.Image = "rbxassetid://328298876"
  5009.  
  5010. R.Name = "R"
  5011. R.Parent = Frame_3
  5012. R.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5013. R.BorderSizePixel = 0
  5014. R.Position = UDim2.new(1.39999998, 0, 0, 0)
  5015. R.Size = UDim2.new(0.75, 0, 0.300000012, 0)
  5016. R.Font = Enum.Font.SourceSans
  5017. R.FontSize = Enum.FontSize.Size14
  5018. R.Text = "Input"
  5019. R.TextColor3 = Color3.new(1, 1, 1)
  5020. R.TextScaled = true
  5021. R.TextSize = 14
  5022. R.TextWrapped = true
  5023. R.TextXAlignment = Enum.TextXAlignment.Left
  5024.  
  5025. G.Name = "G"
  5026. G.Parent = Frame_3
  5027. G.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5028. G.BorderSizePixel = 0
  5029. G.Position = UDim2.new(1.39999998, 0, 0.349999994, 0)
  5030. G.Size = UDim2.new(0.75, 0, 0.300000012, 0)
  5031. G.Font = Enum.Font.SourceSans
  5032. G.FontSize = Enum.FontSize.Size14
  5033. G.Text = "Input"
  5034. G.TextColor3 = Color3.new(1, 1, 1)
  5035. G.TextScaled = true
  5036. G.TextSize = 14
  5037. G.TextWrapped = true
  5038. G.TextXAlignment = Enum.TextXAlignment.Left
  5039.  
  5040. B.Name = "B"
  5041. B.Parent = Frame_3
  5042. B.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5043. B.BorderSizePixel = 0
  5044. B.Position = UDim2.new(1.39999998, 0, 0.699999988, 0)
  5045. B.Size = UDim2.new(0.75, 0, 0.300000012, 0)
  5046. B.Font = Enum.Font.SourceSans
  5047. B.FontSize = Enum.FontSize.Size14
  5048. B.Text = "Input"
  5049. B.TextColor3 = Color3.new(1, 1, 1)
  5050. B.TextScaled = true
  5051. B.TextSize = 14
  5052. B.TextWrapped = true
  5053. B.TextXAlignment = Enum.TextXAlignment.Left
  5054.  
  5055. TextLabel_2.Parent = Frame_3
  5056. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  5057. TextLabel_2.BackgroundTransparency = 1
  5058. TextLabel_2.Position = UDim2.new(1.04999995, 0, 0, 0)
  5059. TextLabel_2.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5060. TextLabel_2.Font = Enum.Font.SourceSansLight
  5061. TextLabel_2.FontSize = Enum.FontSize.Size14
  5062. TextLabel_2.Text = "R"
  5063. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  5064. TextLabel_2.TextScaled = true
  5065. TextLabel_2.TextSize = 14
  5066. TextLabel_2.TextWrapped = true
  5067.  
  5068. TextLabel_3.Parent = Frame_3
  5069. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  5070. TextLabel_3.BackgroundTransparency = 1
  5071. TextLabel_3.Position = UDim2.new(1.04999995, 0, 0.349999994, 0)
  5072. TextLabel_3.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5073. TextLabel_3.Font = Enum.Font.SourceSansLight
  5074. TextLabel_3.FontSize = Enum.FontSize.Size14
  5075. TextLabel_3.Text = "G"
  5076. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  5077. TextLabel_3.TextScaled = true
  5078. TextLabel_3.TextSize = 14
  5079. TextLabel_3.TextWrapped = true
  5080.  
  5081. TextLabel_4.Parent = Frame_3
  5082. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  5083. TextLabel_4.BackgroundTransparency = 1
  5084. TextLabel_4.Position = UDim2.new(1.04999995, 0, 0.699999988, 0)
  5085. TextLabel_4.Size = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5086. TextLabel_4.Font = Enum.Font.SourceSansLight
  5087. TextLabel_4.FontSize = Enum.FontSize.Size14
  5088. TextLabel_4.Text = "B"
  5089. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  5090. TextLabel_4.TextScaled = true
  5091. TextLabel_4.TextSize = 14
  5092. TextLabel_4.TextWrapped = true
  5093.  
  5094. Slider.Name = "Slider"
  5095. Slider.Parent = Frame
  5096. Slider.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
  5097. Slider.Position = UDim2.new(0.0500000007, 0, 0.375, 0)
  5098. Slider.Size = UDim2.new(0.230000004, 0, 0.00999999978, 0)
  5099.  
  5100. Slidee.Name = "Slidee"
  5101. Slidee.Parent = Slider
  5102. Slidee.AnchorPoint = Vector2.new(0.5, 0.5)
  5103. Slidee.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
  5104. Slidee.BorderSizePixel = 0
  5105. Slidee.Size = UDim2.new(0.0299999993, 0, 7, 0)
  5106. Slidee.ImageTransparency = 1
  5107.  
  5108. ChildLock.Name = "ChildLock"
  5109. ChildLock.Parent = Frame
  5110. ChildLock.Active = true
  5111. ChildLock.BackgroundColor3 = Color3.new(0, 0, 0)
  5112. ChildLock.BackgroundTransparency = 0.60000002384186
  5113. ChildLock.BorderSizePixel = 0
  5114. ChildLock.Position = UDim2.new(0.600000024, 0, 0, 0)
  5115. ChildLock.Size = UDim2.new(0.400000006, 0, 1, 0)
  5116. ChildLock.ZIndex = 2
  5117.  
  5118. TextLabel_5.Parent = ChildLock
  5119. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  5120. TextLabel_5.BackgroundTransparency = 1
  5121. TextLabel_5.BorderSizePixel = 0
  5122. TextLabel_5.Position = UDim2.new(0.125, 0, 0.150000006, 0)
  5123. TextLabel_5.Size = UDim2.new(0.75, 0, 0.200000003, 0)
  5124. TextLabel_5.ZIndex = 3
  5125. TextLabel_5.Font = Enum.Font.SourceSans
  5126. TextLabel_5.FontSize = Enum.FontSize.Size14
  5127. TextLabel_5.Text = "do this math to disable child lock"
  5128. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  5129. TextLabel_5.TextScaled = true
  5130. TextLabel_5.TextSize = 14
  5131. TextLabel_5.TextWrapped = true
  5132.  
  5133. mathz.Name = "mathz"
  5134. mathz.Parent = ChildLock
  5135. mathz.BackgroundColor3 = Color3.new(1, 1, 1)
  5136. mathz.BackgroundTransparency = 1
  5137. mathz.Position = UDim2.new(0.125, 0, 0.449999988, 0)
  5138. mathz.Size = UDim2.new(0.75, 0, 0.200000003, 0)
  5139. mathz.ZIndex = 3
  5140. mathz.Font = Enum.Font.SourceSans
  5141. mathz.FontSize = Enum.FontSize.Size14
  5142. mathz.Text = math1.."("..math2.."r - "..math3..") = "..math4
  5143. mathz.TextColor3 = Color3.new(1, 1, 1)
  5144. mathz.TextScaled = true
  5145. mathz.TextSize = 14
  5146. mathz.TextWrapped = true
  5147.  
  5148. fps.Name = "fps"
  5149. fps.Parent = Frame
  5150. fps.BackgroundColor3 = Color3.new(1, 1, 1)
  5151. fps.BackgroundTransparency = 1
  5152. fps.Size = UDim2.new(0.75, 0, 0.05, 0)
  5153. fps.ZIndex = 3
  5154. fps.Font = Enum.Font.SourceSansLight
  5155. fps.FontSize = Enum.FontSize.Size14
  5156. fps.Text = "FPS: N/A"
  5157. fps.TextColor3 = Color3.new(1, 1, 1)
  5158. fps.TextScaled = true
  5159. fps.TextSize = 14
  5160. fps.TextWrapped = true
  5161. fps.TextXAlignment = Enum.TextXAlignment.Left
  5162.  
  5163. TextBox.Parent = ChildLock
  5164. TextBox.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5165. TextBox.BorderSizePixel = 0
  5166. TextBox.Position = UDim2.new(0.200000003, 0, 0.699999988, 0)
  5167. TextBox.Size = UDim2.new(0.600000024, 0, 0.200000003, 0)
  5168. TextBox.ZIndex = 3
  5169. TextBox.Font = Enum.Font.SourceSans
  5170. TextBox.FontSize = Enum.FontSize.Size14
  5171. TextBox.Text = "Answer (rounded to nearest tenth)"
  5172. TextBox.TextColor3 = Color3.new(1, 1, 1)
  5173. TextBox.TextScaled = true
  5174. TextBox.TextSize = 14
  5175. TextBox.TextWrapped = true
  5176. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  5177.  
  5178. Black.Size = UDim2.new(1,0,1,0)
  5179. Black.BackgroundTransparency = 1
  5180. Black.BorderSizePixel = 0
  5181. Black.BackgroundColor3 = Color3.new(0,0,0)
  5182. Black.Parent = Frame_3
  5183.  
  5184. TextBox.FocusLost:connect(function()
  5185. if TextBox.Text == tostring(answer) or TextBox.Text == "r="..tostring(answer) or TextBox.Text == "r= "..tostring(answer) or TextBox.Text == "r = "..tostring(answer) or TextBox.Text == "r= "..tostring(answer) or TextBox.Text == tostring(answer).."=r" or TextBox.Text == tostring(answer).." =r" or TextBox.Text == tostring(answer).."= r" or TextBox.Text == tostring(answer).." = r" then
  5186. ChildLock:Destroy()
  5187. childlock = false
  5188. notify("Child lock disabled, press B to enable dildo mode.",true)
  5189. end
  5190. end)
  5191.  
  5192. local mousedown = false
  5193. mouse.Button1Down:connect(function()
  5194. mousedown = true
  5195. end)
  5196. mouse.Button1Up:connect(function()
  5197. mousedown = false
  5198. slidee = false
  5199. end)
  5200.  
  5201. Slidee.MouseButton1Down:connect(function()
  5202. slidee = true
  5203. end)
  5204. Slidee.MouseButton1Up:connect(function()
  5205. slidee = false
  5206. end)
  5207.  
  5208. mouse.Move:connect(function()
  5209. if mousedown then
  5210. if mouse.X >= ImageLabel.AbsolutePosition.X and mouse.X <= ImageLabel.AbsolutePosition.X+ ImageLabel.AbsoluteSize.X and mouse.Y >= ImageLabel.AbsolutePosition.Y and mouse.Y <= ImageLabel.AbsolutePosition.Y+ ImageLabel.AbsoluteSize.Y then
  5211. local newX = ImageLabel.AbsoluteSize.X-(mouse.X-ImageLabel.AbsolutePosition.X)
  5212. local newY = ImageLabel.AbsoluteSize.Y-(mouse.Y-ImageLabel.AbsolutePosition.Y)
  5213. local newcolor = Color3.fromHSV(newX/ImageLabel.AbsoluteSize.X,newY/ImageLabel.AbsoluteSize.Y,Black.Transparency)
  5214. Frame_2.BackgroundColor3 = newcolor
  5215. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5216. end
  5217. end
  5218. if slidee then
  5219. local ree = mouse.X
  5220. if ree < Slider.AbsolutePosition.X then
  5221. ree = Slider.AbsolutePosition.X
  5222. elseif ree > Slider.AbsolutePosition.X+Slider.AbsoluteSize.X then
  5223. ree = Slider.AbsolutePosition.X+Slider.AbsoluteSize.X
  5224. end
  5225. Slidee.Position = UDim2.new(0,ree-Slider.AbsolutePosition.X,0,0)
  5226. Black.Transparency = 1-(Slidee.Position.X.Offset/Slider.AbsoluteSize.X)
  5227. end
  5228. end)
  5229.  
  5230. R.FocusLost:connect(function()
  5231. if R.Text ~= "Input" then
  5232. if tonumber(R.Text) then
  5233. if tonumber(R.Text) > 255 then
  5234. R.Text = "255"
  5235. end
  5236. local newcolor = Color3.new(tonumber(R.Text/255),Frame_2.BackgroundColor3.g,Frame_2.BackgroundColor3.b)
  5237. Frame_2.BackgroundColor3 = newcolor
  5238. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5239. R.Text = "Input"
  5240. end
  5241. end
  5242. end)
  5243. G.FocusLost:connect(function()
  5244. if G.Text ~= "Input" then
  5245. if tonumber(G.Text) then
  5246. if tonumber(G.Text) > 255 then
  5247. G.Text = "255"
  5248. end
  5249. local newcolor = Color3.new(Frame_2.BackgroundColor3.r,tonumber(G.Text/255),Frame_2.BackgroundColor3.b)
  5250. Frame_2.BackgroundColor3 = newcolor
  5251. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5252. G.Text = "Input"
  5253. end
  5254. end
  5255. end)
  5256. B.FocusLost:connect(function()
  5257. if B.Text ~= "Input" then
  5258. if tonumber(B.Text) then
  5259. if tonumber(B.Text) > 255 then
  5260. B.Text = "255"
  5261. end
  5262. local newcolor = Color3.new(Frame_2.BackgroundColor3.r,Frame_2.BackgroundColor3.g,tonumber(B.Text/255))
  5263. Frame_2.BackgroundColor3 = newcolor
  5264. TextLabel.Text = "Blood Color: ["..math.floor(255*newcolor.r)..", "..math.floor(255*newcolor.g)..", "..math.floor(255*newcolor.b).."]"
  5265. B.Text = "Input"
  5266. end
  5267. end
  5268. end)
  5269.  
  5270. local open = false
  5271. local opening = false
  5272. Customize.MouseButton1Click:connect(function()
  5273. if opening == false then
  5274. if open == false then
  5275. open = true
  5276. opening = true
  5277. Customize:TweenPosition(UDim2.new(0.15, 0, 0.1, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Quint,1)
  5278. wait(1)
  5279. opening = false
  5280. else
  5281. open = false
  5282. opening = true
  5283. Customize:TweenPosition(UDim2.new(0.15, 0, 0.9, 0),Enum.EasingDirection.Out,Enum.EasingStyle.Quint,1)
  5284. wait(1)
  5285. opening = false
  5286. end
  5287. end
  5288. end)
  5289.  
  5290. Frame_2.BackgroundColor3 = Color3.fromRGB(117,0,0)
  5291.  
  5292. function removewelds(part)
  5293. for i,v in pairs(part:GetChildren()) do
  5294. if v:IsA('Weld') then v:Destroy() end
  5295. end
  5296. end
  5297.  
  5298. function notify(msg,remove)
  5299. local coru= coroutine.wrap(function()
  5300. for i,v in pairs(MainGUI:GetChildren()) do
  5301. if v:IsA('TextLabel') then v:Destroy() end
  5302. end
  5303. if msg then
  5304. local TextLabel = Instance.new("TextLabel")
  5305. local Frame = Instance.new("Frame")
  5306.  
  5307. -- Properties
  5308.  
  5309. TextLabel.Parent = MainGUI
  5310. TextLabel.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  5311. TextLabel.BorderSizePixel = 0
  5312. TextLabel.Position = UDim2.new(0.25, 0, 0.05, -10)
  5313. TextLabel.Size = UDim2.new(0.5, 0, 0.1, 0)
  5314. TextLabel.Font = Enum.Font.SourceSans
  5315. TextLabel.FontSize = Enum.FontSize.Size60
  5316. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  5317. TextLabel.TextSize = 50
  5318. TextLabel.Transparency = 1
  5319. TextLabel.TextScaled = true
  5320. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  5321. TextLabel.Text = ""
  5322. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  5323.  
  5324. Frame.Parent = TextLabel
  5325. Frame.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  5326. Frame.BorderSizePixel = 0
  5327. Frame.Transparency = 1
  5328. Frame.Position = UDim2.new(0, 0, 1,0)
  5329. Frame.Size = UDim2.new(1, 0, 0, 5)
  5330. for i=1,10 do
  5331. TextLabel.Transparency = TextLabel.Transparency-0.1
  5332. TextLabel.Position = TextLabel.Position+UDim2.new(0,0,0,1)
  5333. Frame.Transparency = Frame.Transparency-0.1
  5334. wait()
  5335. end
  5336. for i=1,#msg do
  5337. TextLabel.Text = string.sub(msg,1,i)
  5338. wait()
  5339. end
  5340. wait(1)
  5341. if remove ~= true then
  5342. for i=1,10 do
  5343. TextLabel.Transparency = TextLabel.Transparency+0.1
  5344. TextLabel.Position = TextLabel.Position-UDim2.new(0,0,0,1)
  5345. Frame.Transparency = Frame.Transparency+0.1
  5346. wait()
  5347. end
  5348. TextLabel:Destroy()
  5349. end
  5350. end
  5351. end)
  5352. coru()
  5353. end
  5354. if workspace.FilteringEnabled == false then
  5355. if workspace:PGSIsEnabled() then
  5356. notify('Press Z to equip. Created by mustardfoot and Tollonis.',true)
  5357. else
  5358. notify('(this game is really old or something and has the shitty physics so a lot of things wont work sorry) Press Z to equip. Created by mustardfoot and Tollonis.',true)
  5359. end
  5360. else
  5361. notify('LOL this game has filtering enabled so it literally wont work here')
  5362. end
  5363.  
  5364. local handProperties = {
  5365. {"LimitsEnabled", true};
  5366. {"UpperAngle",0};
  5367. {"LowerAngle",0};
  5368. }
  5369. local shinProperties = {
  5370. {"LimitsEnabled", true};
  5371. {"UpperAngle", 0};
  5372. {"LowerAngle", -75};
  5373. }
  5374. local footProperties = {
  5375. {"LimitsEnabled", true};
  5376. {"UpperAngle", 15};
  5377. {"LowerAngle", -45};
  5378. }
  5379.  
  5380. function bleed(frick,OwO)
  5381. while frick.Parent ~= nil and frick.Parent.Parent ~= nil do
  5382. local reeee = coroutine.wrap(function()
  5383. local thing = Instance.new('Part',workspace)
  5384. thing.Size = Vector3.new(0.2,0.2,0.2)
  5385. thing.CFrame = frick.CFrame
  5386. thing.Transparency = 1
  5387. thing.BrickColor = BrickColor.new(Frame_2.BackgroundColor3)
  5388. thing.Material = Enum.Material.SmoothPlastic
  5389. thing.Name = "Blood"
  5390. thing.CanCollide =false
  5391. thing:BreakJoints()
  5392. local rawrxd = Instance.new('BodyForce',thing)
  5393. rawrxd.Force = frick.CFrame.upVector*(math.random()*2)+Vector3.new(math.random(-5, 5)/10,1.5,0)
  5394. local coru = coroutine.wrap(function()
  5395. wait(0.01)
  5396. rawrxd:Destroy()
  5397. end)
  5398. coru()
  5399. local ree = Instance.new('ParticleEmitter',thing)
  5400. if OwO ~= true then
  5401. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Frame_2.BackgroundColor3),ColorSequenceKeypoint.new(1,Frame_2.BackgroundColor3)})
  5402. else
  5403. ree.Color = ColorSequence.new({ColorSequenceKeypoint.new(0,Color3.new(1,1,1)),ColorSequenceKeypoint.new(1,Color3.new(1,1,1))})
  5404. end
  5405. ree.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,0.1),NumberSequenceKeypoint.new(1,0.1)})
  5406. ree.Texture = 'rbxassetid://867743272'
  5407. ree.Lifetime = NumberRange.new(0.4)
  5408. ree.Rate = 50
  5409. ree.LockedToPart = true
  5410. ree.Speed = NumberRange.new(0, 2)
  5411.  
  5412. thing.Touched:connect(function(tou)
  5413. if tou.Parent and tou.Parent:IsA('Tool') == false and tou.Parent.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Parent:FindFirstChildOfClass('Humanoid') == nil and tou.Name ~= "Blood" and tou.Parent.Name ~= "Projectile" and tou.Parent.Name ~= "big ass knife" and tou.Parent ~= player.Character and tou.Parent.ClassName ~= "Accessory" and tou.Parent.Name ~= "bitch ass knife" and tou.Parent.Name ~= 'handle' and tou.Name ~= "blade" and tou.Name ~= 'handle' and tou.Name ~= "Projectile" and tou.Parent.Name ~= "Projectile" then
  5414. local pos = Vector3.new(thing.Position.X,(tou.Position.Y+(tou.Size.Y/2))+0.02,thing.Position.Z)
  5415. local Point1 = pos-Vector3.new(0.01,0.01,0.01)
  5416. local Point2 = pos+Vector3.new(0.01,0.01,0.01)
  5417. local Region = Region3.new(Point1,Point2)
  5418. for _,Part in pairs(game.Workspace:FindPartsInRegion3(Region,nil,math.huge)) do
  5419. if Part.Name == "BloodPuddle" then
  5420. tou = Part
  5421. end
  5422. end
  5423. thing:Destroy()
  5424. if tou.Name == "BloodPuddle" then
  5425. if tou.Size.X < 1 then
  5426. pcall(function()
  5427. tou.Sound:Play()
  5428. end)
  5429. end
  5430. local reee = tou.CFrame
  5431. if tou.Transparency > -0.2 then
  5432. tou.Transparency = tou.Transparency -0.1
  5433. end
  5434. if tou.Size.X < 5 then
  5435. tou.Size = tou.Size+Vector3.new(0.1,0,0.1)
  5436. tou.CFrame = reee
  5437. end
  5438. elseif tou.CanCollide == true then
  5439. local bloodlol = Instance.new('Part',workspace)
  5440. local sound = Instance.new('Sound',bloodlol)
  5441. sound.SoundId = 'rbxassetid://685857471'
  5442. sound.Volume = 0.025
  5443. sound:Play()
  5444. bloodlol.Size=Vector3.new(1,0.2,1)
  5445. bloodlol.Name = "BloodPuddle"
  5446. bloodlol.Anchored = true
  5447. bloodlol.CanCollide = false
  5448. bloodlol.Material = Enum.Material.SmoothPlastic
  5449. if OwO ~= true then
  5450. bloodlol.Color = Frame_2.BackgroundColor3
  5451. else
  5452. bloodlol.Color = Color3.new(1,1,1)
  5453. end
  5454. local cyl = Instance.new('CylinderMesh',bloodlol)
  5455. cyl.Scale = Vector3.new(1,0.1,1)
  5456. bloodlol.CFrame = CFrame.new(pos)
  5457. local coru=coroutine.wrap(function()
  5458. while bloodlol.Parent ~= nil do
  5459. if bloodlol.Transparency < 1 then
  5460. bloodlol.Transparency = bloodlol.Transparency+0.05
  5461. else
  5462. bloodlol:Destroy()
  5463. end
  5464. wait(0.1)
  5465. end
  5466. end)
  5467. coru()
  5468. end
  5469. end
  5470. end)
  5471. local coru = coroutine.wrap(function()
  5472. wait(1)
  5473. thing:Destroy()
  5474. end)
  5475. coru()
  5476. end)
  5477. reeee()
  5478. wait()
  5479. end
  5480. end
  5481.  
  5482. function stun(char)
  5483. local found = false
  5484. pcall(function()
  5485. char:FindFirstChildOfClass('Humanoid'):ChangeState(Enum.HumanoidStateType.Physics)
  5486. end)
  5487. for i,v in pairs(rekt) do
  5488. if v == char then
  5489. found = true
  5490. end
  5491. end
  5492. if found == false then
  5493. table.insert(rekt,char)
  5494. end
  5495. end
  5496. function unstun(char)
  5497. for i,v in pairs(rekt) do
  5498. if v == char then
  5499. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChildOfClass('Humanoid').Health>0 then
  5500. v:FindFirstChildOfClass('Humanoid'):ChangeState(Enum.HumanoidStateType.Running)
  5501. v:FindFirstChildOfClass('Humanoid').PlatformStand = false
  5502. v:FindFirstChildOfClass('Humanoid').Sit = false
  5503. v:FindFirstChildOfClass('Humanoid').Jump = true
  5504. v:FindFirstChildOfClass('Humanoid').JumpPower = 50
  5505. v:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  5506. v:FindFirstChildOfClass('Humanoid').Name = "Humanoid"
  5507. end
  5508. table.remove(rekt,i)
  5509. end
  5510. end
  5511. end
  5512.  
  5513. function recurse(root,callback,i)
  5514. i= i or 0
  5515. for _,v in pairs(root:GetChildren()) do
  5516. i = i + 1
  5517. callback(i,v)
  5518.  
  5519. if #v:GetChildren() > 0 then
  5520. i = recurse(v,callback,i)
  5521. end
  5522. end
  5523.  
  5524. return i
  5525. end
  5526.  
  5527. function ragdollJoint(character, part0, part1, attachmentName, className, properties)
  5528. if character:FindFirstChild("RagdollConstraint"..part1.Name) == nil then
  5529. if character:FindFirstChild('HumanoidRootPart')then
  5530. character.HumanoidRootPart.CanCollide = false
  5531. end
  5532. for i,v in pairs(character:GetChildren()) do
  5533. if v:IsA("MeshPart") and (v.MeshId == 'http://www.roblox.com/asset/?id=553602991' or v.MeshId == 'http://www.roblox.com/asset/?id=553602977' or v.MeshId == 'http://www.roblox.com/asset/?id=553602987') then
  5534. v.Size = Vector3.new(1,1,1)
  5535. end
  5536. end
  5537. recurse(character, function(_,v)
  5538. if v:IsA("Attachment") and v.Parent.Name ~= "ayybleed" then
  5539. v.Axis = Vector3.new(0, 1, 0)
  5540. v.SecondaryAxis = Vector3.new(0, 0, 1)
  5541. v.Rotation = Vector3.new(0, 0, 0)
  5542. end
  5543. end)
  5544. if part1:FindFirstChildOfClass('Motor6D') then
  5545. part1:FindFirstChildOfClass('Motor6D'):Destroy()
  5546. end
  5547. if attachmentName ~= "NeckAttachment" then
  5548. attachmentName = attachmentName.."RigAttachment"
  5549. end
  5550. local constraint = Instance.new(className.."Constraint")
  5551. constraint.Attachment0 = part0:FindFirstChild(attachmentName)
  5552. constraint.Attachment1 = part1:FindFirstChild(attachmentName)
  5553. constraint.Name = "RagdollConstraint"..part1.Name
  5554. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5555. local collidepart = Instance.new('Part',part1)
  5556. collidepart.Size = part1.Size/2
  5557. if string.find(string.lower(part1.Name),"upper") then
  5558. if string.find(string.lower(part1.Name),"leg") then
  5559. collidepart.Size = part1.Size/3
  5560. else
  5561. collidepart.Size = part1.Size/2.5
  5562. end
  5563. end
  5564. collidepart.CanCollide = true
  5565. collidepart.Name = "Collision"
  5566. collidepart.Anchored = false
  5567. collidepart.Transparency = 1
  5568. collidepart.CFrame = part1.CFrame
  5569. collidepart:BreakJoints()
  5570. local attachment0 = Instance.new('Attachment',part1)
  5571. local attachment1 = Instance.new('Attachment',collidepart)
  5572. if attachment0 and attachment1 then
  5573. local constraint = Instance.new("HingeConstraint")
  5574. constraint.Attachment0 = attachment0
  5575. constraint.Attachment1 = attachment1
  5576. constraint.LimitsEnabled = true
  5577. constraint.UpperAngle = 0
  5578. constraint.LowerAngle = 0
  5579. constraint.Parent = character
  5580. end
  5581. if string.find(string.lower(part1.Name),"upper") then
  5582. if string.find(string.lower(part1.Name),"leg") then
  5583. attachment0.Position = Vector3.new(0,0.01,0)
  5584. else
  5585. attachment0.Position = Vector3.new(0,0.25,0)
  5586. end
  5587. else
  5588. attachment0.Position = Vector3.new(0,-0.1,0)
  5589. end
  5590. end
  5591. for _,propertyData in next,properties or {} do
  5592. constraint[propertyData[1]] = propertyData[2]
  5593. end
  5594.  
  5595. constraint.Parent = character
  5596. end
  5597. end
  5598.  
  5599. function R6ragdollJoint(character,limbname,attached,heded)
  5600. pcall(function()
  5601. if limbname == "Right Arm" and character:FindFirstChild("Right Arm") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Right ArmRagdollConstraint") == nil and character[limbname]:FindFirstChild("Right ArmRagdollConstraint") == nil then
  5602. local torsoatt = Instance.new('Attachment',character.Torso)
  5603. torsoatt.Name = limbname.."RagdollConstraint"
  5604. torsoatt.Position = Vector3.new(1.45,0.768,-0.009)
  5605. torsoatt.Axis = Vector3.new(1,0,0)
  5606. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5607. local limbatt = Instance.new("Attachment",character[limbname])
  5608. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5609. limbatt.Name = limbname.."RagdollConstraint"
  5610. limbatt.Axis = Vector3.new(1,0,0)
  5611. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5612. local ballc = Instance.new('BallSocketConstraint',character)
  5613. ballc.Name = "RightArmRagdollRig"
  5614. ballc.Attachment0 = torsoatt
  5615. ballc.Attachment1 = limbatt
  5616. local part1 = character[limbname]
  5617. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5618. local collidepart = Instance.new('Part',part1)
  5619. collidepart.Size = part1.Size/1.5
  5620. collidepart.CanCollide = true
  5621. collidepart.Name = "Collision"
  5622. collidepart.Anchored = false
  5623. collidepart.Transparency = 1
  5624. collidepart.CFrame = part1.CFrame
  5625. collidepart:BreakJoints()
  5626. local attachment0 = Instance.new('Attachment',part1)
  5627. local attachment1 = Instance.new('Attachment',collidepart)
  5628. if attachment0 and attachment1 then
  5629. local constraint = Instance.new("HingeConstraint")
  5630. constraint.Attachment0 = attachment0
  5631. constraint.Attachment1 = attachment1
  5632. constraint.LimitsEnabled = true
  5633. constraint.UpperAngle = 0
  5634. constraint.LowerAngle = 0
  5635. constraint.Parent = character
  5636. end
  5637. end
  5638. if character.Torso:FindFirstChild('Right Shoulder') then
  5639. character.Torso:FindFirstChild('Right Shoulder'):Destroy()
  5640. end
  5641. elseif limbname == "Left Arm" and character:FindFirstChild("Left Arm") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Left ArmRagdollConstraint") == nil and character[limbname]:FindFirstChild("Left ArmRagdollConstraint") == nil then
  5642. local torsoatt = Instance.new('Attachment',character.Torso)
  5643. torsoatt.Name = limbname.."RagdollConstraint"
  5644. torsoatt.Position = Vector3.new(-1.45,0.768,-0.009)
  5645. torsoatt.Axis = Vector3.new(1,0,0)
  5646. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5647. local limbatt = Instance.new("Attachment",character[limbname])
  5648. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5649. limbatt.Name = limbname.."RagdollConstraint"
  5650. limbatt.Axis = Vector3.new(1,0,0)
  5651. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5652. local ballc = Instance.new('BallSocketConstraint',character)
  5653. ballc.Name = "LeftArmRagdollRig"
  5654. ballc.Attachment0 = torsoatt
  5655. ballc.Attachment1 = limbatt
  5656. local part1 = character[limbname]
  5657. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5658. local collidepart = Instance.new('Part',part1)
  5659. collidepart.Size = part1.Size/1.5
  5660. collidepart.CanCollide = true
  5661. collidepart.Name = "Collision"
  5662. collidepart.Anchored = false
  5663. collidepart.Transparency = 1
  5664. collidepart.CFrame = part1.CFrame
  5665. collidepart:BreakJoints()
  5666. local attachment0 = Instance.new('Attachment',part1)
  5667. local attachment1 = Instance.new('Attachment',collidepart)
  5668. if attachment0 and attachment1 then
  5669. local constraint = Instance.new("HingeConstraint")
  5670. constraint.Attachment0 = attachment0
  5671. constraint.Attachment1 = attachment1
  5672. constraint.LimitsEnabled = true
  5673. constraint.UpperAngle = 0
  5674. constraint.LowerAngle = 0
  5675. constraint.Parent = character
  5676. end
  5677. end
  5678. if character.Torso:FindFirstChild('Left Shoulder') then
  5679. character.Torso:FindFirstChild('Left Shoulder'):Destroy()
  5680. end
  5681. elseif limbname == "Right Leg" and character:FindFirstChild("Right Leg") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Right LegRagdollConstraint") == nil and character[limbname]:FindFirstChild("Right LegRagdollConstraint") == nil then
  5682. stun(character)
  5683. local torsoatt = Instance.new('Attachment',character.Torso)
  5684. torsoatt.Name = limbname.."RagdollConstraint"
  5685. torsoatt.Position = Vector3.new(0.45, -1.242, -0.009)
  5686. torsoatt.Axis = Vector3.new(1,0,0)
  5687. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5688. local limbatt = Instance.new("Attachment",character[limbname])
  5689. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5690. limbatt.Name = limbname.."RagdollConstraint"
  5691. limbatt.Axis = Vector3.new(1,0,0)
  5692. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5693. local ballc = Instance.new('BallSocketConstraint',character)
  5694. ballc.Name = "RightLegRagdollRig"
  5695. ballc.Attachment0 = torsoatt
  5696. ballc.Attachment1 = limbatt
  5697. local part1 = character[limbname]
  5698. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5699. local collidepart = Instance.new('Part',part1)
  5700. collidepart.Size = part1.Size/1.5
  5701. collidepart.CanCollide = true
  5702. collidepart.Name = "Collision"
  5703. collidepart.Anchored = false
  5704. collidepart.Transparency = 1
  5705. collidepart.CFrame = part1.CFrame
  5706. collidepart:BreakJoints()
  5707. local attachment0 = Instance.new('Attachment',part1)
  5708. local attachment1 = Instance.new('Attachment',collidepart)
  5709. if attachment0 and attachment1 then
  5710. local constraint = Instance.new("HingeConstraint")
  5711. constraint.Attachment0 = attachment0
  5712. constraint.Attachment1 = attachment1
  5713. constraint.LimitsEnabled = true
  5714. constraint.UpperAngle = 0
  5715. constraint.LowerAngle = 0
  5716. constraint.Parent = character
  5717. end
  5718. end
  5719. if character.Torso:FindFirstChild('Right Hip') then
  5720. character.Torso:FindFirstChild('Right Hip'):Destroy()
  5721. end
  5722. elseif limbname == "Left Leg" and character:FindFirstChild("Left Leg") and character:FindFirstChild("Torso") and character.Torso:FindFirstChild("Left LegRagdollConstraint") == nil and character[limbname]:FindFirstChild("Left LegRagdollConstraint") == nil then
  5723. stun(character)
  5724. local torsoatt = Instance.new('Attachment',character.Torso)
  5725. torsoatt.Name = limbname.."RagdollConstraint"
  5726. torsoatt.Position = Vector3.new(-0.45, -1.242, -0.009)
  5727. torsoatt.Axis = Vector3.new(1,0,0)
  5728. torsoatt.SecondaryAxis = Vector3.new(0,1,0)
  5729. local limbatt = Instance.new("Attachment",character[limbname])
  5730. limbatt.Position = Vector3.new(-0.086, 0.755, -0.007)
  5731. limbatt.Name = limbname.."RagdollConstraint"
  5732. limbatt.Axis = Vector3.new(1,0,0)
  5733. limbatt.SecondaryAxis = Vector3.new(0,1,0)
  5734. local ballc = Instance.new('BallSocketConstraint',character)
  5735. ballc.Name = "LeftLegRagdollRig"
  5736. ballc.Attachment0 = torsoatt
  5737. ballc.Attachment1 = limbatt
  5738. local part1 = character[limbname]
  5739. if character:FindFirstChildOfClass('Humanoid').Health > 0 then
  5740. local collidepart = Instance.new('Part',part1)
  5741. collidepart.Size = part1.Size/1.5
  5742. collidepart.CanCollide = true
  5743. collidepart.Name = "Collision"
  5744. collidepart.Anchored = false
  5745. collidepart.Transparency = 1
  5746. collidepart.CFrame = part1.CFrame
  5747. collidepart:BreakJoints()
  5748. local attachment0 = Instance.new('Attachment',part1)
  5749. local attachment1 = Instance.new('Attachment',collidepart)
  5750. if attachment0 and attachment1 then
  5751. local constraint = Instance.new("HingeConstraint")
  5752. constraint.Attachment0 = attachment0
  5753. constraint.Attachment1 = attachment1
  5754. constraint.LimitsEnabled = true
  5755. constraint.UpperAngle = 0
  5756. constraint.LowerAngle = 0
  5757. constraint.Parent = character
  5758. end
  5759. end
  5760. if character.Torso:FindFirstChild('Left Hip') then
  5761. character.Torso:FindFirstChild('Left Hip'):Destroy()
  5762. end
  5763. elseif limbname == "Head" or limbname == "Torso" and character:FindFirstChild("Head") and character:FindFirstChild("Torso") and character.Head:FindFirstChild("Neck") == nil then
  5764. if character:FindFirstChildOfClass('Humanoid') then
  5765. character:FindFirstChildOfClass('Humanoid').Health = 0
  5766. end
  5767. while character:FindFirstChildOfClass('Humanoid').Health > 0 do wait() end
  5768. if character:FindFirstChild('HumanoidRootPart') then
  5769. character.HumanoidRootPart:Destroy()
  5770. end
  5771. game:GetService('Debris'):AddItem(character,10)
  5772. for _,child in next,character:GetChildren() do
  5773. if child:IsA("Accoutrement") then
  5774. for _,part in next,child:GetChildren() do
  5775. if part:IsA("BasePart") then
  5776. for _,c in pairs(part:GetChildren()) do
  5777. if c:IsA('Weld') then c:Destroy() end
  5778. end
  5779. local attachment1 = part:FindFirstChildOfClass("Attachment")
  5780. local attachment0 = getAttachment0(character,attachment1.Name)
  5781. if attachment0 and attachment1 then
  5782. local constraint = Instance.new("HingeConstraint")
  5783. constraint.Attachment0 = attachment0
  5784. constraint.Attachment1 = attachment1
  5785. constraint.LimitsEnabled = true
  5786. constraint.UpperAngle = 0
  5787. constraint.LowerAngle = 0
  5788. constraint.Parent = character
  5789. end
  5790. end
  5791. end
  5792. end
  5793. end
  5794. for i,v in pairs(character:GetChildren()) do
  5795. if v:IsA('MeshPart') or v:IsA('BasePart') then
  5796. for _,c in pairs(v:GetChildren()) do
  5797. if c.Name == "Collision" then c:Destroy() end
  5798. end
  5799. end
  5800. end
  5801. if character.Torso:FindFirstChild('Neck') then
  5802. character.Torso.Neck:Destroy()
  5803. end
  5804. if character:FindFirstChild('Torso') then
  5805. local collidepart = Instance.new('Part',character.Torso)
  5806. collidepart.Size = character.Torso.Size/1.5
  5807. collidepart.CanCollide = true
  5808. collidepart.Name = "Collision"
  5809. collidepart.Anchored = false
  5810. collidepart.Transparency = 1
  5811. collidepart.CFrame = character.Torso.CFrame
  5812. collidepart:BreakJoints()
  5813. local attachment0 = Instance.new('Attachment',character.Torso)
  5814. local attachment1 = Instance.new('Attachment',collidepart)
  5815. if attachment0 and attachment1 then
  5816. local constraint = Instance.new("HingeConstraint")
  5817. constraint.Attachment0 = attachment0
  5818. constraint.Attachment1 = attachment1
  5819. constraint.LimitsEnabled = true
  5820. constraint.UpperAngle = 0
  5821. constraint.LowerAngle = 0
  5822. constraint.Parent = character
  5823. end
  5824. end
  5825. if character:FindFirstChild('Torso') and character:FindFirstChild('Head') then
  5826. if character.Torso:FindFirstChild('NeckAttachment') == nil then
  5827. local neck = Instance.new('Attachment',character.Torso)
  5828. neck.Name = "NeckAttachment"
  5829. neck.Position = Vector3.new(0, 1, 0)
  5830. end
  5831. ragdollJoint(character,character.Torso, character.Head, "NeckAttachment", "Hinge", {
  5832. {"LimitsEnabled",true};
  5833. {"UpperAngle",50};
  5834. {"LowerAngle",-50};
  5835. })
  5836. end
  5837. if attached ~= false then
  5838. ragdollpart(character, "Right Leg")
  5839. ragdollpart(character, "Left Leg")
  5840. else
  5841. pcall(function()
  5842. local ayybleed = Instance.new('Part',character)
  5843. ayybleed.Size = Vector3.new(character.Torso.Size.X,0.1,character.Torso.Size.Z)
  5844. ayybleed.Transparency = 1
  5845. ayybleed.CanCollide = false
  5846. ayybleed.CFrame = character.Torso.CFrame
  5847. ayybleed:BreakJoints()
  5848. local attachment1 = Instance.new('Attachment',ayybleed)
  5849. attachment1.Position = Vector3.new(0,-character.Torso.Size.Y/2,0)
  5850. attachment1.Orientation = Vector3.new(0, 0, -180)
  5851. local attachment0 = Instance.new('Attachment',character.Torso)
  5852. if attachment0 and attachment1 then
  5853. local constraint = Instance.new("HingeConstraint")
  5854. constraint.Attachment0 = attachment0
  5855. constraint.Attachment1 = attachment1
  5856. constraint.LimitsEnabled = true
  5857. constraint.UpperAngle = 0
  5858. constraint.LowerAngle = 0
  5859. constraint.Parent = character
  5860. end
  5861. local bleedBLEED= coroutine.wrap(function()
  5862. bleed(ayybleed)
  5863. end)
  5864. bleedBLEED()
  5865. end)
  5866. end
  5867. ragdollpart(character, "Right Arm")
  5868. ragdollpart(character, "Left Arm")
  5869. end
  5870. end)
  5871. end
  5872.  
  5873. function getAttachment0(character,attachmentName)
  5874. for _,child in next,character:GetChildren() do
  5875. local attachment = child:FindFirstChild(attachmentName)
  5876. if attachment then
  5877. return attachment
  5878. end
  5879. end
  5880. end
  5881.  
  5882. function ragdollpart(character,partname,attached,heded)
  5883. if heded ~= false then
  5884. local neck = Instance.new('Attachment',character.Head)
  5885. neck.Name = "NeckAttachment"
  5886. neck.Position = Vector3.new(0,-0.5,0)
  5887. else
  5888. local force = Instance.new('BodyForce',character.Head)
  5889. force.Force = Vector3.new(0,500,0)
  5890. game:GetService('Debris'):AddItem(force,0.25)
  5891. pcall(function()
  5892. local asdf = Instance.new('Attachment',character.Head)
  5893. asdf.Position = Vector3.new(0,-character.Head.Size.Y/2,0)
  5894. local last = asdf
  5895. for i=1,14 do
  5896. local bONE = Instance.new('Part',character)
  5897. bONE.BrickColor = BrickColor.new('Institutional white')
  5898. bONE.Size = Vector3.new(0.1,0.1,0.1)
  5899. bONE.CFrame = character.Head.CFrame+(character.Head.CFrame.upVector*-(i/10))
  5900. local lole = Instance.new('Attachment',bONE)
  5901. local hangurself = Instance.new('RopeConstraint',bONE)
  5902. hangurself.Attachment0 = lole
  5903. hangurself.Attachment1 = last
  5904. hangurself.Visible = true
  5905. hangurself.Thickness = 0.05
  5906. hangurself.Color = BrickColor.new('Bright red')
  5907. hangurself.Length = 0.2
  5908. last = lole
  5909. end
  5910. local bleedee = Instance.new('Part',character.Head)
  5911. bleedee.Size = Vector3.new(0.75,0.25,0.75)
  5912. bleedee.CanCollide = false
  5913. bleedee.Color = Frame_2.BackgroundColor3
  5914. bleedee.CFrame = character.Head.CFrame
  5915. local mehs = Instance.new('CylinderMesh',bleedee)
  5916. bleedee:BreakJoints()
  5917. local attachment1 = Instance.new('Attachment',bleedee)
  5918. attachment1.Position = Vector3.new(0,character.Head.Size.Y/2,0)
  5919. attachment1.Orientation = Vector3.new(0,0,180)
  5920. local attachment0 = Instance.new('Attachment',character.Head)
  5921. if attachment0 and attachment1 then
  5922. local constraint = Instance.new("HingeConstraint")
  5923. constraint.Attachment0 = attachment0
  5924. constraint.Attachment1 = attachment1
  5925. constraint.LimitsEnabled = true
  5926. constraint.UpperAngle = 0
  5927. constraint.LowerAngle = 0
  5928. constraint.Parent = character
  5929. end
  5930. spawn(function()
  5931. bleed(bleedee)
  5932. end)
  5933. end)
  5934. local thing = "Torso"
  5935. if character:FindFirstChild(thing) == nil then
  5936. thing = "UpperTorso"
  5937. end
  5938. pcall(function()
  5939. local bleedee = Instance.new('Part',character[thing])
  5940. bleedee.Size = Vector3.new(0.75,0,0.75)
  5941. bleedee.CanCollide = false
  5942. bleedee.Color = Frame_2.BackgroundColor3
  5943. bleedee.CFrame = character[thing].CFrame
  5944. local mehs = Instance.new('CylinderMesh',bleedee)
  5945. bleedee:BreakJoints()
  5946. local attachment1 = Instance.new('Attachment',bleedee)
  5947. attachment1.Position = Vector3.new(0,-character[thing].Size.Y/2,0)
  5948. attachment1.Orientation = Vector3.new(0,0,180)
  5949. local attachment0 = Instance.new('Attachment',character[thing])
  5950. if attachment0 and attachment1 then
  5951. local constraint = Instance.new("HingeConstraint")
  5952. constraint.Attachment0 = attachment0
  5953. constraint.Attachment1 = attachment1
  5954. constraint.LimitsEnabled = true
  5955. constraint.UpperAngle = 0
  5956. constraint.LowerAngle = 0
  5957. constraint.Parent = character
  5958. end
  5959. spawn(function()
  5960. bleed(bleedee)
  5961. end)
  5962. end)
  5963. end
  5964. pcall(function()
  5965. if workspace.PGSPhysicsSolverEnabled == false then
  5966. workspace.PGSPhysicsSolverEnabled = true
  5967. end
  5968. end)
  5969. if partname == "HumanoidRootPart" then
  5970. if character:FindFirstChild('Torso') then
  5971. partname = "Torso"
  5972. else
  5973. partname = "UpperTorso"
  5974. end
  5975. end
  5976. if attached == false then
  5977. if character:FindFirstChild('UpperTorso') then
  5978. pcall(function()
  5979. character.UpperTorso.WaistRigAttachment:Destroy()
  5980. end)
  5981. pcall(function()
  5982. local ayybleed = Instance.new('Part',character)
  5983. ayybleed.Size = Vector3.new(character.UpperTorso.Size.X,0,character.UpperTorso.Size.Z)
  5984. ayybleed.Transparency = 1
  5985. ayybleed.CanCollide = false
  5986. ayybleed.CFrame = character.UpperTorso.CFrame
  5987. ayybleed:BreakJoints()
  5988. ayybleed.Name = "ayybleed"
  5989. local attachment1 = Instance.new('Attachment',ayybleed)
  5990. attachment1.Position = Vector3.new(0,-character.UpperTorso.Size.Y/2,0)
  5991. attachment1.Orientation = Vector3.new(0,0,180)
  5992. local attachment0 = Instance.new('Attachment',character.UpperTorso)
  5993. if attachment0 and attachment1 then
  5994. local constraint = Instance.new("HingeConstraint")
  5995. constraint.Attachment0 = attachment0
  5996. constraint.Attachment1 = attachment1
  5997. constraint.LimitsEnabled = true
  5998. constraint.UpperAngle = 0
  5999. constraint.LowerAngle = 0
  6000. constraint.Parent = character
  6001. end
  6002. local bleedBLEED= coroutine.wrap(function()
  6003. bleed(ayybleed)
  6004. end)
  6005. bleedBLEED()
  6006. end)
  6007. pcall(function()
  6008. local ayybleed = Instance.new('Part',character)
  6009. ayybleed.Size = Vector3.new(character.LowerTorso.Size.X-0.1,0.1,character.LowerTorso.Size.Z-0.1)
  6010. ayybleed.Transparency = 1
  6011. ayybleed.CanCollide = false
  6012. ayybleed.CFrame = character.LowerTorso.CFrame
  6013. ayybleed:BreakJoints()
  6014. ayybleed.Name = "ayybleed"
  6015. local attachment1 = Instance.new('Attachment',ayybleed)
  6016. attachment1.Position = Vector3.new(0,-character.LowerTorso.Size.Y/2,0)
  6017. attachment1.Orientation = Vector3.new(0,0,0)
  6018. local attachment0 = Instance.new('Attachment',character.LowerTorso)
  6019. if attachment0 and attachment1 then
  6020. local constraint = Instance.new("HingeConstraint")
  6021. constraint.Attachment0 = attachment0
  6022. constraint.Attachment1 = attachment1
  6023. constraint.LimitsEnabled = true
  6024. constraint.UpperAngle = 0
  6025. constraint.LowerAngle = 0
  6026. constraint.Parent = character
  6027. end
  6028. local bleedBLEED= coroutine.wrap(function()
  6029. bleed(ayybleed)
  6030. end)
  6031. bleedBLEED()
  6032. end)
  6033. end
  6034. pcall(function()
  6035. local thang = "Torso"
  6036. if character:FindFirstChild('UpperTorso') then
  6037. thang = "UpperTorso"
  6038. end
  6039. local ayybleed = Instance.new('Part',character)
  6040. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6041. ayybleed.Color = Frame_2.BackgroundColor3
  6042. ayybleed.Material = Enum.Material.SmoothPlastic
  6043. ayybleed.Name = "ayybleed"
  6044. ayybleed.CanCollide = false
  6045. ayybleed.Transparency = 0
  6046. ayybleed.CFrame = character[thang].CFrame
  6047. ayybleed:BreakJoints()
  6048. local attachment1 = Instance.new('Attachment',ayybleed)
  6049. attachment1.Position = Vector3.new(0,(character[thang].Size.Y/2)-0.045,0)
  6050. attachment1.Orientation = Vector3.new(0,0,0)
  6051. local attachment0 = Instance.new('Attachment',character[thang])
  6052. if attachment0 and attachment1 then
  6053. local constraint = Instance.new("HingeConstraint")
  6054. constraint.Attachment0 = attachment0
  6055. constraint.Attachment1 = attachment1
  6056. constraint.LimitsEnabled = true
  6057. constraint.UpperAngle = 0
  6058. constraint.LowerAngle = 0
  6059. constraint.Parent = character
  6060. end
  6061. end)
  6062. pcall(function()
  6063. local ree = character.LowerTorso
  6064. local thang = "LowerTorso"
  6065. local ayybleed = Instance.new('Part',character)
  6066. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6067. ayybleed.Color = Frame_2.BackgroundColor3
  6068. ayybleed.Material = Enum.Material.SmoothPlastic
  6069. ayybleed.Name = "ayybleed"
  6070. ayybleed.CanCollide = false
  6071. ayybleed.Transparency = 0
  6072. ayybleed.CFrame = character[thang].CFrame
  6073. ayybleed:BreakJoints()
  6074. local attachment1 = Instance.new('Attachment',ayybleed)
  6075. attachment1.Position = Vector3.new(0,(-character[thang].Size.Y/2)+0.045,0)
  6076. attachment1.Orientation = Vector3.new(0,0,0)
  6077. local attachment0 = Instance.new('Attachment',character[thang])
  6078. if attachment0 and attachment1 then
  6079. local constraint = Instance.new("HingeConstraint")
  6080. constraint.Attachment0 = attachment0
  6081. constraint.Attachment1 = attachment1
  6082. constraint.LimitsEnabled = true
  6083. constraint.UpperAngle = 0
  6084. constraint.LowerAngle = 0
  6085. constraint.Parent = character
  6086. end
  6087. end)
  6088. pcall(function()
  6089. local ree = character["Right Leg"]
  6090. local thang = "Right Leg"
  6091. local ayybleed = Instance.new('Part',character)
  6092. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6093. ayybleed.Color = Frame_2.BackgroundColor3
  6094. ayybleed.Material = Enum.Material.SmoothPlastic
  6095. ayybleed.Name = "ayybleed"
  6096. ayybleed.CanCollide = false
  6097. ayybleed.Transparency = 0
  6098. ayybleed.CFrame = character[thang].CFrame
  6099. ayybleed:BreakJoints()
  6100. local attachment1 = Instance.new('Attachment',ayybleed)
  6101. attachment1.Position = Vector3.new(0,(-character[thang].Size.Y/2)+0.045,0)
  6102. attachment1.Orientation = Vector3.new(0,0,0)
  6103. local attachment0 = Instance.new('Attachment',character[thang])
  6104. if attachment0 and attachment1 then
  6105. local constraint = Instance.new("HingeConstraint")
  6106. constraint.Attachment0 = attachment0
  6107. constraint.Attachment1 = attachment1
  6108. constraint.LimitsEnabled = true
  6109. constraint.UpperAngle = 0
  6110. constraint.LowerAngle = 0
  6111. constraint.Parent = character
  6112. end
  6113. end)
  6114. pcall(function()
  6115. local ree = character["Left Leg"]
  6116. local thang = "Left Leg"
  6117. local ayybleed = Instance.new('Part',character)
  6118. ayybleed.Size = Vector3.new(character[thang].Size.X-0.1,0.1,character[thang].Size.Z-0.1)
  6119. ayybleed.Color = Frame_2.BackgroundColor3
  6120. ayybleed.Material = Enum.Material.SmoothPlastic
  6121. ayybleed.Name = "ayybleed"
  6122. ayybleed.CanCollide = false
  6123. ayybleed.Transparency = 0
  6124. ayybleed.CFrame = character[thang].CFrame
  6125. ayybleed:BreakJoints()
  6126. local attachment1 = Instance.new('Attachment',ayybleed)
  6127. attachment1.Position = Vector3.new(0,(-character[thang].Size.Y/2)+0.045,0)
  6128. attachment1.Orientation = Vector3.new(0,0,0)
  6129. local attachment0 = Instance.new('Attachment',character[thang])
  6130. if attachment0 and attachment1 then
  6131. local constraint = Instance.new("HingeConstraint")
  6132. constraint.Attachment0 = attachment0
  6133. constraint.Attachment1 = attachment1
  6134. constraint.LimitsEnabled = true
  6135. constraint.UpperAngle = 0
  6136. constraint.LowerAngle = 0
  6137. constraint.Parent = character
  6138. end
  6139. end)
  6140. partname="Head"
  6141. end
  6142. if partname == "RightHand" or partname == "RightLowerArm" or partname == "RightUpperArm" then
  6143. if character:FindFirstChild('RightLowerArm') and character:FindFirstChild('RightHand') then
  6144. ragdollJoint(character,character.RightLowerArm, character.RightHand, "RightWrist", "Hinge", handProperties)
  6145. end
  6146. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('RightUpperArm') then
  6147. ragdollJoint(character, character.UpperTorso, character["RightUpperArm"], "RightShoulder", "BallSocket")
  6148. end
  6149. if character:FindFirstChild('RightUpperArm') and character:FindFirstChild('RightLowerArm') then
  6150. ragdollJoint(character, character.RightUpperArm, character.RightLowerArm, "RightElbow", "BallSocket")
  6151. end
  6152. elseif partname == "LeftHand" or partname == "LeftLowerArm" or partname == "LeftUpperArm" then
  6153. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftHand') then
  6154. ragdollJoint(character,character.LeftLowerArm, character.LeftHand, "LeftWrist", "Hinge", handProperties)
  6155. end
  6156. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LeftUpperArm') then
  6157. ragdollJoint(character, character.UpperTorso, character["LeftUpperArm"], "LeftShoulder", "BallSocket")
  6158. end
  6159. if character:FindFirstChild('LeftUpperArm') and character:FindFirstChild('LeftLowerArm') then
  6160. ragdollJoint(character, character.LeftUpperArm, character.LeftLowerArm, "LeftElbow", "BallSocket")
  6161. end
  6162. elseif partname == "RightFoot" or partname == "RightUpperLeg" or partname == "RightLowerLeg" then
  6163. stun(character)
  6164. if character:FindFirstChild('RightUpperLeg') and character:FindFirstChild('RightLowerLeg') then
  6165. ragdollJoint(character,character.RightUpperLeg, character.RightLowerLeg, "RightKnee", "Hinge", shinProperties)
  6166. end
  6167. if character:FindFirstChild('RightLowerLeg') and character:FindFirstChild('RightFoot') then
  6168. ragdollJoint(character,character.RightLowerLeg, character.RightFoot, "RightAnkle", "Hinge", footProperties)
  6169. end
  6170. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('RightUpperLeg') then
  6171. ragdollJoint(character,character.LowerTorso, character.RightUpperLeg, "RightHip", "BallSocket")
  6172. end
  6173. elseif partname == "LeftFoot" or partname == "LeftUpperLeg" or partname == "LeftLowerLeg" then
  6174. stun(character)
  6175. if character:FindFirstChild('LeftUpperLeg') and character:FindFirstChild('LeftLowerLeg') then
  6176. ragdollJoint(character,character.LeftUpperLeg, character.LeftLowerLeg, "LeftKnee", "Hinge", shinProperties)
  6177. end
  6178. if character:FindFirstChild('LeftLowerLeg') and character:FindFirstChild('LeftFoot') then
  6179. ragdollJoint(character,character.LeftLowerLeg, character.LeftFoot, "LeftAnkle", "Hinge", footProperties)
  6180. end
  6181. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('LeftUpperLeg') then
  6182. ragdollJoint(character,character.LowerTorso, character.LeftUpperLeg, "LeftHip", "BallSocket")
  6183. end
  6184. elseif partname == "Head" or partname == "UpperTorso" or partname == "LowerTorso" then
  6185. if character:FindFirstChildOfClass('Humanoid') and character:FindFirstChildOfClass('Humanoid').RigType == Enum.HumanoidRigType.R15 then
  6186. if character:FindFirstChildOfClass('Humanoid') then
  6187. character:FindFirstChildOfClass('Humanoid').Health = 0
  6188. end
  6189. if character:FindFirstChild('HumanoidRootPart') then
  6190. character.HumanoidRootPart:Destroy()
  6191. end
  6192. while character:FindFirstChildOfClass('Humanoid').Health > 0 do wait() end
  6193. game:GetService('Debris'):AddItem(character,10)
  6194. for _,child in next,character:GetChildren() do
  6195. if child:IsA("Accoutrement") then
  6196. for _,part in next,child:GetChildren() do
  6197. if part:IsA("BasePart") then
  6198. for _,c in pairs(part:GetChildren()) do
  6199. if c:IsA('Weld') then c:Destroy() end
  6200. end
  6201. local attachment1 = part:FindFirstChildOfClass("Attachment")
  6202. local attachment0 = getAttachment0(character,attachment1.Name)
  6203. if attachment0 and attachment1 then
  6204. local constraint = Instance.new("HingeConstraint")
  6205. constraint.Attachment0 = attachment0
  6206. constraint.Attachment1 = attachment1
  6207. constraint.LimitsEnabled = true
  6208. constraint.UpperAngle = 0
  6209. constraint.LowerAngle = 0
  6210. constraint.Parent = character
  6211. end
  6212. end
  6213. end
  6214. end
  6215. end
  6216. for i,v in pairs(character:GetChildren()) do
  6217. if v:IsA('MeshPart') or v:IsA('BasePart') then
  6218. for _,c in pairs(v:GetChildren()) do
  6219. if c.Name == "Collision" then c:Destroy() end
  6220. end
  6221. end
  6222. end
  6223. if heded == false then
  6224. pcall(function()
  6225. local asdf = Instance.new('Attachment',character.Head)
  6226. asdf.Position = Vector3.new(0,-character.Head.Size.Y/2,0)
  6227. local last = asdf
  6228. character.Head.Neck:Destroy()
  6229. character.Head.NeckRigAttachment:Destroy()
  6230. character.UpperTorso:FindFirstChild('NeckAttachment'):Destroy()
  6231. end)
  6232. end
  6233. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LowerTorso') then
  6234. ragdollJoint(character,character.LowerTorso, character.UpperTorso, "Waist", "BallSocket", {
  6235. {"LimitsEnabled",true};
  6236. {"UpperAngle",5};
  6237. {"Radius",5};
  6238. })
  6239. end
  6240. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('Head') then
  6241. ragdollJoint(character,character.UpperTorso, character.Head, "Neck", "Hinge", {
  6242. {"LimitsEnabled",true};
  6243. {"UpperAngle",50};
  6244. {"LowerAngle",-50};
  6245. })
  6246. end
  6247.  
  6248. local handProperties = {
  6249. {"LimitsEnabled", true};
  6250. {"UpperAngle",0};
  6251. {"LowerAngle",0};
  6252. }
  6253. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftHand') then
  6254. ragdollJoint(character,character.LeftLowerArm, character.LeftHand, "LeftWrist", "Hinge", handProperties)
  6255. end
  6256. if character:FindFirstChild('RightLowerArm') and character:FindFirstChild('RightHand') then
  6257. ragdollJoint(character,character.RightLowerArm, character.RightHand, "RightWrist", "Hinge", handProperties)
  6258. end
  6259.  
  6260. local shinProperties = {
  6261. {"LimitsEnabled", true};
  6262. {"UpperAngle", 0};
  6263. {"LowerAngle", -75};
  6264. }
  6265. if character:FindFirstChild('LeftUpperLeg') and character:FindFirstChild('LeftLowerLeg') then
  6266. ragdollJoint(character,character.LeftUpperLeg, character.LeftLowerLeg, "LeftKnee", "Hinge", shinProperties)
  6267. end
  6268. if character:FindFirstChild('RightUpperLeg') and character:FindFirstChild('RightLowerLeg') then
  6269. ragdollJoint(character,character.RightUpperLeg, character.RightLowerLeg, "RightKnee", "Hinge", shinProperties)
  6270. end
  6271.  
  6272. local footProperties = {
  6273. {"LimitsEnabled", true};
  6274. {"UpperAngle", 15};
  6275. {"LowerAngle", -45};
  6276. }
  6277. if character:FindFirstChild('LeftLowerLeg') and character:FindFirstChild('LeftFoot') then
  6278. ragdollJoint(character,character.LeftLowerLeg, character.LeftFoot, "LeftAnkle", "Hinge", footProperties)
  6279. end
  6280. if character:FindFirstChild('RightLowerLeg') and character:FindFirstChild('RightFoot') then
  6281. ragdollJoint(character,character.RightLowerLeg, character.RightFoot, "RightAnkle", "Hinge", footProperties)
  6282. end
  6283. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('LeftUpperArm') then
  6284. ragdollJoint(character,character.UpperTorso, character.LeftUpperArm, "LeftShoulder", "BallSocket")
  6285. end
  6286. if character:FindFirstChild('LeftLowerArm') and character:FindFirstChild('LeftUpperArm') then
  6287. ragdollJoint(character,character.LeftUpperArm, character.LeftLowerArm, "LeftElbow", "BallSocket")
  6288. end
  6289. if character:FindFirstChild('UpperTorso') and character:FindFirstChild('RightUpperArm') then
  6290. ragdollJoint(character,character.UpperTorso, character.RightUpperArm, "RightShoulder", "BallSocket")
  6291. end
  6292. if character:FindFirstChild('RightUpperArm') and character:FindFirstChild('RightLowerArm') then
  6293. ragdollJoint(character,character.RightUpperArm, character.RightLowerArm, "RightElbow", "BallSocket")
  6294. end
  6295. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('LeftUpperLeg') then
  6296. ragdollJoint(character,character.LowerTorso, character.LeftUpperLeg, "LeftHip", "BallSocket")
  6297. end
  6298. if character:FindFirstChild('LowerTorso') and character:FindFirstChild('RightUpperLeg') then
  6299. ragdollJoint(character,character.LowerTorso, character.RightUpperLeg, "RightHip", "BallSocket")
  6300. end
  6301. if character:FindFirstChild('HumanoidRootPart') then
  6302. character.HumanoidRootPart:Destroy()
  6303. end
  6304. else
  6305. R6ragdollJoint(character,partname,attached,heded)
  6306. end
  6307. else
  6308. R6ragdollJoint(character,partname,attached,heded)
  6309. end
  6310. end
  6311.  
  6312. function grow(weld,part,endsize,endpos,amntime)
  6313. local start = weld.C1
  6314. local parent = weld.Parent
  6315. local startsize = part.Size
  6316. local particl = Instance.new("ParticleEmitter")
  6317. particl.LightEmission = 3
  6318. particl.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(42, 0, 255)), ColorSequenceKeypoint.new(0.1, Color3.fromRGB(248, 153, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 0))})
  6319. particl.LightInfluence = 0.75
  6320. particl.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  6321. particl.Lifetime = NumberRange.new(0.1, 1)
  6322. particl.Rate = 50
  6323. particl.RotSpeed = NumberRange.new(300, 300)
  6324. particl.Speed = NumberRange.new(0, 1)
  6325. particl.SpreadAngle = Vector2.new(90, 90)
  6326. particl.Parent = part
  6327. for i=1,amntime*100 do
  6328. weld.C1 = start:lerp(endpos,i/(amntime*100))
  6329. part.Size = startsize:lerp(endsize,i/(amntime*100))
  6330. weld.Parent = parent
  6331. wait(0.01)
  6332. end
  6333. particl.Enabled = false
  6334. end
  6335. function lerp(weld,startpos,endpos,amntime,longatend)
  6336. local waited = 0
  6337. for i=1,amntime*100 do
  6338. if longatend == true then
  6339. startpos = weld.C0
  6340. end
  6341. weld.C0 = startpos:lerp(endpos,i/(amntime*100))
  6342. wait(0.01)
  6343. waited=waited+0.01
  6344. end
  6345. end
  6346.  
  6347. function spawned()
  6348. local usable = true
  6349. local working = false
  6350. local mode = "kill"
  6351. local equipped = false
  6352. local char = player.Character
  6353. local blademode = "handle"
  6354. local swinging = false
  6355. local gettingeem = false
  6356. local MOAN = false
  6357. local sounding = false
  6358. local SLESH = false
  6359. local goteem = nil
  6360. local grabbing = false
  6361. local grabbed = nil
  6362. local grabweld = nil
  6363. local aidsificating = nil
  6364. player.CharacterAdded:connect(function()
  6365. if usable then
  6366. usable = false
  6367. end
  6368. end)
  6369. if char == nil then return end
  6370. while char:FindFirstChildOfClass('Humanoid') == nil or char:FindFirstChild('Head') == nil do wait() end
  6371. local badass = Instance.new('Sound',char.Head)
  6372. badass.Name = 'Badass'
  6373. badass.EmitterSize = player.CameraMaxZoomDistance+1
  6374. badass.MaxDistance = player.CameraMaxZoomDistance+1
  6375. badass.Volume = 10
  6376. badass.Looped=true
  6377. badass.SoundId = 'rbxassetid://569913318'
  6378. local handle = Instance.new("Part", char)
  6379. handle.BrickColor = BrickColor.new("Really black")
  6380. handle.Material = "Metal"
  6381. handle.CanCollide = false
  6382. handle.Anchored = false
  6383. handle.Shape = "Cylinder"
  6384. handle.Size = Vector3.new(1.1, 0.3, 0.3)
  6385. handle.BackSurface = "SmoothNoOutlines"
  6386. handle.BottomSurface = "SmoothNoOutlines"
  6387. handle.FrontSurface = "SmoothNoOutlines"
  6388. handle.LeftSurface = "SmoothNoOutlines"
  6389. handle.RightSurface = "SmoothNoOutlines"
  6390. handle.TopSurface = "SmoothNoOutlines"
  6391. handle.Name = "handle"
  6392.  
  6393. local hweld = Instance.new("Weld", char.Torso)
  6394. hweld.Part0 = char.Torso
  6395. hweld.Part1 = handle
  6396. hweld.C0 = CFrame.new(1, -0.8, 0) * CFrame.Angles(0, math.rad(90), 0)
  6397.  
  6398. local rdd = false
  6399. function oogabooga()
  6400. if rdd == false then
  6401. rdd = true
  6402. pcall(function()
  6403. ragdollpart(char,"Right Arm")
  6404. ragdollpart(char,"Right Leg")
  6405. ragdollpart(char,"Left Arm")
  6406. ragdollpart(char,"Left Leg")
  6407. end)
  6408. pcall(function()
  6409. ragdollpart(char,"RightUpperArm")
  6410. ragdollpart(char,"RightUpperLeg")
  6411. ragdollpart(char,"LeftUpperArm")
  6412. ragdollpart(char,"LeftUpperLeg")
  6413. end)
  6414. unstun(char)
  6415. for i,v in pairs(char:GetChildren()) do
  6416. v.ChildAdded:connect(function(child)
  6417. if rdd == true then
  6418. if child.Name ~= "Neck" and child.Name ~= "RootJoint" and child.Name ~= "Root" and (child:IsA('Motor6D') or child:IsA('Weld')) then
  6419. if child ~= grabweld then
  6420. spawn(function()
  6421. wait()
  6422. child:Destroy()
  6423. end)
  6424. end
  6425. end
  6426. end
  6427. end)
  6428. if string.find(string.lower(v.Name),'leg') then
  6429. if v:FindFirstChild('Collision') then
  6430. v:FindFirstChild('Collision'):Destroy()
  6431. end
  6432. end
  6433. end
  6434. else
  6435. rdd = false
  6436. for i,v in pairs(char:GetChildren()) do
  6437. if v:IsA('HingeConstraint') or v:IsA('BallSocketConstraint') then
  6438. v:Destroy()
  6439. elseif v:IsA('BasePart') then
  6440. if v:FindFirstChild('Collision') then
  6441. v.Collision:Destroy()
  6442. end
  6443. for a,c in pairs(v:GetChildren()) do
  6444. if string.find(string.lower(c.Name),"ragdoll") then
  6445. c:Destroy()
  6446. end
  6447. end
  6448. end
  6449. end
  6450. pcall(function()
  6451. local ra = rightclone:Clone()
  6452. ra.Parent = char.Torso
  6453. ra.Part0 = char.Torso
  6454. ra.Part1 = char["Right Arm"]
  6455. end)
  6456. pcall(function()
  6457. local la = leftclone:Clone()
  6458. la.Parent = char.Torso
  6459. la.Part0 = char.Torso
  6460. la.Part1 = char["Left Arm"]
  6461. end)
  6462. pcall(function()
  6463. local ll = leftlegclone:Clone()
  6464. ll.Parent = char.Torso
  6465. ll.Part0 = char.Torso
  6466. ll.Part1 = char["Left Leg"]
  6467. end)
  6468. pcall(function()
  6469. local rl = rightlegclone:Clone()
  6470. rl.Parent = char.Torso
  6471. rl.Part0 = char.Torso
  6472. rl.Part1 = char["Right Leg"]
  6473. end)
  6474. end
  6475. end
  6476. function getrid()
  6477. if grabbed then
  6478. release()
  6479. end
  6480. blademode = "handle"
  6481. for _,ree in pairs(handle:GetChildren()) do
  6482. if ree:IsA('BasePart') then
  6483. local part = Instance.new('Part',workspace)
  6484. part.CFrame = ree.CFrame
  6485. part.Anchored = true
  6486. part.CanCollide = false
  6487. part.Size = ree.Size
  6488. part.Transparency = 1
  6489. ree:Destroy()
  6490. local pe2 = Instance.new("ParticleEmitter")
  6491. pe2.Acceleration = Vector3.new(0, 1, 0)
  6492. pe2.Lifetime = NumberRange.new(0.1, 0.2)
  6493. pe2.Speed = NumberRange.new(0.5)
  6494. pe2.Rate = 20000
  6495. pe2.RotSpeed = NumberRange.new(-30, 30)
  6496. pe2.Rotation = NumberRange.new(0, 360)
  6497. pe2.Size = NumberSequence.new({
  6498. NumberSequenceKeypoint.new(0, part.Size.X*2, 0),
  6499. NumberSequenceKeypoint.new(1, part.Size.X*2, 0),
  6500. })
  6501. pe2.Texture = "rbxassetid://244221440"
  6502. pe2.Transparency = NumberSequence.new({
  6503. NumberSequenceKeypoint.new(0, 0.9, 0),
  6504. NumberSequenceKeypoint.new(1, 0.9, 0)
  6505. })
  6506. pe2.ZOffset = 5
  6507. pe2.VelocitySpread = 360
  6508. pe2.Parent = part
  6509. pe2.Enabled = true
  6510. local coru=coroutine.wrap(function()
  6511. wait(0.2)
  6512. pe2.Enabled = false
  6513. game:GetService('Debris'):AddItem(part,0.5)
  6514. end)
  6515. coru()
  6516. else
  6517. ree:Remove()
  6518. end
  6519. end
  6520. end
  6521.  
  6522. function equip()
  6523. equipped = true
  6524. working = true
  6525. if char.Torso:FindFirstChild("Right Shoulder") then
  6526. char.Torso:FindFirstChild("Right Shoulder"):Destroy()
  6527. end
  6528. local weld = Instance.new('Weld', char.Torso)
  6529. weld.Name = "Lerping"
  6530. weld.Part0 = char["Right Arm"]
  6531. weld.Part1 = char.Torso
  6532. weld.C0 = CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0)
  6533.  
  6534. lerp(weld,weld.C0,CFrame.new(-1.3, -0.5, 0) * CFrame.Angles(0, 0, math.rad(15)),0.12,true)
  6535.  
  6536. wait(0.1)
  6537.  
  6538. hweld.Part0 = char["Right Arm"]
  6539. hweld.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0)
  6540.  
  6541. lerp(weld,weld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  6542.  
  6543. weld:Destroy()
  6544. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  6545. local clone = rightclone:Clone()
  6546. clone.Part0 = char.Torso
  6547. clone.Part1 = char["Right Arm"]
  6548. clone.Parent = char.Torso
  6549. end
  6550. working = false
  6551. end
  6552.  
  6553. function unequip()
  6554. getrid(handle)
  6555. equipped = false
  6556. working = true
  6557.  
  6558. if char.Torso:FindFirstChild("Right Shoulder") then
  6559. char.Torso:FindFirstChild("Right Shoulder"):Destroy()
  6560. end
  6561.  
  6562. local weld = Instance.new('Weld', char.Torso)
  6563. weld.Name = "Lerping"
  6564. weld.Part0 = char["Right Arm"]
  6565. weld.Part1 = char.Torso
  6566. weld.C0 = CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0)
  6567.  
  6568.  
  6569. lerp(weld,weld.C0,CFrame.new(-1.3, -0.5, 0) * CFrame.Angles(0, 0, math.rad(15)),0.12,true)
  6570.  
  6571. hweld.Part0 = char["Torso"]
  6572. hweld.C0 = CFrame.new(1, -0.8, 0) * CFrame.Angles(0, math.rad(90), 0)
  6573. lerp(weld,weld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08,true)
  6574. weld:Destroy()
  6575. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  6576. local clone = rightclone:Clone()
  6577. clone.Part0 = char.Torso
  6578. clone.Part1 = char["Right Arm"]
  6579. clone.Parent = char.Torso
  6580. end
  6581. working = false
  6582. end
  6583.  
  6584. function dildo()
  6585. blademode = "dildo"
  6586. working = true
  6587. -- 1 - pink toy
  6588. local obj1 = Instance.new("Model")
  6589. obj1.Name = "pink toy"
  6590. obj1.Parent = handle
  6591.  
  6592. -- 2 - Model
  6593. local obj2 = Instance.new("Model")
  6594. obj2.Parent = obj1
  6595.  
  6596. -- 3 - Part
  6597. local obj3 = Instance.new("Part")
  6598. obj3.CFrame = CFrame.new(Vector3.new(66.8643951, 3.86435986, 7.14990711)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6599. obj3.CanCollide = false
  6600. obj3.TopSurface = Enum.SurfaceType.Smooth
  6601. obj3.BottomSurface = Enum.SurfaceType.Smooth
  6602. obj3.Material = Enum.Material.SmoothPlastic
  6603. obj3.Size = Vector3.new(1.00000024, 1.00000024, 1.00000024)
  6604. obj3.BrickColor = BrickColor.new("Hot pink")
  6605. obj3.Friction = 0.30000001192093
  6606. obj3.Shape = Enum.PartType.Ball
  6607. obj3.Parent = obj2
  6608. obj3.Name = "tip"
  6609.  
  6610. -- 4 - Part
  6611. local obj4 = Instance.new("Part")
  6612. obj4.CFrame = CFrame.new(Vector3.new(67.8275909, 2.08898449, 7.50048351)) * CFrame.Angles(9.1487750708552e-09, -0.34906616806984, -1.0471986532211)
  6613. obj4.CanCollide = false
  6614. obj4.TopSurface = Enum.SurfaceType.Smooth
  6615. obj4.BottomSurface = Enum.SurfaceType.Smooth
  6616. obj4.Material = Enum.Material.SmoothPlastic
  6617. obj4.Size = Vector3.new(4.09999943, 1, 1)
  6618. obj4.BrickColor = BrickColor.new("Hot pink")
  6619. obj4.Friction = 0.30000001192093
  6620. obj4.Shape = Enum.PartType.Cylinder
  6621. obj4.Parent = obj2
  6622.  
  6623. -- 5 - Part
  6624. local obj5 = Instance.new("Part")
  6625. obj5.CFrame = CFrame.new(Vector3.new(66.7104797, 3.86435843, 7.57276678)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6626. obj5.CanCollide = false
  6627. obj5.TopSurface = Enum.SurfaceType.Smooth
  6628. obj5.BottomSurface = Enum.SurfaceType.Smooth
  6629. obj5.Material = Enum.Material.SmoothPlastic
  6630. obj5.Size = Vector3.new(0.25, 0.25, 0.25)
  6631. obj5.BrickColor = BrickColor.new("Hot pink")
  6632. obj5.Friction = 0.30000001192093
  6633. obj5.Shape = Enum.PartType.Ball
  6634. obj5.Parent = obj2
  6635.  
  6636. -- 6 - Part
  6637. local obj6 = Instance.new("Part")
  6638. obj6.CFrame = CFrame.new(Vector3.new(68.6905365, 0.83212769, 8.29345417)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.7925276756287)
  6639. obj6.CanCollide = false
  6640. obj6.TopSurface = Enum.SurfaceType.Smooth
  6641. obj6.BottomSurface = Enum.SurfaceType.Smooth
  6642. obj6.Material = Enum.Material.SmoothPlastic
  6643. obj6.Size = Vector3.new(0.999999762, 0.999999762, 0.999999762)
  6644. obj6.BrickColor = BrickColor.new("Hot pink")
  6645. obj6.Friction = 0.30000001192093
  6646. obj6.Shape = Enum.PartType.Ball
  6647. obj6.Parent = obj2
  6648.  
  6649. -- 7 - Part
  6650. local obj7 = Instance.new("Part")
  6651. obj7.CFrame = CFrame.new(Vector3.new(67.0182953, 3.86435866, 6.72704411)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6652. obj7.CanCollide = false
  6653. obj7.TopSurface = Enum.SurfaceType.Smooth
  6654. obj7.BottomSurface = Enum.SurfaceType.Smooth
  6655. obj7.Material = Enum.Material.SmoothPlastic
  6656. obj7.Size = Vector3.new(0.25, 0.25, 0.25)
  6657. obj7.BrickColor = BrickColor.new("Hot pink")
  6658. obj7.Friction = 0.30000001192093
  6659. obj7.Shape = Enum.PartType.Ball
  6660. obj7.Parent = obj2
  6661.  
  6662. -- 8 - Part
  6663. local obj8 = Instance.new("Part")
  6664. obj8.CFrame = CFrame.new(Vector3.new(68.9983597, 0.832128167, 7.44772816)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.7925276756287)
  6665. obj8.CanCollide = false
  6666. obj8.TopSurface = Enum.SurfaceType.Smooth
  6667. obj8.BottomSurface = Enum.SurfaceType.Smooth
  6668. obj8.Material = Enum.Material.SmoothPlastic
  6669. obj8.Size = Vector3.new(0.999999762, 0.999999762, 0.999999762)
  6670. obj8.BrickColor = BrickColor.new("Hot pink")
  6671. obj8.Friction = 0.30000001192093
  6672. obj8.Shape = Enum.PartType.Ball
  6673. obj8.Parent = obj2
  6674. local fiREPART = obj8
  6675.  
  6676. -- 9 - Part
  6677. local obj9 = Instance.new("Part")
  6678. obj9.CFrame = CFrame.new(Vector3.new(68.8566208, 0.357954353, 7.87501621)) * CFrame.Angles(9.1487750708552e-09, -0.34906616806984, -1.2217314243317)
  6679. obj9.CanCollide = false
  6680. obj9.TopSurface = Enum.SurfaceType.Smooth
  6681. obj9.BottomSurface = Enum.SurfaceType.Smooth
  6682. obj9.Material = Enum.Material.SmoothPlastic
  6683. obj9.Size = Vector3.new(0.0999999791, 1.50000036, 2)
  6684. obj9.BrickColor = BrickColor.new("Hot pink")
  6685. obj9.Friction = 0.30000001192093
  6686. obj9.Shape = Enum.PartType.Cylinder
  6687. obj9.Parent = obj2
  6688.  
  6689. -- 10 - Part
  6690. local obj10 = Instance.new("Part")
  6691. obj10.CFrame = CFrame.new(Vector3.new(66.8069, 3.58244801, 7.60786104)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6692. obj10.CanCollide = false
  6693. obj10.TopSurface = Enum.SurfaceType.Smooth
  6694. obj10.BottomSurface = Enum.SurfaceType.Smooth
  6695. obj10.Material = Enum.Material.SmoothPlastic
  6696. obj10.Size = Vector3.new(0.25, 0.25, 0.25)
  6697. obj10.BrickColor = BrickColor.new("Hot pink")
  6698. obj10.Friction = 0.30000001192093
  6699. obj10.Shape = Enum.PartType.Ball
  6700. obj10.Parent = obj2
  6701.  
  6702. -- 11 - Part
  6703. local obj11 = Instance.new("Part")
  6704. obj11.CFrame = CFrame.new(Vector3.new(67.196106, 3.632447, 6.79175806)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6705. obj11.CanCollide = false
  6706. obj11.TopSurface = Enum.SurfaceType.Smooth
  6707. obj11.BottomSurface = Enum.SurfaceType.Smooth
  6708. obj11.Material = Enum.Material.SmoothPlastic
  6709. obj11.Size = Vector3.new(0.25, 0.25, 0.25)
  6710. obj11.BrickColor = BrickColor.new("Hot pink")
  6711. obj11.Friction = 0.30000001192093
  6712. obj11.Shape = Enum.PartType.Ball
  6713. obj11.Parent = obj2
  6714.  
  6715. -- 12 - Part
  6716. local obj12 = Instance.new("Part")
  6717. obj12.CFrame = CFrame.new(Vector3.new(67.0756683, 3.77002549, 7.63403416)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6718. obj12.CanCollide = false
  6719. obj12.TopSurface = Enum.SurfaceType.Smooth
  6720. obj12.BottomSurface = Enum.SurfaceType.Smooth
  6721. obj12.Material = Enum.Material.SmoothPlastic
  6722. obj12.Size = Vector3.new(0.25, 0.25, 0.25)
  6723. obj12.BrickColor = BrickColor.new("Hot pink")
  6724. obj12.Friction = 0.30000001192093
  6725. obj12.Shape = Enum.PartType.Ball
  6726. obj12.Parent = obj2
  6727.  
  6728. -- 13 - Part
  6729. local obj13 = Instance.new("Part")
  6730. obj13.CFrame = CFrame.new(Vector3.new(67.4108353, 3.27276325, 6.88037825)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6731. obj13.CanCollide = false
  6732. obj13.TopSurface = Enum.SurfaceType.Smooth
  6733. obj13.BottomSurface = Enum.SurfaceType.Smooth
  6734. obj13.Material = Enum.Material.SmoothPlastic
  6735. obj13.Size = Vector3.new(0.25, 0.25, 0.25)
  6736. obj13.BrickColor = BrickColor.new("Hot pink")
  6737. obj13.Friction = 0.30000001192093
  6738. obj13.Shape = Enum.PartType.Ball
  6739. obj13.Parent = obj2
  6740.  
  6741. -- 14 - Part
  6742. local obj14 = Instance.new("Part")
  6743. obj14.CFrame = CFrame.new(Vector3.new(66.868927, 3.43238807, 6.82578087)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6744. obj14.CanCollide = false
  6745. obj14.TopSurface = Enum.SurfaceType.Smooth
  6746. obj14.BottomSurface = Enum.SurfaceType.Smooth
  6747. obj14.Material = Enum.Material.SmoothPlastic
  6748. obj14.Size = Vector3.new(0.25, 0.25, 0.25)
  6749. obj14.BrickColor = BrickColor.new("Hot pink")
  6750. obj14.Friction = 0.30000001192093
  6751. obj14.Shape = Enum.PartType.Ball
  6752. obj14.Parent = obj2
  6753.  
  6754. -- 15 - Part
  6755. local obj15 = Instance.new("Part")
  6756. obj15.CFrame = CFrame.new(Vector3.new(67.1951675, 3.383008, 7.69050598)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6757. obj15.CanCollide = false
  6758. obj15.TopSurface = Enum.SurfaceType.Smooth
  6759. obj15.BottomSurface = Enum.SurfaceType.Smooth
  6760. obj15.Material = Enum.Material.SmoothPlastic
  6761. obj15.Size = Vector3.new(0.25, 0.25, 0.25)
  6762. obj15.BrickColor = BrickColor.new("Hot pink")
  6763. obj15.Friction = 0.30000001192093
  6764. obj15.Shape = Enum.PartType.Ball
  6765. obj15.Parent = obj2
  6766.  
  6767. -- 16 - Part
  6768. local obj16 = Instance.new("Part")
  6769. obj16.CFrame = CFrame.new(Vector3.new(67.50383, 3.46245813, 7.48069429)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6770. obj16.CanCollide = false
  6771. obj16.TopSurface = Enum.SurfaceType.Smooth
  6772. obj16.BottomSurface = Enum.SurfaceType.Smooth
  6773. obj16.Material = Enum.Material.SmoothPlastic
  6774. obj16.Size = Vector3.new(0.25, 0.25, 0.25)
  6775. obj16.BrickColor = BrickColor.new("Hot pink")
  6776. obj16.Friction = 0.30000001192093
  6777. obj16.Shape = Enum.PartType.Ball
  6778. obj16.Parent = obj2
  6779.  
  6780. -- 17 - Part
  6781. local obj17 = Instance.new("Part")
  6782. obj17.CFrame = CFrame.new(Vector3.new(66.5551376, 3.4628334, 7.33871651)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6783. obj17.CanCollide = false
  6784. obj17.TopSurface = Enum.SurfaceType.Smooth
  6785. obj17.BottomSurface = Enum.SurfaceType.Smooth
  6786. obj17.Material = Enum.Material.SmoothPlastic
  6787. obj17.Size = Vector3.new(0.25, 0.25, 0.25)
  6788. obj17.BrickColor = BrickColor.new("Hot pink")
  6789. obj17.Friction = 0.30000001192093
  6790. obj17.Shape = Enum.PartType.Ball
  6791. obj17.Parent = obj2
  6792.  
  6793. -- 18 - Part
  6794. local obj18 = Instance.new("Part")
  6795. obj18.CFrame = CFrame.new(Vector3.new(67.3677139, 3.83245182, 7.3331027)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6796. obj18.CanCollide = false
  6797. obj18.TopSurface = Enum.SurfaceType.Smooth
  6798. obj18.BottomSurface = Enum.SurfaceType.Smooth
  6799. obj18.Material = Enum.Material.SmoothPlastic
  6800. obj18.Size = Vector3.new(0.25, 0.25, 0.25)
  6801. obj18.BrickColor = BrickColor.new("Hot pink")
  6802. obj18.Friction = 0.30000001192093
  6803. obj18.Shape = Enum.PartType.Ball
  6804. obj18.Parent = obj2
  6805.  
  6806. -- 19 - Part
  6807. local obj19 = Instance.new("Part")
  6808. obj19.CFrame = CFrame.new(Vector3.new(67.4115601, 3.71535063, 7.01420689)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  6809. obj19.CanCollide = false
  6810. obj19.TopSurface = Enum.SurfaceType.Smooth
  6811. obj19.BottomSurface = Enum.SurfaceType.Smooth
  6812. obj19.Material = Enum.Material.SmoothPlastic
  6813. obj19.Size = Vector3.new(0.25, 0.25, 0.25)
  6814. obj19.BrickColor = BrickColor.new("Hot pink")
  6815. obj19.Friction = 0.30000001192093
  6816. obj19.Shape = Enum.PartType.Ball
  6817. obj19.Parent = obj2
  6818.  
  6819. -- 20 - Part
  6820. local obj20 = Instance.new("Part")
  6821. obj20.CFrame = CFrame.new(Vector3.new(67.6487045, 3.39313889, 7.19381428)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6822. obj20.CanCollide = false
  6823. obj20.TopSurface = Enum.SurfaceType.Smooth
  6824. obj20.BottomSurface = Enum.SurfaceType.Smooth
  6825. obj20.Material = Enum.Material.SmoothPlastic
  6826. obj20.Size = Vector3.new(0.25, 0.25, 0.25)
  6827. obj20.BrickColor = BrickColor.new("Hot pink")
  6828. obj20.Friction = 0.30000001192093
  6829. obj20.Shape = Enum.PartType.Ball
  6830. obj20.Parent = obj2
  6831.  
  6832. -- 21 - Part
  6833. local obj21 = Instance.new("Part")
  6834. obj21.CFrame = CFrame.new(Vector3.new(66.8260422, 4.12417316, 6.81669378)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6835. obj21.CanCollide = false
  6836. obj21.TopSurface = Enum.SurfaceType.Smooth
  6837. obj21.BottomSurface = Enum.SurfaceType.Smooth
  6838. obj21.Material = Enum.Material.SmoothPlastic
  6839. obj21.Size = Vector3.new(0.25, 0.25, 0.25)
  6840. obj21.BrickColor = BrickColor.new("Hot pink")
  6841. obj21.Friction = 0.30000001192093
  6842. obj21.Shape = Enum.PartType.Ball
  6843. obj21.Parent = obj2
  6844.  
  6845. -- 22 - Part
  6846. local obj22 = Instance.new("Part")
  6847. obj22.CFrame = CFrame.new(Vector3.new(67.162117, 3.11433029, 6.8847661)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6848. obj22.CanCollide = false
  6849. obj22.TopSurface = Enum.SurfaceType.Smooth
  6850. obj22.BottomSurface = Enum.SurfaceType.Smooth
  6851. obj22.Material = Enum.Material.SmoothPlastic
  6852. obj22.Size = Vector3.new(0.25, 0.25, 0.25)
  6853. obj22.BrickColor = BrickColor.new("Hot pink")
  6854. obj22.Friction = 0.30000001192093
  6855. obj22.Shape = Enum.PartType.Ball
  6856. obj22.Parent = obj2
  6857.  
  6858. -- 23 - Part
  6859. local obj23 = Instance.new("Part")
  6860. obj23.CFrame = CFrame.new(Vector3.new(66.4981842, 3.63936186, 7.01661682)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6861. obj23.CanCollide = false
  6862. obj23.TopSurface = Enum.SurfaceType.Smooth
  6863. obj23.BottomSurface = Enum.SurfaceType.Smooth
  6864. obj23.Material = Enum.Material.SmoothPlastic
  6865. obj23.Size = Vector3.new(0.25, 0.25, 0.25)
  6866. obj23.BrickColor = BrickColor.new("Hot pink")
  6867. obj23.Friction = 0.30000001192093
  6868. obj23.Shape = Enum.PartType.Ball
  6869. obj23.Parent = obj2
  6870.  
  6871. -- 24 - Part
  6872. local obj24 = Instance.new("Part")
  6873. obj24.CFrame = CFrame.new(Vector3.new(66.6352844, 3.38244724, 7.06651926)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6874. obj24.CanCollide = false
  6875. obj24.TopSurface = Enum.SurfaceType.Smooth
  6876. obj24.BottomSurface = Enum.SurfaceType.Smooth
  6877. obj24.Material = Enum.Material.SmoothPlastic
  6878. obj24.Size = Vector3.new(0.25, 0.25, 0.25)
  6879. obj24.BrickColor = BrickColor.new("Hot pink")
  6880. obj24.Friction = 0.30000001192093
  6881. obj24.Shape = Enum.PartType.Ball
  6882. obj24.Parent = obj2
  6883.  
  6884. -- 25 - Part
  6885. local obj25 = Instance.new("Part")
  6886. obj25.CFrame = CFrame.new(Vector3.new(66.753746, 3.10362744, 7.32704163)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  6887. obj25.CanCollide = false
  6888. obj25.TopSurface = Enum.SurfaceType.Smooth
  6889. obj25.BottomSurface = Enum.SurfaceType.Smooth
  6890. obj25.Material = Enum.Material.SmoothPlastic
  6891. obj25.Size = Vector3.new(0.25, 0.25, 0.25)
  6892. obj25.BrickColor = BrickColor.new("Hot pink")
  6893. obj25.Friction = 0.30000001192093
  6894. obj25.Shape = Enum.PartType.Ball
  6895. obj25.Parent = obj2
  6896.  
  6897. -- 26 - Part
  6898. local obj26 = Instance.new("Part")
  6899. obj26.CFrame = CFrame.new(Vector3.new(66.851532, 3.01907969, 7.04717398)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6900. obj26.CanCollide = false
  6901. obj26.TopSurface = Enum.SurfaceType.Smooth
  6902. obj26.BottomSurface = Enum.SurfaceType.Smooth
  6903. obj26.Material = Enum.Material.SmoothPlastic
  6904. obj26.Size = Vector3.new(0.25, 0.25, 0.25)
  6905. obj26.BrickColor = BrickColor.new("Hot pink")
  6906. obj26.Friction = 0.30000001192093
  6907. obj26.Shape = Enum.PartType.Ball
  6908. obj26.Parent = obj2
  6909.  
  6910. -- 27 - Part
  6911. local obj27 = Instance.new("Part")
  6912. obj27.CFrame = CFrame.new(Vector3.new(66.944519, 3.20876789, 7.64748764)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  6913. obj27.CanCollide = false
  6914. obj27.TopSurface = Enum.SurfaceType.Smooth
  6915. obj27.BottomSurface = Enum.SurfaceType.Smooth
  6916. obj27.Material = Enum.Material.SmoothPlastic
  6917. obj27.Size = Vector3.new(0.25, 0.25, 0.25)
  6918. obj27.BrickColor = BrickColor.new("Hot pink")
  6919. obj27.Friction = 0.30000001192093
  6920. obj27.Shape = Enum.PartType.Ball
  6921. obj27.Parent = obj2
  6922.  
  6923. -- 28 - Part
  6924. local obj28 = Instance.new("Part")
  6925. obj28.CFrame = CFrame.new(Vector3.new(67.2306061, 4.08936405, 7.28319883)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6926. obj28.CanCollide = false
  6927. obj28.TopSurface = Enum.SurfaceType.Smooth
  6928. obj28.BottomSurface = Enum.SurfaceType.Smooth
  6929. obj28.Material = Enum.Material.SmoothPlastic
  6930. obj28.Size = Vector3.new(0.25, 0.25, 0.25)
  6931. obj28.BrickColor = BrickColor.new("Hot pink")
  6932. obj28.Friction = 0.30000001192093
  6933. obj28.Shape = Enum.PartType.Ball
  6934. obj28.Parent = obj2
  6935.  
  6936. -- 29 - Part
  6937. local obj29 = Instance.new("Part")
  6938. obj29.CFrame = CFrame.new(Vector3.new(66.5712891, 3.99917173, 6.8835969)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6939. obj29.CanCollide = false
  6940. obj29.TopSurface = Enum.SurfaceType.Smooth
  6941. obj29.BottomSurface = Enum.SurfaceType.Smooth
  6942. obj29.Material = Enum.Material.SmoothPlastic
  6943. obj29.Size = Vector3.new(0.25, 0.25, 0.25)
  6944. obj29.BrickColor = BrickColor.new("Hot pink")
  6945. obj29.Friction = 0.30000001192093
  6946. obj29.Shape = Enum.PartType.Ball
  6947. obj29.Parent = obj2
  6948.  
  6949. -- 30 - Part
  6950. local obj30 = Instance.new("Part")
  6951. obj30.CFrame = CFrame.new(Vector3.new(66.7236328, 4.26077843, 7.20509243)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6952. obj30.CanCollide = false
  6953. obj30.TopSurface = Enum.SurfaceType.Smooth
  6954. obj30.BottomSurface = Enum.SurfaceType.Smooth
  6955. obj30.Material = Enum.Material.SmoothPlastic
  6956. obj30.Size = Vector3.new(0.25, 0.25, 0.25)
  6957. obj30.BrickColor = BrickColor.new("Hot pink")
  6958. obj30.Friction = 0.30000001192093
  6959. obj30.Shape = Enum.PartType.Ball
  6960. obj30.Parent = obj2
  6961.  
  6962. -- 31 - Part
  6963. local obj31 = Instance.new("Part")
  6964. obj31.CFrame = CFrame.new(Vector3.new(66.5950623, 4.16077423, 7.05188084)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6965. obj31.CanCollide = false
  6966. obj31.TopSurface = Enum.SurfaceType.Smooth
  6967. obj31.BottomSurface = Enum.SurfaceType.Smooth
  6968. obj31.Material = Enum.Material.SmoothPlastic
  6969. obj31.Size = Vector3.new(0.25, 0.25, 0.25)
  6970. obj31.BrickColor = BrickColor.new("Hot pink")
  6971. obj31.Friction = 0.30000001192093
  6972. obj31.Shape = Enum.PartType.Ball
  6973. obj31.Parent = obj2
  6974.  
  6975. -- 32 - Part
  6976. local obj32 = Instance.new("Part")
  6977. obj32.CFrame = CFrame.new(Vector3.new(67.0637207, 4.03936481, 7.48850012)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6978. obj32.CanCollide = false
  6979. obj32.TopSurface = Enum.SurfaceType.Smooth
  6980. obj32.BottomSurface = Enum.SurfaceType.Smooth
  6981. obj32.Material = Enum.Material.SmoothPlastic
  6982. obj32.Size = Vector3.new(0.25, 0.25, 0.25)
  6983. obj32.BrickColor = BrickColor.new("Hot pink")
  6984. obj32.Friction = 0.30000001192093
  6985. obj32.Shape = Enum.PartType.Ball
  6986. obj32.Parent = obj2
  6987.  
  6988. -- 33 - Part
  6989. local obj33 = Instance.new("Part")
  6990. obj33.CFrame = CFrame.new(Vector3.new(66.4686813, 3.99917364, 7.16550922)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  6991. obj33.CanCollide = false
  6992. obj33.TopSurface = Enum.SurfaceType.Smooth
  6993. obj33.BottomSurface = Enum.SurfaceType.Smooth
  6994. obj33.Material = Enum.Material.SmoothPlastic
  6995. obj33.Size = Vector3.new(0.25, 0.25, 0.25)
  6996. obj33.BrickColor = BrickColor.new("Hot pink")
  6997. obj33.Friction = 0.30000001192093
  6998. obj33.Shape = Enum.PartType.Ball
  6999. obj33.Parent = obj2
  7000.  
  7001. -- 34 - Part
  7002. local obj34 = Instance.new("Part")
  7003. obj34.CFrame = CFrame.new(Vector3.new(66.6615219, 4.14917231, 7.3953228)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7004. obj34.CanCollide = false
  7005. obj34.TopSurface = Enum.SurfaceType.Smooth
  7006. obj34.BottomSurface = Enum.SurfaceType.Smooth
  7007. obj34.Material = Enum.Material.SmoothPlastic
  7008. obj34.Size = Vector3.new(0.25, 0.25, 0.25)
  7009. obj34.BrickColor = BrickColor.new("Hot pink")
  7010. obj34.Friction = 0.30000001192093
  7011. obj34.Shape = Enum.PartType.Ball
  7012. obj34.Parent = obj2
  7013.  
  7014. -- 35 - Part
  7015. local obj35 = Instance.new("Part")
  7016. obj35.CFrame = CFrame.new(Vector3.new(66.8712616, 4.16257238, 7.47166586)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7017. obj35.CanCollide = false
  7018. obj35.TopSurface = Enum.SurfaceType.Smooth
  7019. obj35.BottomSurface = Enum.SurfaceType.Smooth
  7020. obj35.Material = Enum.Material.SmoothPlastic
  7021. obj35.Size = Vector3.new(0.25, 0.25, 0.25)
  7022. obj35.BrickColor = BrickColor.new("Hot pink")
  7023. obj35.Friction = 0.30000001192093
  7024. obj35.Shape = Enum.PartType.Ball
  7025. obj35.Parent = obj2
  7026.  
  7027. -- 36 - Part
  7028. local obj36 = Instance.new("Part")
  7029. obj36.CFrame = CFrame.new(Vector3.new(66.7165604, 3.82596827, 6.77684546)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7030. obj36.CanCollide = false
  7031. obj36.TopSurface = Enum.SurfaceType.Smooth
  7032. obj36.BottomSurface = Enum.SurfaceType.Smooth
  7033. obj36.Material = Enum.Material.SmoothPlastic
  7034. obj36.Size = Vector3.new(0.25, 0.25, 0.25)
  7035. obj36.BrickColor = BrickColor.new("Hot pink")
  7036. obj36.Friction = 0.30000001192093
  7037. obj36.Shape = Enum.PartType.Ball
  7038. obj36.Parent = obj2
  7039.  
  7040. -- 37 - Part
  7041. local obj37 = Instance.new("Part")
  7042. obj37.CFrame = CFrame.new(Vector3.new(66.9846878, 4.27417517, 7.14047909)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7043. obj37.CanCollide = false
  7044. obj37.TopSurface = Enum.SurfaceType.Smooth
  7045. obj37.BottomSurface = Enum.SurfaceType.Smooth
  7046. obj37.Material = Enum.Material.SmoothPlastic
  7047. obj37.Size = Vector3.new(0.25, 0.25, 0.25)
  7048. obj37.BrickColor = BrickColor.new("Hot pink")
  7049. obj37.Friction = 0.30000001192093
  7050. obj37.Shape = Enum.PartType.Ball
  7051. obj37.Parent = obj2
  7052.  
  7053. -- 38 - Part
  7054. local obj38 = Instance.new("Part")
  7055. obj38.CFrame = CFrame.new(Vector3.new(67.1641541, 4.10096312, 6.93975735)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7056. obj38.CanCollide = false
  7057. obj38.TopSurface = Enum.SurfaceType.Smooth
  7058. obj38.BottomSurface = Enum.SurfaceType.Smooth
  7059. obj38.Material = Enum.Material.SmoothPlastic
  7060. obj38.Size = Vector3.new(0.25, 0.25, 0.25)
  7061. obj38.BrickColor = BrickColor.new("Hot pink")
  7062. obj38.Friction = 0.30000001192093
  7063. obj38.Shape = Enum.PartType.Ball
  7064. obj38.Parent = obj2
  7065.  
  7066. -- 39 - Part
  7067. local obj39 = Instance.new("Part")
  7068. obj39.CFrame = CFrame.new(Vector3.new(66.792038, 4.26077843, 7.01715183)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7069. obj39.CanCollide = false
  7070. obj39.TopSurface = Enum.SurfaceType.Smooth
  7071. obj39.BottomSurface = Enum.SurfaceType.Smooth
  7072. obj39.Material = Enum.Material.SmoothPlastic
  7073. obj39.Size = Vector3.new(0.25, 0.25, 0.25)
  7074. obj39.BrickColor = BrickColor.new("Hot pink")
  7075. obj39.Friction = 0.30000001192093
  7076. obj39.Shape = Enum.PartType.Ball
  7077. obj39.Parent = obj2
  7078.  
  7079. -- 40 - Part
  7080. local obj40 = Instance.new("Part")
  7081. obj40.CFrame = CFrame.new(Vector3.new(66.5005493, 3.71436262, 7.38994217)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7082. obj40.CanCollide = false
  7083. obj40.TopSurface = Enum.SurfaceType.Smooth
  7084. obj40.BottomSurface = Enum.SurfaceType.Smooth
  7085. obj40.Material = Enum.Material.SmoothPlastic
  7086. obj40.Size = Vector3.new(0.25, 0.25, 0.25)
  7087. obj40.BrickColor = BrickColor.new("Hot pink")
  7088. obj40.Friction = 0.30000001192093
  7089. obj40.Shape = Enum.PartType.Ball
  7090. obj40.Parent = obj2
  7091.  
  7092. -- 41 - stretches
  7093. local obj41 = Instance.new("Model")
  7094. obj41.Name = "stretches"
  7095. obj41.Parent = obj1
  7096.  
  7097. -- 42 - stretchlol
  7098. local obj42 = Instance.new("Part")
  7099. obj42.CFrame = CFrame.new(Vector3.new(67.162117, 3.13544774, 6.8847661)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7100. obj42.CanCollide = false
  7101. obj42.Transparency = 1
  7102. obj42.TopSurface = Enum.SurfaceType.Smooth
  7103. obj42.BottomSurface = Enum.SurfaceType.Smooth
  7104. obj42.Material = Enum.Material.SmoothPlastic
  7105. obj42.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7106. obj42.BrickColor = BrickColor.new("Pastel brown")
  7107. obj42.Friction = 0.30000001192093
  7108. obj42.Shape = Enum.PartType.Ball
  7109. obj42.Name = "stretchlol"
  7110. obj42.Parent = obj41
  7111.  
  7112. -- 43 - stretchlol
  7113. local obj43 = Instance.new("Part")
  7114. obj43.CFrame = CFrame.new(Vector3.new(67.1951675, 3.40412855, 7.69050598)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7115. obj43.CanCollide = false
  7116. obj43.Transparency = 1
  7117. obj43.TopSurface = Enum.SurfaceType.Smooth
  7118. obj43.BottomSurface = Enum.SurfaceType.Smooth
  7119. obj43.Material = Enum.Material.SmoothPlastic
  7120. obj43.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7121. obj43.BrickColor = BrickColor.new("Pastel brown")
  7122. obj43.Friction = 0.30000001192093
  7123. obj43.Shape = Enum.PartType.Ball
  7124. obj43.Name = "stretchlol"
  7125. obj43.Parent = obj41
  7126.  
  7127. -- 44 - stretchlol
  7128. local obj44 = Instance.new("Part")
  7129. obj44.CFrame = CFrame.new(Vector3.new(67.5038223, 3.48357916, 7.48069382)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7130. obj44.CanCollide = false
  7131. obj44.Transparency = 1
  7132. obj44.TopSurface = Enum.SurfaceType.Smooth
  7133. obj44.BottomSurface = Enum.SurfaceType.Smooth
  7134. obj44.Material = Enum.Material.SmoothPlastic
  7135. obj44.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7136. obj44.BrickColor = BrickColor.new("Pastel brown")
  7137. obj44.Friction = 0.30000001192093
  7138. obj44.Shape = Enum.PartType.Ball
  7139. obj44.Name = "stretchlol"
  7140. obj44.Parent = obj41
  7141.  
  7142. -- 45 - stretchlol
  7143. local obj45 = Instance.new("Part")
  7144. obj45.CFrame = CFrame.new(Vector3.new(67.1641541, 4.12207699, 6.93975687)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7145. obj45.CanCollide = false
  7146. obj45.Transparency = 1
  7147. obj45.TopSurface = Enum.SurfaceType.Smooth
  7148. obj45.BottomSurface = Enum.SurfaceType.Smooth
  7149. obj45.Material = Enum.Material.SmoothPlastic
  7150. obj45.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7151. obj45.BrickColor = BrickColor.new("Pastel brown")
  7152. obj45.Friction = 0.30000001192093
  7153. obj45.Shape = Enum.PartType.Ball
  7154. obj45.Name = "stretchlol"
  7155. obj45.Parent = obj41
  7156.  
  7157. -- 46 - stretchlol
  7158. local obj46 = Instance.new("Part")
  7159. obj46.CFrame = CFrame.new(Vector3.new(66.8712616, 4.18368626, 7.47166586)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7160. obj46.CanCollide = false
  7161. obj46.Transparency = 1
  7162. obj46.TopSurface = Enum.SurfaceType.Smooth
  7163. obj46.BottomSurface = Enum.SurfaceType.Smooth
  7164. obj46.Material = Enum.Material.SmoothPlastic
  7165. obj46.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7166. obj46.BrickColor = BrickColor.new("Pastel brown")
  7167. obj46.Friction = 0.30000001192093
  7168. obj46.Shape = Enum.PartType.Ball
  7169. obj46.Name = "stretchlol"
  7170. obj46.Parent = obj41
  7171.  
  7172. -- 47 - stretchlol
  7173. local obj47 = Instance.new("Part")
  7174. obj47.CFrame = CFrame.new(Vector3.new(66.8260345, 4.14528561, 6.81669378)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7175. obj47.CanCollide = false
  7176. obj47.Transparency = 1
  7177. obj47.TopSurface = Enum.SurfaceType.Smooth
  7178. obj47.BottomSurface = Enum.SurfaceType.Smooth
  7179. obj47.Material = Enum.Material.SmoothPlastic
  7180. obj47.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7181. obj47.BrickColor = BrickColor.new("Pastel brown")
  7182. obj47.Friction = 0.30000001192093
  7183. obj47.Shape = Enum.PartType.Ball
  7184. obj47.Name = "stretchlol"
  7185. obj47.Parent = obj41
  7186.  
  7187. -- 48 - stretchlol
  7188. local obj48 = Instance.new("Part")
  7189. obj48.CFrame = CFrame.new(Vector3.new(66.7104797, 3.88547921, 7.57276678)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7190. obj48.CanCollide = false
  7191. obj48.Transparency = 1
  7192. obj48.TopSurface = Enum.SurfaceType.Smooth
  7193. obj48.BottomSurface = Enum.SurfaceType.Smooth
  7194. obj48.Material = Enum.Material.SmoothPlastic
  7195. obj48.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7196. obj48.BrickColor = BrickColor.new("Pastel brown")
  7197. obj48.Friction = 0.30000001192093
  7198. obj48.Shape = Enum.PartType.Ball
  7199. obj48.Name = "stretchlol"
  7200. obj48.Parent = obj41
  7201.  
  7202. -- 49 - stretchlol
  7203. local obj49 = Instance.new("Part")
  7204. obj49.CFrame = CFrame.new(Vector3.new(67.0637207, 4.06047773, 7.48850012)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7205. obj49.CanCollide = false
  7206. obj49.Transparency = 1
  7207. obj49.TopSurface = Enum.SurfaceType.Smooth
  7208. obj49.BottomSurface = Enum.SurfaceType.Smooth
  7209. obj49.Material = Enum.Material.SmoothPlastic
  7210. obj49.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7211. obj49.BrickColor = BrickColor.new("Pastel brown")
  7212. obj49.Friction = 0.30000001192093
  7213. obj49.Shape = Enum.PartType.Ball
  7214. obj49.Name = "stretchlol"
  7215. obj49.Parent = obj41
  7216.  
  7217. -- 50 - stretchlol
  7218. local obj50 = Instance.new("Part")
  7219. obj50.CFrame = CFrame.new(Vector3.new(66.7165604, 3.84708691, 6.77684498)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7220. obj50.CanCollide = false
  7221. obj50.Transparency = 1
  7222. obj50.TopSurface = Enum.SurfaceType.Smooth
  7223. obj50.BottomSurface = Enum.SurfaceType.Smooth
  7224. obj50.Material = Enum.Material.SmoothPlastic
  7225. obj50.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7226. obj50.BrickColor = BrickColor.new("Pastel brown")
  7227. obj50.Friction = 0.30000001192093
  7228. obj50.Shape = Enum.PartType.Ball
  7229. obj50.Name = "stretchlol"
  7230. obj50.Parent = obj41
  7231.  
  7232. -- 51 - stretchlol
  7233. local obj51 = Instance.new("Part")
  7234. obj51.CFrame = CFrame.new(Vector3.new(66.9846878, 4.29528904, 7.14047909)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7235. obj51.CanCollide = false
  7236. obj51.Transparency = 1
  7237. obj51.TopSurface = Enum.SurfaceType.Smooth
  7238. obj51.BottomSurface = Enum.SurfaceType.Smooth
  7239. obj51.Material = Enum.Material.SmoothPlastic
  7240. obj51.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7241. obj51.BrickColor = BrickColor.new("Pastel brown")
  7242. obj51.Friction = 0.30000001192093
  7243. obj51.Shape = Enum.PartType.Ball
  7244. obj51.Name = "stretchlol"
  7245. obj51.Parent = obj41
  7246.  
  7247. -- 52 - stretchlol
  7248. local obj52 = Instance.new("Part")
  7249. obj52.CFrame = CFrame.new(Vector3.new(66.868927, 3.45350599, 6.82578087)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7250. obj52.CanCollide = false
  7251. obj52.Transparency = 1
  7252. obj52.TopSurface = Enum.SurfaceType.Smooth
  7253. obj52.BottomSurface = Enum.SurfaceType.Smooth
  7254. obj52.Material = Enum.Material.SmoothPlastic
  7255. obj52.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7256. obj52.BrickColor = BrickColor.new("Pastel brown")
  7257. obj52.Friction = 0.30000001192093
  7258. obj52.Shape = Enum.PartType.Ball
  7259. obj52.Name = "stretchlol"
  7260. obj52.Parent = obj41
  7261.  
  7262. -- 53 - stretchlol
  7263. local obj53 = Instance.new("Part")
  7264. obj53.CFrame = CFrame.new(Vector3.new(67.287262, 3.10603261, 7.30382156)) * CFrame.Angles(9.1487750708552e-09, -0.34906616806984, -1.0471986532211)
  7265. obj53.CanCollide = false
  7266. obj53.Transparency = 1
  7267. obj53.TopSurface = Enum.SurfaceType.Smooth
  7268. obj53.BottomSurface = Enum.SurfaceType.Smooth
  7269. obj53.Material = Enum.Material.SmoothPlastic
  7270. obj53.Size = Vector3.new(1.79999995, 1.04999995, 1.04999995)
  7271. obj53.BrickColor = BrickColor.new("Pastel brown")
  7272. obj53.Friction = 0.30000001192093
  7273. obj53.Shape = Enum.PartType.Cylinder
  7274. obj53.Name = "stretchlol"
  7275. obj53.Parent = obj41
  7276.  
  7277. -- 54 - stretchlol
  7278. local obj54 = Instance.new("Part")
  7279. obj54.CFrame = CFrame.new(Vector3.new(66.4686813, 4.02028799, 7.16550922)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7280. obj54.CanCollide = false
  7281. obj54.Transparency = 1
  7282. obj54.TopSurface = Enum.SurfaceType.Smooth
  7283. obj54.BottomSurface = Enum.SurfaceType.Smooth
  7284. obj54.Material = Enum.Material.SmoothPlastic
  7285. obj54.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7286. obj54.BrickColor = BrickColor.new("Pastel brown")
  7287. obj54.Friction = 0.30000001192093
  7288. obj54.Shape = Enum.PartType.Ball
  7289. obj54.Name = "stretchlol"
  7290. obj54.Parent = obj41
  7291.  
  7292. -- 55 - stretchlol
  7293. local obj55 = Instance.new("Part")
  7294. obj55.CFrame = CFrame.new(Vector3.new(66.6615219, 4.17028332, 7.3953228)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7295. obj55.CanCollide = false
  7296. obj55.Transparency = 1
  7297. obj55.TopSurface = Enum.SurfaceType.Smooth
  7298. obj55.BottomSurface = Enum.SurfaceType.Smooth
  7299. obj55.Material = Enum.Material.SmoothPlastic
  7300. obj55.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7301. obj55.BrickColor = BrickColor.new("Pastel brown")
  7302. obj55.Friction = 0.30000001192093
  7303. obj55.Shape = Enum.PartType.Ball
  7304. obj55.Name = "stretchlol"
  7305. obj55.Parent = obj41
  7306.  
  7307. -- 56 - stretchlol
  7308. local obj56 = Instance.new("Part")
  7309. obj56.CFrame = CFrame.new(Vector3.new(66.753746, 3.12474751, 7.32704115)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7310. obj56.CanCollide = false
  7311. obj56.Transparency = 1
  7312. obj56.TopSurface = Enum.SurfaceType.Smooth
  7313. obj56.BottomSurface = Enum.SurfaceType.Smooth
  7314. obj56.Material = Enum.Material.SmoothPlastic
  7315. obj56.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7316. obj56.BrickColor = BrickColor.new("Pastel brown")
  7317. obj56.Friction = 0.30000001192093
  7318. obj56.Shape = Enum.PartType.Ball
  7319. obj56.Name = "stretchlol"
  7320. obj56.Parent = obj41
  7321.  
  7322. -- 57 - stretchlol
  7323. local obj57 = Instance.new("Part")
  7324. obj57.CFrame = CFrame.new(Vector3.new(67.2306061, 4.11047649, 7.28319883)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7325. obj57.CanCollide = false
  7326. obj57.Transparency = 1
  7327. obj57.TopSurface = Enum.SurfaceType.Smooth
  7328. obj57.BottomSurface = Enum.SurfaceType.Smooth
  7329. obj57.Material = Enum.Material.SmoothPlastic
  7330. obj57.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7331. obj57.BrickColor = BrickColor.new("Pastel brown")
  7332. obj57.Friction = 0.30000001192093
  7333. obj57.Shape = Enum.PartType.Ball
  7334. obj57.Name = "stretchlol"
  7335. obj57.Parent = obj41
  7336.  
  7337. -- 58 - stretchlol
  7338. local obj58 = Instance.new("Part")
  7339. obj58.CFrame = CFrame.new(Vector3.new(67.0756683, 3.79114079, 7.63403416)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7340. obj58.CanCollide = false
  7341. obj58.Transparency = 1
  7342. obj58.TopSurface = Enum.SurfaceType.Smooth
  7343. obj58.BottomSurface = Enum.SurfaceType.Smooth
  7344. obj58.Material = Enum.Material.SmoothPlastic
  7345. obj58.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7346. obj58.BrickColor = BrickColor.new("Pastel brown")
  7347. obj58.Friction = 0.30000001192093
  7348. obj58.Shape = Enum.PartType.Ball
  7349. obj58.Name = "stretchlol"
  7350. obj58.Parent = obj41
  7351.  
  7352. -- 59 - stretchlol
  7353. local obj59 = Instance.new("Part")
  7354. obj59.CFrame = CFrame.new(Vector3.new(66.5005493, 3.73548079, 7.38994217)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7355. obj59.CanCollide = false
  7356. obj59.Transparency = 1
  7357. obj59.TopSurface = Enum.SurfaceType.Smooth
  7358. obj59.BottomSurface = Enum.SurfaceType.Smooth
  7359. obj59.Material = Enum.Material.SmoothPlastic
  7360. obj59.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7361. obj59.BrickColor = BrickColor.new("Pastel brown")
  7362. obj59.Friction = 0.30000001192093
  7363. obj59.Shape = Enum.PartType.Ball
  7364. obj59.Name = "stretchlol"
  7365. obj59.Parent = obj41
  7366.  
  7367. -- 60 - stretchlol
  7368. local obj60 = Instance.new("Part")
  7369. obj60.CFrame = CFrame.new(Vector3.new(67.6487045, 3.41425848, 7.1938138)) * CFrame.Angles(-2.0021269321442, 1.2287007570267, 1.6869416236877)
  7370. obj60.CanCollide = false
  7371. obj60.Transparency = 1
  7372. obj60.TopSurface = Enum.SurfaceType.Smooth
  7373. obj60.BottomSurface = Enum.SurfaceType.Smooth
  7374. obj60.Material = Enum.Material.SmoothPlastic
  7375. obj60.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7376. obj60.BrickColor = BrickColor.new("Pastel brown")
  7377. obj60.Friction = 0.30000001192093
  7378. obj60.Shape = Enum.PartType.Ball
  7379. obj60.Name = "stretchlol"
  7380. obj60.Parent = obj41
  7381.  
  7382. -- 61 - stretchlol
  7383. local obj61 = Instance.new("Part")
  7384. obj61.CFrame = CFrame.new(Vector3.new(67.3677139, 3.85357118, 7.33310223)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7385. obj61.CanCollide = false
  7386. obj61.Transparency = 1
  7387. obj61.TopSurface = Enum.SurfaceType.Smooth
  7388. obj61.BottomSurface = Enum.SurfaceType.Smooth
  7389. obj61.Material = Enum.Material.SmoothPlastic
  7390. obj61.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7391. obj61.BrickColor = BrickColor.new("Pastel brown")
  7392. obj61.Friction = 0.30000001192093
  7393. obj61.Shape = Enum.PartType.Ball
  7394. obj61.Name = "stretchlol"
  7395. obj61.Parent = obj41
  7396.  
  7397. -- 62 - stretchlol
  7398. local obj62 = Instance.new("Part")
  7399. obj62.CFrame = CFrame.new(Vector3.new(66.6352844, 3.40356588, 7.06651878)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7400. obj62.CanCollide = false
  7401. obj62.Transparency = 1
  7402. obj62.TopSurface = Enum.SurfaceType.Smooth
  7403. obj62.BottomSurface = Enum.SurfaceType.Smooth
  7404. obj62.Material = Enum.Material.SmoothPlastic
  7405. obj62.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7406. obj62.BrickColor = BrickColor.new("Pastel brown")
  7407. obj62.Friction = 0.30000001192093
  7408. obj62.Shape = Enum.PartType.Ball
  7409. obj62.Name = "stretchlol"
  7410. obj62.Parent = obj41
  7411.  
  7412. -- 63 - stretchlol
  7413. local obj63 = Instance.new("Part")
  7414. obj63.CFrame = CFrame.new(Vector3.new(66.7236328, 4.28189754, 7.20509195)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7415. obj63.CanCollide = false
  7416. obj63.Transparency = 1
  7417. obj63.TopSurface = Enum.SurfaceType.Smooth
  7418. obj63.BottomSurface = Enum.SurfaceType.Smooth
  7419. obj63.Material = Enum.Material.SmoothPlastic
  7420. obj63.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7421. obj63.BrickColor = BrickColor.new("Pastel brown")
  7422. obj63.Friction = 0.30000001192093
  7423. obj63.Shape = Enum.PartType.Ball
  7424. obj63.Name = "stretchlol"
  7425. obj63.Parent = obj41
  7426.  
  7427. -- 64 - stretchlol
  7428. local obj64 = Instance.new("Part")
  7429. obj64.CFrame = CFrame.new(Vector3.new(66.5712891, 4.02028799, 6.8835969)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7430. obj64.CanCollide = false
  7431. obj64.Transparency = 1
  7432. obj64.TopSurface = Enum.SurfaceType.Smooth
  7433. obj64.BottomSurface = Enum.SurfaceType.Smooth
  7434. obj64.Material = Enum.Material.SmoothPlastic
  7435. obj64.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7436. obj64.BrickColor = BrickColor.new("Pastel brown")
  7437. obj64.Friction = 0.30000001192093
  7438. obj64.Shape = Enum.PartType.Ball
  7439. obj64.Name = "stretchlol"
  7440. obj64.Parent = obj41
  7441.  
  7442. -- 65 - stretchlol
  7443. local obj65 = Instance.new("Part")
  7444. obj65.CFrame = CFrame.new(Vector3.new(66.4981842, 3.66047978, 7.01661682)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7445. obj65.CanCollide = false
  7446. obj65.Transparency = 1
  7447. obj65.TopSurface = Enum.SurfaceType.Smooth
  7448. obj65.BottomSurface = Enum.SurfaceType.Smooth
  7449. obj65.Material = Enum.Material.SmoothPlastic
  7450. obj65.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7451. obj65.BrickColor = BrickColor.new("Pastel brown")
  7452. obj65.Friction = 0.30000001192093
  7453. obj65.Shape = Enum.PartType.Ball
  7454. obj65.Name = "stretchlol"
  7455. obj65.Parent = obj41
  7456.  
  7457. -- 66 - stretchlol
  7458. local obj66 = Instance.new("Part")
  7459. obj66.CFrame = CFrame.new(Vector3.new(66.7920303, 4.28189754, 7.01715183)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7460. obj66.CanCollide = false
  7461. obj66.Transparency = 1
  7462. obj66.TopSurface = Enum.SurfaceType.Smooth
  7463. obj66.BottomSurface = Enum.SurfaceType.Smooth
  7464. obj66.Material = Enum.Material.SmoothPlastic
  7465. obj66.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7466. obj66.BrickColor = BrickColor.new("Pastel brown")
  7467. obj66.Friction = 0.30000001192093
  7468. obj66.Shape = Enum.PartType.Ball
  7469. obj66.Name = "stretchlol"
  7470. obj66.Parent = obj41
  7471.  
  7472. -- 67 - stretchlol
  7473. local obj67 = Instance.new("Part")
  7474. obj67.CFrame = CFrame.new(Vector3.new(66.5950623, 4.18188763, 7.05188084)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7475. obj67.CanCollide = false
  7476. obj67.Transparency = 1
  7477. obj67.TopSurface = Enum.SurfaceType.Smooth
  7478. obj67.BottomSurface = Enum.SurfaceType.Smooth
  7479. obj67.Material = Enum.Material.SmoothPlastic
  7480. obj67.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7481. obj67.BrickColor = BrickColor.new("Pastel brown")
  7482. obj67.Friction = 0.30000001192093
  7483. obj67.Shape = Enum.PartType.Ball
  7484. obj67.Name = "stretchlol"
  7485. obj67.Parent = obj41
  7486.  
  7487. -- 68 - stretchlol
  7488. local obj68 = Instance.new("Part")
  7489. obj68.CFrame = CFrame.new(Vector3.new(67.4115601, 3.73646879, 7.01420689)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7490. obj68.CanCollide = false
  7491. obj68.Transparency = 1
  7492. obj68.TopSurface = Enum.SurfaceType.Smooth
  7493. obj68.BottomSurface = Enum.SurfaceType.Smooth
  7494. obj68.Material = Enum.Material.SmoothPlastic
  7495. obj68.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7496. obj68.BrickColor = BrickColor.new("Pastel brown")
  7497. obj68.Friction = 0.30000001192093
  7498. obj68.Shape = Enum.PartType.Ball
  7499. obj68.Name = "stretchlol"
  7500. obj68.Parent = obj41
  7501.  
  7502. -- 69 - stretchlol
  7503. local obj69 = Instance.new("Part")
  7504. obj69.CFrame = CFrame.new(Vector3.new(66.8643951, 3.88548112, 7.14990711)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7505. obj69.CanCollide = false
  7506. obj69.Transparency = 1
  7507. obj69.TopSurface = Enum.SurfaceType.Smooth
  7508. obj69.BottomSurface = Enum.SurfaceType.Smooth
  7509. obj69.Material = Enum.Material.SmoothPlastic
  7510. obj69.Size = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  7511. obj69.BrickColor = BrickColor.new("Pastel brown")
  7512. obj69.Friction = 0.30000001192093
  7513. obj69.Shape = Enum.PartType.Ball
  7514. obj69.Name = "stretchlol"
  7515. obj69.Parent = obj41
  7516.  
  7517. -- 70 - stretchlol
  7518. local obj70 = Instance.new("Part")
  7519. obj70.CFrame = CFrame.new(Vector3.new(67.4108353, 3.29388237, 6.88037777)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7520. obj70.CanCollide = false
  7521. obj70.Transparency = 1
  7522. obj70.TopSurface = Enum.SurfaceType.Smooth
  7523. obj70.BottomSurface = Enum.SurfaceType.Smooth
  7524. obj70.Material = Enum.Material.SmoothPlastic
  7525. obj70.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7526. obj70.BrickColor = BrickColor.new("Pastel brown")
  7527. obj70.Friction = 0.30000001192093
  7528. obj70.Shape = Enum.PartType.Ball
  7529. obj70.Name = "stretchlol"
  7530. obj70.Parent = obj41
  7531.  
  7532. -- 71 - stretchlol
  7533. local obj71 = Instance.new("Part")
  7534. obj71.CFrame = CFrame.new(Vector3.new(67.1960983, 3.65356374, 6.79175806)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7535. obj71.CanCollide = false
  7536. obj71.Transparency = 1
  7537. obj71.TopSurface = Enum.SurfaceType.Smooth
  7538. obj71.BottomSurface = Enum.SurfaceType.Smooth
  7539. obj71.Material = Enum.Material.SmoothPlastic
  7540. obj71.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7541. obj71.BrickColor = BrickColor.new("Pastel brown")
  7542. obj71.Friction = 0.30000001192093
  7543. obj71.Shape = Enum.PartType.Ball
  7544. obj71.Name = "stretchlol"
  7545. obj71.Parent = obj41
  7546.  
  7547. -- 72 - stretchlol
  7548. local obj72 = Instance.new("Part")
  7549. obj72.CFrame = CFrame.new(Vector3.new(66.944519, 3.22988653, 7.64748716)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7550. obj72.CanCollide = false
  7551. obj72.Transparency = 1
  7552. obj72.TopSurface = Enum.SurfaceType.Smooth
  7553. obj72.BottomSurface = Enum.SurfaceType.Smooth
  7554. obj72.Material = Enum.Material.SmoothPlastic
  7555. obj72.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7556. obj72.BrickColor = BrickColor.new("Pastel brown")
  7557. obj72.Friction = 0.30000001192093
  7558. obj72.Shape = Enum.PartType.Ball
  7559. obj72.Name = "stretchlol"
  7560. obj72.Parent = obj41
  7561.  
  7562. -- 73 - stretchlol
  7563. local obj73 = Instance.new("Part")
  7564. obj73.CFrame = CFrame.new(Vector3.new(66.851532, 3.04020095, 7.04717398)) * CFrame.Angles(-3.058357000351, 0.5446692109108, 2.5818355083466)
  7565. obj73.CanCollide = false
  7566. obj73.Transparency = 1
  7567. obj73.TopSurface = Enum.SurfaceType.Smooth
  7568. obj73.BottomSurface = Enum.SurfaceType.Smooth
  7569. obj73.Material = Enum.Material.SmoothPlastic
  7570. obj73.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7571. obj73.BrickColor = BrickColor.new("Pastel brown")
  7572. obj73.Friction = 0.30000001192093
  7573. obj73.Shape = Enum.PartType.Ball
  7574. obj73.Name = "stretchlol"
  7575. obj73.Parent = obj41
  7576.  
  7577. -- 74 - stretchlol
  7578. local obj74 = Instance.new("Part")
  7579. obj74.CFrame = CFrame.new(Vector3.new(66.5551376, 3.48395109, 7.33871603)) * CFrame.Angles(-2.4803557395935, 1.123170375824, 2.1302044391632)
  7580. obj74.CanCollide = false
  7581. obj74.Transparency = 1
  7582. obj74.TopSurface = Enum.SurfaceType.Smooth
  7583. obj74.BottomSurface = Enum.SurfaceType.Smooth
  7584. obj74.Material = Enum.Material.SmoothPlastic
  7585. obj74.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7586. obj74.BrickColor = BrickColor.new("Pastel brown")
  7587. obj74.Friction = 0.30000001192093
  7588. obj74.Shape = Enum.PartType.Ball
  7589. obj74.Name = "stretchlol"
  7590. obj74.Parent = obj41
  7591.  
  7592. -- 75 - stretchlol
  7593. local obj75 = Instance.new("Part")
  7594. obj75.CFrame = CFrame.new(Vector3.new(66.8069, 3.60357046, 7.60786104)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7595. obj75.CanCollide = false
  7596. obj75.Transparency = 1
  7597. obj75.TopSurface = Enum.SurfaceType.Smooth
  7598. obj75.BottomSurface = Enum.SurfaceType.Smooth
  7599. obj75.Material = Enum.Material.SmoothPlastic
  7600. obj75.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7601. obj75.BrickColor = BrickColor.new("Pastel brown")
  7602. obj75.Friction = 0.30000001192093
  7603. obj75.Shape = Enum.PartType.Ball
  7604. obj75.Name = "stretchlol"
  7605. obj75.Parent = obj41
  7606.  
  7607. -- 76 - stretchlol
  7608. local obj76 = Instance.new("Part")
  7609. obj76.CFrame = CFrame.new(Vector3.new(67.0182953, 3.88547921, 6.72704411)) * CFrame.Angles(-3.1415927410126, 0.34906616806984, 2.6179955005646)
  7610. obj76.CanCollide = false
  7611. obj76.Transparency = 1
  7612. obj76.TopSurface = Enum.SurfaceType.Smooth
  7613. obj76.BottomSurface = Enum.SurfaceType.Smooth
  7614. obj76.Material = Enum.Material.SmoothPlastic
  7615. obj76.Size = Vector3.new(0.300000012, 0.300000012, 0.300000012)
  7616. obj76.BrickColor = BrickColor.new("Pastel brown")
  7617. obj76.Friction = 0.30000001192093
  7618. obj76.Shape = Enum.PartType.Ball
  7619. obj76.Name = "stretchlol"
  7620. obj76.Parent = obj41
  7621. obj1.PrimaryPart = obj4
  7622.  
  7623. local stretches = obj41:GetChildren()
  7624. for i,v in pairs(stretches) do
  7625. v.Anchored = true
  7626. v.Parent = obj1
  7627. end
  7628. for i,v in pairs(obj2:GetChildren()) do
  7629. v.Anchored = true
  7630. v.Parent = obj1
  7631. end
  7632. obj2:Destroy()
  7633. obj41:Destroy()
  7634.  
  7635. local previous = nil
  7636. for i,v in pairs(obj1:GetChildren()) do
  7637. if v:IsA('BasePart') then
  7638. if previous then
  7639. local weld = Instance.new('Weld',v)
  7640. weld.Part0 = v
  7641. weld.Part1 = previous
  7642. weld.C0 = v.CFrame:inverse() * previous.CFrame
  7643. previous.Anchored = false
  7644. previous.CanCollide = false
  7645. local vee = v
  7646. weld.AncestryChanged:connect(function(mez,par)
  7647. wait()
  7648. weld.Parent = vee
  7649. end)
  7650. end
  7651. previous = v
  7652. end
  7653. end
  7654. previous.Anchored = false
  7655. previous.CanCollide = false
  7656. obj1:SetPrimaryPartCFrame(handle.CFrame*CFrame.Angles(0,math.rad(180),0)+Vector3.new(0,100,0))
  7657. -- 2 - Part
  7658. local ree = Instance.new("Part")
  7659. ree.CFrame = CFrame.new(Vector3.new(50.5, 141, 5.5))
  7660. ree.Transparency = 0.80000001192093
  7661. ree.Material = Enum.Material.Neon
  7662. ree.CFrame = CFrame.new(obj4.Position)
  7663. ree.Size = Vector3.new(5, math.huge, 5)
  7664. ree.BrickColor = BrickColor.new("New Yeller")
  7665. ree.Friction = 0.30000001192093
  7666. ree.Shape = Enum.PartType.Block
  7667. ree.Parent = handle
  7668.  
  7669. -- 3 - Mesh
  7670. local ree2 = Instance.new("CylinderMesh")
  7671. ree2.Parent = ree
  7672. local thing = Instance.new('BodyPosition',obj9)
  7673. local thing2 = Instance.new('BodyPosition',ree)
  7674. thing2.P = 100000
  7675. thing2.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  7676. thing.MaxForce = Vector3.new(10000,10000,10000)
  7677. for i=1,100 do
  7678. thing2.Position = obj4.Position
  7679. obj1:SetPrimaryPartCFrame(CFrame.new(obj1.PrimaryPart.Position)*CFrame.Angles(math.rad(handle.Orientation.X),math.rad(handle.Orientation.Y),math.rad(handle.Orientation.Z))*CFrame.Angles(0,math.rad(180),0))
  7680. thing.Position = handle.Position+(handle.CFrame.rightVector*0.5)
  7681. wait()
  7682. end
  7683. thing:Destroy()
  7684. local lmfao = Instance.new('Weld',obj4)
  7685. lmfao.C0 = CFrame.new(2.5,0.2,0)*CFrame.Angles(0,math.rad(180),0)
  7686. lmfao.Part0 = obj4
  7687. lmfao.Part1 = handle
  7688. ree:Destroy()
  7689. working = false
  7690. end
  7691.  
  7692. function katanamode()
  7693. blademode = "katana"
  7694. -- 1 - weeb shit
  7695. local weebshit1 = handle
  7696.  
  7697. -- 16 - top cap
  7698. local weebshit16 = Instance.new("Part")
  7699. weebshit16.CFrame = CFrame.new(Vector3.new(206.400146, 11.5499945, 5.00058556)) * CFrame.Angles(-3.1415927410126, 0, 1.5707963705063)
  7700. weebshit16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7701. weebshit16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7702. weebshit16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7703. weebshit16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7704. weebshit16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7705. weebshit16.Size = Vector3.new(0.1, 0.05,0.05) --0.65, 0.65
  7706. weebshit16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7707. weebshit16.Anchored = false
  7708. weebshit16.BrickColor = BrickColor.new("Really black")
  7709. weebshit16.Friction = 0.30000001192093
  7710. weebshit16.Shape = Enum.PartType.Cylinder
  7711. weebshit16.Name = "top cap"
  7712. weebshit16.Parent = weebshit1
  7713. local weld = Instance.new('Weld',weebshit16)
  7714. weld.Part0 = weebshit16
  7715. weld.Part1 = handle
  7716. weld.C1 = CFrame.new(0.6, 0, 0, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048)
  7717. --weld,part,endsize,endpos,amntime
  7718. grow(weld,weebshit16,Vector3.new(0.1,0.65,0.65),CFrame.new(0.6, 0, 0, 1.00000048, 0, 0, 0, 1, 0, 0, 0, 1.00000048),0.1)
  7719.  
  7720. -- 8 - blade
  7721. local weebshit8 = Instance.new("Part")
  7722. weebshit8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7723. weebshit8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7724. weebshit8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7725. weebshit8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7726. weebshit8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7727. weebshit8.Material = Enum.Material.Metal
  7728. weebshit8.Size = Vector3.new(0.23,0.05, 0.1)
  7729. weebshit8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7730. weebshit8.Anchored = false
  7731. weebshit8.BrickColor = BrickColor.new("Dark stone grey")
  7732. weebshit8.Friction = 0.30000001192093
  7733. weebshit8.Shape = Enum.PartType.Block
  7734. weebshit8.Name = "blade"
  7735. weebshit8.Parent = weebshit1
  7736. weebshit8:BreakJoints()
  7737. local bld1 = weebshit8
  7738. local weld2 = Instance.new('Weld',weebshit8)
  7739. weld2.Part0 = weebshit8
  7740. weld2.Part1 = handle
  7741. weld2.C1 = CFrame.new(0.75, 0, 0) * CFrame.Angles(math.rad(180), 0, math.rad(-90))
  7742. local coru=coroutine.wrap(function()
  7743. grow(weld2,weebshit8,Vector3.new(0.23,1.17,0.1),CFrame.new(1.25, 0, 0) * CFrame.Angles(math.rad(180), 0, math.rad(-90)),0.05)
  7744. end)
  7745. coru()
  7746.  
  7747. -- 9 - blade
  7748. local weebshit9 = Instance.new("Part")
  7749. weebshit9.CFrame = CFrame.new(Vector3.new(206.475388, 13.3372736, 5.00158167)) * CFrame.Angles(-0, 0, 0.052359949797392)
  7750. weebshit9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7751. weebshit9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7752. weebshit9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7753. weebshit9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7754. weebshit9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7755. weebshit9.Material = Enum.Material.Metal
  7756. weebshit9.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7757. weebshit9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7758. weebshit9.Anchored = false
  7759. weebshit9.BrickColor = BrickColor.new("Pearl")
  7760. weebshit9.Friction = 0.30000001192093
  7761. weebshit9.Shape = Enum.PartType.Block
  7762. weebshit9.Name = "blade"
  7763. weebshit9.Parent = weebshit8
  7764. local bld2 = weebshit9
  7765. local weld3 = Instance.new('Weld',weebshit9)
  7766. weld3.Part0 = weebshit9
  7767. weld3.Part1 = weebshit8
  7768. weld3.C1 = CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0)
  7769. grow(weld3,weebshit9,Vector3.new(0.100000009, 1.17, 0.0500000007),CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.05)
  7770. -- 10 - blade
  7771. local weebshit10 = Instance.new("Part")
  7772. weebshit10.CFrame = CFrame.new(Vector3.new(206.26973, 14.458313, 5)) * CFrame.Angles(-0, 0, 0.10472027212381)
  7773. weebshit10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7774. weebshit10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7775. weebshit10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7776. weebshit10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7777. weebshit10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7778. weebshit10.Material = Enum.Material.Metal
  7779. weebshit10.Size = Vector3.new(0.229999945, 0.05, 0.100000009)
  7780. weebshit10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7781. weebshit10.Anchored = false
  7782. weebshit10.BrickColor = BrickColor.new("Dark stone grey")
  7783. weebshit10.Friction = 0.30000001192093
  7784. weebshit10.Shape = Enum.PartType.Block
  7785. weebshit10.Name = "blade"
  7786. weebshit10.Parent = weebshit1
  7787. local weld4 = Instance.new('Weld',weebshit10)
  7788. weld4.Part0 = weebshit10
  7789. weld4.Part1 = weebshit8
  7790. weld4.C1 = CFrame.new(-0.01, 0.55, -1.14440918e-05, 0.998631477, 0.0523363762, -1.25522347e-05, 0.0523363687, -0.998631358, -8.97663813e-06, -1.3056685e-05, 8.01841452e-06, -1.00000095)
  7791. local coru=coroutine.wrap(function()
  7792. grow(weld4,weebshit10,Vector3.new(0.23,1.17,0.1),CFrame.new(-0.0285797119, 1.14634609, -1.14440918e-05, 0.998631477, 0.0523363762, -1.25522347e-05, 0.0523363687, -0.998631358, -8.97663813e-06, -1.3056685e-05, 8.01841452e-06, -1.00000095),0.1)
  7793. end)
  7794. coru()
  7795. -- 11 - blade
  7796. local weebshit11 = Instance.new("Part")
  7797. weebshit11.CFrame = CFrame.new(Vector3.new(206.384079, 14.4703341, 5.00158167)) * CFrame.Angles(-0, 0, 0.10472027212381)
  7798. weebshit11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7799. weebshit11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7800. weebshit11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7801. weebshit11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7802. weebshit11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7803. weebshit11.Material = Enum.Material.Metal
  7804. weebshit11.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7805. weebshit11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7806. weebshit11.Anchored = false
  7807. weebshit11.BrickColor = BrickColor.new("Pearl")
  7808. weebshit11.Friction = 0.30000001192093
  7809. weebshit11.Shape = Enum.PartType.Block
  7810. weebshit11.Name = "blade"
  7811. weebshit11.Parent = weebshit1
  7812. local weld5 = Instance.new('Weld',weebshit10)
  7813. weld5.Part0 = weebshit10
  7814. weld5.Part1 = weebshit11
  7815. weld5.C1 = CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0)
  7816. grow(weld5,weebshit11,Vector3.new(0.100000009, 1.16999841, 0.0500000007),CFrame.new(-0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.1)
  7817.  
  7818. -- 15 - blade
  7819. local weebshit15 = Instance.new("Part")
  7820. weebshit15.CFrame = CFrame.new(Vector3.new(206.36055, 13.3312511, 5)) * CFrame.Angles(-0, 0, 0.052359949797392)
  7821. weebshit15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7822. weebshit15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7823. weebshit15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7824. weebshit15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7825. weebshit15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7826. weebshit15.Material = Enum.Material.Metal
  7827. weebshit15.Size = Vector3.new(0.229999945, 0.55, 0.100000009)
  7828. weebshit15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7829. weebshit15.Anchored = false
  7830. weebshit15.BrickColor = BrickColor.new("Dark stone grey")
  7831. weebshit15.Friction = 0.30000001192093
  7832. weebshit15.Shape = Enum.PartType.Block
  7833. weebshit15.Name = "blade"
  7834. weebshit15.Parent = weebshit1
  7835. local weld6 = Instance.new('Weld',weebshit15)
  7836. weld6.Part0 = weebshit15
  7837. weld6.Part1 = weebshit10
  7838. weld6.C1 = CFrame.new(-0.01, -0.55, 0, 0.99863112, -0.0523363762, 5.34574838e-07, -0.0523363203, -0.998631358, 9.75034527e-06, 9.04611142e-08, -1.00508332e-05, -1.0000006)
  7839. local coru=coroutine.wrap(function()
  7840. grow(weld6,weebshit15,Vector3.new(0.229999945, 1.17000151, 0.100000009),CFrame.new(-0.0274810791, -1.13038063, 0, 0.99863112, -0.0523363762, 5.34574838e-07, -0.0523363203, -0.998631358, 9.75034527e-06, 9.04611142e-08, -1.00508332e-05, -1.0000006),0.1)
  7841. end)
  7842. coru()
  7843.  
  7844. -- 12 - blade
  7845. local weebshit12 = Instance.new("Part")
  7846. weebshit12.CFrame = CFrame.new(Vector3.new(206.50705, 12.1849957, 5.00158167)) * CFrame.Angles(-0, 0, -0)
  7847. weebshit12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7848. weebshit12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7849. weebshit12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7850. weebshit12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7851. weebshit12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7852. weebshit12.Material = Enum.Material.Metal
  7853. weebshit12.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7854. weebshit12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7855. weebshit12.Anchored = false
  7856. weebshit12.BrickColor = BrickColor.new("Pearl")
  7857. weebshit12.Friction = 0.30000001192093
  7858. weebshit12.Shape = Enum.PartType.Block
  7859. weebshit12.Name = "blade"
  7860. weebshit12.Parent = weebshit1
  7861. local weld7 = Instance.new('Weld',weebshit12)
  7862. weld7.Part0 = weebshit12
  7863. weld7.Part1 = weebshit15
  7864. weld7.C1 = CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0)
  7865. grow(weld7,weebshit12,Vector3.new(0.100000009, 1.16999841, 0.0500000007),CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.1)
  7866.  
  7867. -- 14 - blade
  7868. local weebshit14 = Instance.new("Part")
  7869. weebshit14.CFrame = CFrame.new(Vector3.new(206.155365, 15.3628922, 5)) * CFrame.Angles(-0, 0, 0.15708021819592)
  7870. weebshit14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7871. weebshit14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7872. weebshit14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7873. weebshit14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7874. weebshit14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7875. weebshit14.Material = Enum.Material.Metal
  7876. weebshit14.Size = Vector3.new(0.229999945, 0.05, 0.100000009)
  7877. weebshit14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7878. weebshit14.Anchored = false
  7879. weebshit14.BrickColor = BrickColor.new("Dark stone grey")
  7880. weebshit14.Friction = 0.30000001192093
  7881. weebshit14.Shape = Enum.PartType.Block
  7882. weebshit14.Name = "blade"
  7883. weebshit14.Parent = weebshit1
  7884. local weld8 = Instance.new('Weld',weebshit14)
  7885. weld8.Part0 = weebshit14
  7886. weld8.Part1 = weebshit15
  7887. weld8.C1 = CFrame.new(-0.01, 0.45, -1.43051147e-06, 0.99862963, 0.0522801876, -1.10407145e-05, 0.0522794127, 0.998632491, -1.50609173e-06, 8.47656065e-06, 1.7598054e-06, 1)
  7888. local coru=coroutine.wrap(function()
  7889. grow(weld8,weebshit14,Vector3.new(0.229999945, 0.700001657, 0.100000009),CFrame.new(-0.0191650391, 0.911635399, -1.43051147e-06, 0.99862963, 0.0522801876, -1.10407145e-05, 0.0522794127, 0.998632491, -1.50609173e-06, 8.47656065e-06, 1.7598054e-06, 1),0.1)
  7890. end)
  7891. coru()
  7892.  
  7893. -- 13 - blade
  7894. local weebshit13 = Instance.new("Part")
  7895. weebshit13.CFrame = CFrame.new(Vector3.new(206.268967, 15.3808832, 5.00158167)) * CFrame.Angles(-0, 0, 0.15708021819592)
  7896. weebshit13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7897. weebshit13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7898. weebshit13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7899. weebshit13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7900. weebshit13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7901. weebshit13.Material = Enum.Material.Metal
  7902. weebshit13.Size = Vector3.new(0.100000009, 0.05, 0.0500000007)
  7903. weebshit13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7904. weebshit13.Anchored = false
  7905. weebshit13.BrickColor = BrickColor.new("Pearl")
  7906. weebshit13.Friction = 0.30000001192093
  7907. weebshit13.Shape = Enum.PartType.Block
  7908. weebshit13.Name = "blade"
  7909. weebshit13.Parent = weebshit1
  7910. local weld9 = Instance.new('Weld',weebshit13)
  7911. weld9.Part0 = weebshit13
  7912. weld9.Part1 = weebshit14
  7913. weld9.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0)
  7914. grow(weld9,weebshit13,Vector3.new(0.100000009, 0.699998796, 0.0500000007),CFrame.new(0.11, 0, 0) * CFrame.Angles(0, 0, 0),0.1)
  7915.  
  7916. -- 18 - blade
  7917. local weebshit18 = Instance.new("WedgePart")
  7918. weebshit18.CFrame = CFrame.new(Vector3.new(206.077118, 15.85674, 5)) * CFrame.Angles(1.5707963705063, -1.4137160778046, 1.5707963705063)
  7919. weebshit18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7920. weebshit18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7921. weebshit18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7922. weebshit18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7923. weebshit18.Material = Enum.Material.Metal
  7924. weebshit18.Size = Vector3.new(0.100000009, 0.05, 0.230000108)
  7925. weebshit18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7926. weebshit18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7927. weebshit18.Anchored = false
  7928. weebshit18.BrickColor = BrickColor.new("Dark stone grey")
  7929. weebshit18.Friction = 0.30000001192093
  7930. weebshit18.Name = "blade"
  7931. weebshit18.Parent = weebshit1
  7932. local weld10 = Instance.new('Weld',weebshit18)
  7933. weld10.Part0 = weebshit18
  7934. weld10.Part1 = weebshit14
  7935. weld10.C1 = CFrame.new(-0.015, 0.299937057, 2.86102295e-06)*CFrame.Angles(0,math.rad(-90),0)
  7936. local coru=coroutine.wrap(function()
  7937. grow(weld10,weebshit18,Vector3.new(0.1, 0.3, 0.23),CFrame.new(0, 0.499937057, 2.86102295e-06)*CFrame.Angles(0,math.rad(-90),0),0.1)
  7938. end)
  7939. coru()
  7940.  
  7941. -- 19 - blade
  7942. local weebshit19 = Instance.new("WedgePart")
  7943. weebshit19.CFrame = CFrame.new(Vector3.new(206.096375, 15.8952179, 5.00177383)) * CFrame.Angles(1.5707963705063, -1.4137160778046, 1.5707963705063)
  7944. weebshit19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7945. weebshit19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7946. weebshit19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7947. weebshit19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7948. weebshit19.Material = Enum.Material.Metal
  7949. weebshit19.Size = Vector3.new(0.0500000007, 0.05, 0.280000091)
  7950. weebshit19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7951. weebshit19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7952. weebshit19.Anchored = false
  7953. weebshit19.BrickColor = BrickColor.new("Pearl")
  7954. weebshit19.Friction = 0.30000001192093
  7955. weebshit19.Name = "blade"
  7956. weebshit19.Parent = weebshit1
  7957. local weld11 = Instance.new('Weld',weebshit19)
  7958. weld11.Part0 = weebshit19
  7959. weld11.Part1 = weebshit18
  7960. weld11.C1 = CFrame.new(0, 0, -0.029) * CFrame.Angles(0, 0, 0)
  7961. local coru=coroutine.wrap(function()
  7962. grow(weld11,weebshit19,Vector3.new(0.05, 0.37, 0.28),CFrame.new(0, 0.011, -0.029) * CFrame.Angles(0, 0, 0),0.1)
  7963. end)
  7964. coru()
  7965. end
  7966.  
  7967. function gunmode()
  7968. working = true
  7969.  
  7970. working = false
  7971. end
  7972.  
  7973. function knifemode()
  7974. blademode = "knife"
  7975. -- 6 - thicc cap
  7976. local obj6 = Instance.new("Part")
  7977. obj6.CFrame = CFrame.new(Vector3.new(202.399948, 10.5999813, 5.00099993)) * CFrame.Angles(-0, 0, 3.5017728805542e-07)
  7978. obj6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7979. obj6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7980. obj6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7981. obj6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7982. obj6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7983. obj6.Size = Vector3.new(0.3, 0.3, 0.3)
  7984. obj6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7985. obj6.Anchored = false
  7986. obj6.BrickColor = BrickColor.new("Really black")
  7987. obj6.Friction = 0.30000001192093
  7988. obj6.Shape = Enum.PartType.Ball
  7989. obj6.Name = "thicc cap"
  7990. obj6.Parent = handle
  7991. local weld2 = Instance.new('Weld',obj6)
  7992. weld2.Part0 = obj6
  7993. weld2.Part1 = handle
  7994. weld2.C0 = CFrame.new(0.4, 0, 0)
  7995. grow(weld2,obj6,Vector3.new(0.3, 0.3, 0.3),CFrame.new(-0.15, 0, 0),0.1)
  7996.  
  7997. -- 8 - thicc top cap
  7998. local obj8 = Instance.new("Part")
  7999. obj8.CFrame = CFrame.new(Vector3.new(202.399963, 11.3000078, 5.00099993)) * CFrame.Angles(-0, 0, 3.5017728805542e-07)
  8000. obj8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8001. obj8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8002. obj8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8003. obj8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8004. obj8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8005. obj8.Size = Vector3.new(0.3, 0.3, 0.3)
  8006. obj8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8007. obj8.Anchored = false
  8008. obj8.BrickColor = BrickColor.new("Really black")
  8009. obj8.Friction = 0.30000001192093
  8010. obj8.Shape = Enum.PartType.Ball
  8011. obj8.Name = "thicc top cap"
  8012. obj8.Parent = handle
  8013. local weld1 = Instance.new('Weld',obj8)
  8014. weld1.Part0 = obj8
  8015. weld1.Part1 = handle
  8016. weld1.C0 = CFrame.new(-0.4, 0, 0)
  8017. grow(weld1,obj8,Vector3.new(0.3, 0.3, 0.3),CFrame.new(0.15, 0, 0),0.1)
  8018. -- 4 - thicc blade
  8019. local obj4 = Instance.new("Part")
  8020. obj4.CFrame = CFrame.new(Vector3.new(202.40007, 12.1600046, 5.00099707)) * CFrame.Angles(-0, 0, -0)
  8021. obj4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8022. obj4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8023. obj4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8024. obj4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8025. obj4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8026. obj4.Material = Enum.Material.Metal
  8027. obj4.Size = Vector3.new(0.23, 0.1, 0.1)
  8028. obj4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8029. obj4.Anchored = false
  8030. obj4.BrickColor = BrickColor.new("Dark stone grey")
  8031. obj4.Friction = 0.30000001192093
  8032. obj4.Shape = Enum.PartType.Block
  8033. obj4.Name = "blade"
  8034. obj4.Parent = handle
  8035. local weld4 = Instance.new('Weld',obj4)
  8036. weld4.Part0 = obj4
  8037. weld4.Part1 = handle
  8038. weld4.C0 = CFrame.new(0, -0.535, 0)*CFrame.Angles(0,0,math.rad(90))
  8039. local coru=coroutine.wrap(function()
  8040. grow(weld4,obj4,Vector3.new(0.23, 1.19, 0.1),CFrame.new(0.5, 0, 0),0.1)
  8041. end)
  8042. coru()
  8043.  
  8044. -- 5 - thicc blade
  8045. local obj5 = Instance.new("Part")
  8046. obj5.CFrame = CFrame.new(Vector3.new(202.507141, 12.1749954, 5.00158167)) * CFrame.Angles(-0, 0, -0)
  8047. obj5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8048. obj5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8049. obj5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8050. obj5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8051. obj5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8052. obj5.Material = Enum.Material.Metal
  8053. obj5.Size = Vector3.new(0.100000009, 0.1, 0.0500000007)
  8054. obj5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8055. obj5.Anchored = false
  8056. obj5.BrickColor = BrickColor.new("Pearl")
  8057. obj5.Friction = 0.30000001192093
  8058. obj5.Shape = Enum.PartType.Block
  8059. obj5.Name = "blade"
  8060. obj5.Parent = handle
  8061. local weld5 = Instance.new('Weld',obj5)
  8062. weld5.Part0 = obj5
  8063. weld5.Part1 = obj4
  8064. weld5.C0 = CFrame.new(0.09, 0, 0)*CFrame.Angles(0,0,0)
  8065. grow(weld5,obj5,Vector3.new(0.1, 1.19, 0.05),CFrame.new(0, 0, 0),0.1)
  8066.  
  8067. -- 3 - thicc blade
  8068. local obj3 = Instance.new("WedgePart")
  8069. obj3.CFrame = CFrame.new(Vector3.new(202.40007, 12.9000006, 5.00099707)) * CFrame.Angles(-0, -1.5707963705063, 0)
  8070. obj3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8071. obj3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8072. obj3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8073. obj3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8074. obj3.Material = Enum.Material.Metal
  8075. obj3.Size = Vector3.new(0.1, 0, 0.23)
  8076. obj3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8077. obj3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8078. obj3.Anchored = false
  8079. obj3.BrickColor = BrickColor.new("Dark stone grey")
  8080. obj3.Friction = 0.30000001192093
  8081. obj3.Name = "blade"
  8082. obj3.Parent = handle
  8083. local weld6 = Instance.new('Weld',obj3)
  8084. weld6.Part0 = obj3
  8085. weld6.Part1 = obj4
  8086. weld6.C0 = CFrame.new(0, -0.595, 0)*CFrame.Angles(math.rad(0),math.rad(270),math.rad(0))
  8087. local coru=coroutine.wrap(function()
  8088. grow(weld6,obj3,Vector3.new(0.1, 0.3, 0.23),CFrame.new(0, 0.15, 0),0.05)
  8089. end)
  8090. coru()
  8091.  
  8092. -- 2 - thicc blade
  8093. local obj2 = Instance.new("WedgePart")
  8094. obj2.CFrame = CFrame.new(Vector3.new(202.423431, 12.9305696, 5.00099707)) * CFrame.Angles(-0, -1.5707963705063, 0)
  8095. obj2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  8096. obj2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  8097. obj2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  8098. obj2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  8099. obj2.Material = Enum.Material.Metal
  8100. obj2.Size = Vector3.new(0.05, 0, 0.26)
  8101. obj2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  8102. obj2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  8103. obj2.Anchored = false
  8104. obj2.BrickColor = BrickColor.new("Lily white")
  8105. obj2.Friction = 0.30000001192093
  8106. obj2.Name = "blade"
  8107. obj2.Parent = handle
  8108. local weld7 = Instance.new('Weld',obj2)
  8109. weld7.Part0 = obj2
  8110. weld7.Part1 = obj4
  8111. weld7.C0 = CFrame.new(0, -0.595, 0)*CFrame.Angles(math.rad(0),math.rad(270),math.rad(0))
  8112. grow(weld7,obj2,Vector3.new(0.05, 0.33, 0.24),CFrame.new(-0.02, 0.165, 0),0.05)
  8113. end
  8114.  
  8115. function raep()
  8116. working = true
  8117. pcall(function()
  8118. local holyshit = Instance.new("Sound", handle)
  8119. holyshit.SoundId = "rbxassetid://1087802599"
  8120. holyshit.Volume = 5
  8121. holyshit:Play()
  8122. holyshit.TimePosition = 0.6
  8123. --[[local waitwhatthefuck = Instance.new("Sound", handle)
  8124. waitwhatthefuck.SoundId = "rbxassetid://447226325"
  8125. waitwhatthefuck:Play()]]--
  8126. local coru=coroutine.wrap(function()
  8127. wait(1.95)
  8128. holyshit.TimePosition = 2.8
  8129. end)
  8130. coru()
  8131. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8132. tweld.Part0 = char.HumanoidRootPart
  8133. tweld.Part1 = char.Torso
  8134. local rweld = Instance.new("Weld", char["Right Arm"])
  8135. rweld.Part0 = char["Torso"]
  8136. rweld.Part1 = char["Right Arm"]
  8137. rweld.C0 = CFrame.new(1.5, 0, 0)
  8138. local lweld = Instance.new("Weld", char["Left Arm"])
  8139. lweld.Part0 = char.Torso
  8140. lweld.Part1 = char["Left Arm"]
  8141. lweld.C0 = CFrame.new(-1.5, 0, 0)
  8142.  
  8143. char.Humanoid.WalkSpeed = 16
  8144.  
  8145. local cor = coroutine.wrap(function()
  8146. lerp(rweld,rweld.C0,CFrame.new(1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(50)),0.2)
  8147. end)
  8148. local cor2 = coroutine.wrap(function()
  8149. lerp(tweld,tweld.C0,CFrame.new(0, -0.25, 0) * CFrame.Angles(math.rad(-15), math.rad(-45), math.rad(0)),0.2)
  8150. end)
  8151. cor()
  8152. cor2()
  8153. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, -0.35) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-20)),0.2)
  8154.  
  8155. local particl = Instance.new("ParticleEmitter")
  8156. particl.LightEmission = 3
  8157. particl.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(42, 0, 255)), ColorSequenceKeypoint.new(0.25, Color3.fromRGB(248, 153, 0)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 0))})
  8158. particl.LightInfluence = 0.75
  8159. particl.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, 1), NumberSequenceKeypoint.new(1, 0)})
  8160. particl.Lifetime = NumberRange.new(0.1, 0.5)
  8161. particl.Rate = 50
  8162. particl.RotSpeed = NumberRange.new(300, 300)
  8163. particl.Speed = NumberRange.new(0, 1)
  8164. particl.SpreadAngle = Vector2.new(90, 90)
  8165. particl.Parent = handle
  8166.  
  8167. for i, v in pairs(handle["pink toy"]:GetChildren()) do
  8168. if v:IsA("Part") then
  8169. cooldildo = particl:Clone()
  8170. cooldildo.Parent = v
  8171. end
  8172. end
  8173.  
  8174. particl:Remove()
  8175.  
  8176. wait(1)
  8177. MOAN = true
  8178.  
  8179. char.Humanoid.WalkSpeed = 75
  8180.  
  8181.  
  8182. local cor = coroutine.wrap(function()
  8183. lerp(rweld,rweld.C0,CFrame.new(1.6, 0.5, -0.75) * CFrame.Angles(0, math.rad(55), math.rad(90)),0.06)
  8184. end)
  8185. local cor2 = coroutine.wrap(function()
  8186. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)),0.06)
  8187. end)
  8188. local cor3 = coroutine.wrap(function()
  8189. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(270),math.rad(-90),math.rad(180)), 0.06)
  8190. end)
  8191. cor()
  8192. cor2()
  8193. cor3()
  8194. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-20)),0.06)
  8195. local omgg = 0
  8196. repeat wait(0.05) omgg = omgg+0.05 until aidsificating ~= nil or omgg > 2
  8197. holyshit:Destroy()
  8198. char.Humanoid.WalkSpeed = 16
  8199. MOAN = false
  8200. if aidsificating == nil then
  8201. for i, v in pairs(handle["pink toy"]:GetChildren()) do
  8202. if v:IsA("Part") then
  8203. v:FindFirstChild("ParticleEmitter"):Destroy()
  8204. end
  8205. end
  8206. local cor = coroutine.wrap(function()
  8207. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.08)
  8208. end)
  8209. local cor2 = coroutine.wrap(function()
  8210. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.08)
  8211. end)
  8212. local cor3 = coroutine.wrap(function()
  8213. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.08)
  8214. end)
  8215. cor()
  8216. cor2()
  8217. cor3()
  8218. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-20)),0.08)
  8219.  
  8220. lweld:Remove()
  8221. rweld:Remove()
  8222. tweld:Remove()
  8223.  
  8224. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  8225. local clone = torsoclone:Clone()
  8226. clone.Part0 = char.HumanoidRootPart
  8227. clone.Part1 = char.Torso
  8228. clone.Parent = char.HumanoidRootPart
  8229. end
  8230. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8231. local clone = leftclone:Clone()
  8232. clone.Part0 = char.Torso
  8233. clone.Part1 = char["Left Arm"]
  8234. clone.Parent = char.Torso
  8235. end
  8236. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8237. local clone = rightclone:Clone()
  8238. clone.Part0 = char.Torso
  8239. clone.Part1 = char["Right Arm"]
  8240. clone.Parent = char.Torso
  8241. end
  8242. else
  8243. pcall(function()
  8244. aidsificating.HumanoidRootPart:Destroy()
  8245. end)
  8246. pcall(function()
  8247. ragdollpart(aidsificating,"Right Arm")
  8248. ragdollpart(aidsificating,"Right Leg")
  8249. ragdollpart(aidsificating,"Left Arm")
  8250. ragdollpart(aidsificating,"Left Leg")
  8251. end)
  8252. pcall(function()
  8253. ragdollpart(aidsificating,"RightUpperArm")
  8254. ragdollpart(aidsificating,"RightUpperLeg")
  8255. ragdollpart(aidsificating,"LeftUpperArm")
  8256. ragdollpart(aidsificating,"LeftUpperLeg")
  8257. end)
  8258. pcall(function()
  8259. local weld = Instance.new('Weld',aidsificating.Torso)
  8260. weld.Part0 = aidsificating.Torso
  8261. weld.Part1 = handle
  8262. weld.C0 = CFrame.new(0.2,-2.5,2)*CFrame.Angles(math.rad(135),0,math.rad(-90))
  8263. for i,v in pairs(handle["pink toy"]:GetChildren()) do
  8264. if v:IsA('BasePart') and v.Name == "stretchlol" then
  8265. v.BrickColor = aidsificating.Torso.BrickColor
  8266. v.Transparency = 0
  8267. end
  8268. end
  8269. end)
  8270. pcall(function()
  8271. local weld = Instance.new('Weld',aidsificating.UpperTorso)
  8272. weld.Part0 = aidsificating.UpperTorso
  8273. weld.Part1 = handle
  8274. weld.C0 = CFrame.new(0.2,-2.5,2)*CFrame.Angles(math.rad(135),0,math.rad(-90))
  8275. for i,v in pairs(handle["pink toy"]:GetChildren()) do
  8276. if v:IsA('BasePart') and v.Name == "stretchlol" then
  8277. v.BrickColor = aidsificating.UpperTorso.BrickColor
  8278. v.Transparency = 0
  8279. end
  8280. end
  8281. end)
  8282. lerp(rweld,rweld.C0,CFrame.new(1.6, 1, -0.5) * CFrame.Angles(0, math.rad(55), math.rad(145)),0.06)
  8283. wait(2)
  8284. for i,v in pairs(aidsificating:GetDescendants()) do
  8285. if v:IsA('Weld') then v:Destroy() end
  8286. end
  8287. pcall(function()
  8288. ragdollpart(aidsificating,"Head")
  8289. end)
  8290. pcall(function()
  8291. local thang = "Torso"
  8292. if aidsificating:FindFirstChild('UpperTorso') then
  8293. thang = "UpperTorso"
  8294. end
  8295. local ayybleed = Instance.new('Part',aidsificating)
  8296. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  8297. ayybleed.BrickColor = BrickColor.new('Maroon')
  8298. ayybleed.Material = Enum.Material.SmoothPlastic
  8299. ayybleed.Name = "ayybleed"
  8300. ayybleed.CanCollide = false
  8301. ayybleed.Transparency = 1
  8302. ayybleed.CFrame = aidsificating[thang].CFrame
  8303. ayybleed:BreakJoints()
  8304. local attachment1 = Instance.new('Attachment',ayybleed)
  8305. attachment1.Position = Vector3.new(0,-1,0)
  8306. attachment1.Orientation = Vector3.new(180, 0, 0)
  8307. local attachment0 = Instance.new('Attachment',aidsificating[thang])
  8308. if attachment0 and attachment1 then
  8309. local constraint = Instance.new("HingeConstraint")
  8310. constraint.Attachment0 = attachment0
  8311. constraint.Attachment1 = attachment1
  8312. constraint.LimitsEnabled = true
  8313. constraint.UpperAngle = 0
  8314. constraint.LowerAngle = 0
  8315. constraint.Parent = aidsificating
  8316. end
  8317. local bleedBLEED= coroutine.wrap(function()
  8318. bleed(ayybleed,true)
  8319. end)
  8320. bleedBLEED()
  8321. end)
  8322. aidsificating = nil
  8323. pcall(function()
  8324. for i,v in pairs(handle["pink toy"]:GetChildren()) do
  8325. if v:IsA('BasePart') and v.Name == "stretchlol" then
  8326. v.Transparency = 1
  8327. end
  8328. end
  8329. end)
  8330. local cor = coroutine.wrap(function()
  8331. lerp(rweld,rweld.C0,CFrame.new(1.6, -0.25, 0.75) * CFrame.Angles(0, math.rad(55), math.rad(145)),0.04)
  8332. end)
  8333. local cor2 = coroutine.wrap(function()
  8334. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)),0.04)
  8335. end)
  8336. cor()
  8337. cor2()
  8338. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0, 0.35) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-20)),0.04)
  8339. wait(0.1)
  8340. local cor = coroutine.wrap(function()
  8341. lerp(rweld,rweld.C0,CFrame.new(1.6, -0.5, 1) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8342. end)
  8343. local cor2 = coroutine.wrap(function()
  8344. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)),0.08)
  8345. end)
  8346. local cor3 = coroutine.wrap(function()
  8347. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.08)
  8348. end)
  8349. cor()
  8350. cor2()
  8351. cor3()
  8352. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.08)
  8353.  
  8354. lweld:Remove()
  8355. rweld:Remove()
  8356. tweld:Remove()
  8357.  
  8358. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  8359. local clone = torsoclone:Clone()
  8360. clone.Part0 = char.HumanoidRootPart
  8361. clone.Part1 = char.Torso
  8362. clone.Parent = char.HumanoidRootPart
  8363. end
  8364. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8365. local clone = leftclone:Clone()
  8366. clone.Part0 = char.Torso
  8367. clone.Part1 = char["Left Arm"]
  8368. clone.Parent = char.Torso
  8369. end
  8370. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8371. local clone = rightclone:Clone()
  8372. clone.Part0 = char.Torso
  8373. clone.Part1 = char["Right Arm"]
  8374. clone.Parent = char.Torso
  8375. end
  8376. end
  8377. end)
  8378. working = false
  8379. end
  8380.  
  8381. function katanaQ()
  8382. working = true
  8383. swinging = true
  8384. gettingeem = true
  8385. pcall(function()
  8386. local rweld = Instance.new("Weld", char["Right Arm"])
  8387. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8388. pcall(function()
  8389. rweld.Part0 = char["Torso"]
  8390. rweld.Part1 = char["Right Arm"]
  8391. rweld.C0 = CFrame.new(1.5, 0, 0)
  8392. tweld.Part0 = char.HumanoidRootPart
  8393. tweld.Part1 = char.Torso
  8394. end)
  8395.  
  8396. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 100
  8397.  
  8398. local at1 = Instance.new("Attachment", handle)
  8399. local at2 = Instance.new("Attachment", handle)
  8400. at1.Visible = false
  8401. at1.Position = Vector3.new(5, 0, 0)
  8402. at2.Visible = false
  8403. at2.Position = Vector3.new(1, 0, 0)
  8404.  
  8405. local trail = Instance.new("Trail", handle)
  8406. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  8407. trail.LightEmission = 0.25
  8408. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.9), NumberSequenceKeypoint.new(1, 1)})
  8409. trail.Lifetime = 0.10
  8410. trail.MinLength = 0.05
  8411. trail.Attachment0 = at1
  8412. trail.Attachment1 = at2
  8413. local coru=coroutine.wrap(function()
  8414. lerp(rweld,rweld.C0,CFrame.new(1.35, 0.5, -1.2) * CFrame.Angles(0, math.rad(90), math.rad(90)),0.08)
  8415. end)
  8416. coru()
  8417. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(270),math.rad(-90),math.rad(180)), 0.08)
  8418. local ree=0
  8419. while goteem == nil and ree < 1 do
  8420. wait(0.05)
  8421. ree=ree+0.05
  8422. end
  8423. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  8424. gettingeem = false
  8425. swinging = false
  8426. if goteem then
  8427. wait(2)
  8428. pcall(function()
  8429. local sounn = Instance.new("Sound", goteem.Torso)
  8430. local lipp = math.random(1, 3)
  8431. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  8432. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  8433. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  8434. sounn:Play()
  8435. end)
  8436. ragdollpart(goteem,"Head")
  8437. for i,v in pairs(goteem:GetDescendants()) do
  8438. if v:IsA('Weld') then v:Destroy() end
  8439. end
  8440. goteem = nil
  8441. end
  8442. trail:Destroy()
  8443. at1:Destroy()
  8444. at2:Destroy()
  8445. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.05)
  8446. local cor = coroutine.wrap(function()
  8447. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8448. end)
  8449. cor()
  8450. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8451. rweld:Destroy()
  8452. tweld:Destroy()
  8453. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8454. local clone = rightclone:Clone()
  8455. clone.Part0 = char.Torso
  8456. clone.Part1 = char["Right Arm"]
  8457. clone.Parent = char.Torso
  8458. end
  8459. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8460. local clone = torsoclone:Clone()
  8461. clone.Part0 = char.HumanoidRootPart
  8462. clone.Part1 = char.Torso
  8463. clone.Parent = char.HumanoidRootPart
  8464. end
  8465. end)
  8466. swinging = false
  8467. gettingeem = false
  8468. working = false
  8469. end
  8470. local function katanaE()
  8471. working = true
  8472. swinging = true
  8473. SLESH = true
  8474. pcall(function()
  8475. local rweld = Instance.new("Weld", char["Right Arm"])
  8476. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8477. rweld.Part0 = char["Torso"]
  8478. rweld.Part1 = char["Right Arm"]
  8479. rweld.C0 = CFrame.new(1.5, 0, 0)
  8480. tweld.Part0 = char.HumanoidRootPart
  8481. tweld.Part1 = char.Torso
  8482.  
  8483. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 100
  8484.  
  8485. local at1 = Instance.new("Attachment", handle)
  8486. local at2 = Instance.new("Attachment", handle)
  8487. at1.Visible = false
  8488. at1.Position = Vector3.new(5, 0, 0)
  8489. at2.Visible = false
  8490. at2.Position = Vector3.new(1, 0, 0)
  8491.  
  8492. local trail = Instance.new("Trail", handle)
  8493. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  8494. trail.LightEmission = 0.25
  8495. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.9), NumberSequenceKeypoint.new(1, 1)})
  8496. trail.Lifetime = 0.10
  8497. trail.MinLength = 0.05
  8498. trail.Attachment0 = at1
  8499. trail.Attachment1 = at2
  8500. local coru=coroutine.wrap(function()
  8501. lerp(rweld,rweld.C0,CFrame.new(2, 1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(60)),0.08)
  8502. end)
  8503. coru()
  8504. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(270),math.rad(-270),math.rad(0)), 0.08)
  8505.  
  8506. wait(1)
  8507. char:FindFirstChildOfClass('Humanoid').WalkSpeed = 16
  8508. trail:Destroy()
  8509. at1:Destroy()
  8510. at2:Destroy()
  8511. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.05)
  8512. local cor = coroutine.wrap(function()
  8513. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8514. end)
  8515. cor()
  8516. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8517. rweld:Destroy()
  8518. tweld:Destroy()
  8519. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8520. local clone = rightclone:Clone()
  8521. clone.Part0 = char.Torso
  8522. clone.Part1 = char["Right Arm"]
  8523. clone.Parent = char.Torso
  8524. end
  8525. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8526. local clone = torsoclone:Clone()
  8527. clone.Part0 = char.HumanoidRootPart
  8528. clone.Part1 = char.Torso
  8529. clone.Parent = char.HumanoidRootPart
  8530. end
  8531. end)
  8532. swinging = false
  8533. SLESH = false
  8534. working = false
  8535. end
  8536.  
  8537. function begoneTHOUGHT()
  8538. working = true
  8539. pcall(function()
  8540. local thott = Instance.new("Sound", char)
  8541. thott.SoundId = "rbxassetid://949916584"
  8542. thott.Volume = 1
  8543. thott.TimePosition = 0.5
  8544. thott.PlaybackSpeed = 1
  8545. thott.EmitterSize = player.CameraMaxZoomDistance+1
  8546. thott.MaxDistance = player.CameraMaxZoomDistance+1
  8547. thott:Play()
  8548.  
  8549. local rweld = Instance.new("Weld", char["Right Arm"])
  8550. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8551. rweld.Part0 = char["Torso"]
  8552. rweld.Part1 = char["Right Arm"]
  8553. rweld.C0 = CFrame.new(1.5, 0, 0)
  8554. tweld.Part0 = char.HumanoidRootPart
  8555. tweld.Part1 = char.Torso
  8556.  
  8557. local coru=coroutine.wrap(function()
  8558. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)),0.25)
  8559. end)
  8560. coru()
  8561. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(-45),math.rad(0)), 0.25)
  8562.  
  8563. wait(0.5)
  8564. local thote = Instance.new("Sound", char.Head)
  8565. thote.SoundId = "rbxassetid://358498516"
  8566. thote.Volume = 1
  8567. thote:Play()
  8568.  
  8569.  
  8570.  
  8571. local coru=coroutine.wrap(function()
  8572. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)),0.04)
  8573. end)
  8574. coru()
  8575. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.04)
  8576. wait(0.04)
  8577. local ree = Instance.new('Part',workspace)
  8578. ree.Shape = Enum.PartType.Cylinder
  8579. ree.CanCollide = false
  8580. ree.Anchored = false
  8581. ree.Size = Vector3.new(0.5,2,2)
  8582. ree.TopSurface = Enum.SurfaceType.Smooth
  8583. ree.BottomSurface = Enum.SurfaceType.Smooth
  8584. ree.Transparency = 0.8
  8585. ree.Material =Enum.Material.Neon
  8586. ree.BrickColor = BrickColor.new('Toothpaste')
  8587. ree.CFrame = handle.CFrame*CFrame.Angles(0,0,math.rad(90))
  8588. ree:BreakJoints()
  8589. local reee = Instance.new("Sound", ree)
  8590. reee.SoundId = "rbxassetid://138677306"
  8591. reee:Play()
  8592. local heck = Instance.new('BodyVelocity',ree)
  8593. heck.Velocity = ree.CFrame.rightVector*50
  8594. heck.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  8595. local coru=coroutine.wrap(function()
  8596. for i=1,21 do
  8597. local cf = ree.CFrame
  8598. ree.Size = ree.Size+Vector3.new(0,2,2)
  8599. ree.CFrame = cf
  8600. wait()
  8601. end
  8602. for i=1,4 do
  8603. local cf = ree.CFrame
  8604. ree.Size = ree.Size+Vector3.new(0,2,2)
  8605. ree.CFrame = cf
  8606. ree.Transparency = ree.Transparency + 0.05
  8607. wait()
  8608. end
  8609. ree:Destroy()
  8610. end)
  8611. coru()
  8612. ree.Touched:connect(function(hit)
  8613. if hit.Parent and hit.Parent ~= char and hit.Parent:FindFirstChildOfClass('Humanoid') then
  8614. hit.Parent:FindFirstChildOfClass('Humanoid').Health = 100
  8615. ragdollpart(hit.Parent,"Head")
  8616. end
  8617. end)
  8618. wait(0.5)
  8619. local coru=coroutine.wrap(function()
  8620. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.8)
  8621. end)
  8622. coru()
  8623. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)
  8624.  
  8625. rweld:Destroy()
  8626. tweld:Destroy()
  8627. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8628. local clone = rightclone:Clone()
  8629. clone.Part0 = char.Torso
  8630. clone.Part1 = char["Right Arm"]
  8631. clone.Parent = char.Torso
  8632. end
  8633. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8634. local clone = torsoclone:Clone()
  8635. clone.Part0 = char.HumanoidRootPart
  8636. clone.Part1 = char.Torso
  8637. clone.Parent = char.HumanoidRootPart
  8638. end
  8639. end)
  8640. working = false
  8641. end
  8642.  
  8643. function katanaswing()
  8644. working = true
  8645. pcall(function()
  8646. local rweld = Instance.new("Weld", char["Right Arm"])
  8647. local lweld = Instance.new("Weld", char["Left Arm"])
  8648. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8649. rweld.Part0 = char["Torso"]
  8650. rweld.Part1 = char["Right Arm"]
  8651. rweld.C0 = CFrame.new(1.5, 0, 0)
  8652. lweld.Part0 = char.Torso
  8653. lweld.Part1 = char["Left Arm"]
  8654. lweld.C0 = CFrame.new(-1.5, 0, 0)
  8655. tweld.Part0 = char.HumanoidRootPart
  8656. tweld.Part1 = char.Torso
  8657.  
  8658. local cor = coroutine.wrap(function()
  8659. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(45), 0),0.08)
  8660. end)
  8661. cor()
  8662. lerp(rweld,rweld.C0,CFrame.new(1.35, 0.5, -1.2) * CFrame.Angles(0, math.rad(110), math.rad(90)),0.08)
  8663. wait(0.2)
  8664. local at1 = Instance.new("Attachment", handle)
  8665. local at2 = Instance.new("Attachment", handle)
  8666. at1.Visible = false
  8667. at1.Position = Vector3.new(5, 0, 0)
  8668. at2.Visible = false
  8669. at2.Position = Vector3.new(1, 0, 0)
  8670.  
  8671. local trail = Instance.new("Trail", handle)
  8672. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, trail.Parent.Color), ColorSequenceKeypoint.new(1, trail.Parent.Color)})
  8673. trail.LightEmission = 0.25
  8674. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.9), NumberSequenceKeypoint.new(1, 1)})
  8675. trail.Lifetime = 0.10
  8676. trail.MinLength = 0.05
  8677. trail.Attachment0 = at1
  8678. trail.Attachment1 = at2
  8679.  
  8680. swinging = true
  8681.  
  8682. local cor = coroutine.wrap(function()
  8683. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-45), 0),0.04)
  8684. end)
  8685. cor()
  8686. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(90)),0.04)
  8687. wait(0.2)
  8688. swinging = false
  8689. trail:Destroy()
  8690. at1:Destroy()
  8691. at2:Destroy()
  8692. local cor = coroutine.wrap(function()
  8693. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8694. end)
  8695. cor()
  8696. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  8697. rweld:Destroy()
  8698. lweld:Destroy()
  8699. tweld:Destroy()
  8700. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8701. local clone = rightclone:Clone()
  8702. clone.Part0 = char.Torso
  8703. clone.Part1 = char["Right Arm"]
  8704. clone.Parent = char.Torso
  8705. end
  8706. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8707. local clone = leftclone:Clone()
  8708. clone.Part0 = char.Torso
  8709. clone.Part1 = char["Left Arm"]
  8710. clone.Parent = char.Torso
  8711. end
  8712. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8713. local clone = torsoclone:Clone()
  8714. clone.Part0 = char.HumanoidRootPart
  8715. clone.Part1 = char.Torso
  8716. clone.Parent = char.HumanoidRootPart
  8717. end
  8718. end)
  8719. working = false
  8720. end
  8721.  
  8722. function throw()
  8723. working = true
  8724. pcall(function()
  8725. local rweld = char["Right Arm"]:FindFirstChild("Weld")
  8726. local lweld = char["Left Arm"]:FindFirstChild("Weld")
  8727. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8728. tweld.Part0 = char.HumanoidRootPart
  8729. tweld.Part1 = char.Torso
  8730. local throwsound = Instance.new("Sound", char.Head)
  8731. throwsound.SoundId = "rbxassetid://711753382"
  8732. throwsound.PlaybackSpeed = 0.75
  8733.  
  8734. local cor = coroutine.wrap(function()
  8735. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-30), 0),0.04)
  8736. end)
  8737. local cor2 = coroutine.wrap(function()
  8738. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.15, 0.4) * CFrame.Angles(0, math.rad(-30), math.rad(15)),0.04)
  8739. end)
  8740. cor()
  8741. cor2()
  8742. grabweld:Remove()
  8743. throwsound:Play()
  8744.  
  8745. local throwvel = Instance.new("BodyThrust")
  8746. throwvel.Force = Vector3.new(0, 3000, -2000)
  8747. pcall(function()
  8748. throwvel.Parent = grabbed.Torso
  8749. end)
  8750. pcall(function()
  8751. throwvel.Parent = grabbed.UpperTorso
  8752. end)
  8753.  
  8754. lerp(lweld,lweld.C0,CFrame.new(-1.3, 0.7, -1) * CFrame.Angles(0, math.rad(-70), math.rad(-105)),0.04)
  8755. wait(0.15)
  8756. throwvel:Remove()
  8757. local cor = coroutine.wrap(function()
  8758. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8759. end)
  8760. local cor2 = coroutine.wrap(function()
  8761. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8762. end)
  8763. cor()
  8764. cor2()
  8765. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  8766. lweld:Remove()
  8767. rweld:Remove()
  8768. tweld:Remove()
  8769. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  8770. local clone = rightclone:Clone()
  8771. clone.Part0 = char.Torso
  8772. clone.Part1 = char["Right Arm"]
  8773. clone.Parent = char.Torso
  8774. end
  8775. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  8776. local clone = leftclone:Clone()
  8777. clone.Part0 = char.Torso
  8778. clone.Part1 = char["Left Arm"]
  8779. clone.Parent = char.Torso
  8780. end
  8781. if torsoclone and char:FindFirstChild('Torso') and char:FindFirstChild('HumanoidRootPart') then
  8782. local clone = torsoclone:Clone()
  8783. clone.Part0 = char.HumanoidRootPart
  8784. clone.Part1 = char.Torso
  8785. clone.Parent = char.HumanoidRootPart
  8786. end
  8787. local lolgrabbed = grabbed
  8788. spawn(function()
  8789. wait(2)
  8790. unstun(lolgrabbed)
  8791. end)
  8792. end)
  8793. grabbed = nil
  8794. working = false
  8795. end
  8796.  
  8797. function whoosh(vroom)
  8798. vroom.Parent = workspace
  8799. vroom.Name = "Projectile"
  8800. vroom.CFrame = CFrame.new(char.Head.CFrame.p,mouse.Hit.p)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0))
  8801. vroom.Anchored = true
  8802. vroom.Velocity = Vector3.new(0,0,0)
  8803. vroom.RotVelocity = Vector3.new(0,0,0)
  8804. vroom.Anchored = false
  8805. game:GetService('Debris'):AddItem(vroom,10)
  8806. local flyy = Instance.new('BodyVelocity',vroom)
  8807. flyy.Velocity = vroom.CFrame.rightVector*200
  8808. local touched = false
  8809. for i,v in pairs(vroom:GetChildren()) do
  8810. if v:IsA('BasePart') then
  8811. v.Touched:connect(function(hit)
  8812. local pos = vroom.CFrame
  8813. if touched == false then
  8814. if hit and hit.Parent and hit.Transparency ~= 1 and hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent~= char then
  8815. touched = true
  8816. local before = hit.Anchored
  8817. vroom.Anchored = true
  8818. vroom.Velocity = Vector3.new(0,0,0)
  8819. vroom.RotVelocity = Vector3.new(0,0,0)
  8820. vroom.CFrame = vroom.CFrame-(vroom.CFrame.rightVector)
  8821. hit.Anchored = true
  8822. flyy:Destroy()
  8823. pcall(function()
  8824. local weld = Instance.new('Weld',hit)
  8825. weld.Part0 = hit
  8826. weld.Part1 = vroom
  8827. weld.C0 = hit.CFrame:toObjectSpace(vroom.CFrame)
  8828. local ayybleed = Instance.new('Part',hit)
  8829. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  8830. ayybleed.BrickColor = BrickColor.new('Maroon')
  8831. ayybleed.Material = Enum.Material.SmoothPlastic
  8832. ayybleed.Name = "ayybleed"
  8833. ayybleed.CanCollide = false
  8834. ayybleed.Transparency = 1
  8835. ayybleed.CFrame = hit.CFrame
  8836. ayybleed:BreakJoints()
  8837. local attachment1 = Instance.new('Attachment',ayybleed)
  8838. local attachment0 = Instance.new('Attachment',hit)
  8839. for i,v in pairs(vroom:GetChildren()) do
  8840. if v.Name == "blade" and v.Size == Vector3.new(0.23, 1.19, 0.1) then
  8841. v.Name = "REEEE"
  8842. end
  8843. end
  8844. attachment1.Orientation = vroom["REEEE"].Orientation+Vector3.new(90,0,0)
  8845. attachment0.Position = hit.CFrame:toObjectSpace(vroom["REEEE"].CFrame).p-(hit.CFrame:toObjectSpace(vroom["REEEE"].CFrame).upVector)
  8846. if attachment0 and attachment1 then
  8847. local constraint = Instance.new("HingeConstraint")
  8848. constraint.Attachment0 = attachment0
  8849. constraint.Attachment1 = attachment1
  8850. constraint.LimitsEnabled = true
  8851. constraint.UpperAngle = 0
  8852. constraint.LowerAngle = 0
  8853. constraint.Parent = attachment0
  8854. end
  8855. local bleedBLEED= coroutine.wrap(function()
  8856. bleed(ayybleed)
  8857. end)
  8858. bleedBLEED()
  8859. if hit.Name ~= "Head" and hit.Name ~= "UpperTorso" and hit.Name ~= "Torso" and hit.Name ~= "LowerTorso" then
  8860. game:GetService('Debris'):AddItem(ayybleed,7.5)
  8861. end
  8862. end)
  8863. hit.Anchored = before
  8864. vroom.Anchored = false
  8865. vroom.CanCollide = true
  8866. pcall(function()
  8867. vroom:FindFirstChildOfClass('Trail'):Destroy()
  8868. end)
  8869. for i,v in pairs(vroom:GetChildren()) do
  8870. if v:IsA('BasePart') then
  8871. v.CanCollide = true
  8872. end
  8873. end
  8874. if hit.Name == "Head" or hit.Name == "UpperTorso" or hit.Name == "Torso" or hit.Name == "LowerTorso" then
  8875. pcall(function()
  8876. hit.Parent.HumanoidRootPart:Destroy()
  8877. end)
  8878. pcall(function()
  8879. ragdollpart(hit.Parent,"Left Arm")
  8880. ragdollpart(hit.Parent,"Left Leg")
  8881. ragdollpart(hit.Parent,"Right Arm")
  8882. ragdollpart(hit.Parent,"Right Leg")
  8883. end)
  8884. pcall(function()
  8885. ragdollpart(hit.Parent,"LeftUpperLeg")
  8886. ragdollpart(hit.Parent,"RightUpperLeg")
  8887. ragdollpart(hit.Parent,"LeftUpperArm")
  8888. ragdollpart(hit.Parent,"RightUpperArm")
  8889. end)
  8890. spawn(function()
  8891. wait(5)
  8892. ragdollpart(hit.Parent,"Head")
  8893. end)
  8894. else
  8895. pcall(function()
  8896. ragdollpart(hit.Parent,hit.Name)
  8897. end)
  8898. end
  8899. elseif hit and hit.CanCollide == true and hit.Parent and hit.Parent ~= char then
  8900. touched = true
  8901. local before = hit.Anchored
  8902. vroom.Anchored = true
  8903. vroom.Velocity = Vector3.new(0,0,0)
  8904. vroom.RotVelocity = Vector3.new(0,0,0)
  8905. hit.Anchored = true
  8906. flyy:Destroy()
  8907. vroom.CFrame = vroom.CFrame-vroom.CFrame.rightVector
  8908. pcall(function()
  8909. local weld = Instance.new('Weld',hit)
  8910. weld.Part0 = hit
  8911. weld.Part1 = vroom
  8912. weld.C0 = hit.CFrame:toObjectSpace(vroom.CFrame)
  8913. end)
  8914. pcall(function()
  8915. vroom:FindFirstChildOfClass('Trail'):Destroy()
  8916. end)
  8917. hit.Anchored = before
  8918. vroom.Anchored = false
  8919. end
  8920. end
  8921. end)
  8922. end
  8923. end
  8924. end
  8925.  
  8926. function fling()
  8927. working = true
  8928. pcall(function()
  8929. local rweld = Instance.new("Weld", char["Right Arm"])
  8930. local lweld = Instance.new("Weld", char["Left Arm"])
  8931. rweld.Part0 = char["Torso"]
  8932. rweld.Part1 = char["Right Arm"]
  8933. rweld.C0 = CFrame.new(1.5, 0, 0)
  8934. lweld.Part0 = char.Torso
  8935. lweld.Part1 = char["Left Arm"]
  8936. lweld.C0 = CFrame.new(-1.5, 0, 0)
  8937. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  8938. tweld.Part0 = char.HumanoidRootPart
  8939. tweld.Part1 = char.Torso
  8940.  
  8941. local at1 = Instance.new("Attachment", handle)
  8942. local at2 = Instance.new("Attachment", handle)
  8943. at1.Visible = false
  8944. at1.Position = Vector3.new(2, 0, 0)
  8945. at2.Visible = false
  8946. at2.Position = Vector3.new(-0.3, 0, 0)
  8947.  
  8948. local trail = Instance.new("Trail", handle)
  8949. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  8950. trail.LightEmission = 0.25
  8951. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.75), NumberSequenceKeypoint.new(1, 1)})
  8952. trail.Lifetime = 0.10
  8953. trail.MinLength = 0.05
  8954. trail.Attachment0 = at1
  8955. trail.Attachment1 = at2
  8956.  
  8957. local cor = coroutine.wrap(function()
  8958. lerp(rweld,rweld.C0,CFrame.new(1.75, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(45)),0.07)
  8959. end)
  8960. cor()
  8961. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, -0.5) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)),0.07)
  8962.  
  8963. local cor = coroutine.wrap(function()
  8964. lerp(rweld,rweld.C0,CFrame.new(1.75, 1, 0.25) * CFrame.Angles(math.rad(35), math.rad(0), math.rad(150)),0.07)
  8965. end)
  8966. local cor2 = coroutine.wrap(function()
  8967. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-45), math.rad(0)),0.07)
  8968. end)
  8969. local cor3 = coroutine.wrap(function()
  8970. lerp(hweld,hweld.C0,CFrame.new(0, -2.5, 0) * CFrame.Angles(math.rad(90),math.rad(90), 0),0.12)
  8971. end)
  8972. cor()
  8973. cor2()
  8974. cor3()
  8975. lerp(lweld,lweld.C0,CFrame.new(-1.75, 0.5, -0.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-45)),0.07)
  8976. wait(0.2)
  8977.  
  8978. local cor = coroutine.wrap(function()
  8979. lerp(rweld,rweld.C0,CFrame.new(1.5, 1, 0.25) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(170)),0.03)
  8980. end)
  8981. local cor2 = coroutine.wrap(function()
  8982. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.03)
  8983. end)
  8984. cor()
  8985. cor2()
  8986. lerp(lweld,lweld.C0,CFrame.new(-1, 0, -0.45) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(45)),0.03)
  8987.  
  8988. local cor = coroutine.wrap(function()
  8989. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.5, -0.5) * CFrame.Angles(math.rad(0), math.rad(60), math.rad(90)),0.03)
  8990. end)
  8991. local cor2 = coroutine.wrap(function()
  8992. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(45), math.rad(0)),0.01)
  8993. end)
  8994. cor()
  8995. cor2()
  8996. whoosh(handle:Clone())
  8997. for i, v in pairs(handle:GetChildren()) do
  8998. if v:IsA("Part") then
  8999. v.Transparency = 1
  9000. end
  9001. end
  9002. handle.Transparency = 1
  9003. trail:Remove()
  9004. at1:Remove()
  9005. at2:Remove()
  9006. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)),0.01)
  9007. local cor = coroutine.wrap(function()
  9008. lerp(rweld,rweld.C0,CFrame.new(0.5, 0.4, -1) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(75)),0.04)
  9009. end)
  9010. local cor2 = coroutine.wrap(function()
  9011. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(55), math.rad(0)),0.04)
  9012. end)
  9013. cor()
  9014. cor2()
  9015. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(45), math.rad(0), math.rad(0)),0.04)
  9016. wait(0.2)
  9017.  
  9018. local cor = coroutine.wrap(function()
  9019. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.07)
  9020. end)
  9021. local cor2 = coroutine.wrap(function()
  9022. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.07)
  9023. end)
  9024. cor()
  9025. cor2()
  9026. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)),0.07)
  9027.  
  9028. for i, v in pairs(handle:GetChildren()) do
  9029. if v:IsA("Part") then
  9030. v.Transparency = 0
  9031. end
  9032. end
  9033. handle.Transparency = 0
  9034. hweld.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0)
  9035.  
  9036. lweld:Remove()
  9037. rweld:Remove()
  9038. tweld:Remove()
  9039.  
  9040. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  9041. local clone = torsoclone:Clone()
  9042. clone.Part0 = char.HumanoidRootPart
  9043. clone.Part1 = char.Torso
  9044. clone.Parent = char.HumanoidRootPart
  9045. end
  9046. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9047. local clone = leftclone:Clone()
  9048. clone.Part0 = char.Torso
  9049. clone.Part1 = char["Left Arm"]
  9050. clone.Parent = char.Torso
  9051. end
  9052. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9053. local clone = rightclone:Clone()
  9054. clone.Part0 = char.Torso
  9055. clone.Part1 = char["Right Arm"]
  9056. clone.Parent = char.Torso
  9057. end
  9058. end)
  9059. working = false
  9060. end
  9061.  
  9062. function kill()
  9063. working = true
  9064. pcall(function()
  9065. local rweld = char["Right Arm"]:FindFirstChild("Weld")
  9066. local lweld = char["Left Arm"]:FindFirstChild("Weld")
  9067. local tweld = Instance.new("Weld", char.HumanoidRootPart)
  9068. tweld.Part0 = char.HumanoidRootPart
  9069. tweld.Part1 = char.Torso
  9070. local killsound = Instance.new("Sound", grabbed.Head)
  9071. killsound.SoundId = "rbxassetid://150315649"
  9072. killsound.PlaybackSpeed = 1.2
  9073. local killsoundac = Instance.new("Sound", grabbed.Head)
  9074. killsoundac.SoundId = "rbxassetid://162194585"
  9075. killsoundac.PlaybackSpeed = 1
  9076. killsoundac.Volume = 1
  9077. local throwsound = Instance.new("Sound", char.Head)
  9078. throwsound.SoundId = "rbxassetid://711753382"
  9079. throwsound.PlaybackSpeed = 0.75
  9080. local chokesound = Instance.new("Sound", grabbed.Head)
  9081. chokesound.SoundId = "rbxassetid://418658161"
  9082. chokesound.TimePosition = 3
  9083. chokesound.PlaybackSpeed = 1
  9084. local bleedsound = Instance.new("Sound", grabbed.Head)
  9085. bleedsound.SoundId = "rbxassetid://244502094"
  9086. bleedsound.PlaybackSpeed = 1.5
  9087. bleedsound.Volume = 1
  9088.  
  9089. pitchun = math.random(9, 12)/10
  9090. pitchdos = math.random(9, 13)/10
  9091.  
  9092. killsound.PlaybackSpeed = pitchun
  9093. killsoundac.PlaybackSpeed = pitchdos
  9094. chokesound.PlaybackSpeed = pitchun
  9095.  
  9096. pcall(function()
  9097. grabbed.HumanoidRootPart:Destroy()
  9098. end)
  9099.  
  9100. lerp(rweld,rweld.C0,CFrame.new(0.5, 0.7, -0.70) * CFrame.Angles(0, math.rad(100), math.rad(105)),0.1)
  9101. wait(0.2)
  9102. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(90)),0.04)
  9103.  
  9104. killsound:Play()
  9105. killsoundac:Play()
  9106. chokesound:Play()
  9107. bleedsound:Play()
  9108.  
  9109. local ayybleed = Instance.new('Part',grabbed)
  9110. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  9111. ayybleed.BrickColor = BrickColor.new('Maroon')
  9112. ayybleed.Material = Enum.Material.SmoothPlastic
  9113. ayybleed.Name = "ayybleed"
  9114. ayybleed.CanCollide = false
  9115. ayybleed.Transparency = 0.5
  9116. ayybleed.CFrame = grabbed.Head.CFrame
  9117. ayybleed:BreakJoints()
  9118. local attachment1 = Instance.new('Attachment',ayybleed)
  9119. attachment1.Position = Vector3.new(-0.55,0,0)
  9120. attachment1.Orientation = Vector3.new(90, 0, -90)
  9121. local attachment0 = Instance.new('Attachment')
  9122. pcall(function()
  9123. attachment0.Parent = grabbed.Torso
  9124. end)
  9125. pcall(function()
  9126. attachment0.Parent = grabbed.UpperTorso
  9127. end)
  9128. if attachment0 and attachment1 then
  9129. local constraint = Instance.new("HingeConstraint")
  9130. constraint.Attachment0 = attachment0
  9131. constraint.Attachment1 = attachment1
  9132. constraint.LimitsEnabled = true
  9133. constraint.UpperAngle = 0
  9134. constraint.LowerAngle = 0
  9135. pcall(function()
  9136. constraint.Parent = grabbed.Torso
  9137. end)
  9138. pcall(function()
  9139. constraint.Parent = grabbed.UpperTorso
  9140. end)
  9141. end
  9142. local bleedBLEED= coroutine.wrap(function()
  9143. bleed(ayybleed)
  9144. end)
  9145. bleedBLEED()
  9146.  
  9147. wait(0.2)
  9148.  
  9149. local at1 = Instance.new("Attachment", handle)
  9150. local at2 = Instance.new("Attachment", handle)
  9151. at1.Visible = false
  9152. at1.Position = Vector3.new(2, 0, 0)
  9153. at2.Visible = false
  9154. at2.Position = Vector3.new(-0.3, 0, 0)
  9155.  
  9156. local trail = Instance.new("Trail", handle)
  9157. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  9158. trail.LightEmission = 0.25
  9159. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.75), NumberSequenceKeypoint.new(1, 1)})
  9160. trail.Lifetime = 0.10
  9161. trail.MinLength = 0.05
  9162. trail.Attachment0 = at1
  9163. trail.Attachment1 = at2
  9164.  
  9165. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.15, 0.4) * CFrame.Angles(0, math.rad(-40), math.rad(15)),0.08)
  9166. lerp(rweld,rweld.C0,CFrame.new(1.5, 0.15, 0.4) * CFrame.Angles(0, math.rad(-30), math.rad(15)),0.1)
  9167. local coru=coroutine.wrap(function()
  9168. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(-90), 0), 0.07)
  9169. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0), 0.09)
  9170. end)
  9171. coru()
  9172. local cor = coroutine.wrap(function()
  9173. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-30), 0),0.04)
  9174. end)
  9175. cor()
  9176. grabweld:Remove()
  9177. throwsound:Play()
  9178.  
  9179. local throwvel = Instance.new("BodyThrust")
  9180. throwvel.Force = Vector3.new(0, 3000, -1000)
  9181. pcall(function()
  9182. throwvel.Parent = grabbed.Torso
  9183. end)
  9184. pcall(function()
  9185. throwvel.Parent = grabbed.UpperTorso
  9186. end)
  9187.  
  9188. trail:Remove()
  9189. at1:Remove()
  9190. at2:Remove()
  9191. lerp(lweld,lweld.C0,CFrame.new(-1.3, 0.7, -1) * CFrame.Angles(0, math.rad(-70), math.rad(-105)),0.04)
  9192. pcall(function()
  9193. ragdollpart(grabbed,"Left Arm")
  9194. ragdollpart(grabbed,"Left Leg")
  9195. ragdollpart(grabbed,"Right Arm")
  9196. ragdollpart(grabbed,"Right Leg")
  9197. end)
  9198. pcall(function()
  9199. ragdollpart(grabbed,"LeftUpperLeg")
  9200. ragdollpart(grabbed,"RightUpperLeg")
  9201. ragdollpart(grabbed,"LeftUpperArm")
  9202. ragdollpart(grabbed,"RightUpperArm")
  9203. end)
  9204. wait(0.15)
  9205. throwvel:Remove()
  9206. local cor = coroutine.wrap(function()
  9207. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  9208. end)
  9209. local cor2 = coroutine.wrap(function()
  9210. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  9211. end)
  9212. cor()
  9213. cor2()
  9214. lerp(tweld,tweld.C0,CFrame.new(0, 0, 0) * CFrame.Angles(0, 0, 0),0.08)
  9215.  
  9216. lweld:Remove()
  9217. rweld:Remove()
  9218. tweld:Remove()
  9219.  
  9220. if torsoclone and char:FindFirstChild("Torso") and char:FindFirstChild("HumanoidRootPart") then
  9221. local clone = torsoclone:Clone()
  9222. clone.Part0 = char.HumanoidRootPart
  9223. clone.Part1 = char.Torso
  9224. clone.Parent = char.HumanoidRootPart
  9225. end
  9226. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9227. local clone = leftclone:Clone()
  9228. clone.Part0 = char.Torso
  9229. clone.Part1 = char["Left Arm"]
  9230. clone.Parent = char.Torso
  9231. end
  9232. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9233. local clone = rightclone:Clone()
  9234. clone.Part0 = char.Torso
  9235. clone.Part1 = char["Right Arm"]
  9236. clone.Parent = char.Torso
  9237. end
  9238. local coru2=coroutine.wrap(function()
  9239. local whyy = grabbed
  9240. local continue = true
  9241. local repeats = 0
  9242. while continue == true do
  9243. local ree = pcall(function()
  9244. if repeats < 20 then
  9245. whyy:FindFirstChildOfClass('Humanoid').Health = whyy:FindFirstChildOfClass('Humanoid').Health-4.9
  9246. repeats = repeats+1
  9247. if whyy:FindFirstChildOfClass('Humanoid').Health <= 0 then
  9248. continue = false
  9249. end
  9250. else
  9251. continue = false
  9252. end
  9253. end)
  9254. if ree == false then
  9255. continue = false
  9256. end
  9257. if continue == true then
  9258. wait(0.2)
  9259. end
  9260. end
  9261. ragdollpart(whyy,"Head")
  9262. end)
  9263. coru2()
  9264. throwsound:Remove()
  9265. killsound:Remove()
  9266. end)
  9267. grabbed = nil
  9268. working = false
  9269. end
  9270.  
  9271. function release()
  9272. working = true
  9273. pcall(function()
  9274. unstun(grabbed)
  9275. grabbed = nil
  9276. grabweld:Destroy()
  9277. removewelds(char["Right Arm"])
  9278. removewelds(char["Left Arm"])
  9279. local rweld = Instance.new("Weld", char["Right Arm"])
  9280. local lweld = Instance.new("Weld", char["Left Arm"])
  9281. rweld.Part0 = char["Torso"]
  9282. rweld.Part1 = char["Right Arm"]
  9283. rweld.C0 = CFrame.new(1, 0.7, -0.75) * CFrame.Angles(0, math.rad(95), math.rad(105))
  9284. lweld.Part0 = char.Torso
  9285. lweld.Part1 = char["Left Arm"]
  9286. lweld.C0 = CFrame.new(-1.25, 0.7, -0.75) * CFrame.Angles(0, math.rad(-140), math.rad(-105))
  9287. local cor = coroutine.wrap(function()
  9288. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9289. end)
  9290. local cor2 = coroutine.wrap(function()
  9291. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0),0.08)
  9292. end)
  9293. cor()
  9294. cor2()
  9295. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9296. lweld:Remove()
  9297. rweld:Remove()
  9298. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9299. local clone = leftclone:Clone()
  9300. clone.Part0 = char.Torso
  9301. clone.Part1 = char["Left Arm"]
  9302. clone.Parent = char.Torso
  9303. end
  9304. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9305. local clone = rightclone:Clone()
  9306. clone.Part0 = char.Torso
  9307. clone.Part1 = char["Right Arm"]
  9308. clone.Parent = char.Torso
  9309. end
  9310. end)
  9311. working = false
  9312. end
  9313.  
  9314. function grab()
  9315. working = true
  9316. pcall(function()
  9317. local rweld = Instance.new("Weld", char["Right Arm"])
  9318. local lweld = Instance.new("Weld", char["Left Arm"])
  9319. rweld.Part0 = char["Torso"]
  9320. rweld.Part1 = char["Right Arm"]
  9321. rweld.C0 = CFrame.new(1.5, 0, 0)
  9322. lweld.Part0 = char.Torso
  9323. lweld.Part1 = char["Left Arm"]
  9324. lweld.C0 = CFrame.new(-1.5, 0, 0)
  9325.  
  9326. local at1 = Instance.new("Attachment", handle)
  9327. local at2 = Instance.new("Attachment", handle)
  9328. at1.Visible = false
  9329. at1.Position = Vector3.new(2, 0, 0)
  9330. at2.Visible = false
  9331. at2.Position = Vector3.new(-0.3, 0, 0)
  9332.  
  9333. local trail = Instance.new("Trail", handle)
  9334. trail.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)), ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  9335. trail.LightEmission = 0.25
  9336. trail.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0.75), NumberSequenceKeypoint.new(1, 1)})
  9337. trail.Lifetime = 0.10
  9338. trail.MinLength = 0.05
  9339. trail.Attachment0 = at1
  9340. trail.Attachment1 = at2
  9341.  
  9342. local spinnyshit = coroutine.wrap(function()
  9343. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(-90), 0), 0.07)
  9344. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(90), 0), 0.07)
  9345. end)
  9346. spinnyshit()
  9347. local cor = coroutine.wrap(function()
  9348. lerp(rweld,rweld.C0,CFrame.new(2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(90)),0.08)
  9349. end)
  9350. cor()
  9351. lerp(lweld,lweld.C0,CFrame.new(-2, 0.5, 0) * CFrame.Angles(0, math.rad(0), math.rad(-90)),0.08)
  9352. wait(0.15)
  9353. grabbing = true
  9354. local cor = coroutine.wrap(function()
  9355. lerp(rweld,rweld.C0,CFrame.new(1, 0.7, -0.75) * CFrame.Angles(0, math.rad(95), math.rad(105)),0.08)
  9356. end)
  9357. cor()
  9358. lerp(lweld,lweld.C0,CFrame.new(-1.25, 0.7, -0.75) * CFrame.Angles(0, math.rad(-140), math.rad(-105)),0.08)
  9359. at1:Remove()
  9360. at2:Remove()
  9361. trail:Remove()
  9362. wait(0.3)
  9363. grabbing = false
  9364.  
  9365. if grabbed == nil then
  9366. local cor = coroutine.wrap(function()
  9367. lerp(rweld,rweld.C0,CFrame.new(1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9368. end)
  9369. local cor2 = coroutine.wrap(function()
  9370. lerp(hweld,hweld.C0,CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-180),math.rad(-90), 0),0.08)
  9371. end)
  9372. cor()
  9373. cor2()
  9374. lerp(lweld,lweld.C0,CFrame.new(-1.5, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)),0.08)
  9375. lweld:Remove()
  9376. rweld:Remove()
  9377. if leftclone and char:FindFirstChild('Left Arm') and char:FindFirstChild('Torso') then
  9378. local clone = leftclone:Clone()
  9379. clone.Part0 = char.Torso
  9380. clone.Part1 = char["Left Arm"]
  9381. clone.Parent = char.Torso
  9382. end
  9383. if rightclone and char:FindFirstChild('Right Arm') and char:FindFirstChild('Torso') then
  9384. local clone = rightclone:Clone()
  9385. clone.Part0 = char.Torso
  9386. clone.Part1 = char["Right Arm"]
  9387. clone.Parent = char.Torso
  9388. end
  9389. end
  9390. end)
  9391. working = false
  9392. end
  9393.  
  9394. mouse.KeyDown:connect(function(kkk)
  9395. local key = kkk:lower()
  9396. if usable and working == false then
  9397. if key == "z" then
  9398. if equipped == false then
  9399. if firsttime then
  9400. firsttime = false
  9401. notify("Equipped || Press X or C to equip one of two weapons",true)
  9402. else
  9403. notify("Equipped")
  9404. end
  9405. equip()
  9406. else
  9407. notify("Unequipped")
  9408. unequip()
  9409. end
  9410. elseif key == "x" then
  9411. if blademode ~= "katana" and equipped == true then
  9412. getrid(handle)
  9413. if firsttime2 then
  9414. firsttime2 = false
  9415. notify("Katana mode enabled || Press Q, E, or click to perform an action",true)
  9416. else
  9417. notify("Katana mode enabled")
  9418. end
  9419. katanamode()
  9420. elseif blademode == "katana" then
  9421. getrid(handle)
  9422. notify("Katana mode disabled")
  9423. end
  9424. elseif key == "v" then
  9425. if blademode ~= "gun" and equipped == true then
  9426. getrid(handle)
  9427. if firsttime5 then
  9428. firsttime5 = false
  9429. notify("Gun mode enabled || Click to perform an action",true)
  9430. else
  9431. notify("Gun mode enabled")
  9432. end
  9433. gunmode()
  9434. elseif blademode == "gun" then
  9435. getrid(handle)
  9436. notify("Gun mode disabled")
  9437. end
  9438. elseif key == "b" then
  9439. if childlock == false then
  9440. if blademode ~= "dildo" and equipped == true then
  9441. getrid(handle)
  9442. if firsttime4 then
  9443. firsttime4 = false
  9444. notify("Dildo mode enabled || Click to perform an action",true)
  9445. else
  9446. notify("Dildo mode enabled")
  9447. end
  9448. dildo()
  9449. elseif blademode == "dildo" then
  9450. notify("Dildo mode disabled")
  9451. getrid(handle)
  9452. end
  9453. end
  9454. elseif key == "c" then
  9455. if blademode ~= "knife" and equipped == true then
  9456. getrid(handle)
  9457. if firsttime3 then
  9458. firsttime3 = false
  9459. notify("Knife mode enabled || Press F, E, T, or Q to set modes; Click to perform an action",true)
  9460. else
  9461. notify("Knife mode enabled")
  9462. end
  9463. knifemode()
  9464. elseif blademode == "knife" then
  9465. notify("Knife mode disabled")
  9466. getrid(handle)
  9467. end
  9468. elseif key == "q" then
  9469. if blademode == "katana" then
  9470. notify()
  9471. katanaQ()
  9472. elseif blademode == "knife" then
  9473. mode = "release"
  9474. notify("Mode changed to "..mode)
  9475. end
  9476. elseif key == "e" then
  9477. if blademode == "katana" then
  9478. notify()
  9479. katanaE()
  9480. elseif blademode == "knife" then
  9481. mode = "throw"
  9482. notify("Mode changed to "..mode)
  9483. end
  9484. elseif key == "f" then
  9485. if blademode == "handle" then
  9486. notify([[BEGONE
  9487. THOT]])
  9488. begoneTHOUGHT()
  9489. elseif blademode == "knife" then
  9490. mode = "kill"
  9491. notify("Mode changed to "..mode)
  9492. end
  9493. elseif key == "t" then
  9494. if blademode == "knife" then
  9495. mode = "fling"
  9496. notify("Mode changed to "..mode)
  9497. end
  9498. end
  9499. end
  9500. if key == "m" and sounding == false then
  9501. --badass mode
  9502. pcall(function()
  9503. if badass.Playing == false then
  9504. sounding = true
  9505. for i,v in pairs(workspace:GetDescendants()) do
  9506. if v:IsA('Sound') and v~=player.Character.Head.Badass then
  9507. v:Stop()
  9508. end
  9509. end
  9510. badass:Play()
  9511. badass.Volume = 10
  9512. sounding = false
  9513. else
  9514. sounding = true
  9515. for i=1,100 do
  9516. badass.Volume = badass.Volume-0.1
  9517. wait()
  9518. end
  9519. badass.Volume = 0
  9520. badass:Stop()
  9521. sounding = false
  9522. end
  9523. end)
  9524. end
  9525. if key == "r" then
  9526. rag1 = true
  9527. if rag1 == true and rag2 == true then
  9528. oogabooga()
  9529. end
  9530. end
  9531. if key == "g" then
  9532. rag2 = true
  9533. if rag1 == true and rag2 == true then
  9534. oogabooga()
  9535. end
  9536. end
  9537. end)
  9538. mouse.KeyUp:connect(function(key)
  9539. if key == "r" then
  9540. rag1 = false
  9541. end
  9542. if key == "g" then
  9543. rag2 = false
  9544. end
  9545. end)
  9546.  
  9547. handle.ChildAdded:connect(function(child)
  9548. if child:IsA('BasePart') then
  9549. child.CanCollide = false
  9550. if child.Name == "blade" then
  9551. child.Touched:connect(function(hit)
  9552. if blademode == "katana" and swinging then
  9553. if gettingeem then
  9554. if goteem == nil then
  9555. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9556. local sounn = Instance.new("Sound", char.Torso)
  9557. local lipp = math.random(1, 3)
  9558. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  9559. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  9560. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  9561. sounn:Play()
  9562. goteem = hit.Parent
  9563. pcall(function()
  9564. goteem.HumanoidRootPart:Destroy()
  9565. end)
  9566. pcall(function()
  9567. ragdollpart(goteem,"Right Arm")
  9568. ragdollpart(goteem,"Right Leg")
  9569. ragdollpart(goteem,"Left Arm")
  9570. ragdollpart(goteem,"Left Leg")
  9571. end)
  9572. pcall(function()
  9573. ragdollpart(goteem,"RightUpperArm")
  9574. ragdollpart(goteem,"RightUpperLeg")
  9575. ragdollpart(goteem,"LeftUpperArm")
  9576. ragdollpart(goteem,"LeftUpperLeg")
  9577. end)
  9578. pcall(function()
  9579. local weld = Instance.new('Weld',goteem.Torso)
  9580. weld.Part0 = goteem.Torso
  9581. weld.Part1 = handle
  9582. weld.C0 = CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,math.rad(-90))
  9583. end)
  9584. pcall(function()
  9585. local weld = Instance.new('Weld',goteem.UpperTorso)
  9586. weld.Part0 = goteem.UpperTorso
  9587. weld.Part1 = handle
  9588. weld.C0 = CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,math.rad(-90))
  9589. end)
  9590. pcall(function()
  9591. local thang = "Torso"
  9592. if goteem:FindFirstChild('UpperTorso') then
  9593. thang = "UpperTorso"
  9594. end
  9595. local ayybleed = Instance.new('Part',goteem)
  9596. ayybleed.Size = Vector3.new(0.2,0.2,0.2)
  9597. ayybleed.BrickColor = BrickColor.new('Maroon')
  9598. ayybleed.Material = Enum.Material.SmoothPlastic
  9599. ayybleed.Name = "ayybleed"
  9600. ayybleed.CanCollide = false
  9601. ayybleed.Transparency = 1
  9602. ayybleed.CFrame = goteem[thang].CFrame
  9603. ayybleed:BreakJoints()
  9604. local attachment1 = Instance.new('Attachment',ayybleed)
  9605. attachment1.Position = Vector3.new(0,0,0)
  9606. attachment1.Orientation = Vector3.new(-90, 0, -90)
  9607. local attachment0 = Instance.new('Attachment',goteem[thang])
  9608. if attachment0 and attachment1 then
  9609. local constraint = Instance.new("HingeConstraint")
  9610. constraint.Attachment0 = attachment0
  9611. constraint.Attachment1 = attachment1
  9612. constraint.LimitsEnabled = true
  9613. constraint.UpperAngle = 0
  9614. constraint.LowerAngle = 0
  9615. constraint.Parent = goteem
  9616. end
  9617. local bleedBLEED= coroutine.wrap(function()
  9618. bleed(ayybleed)
  9619. end)
  9620. bleedBLEED()
  9621. end)
  9622. end
  9623. end
  9624. elseif SLESH then
  9625.  
  9626. if hit.Parent and hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9627. local sounn = Instance.new("Sound", char.Torso)
  9628. local lipp = math.random(1, 3)
  9629. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  9630. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  9631. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  9632. sounn:Play()
  9633. ragdollpart(hit.Parent,hit.Name,false)
  9634. end
  9635. else
  9636. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9637. local sounn = Instance.new("Sound", char.Torso)
  9638. local lipp = math.random(1, 3)
  9639. if lipp == 1 then sounn.SoundId = "rbxassetid://444667844" end
  9640. if lipp == 2 then sounn.SoundId = "rbxassetid://444667824" end
  9641. if lipp == 3 then sounn.SoundId = "rbxassetid://444667859" end
  9642. sounn:Play()
  9643. swinging = false
  9644. ragdollpart(hit.Parent,"Head",true,false)
  9645. end
  9646. end
  9647. elseif blademode == "knife" then
  9648. if grabbing == true and grabbed == nil then
  9649. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9650. grabbed = hit.Parent
  9651.  
  9652. stun(grabbed)
  9653.  
  9654. local grabwelds = Instance.new("Weld", char.Torso)
  9655. grabwelds.Part0 = char.Torso
  9656. pcall(function()
  9657. grabwelds.Part1 = grabbed.Torso
  9658. end)
  9659. pcall(function()
  9660. grabwelds.Part1 = grabbed.UpperTorso
  9661. end)
  9662. grabwelds.C0 = CFrame.new(-0.45, 0, -1)
  9663. grabweld = grabwelds
  9664. end
  9665. end
  9666. end
  9667. end)
  9668. end
  9669. elseif child:IsA("Model") then
  9670. child.ChildAdded:connect(function(dildotip)
  9671. if dildotip:IsA('BasePart') then
  9672. dildotip.Touched:connect(function(hit)
  9673. if MOAN == true then
  9674. if hit.Parent:FindFirstChildOfClass('Humanoid') and hit.Parent:FindFirstChildOfClass('Humanoid').Health > 0 and hit.Parent ~= char then
  9675. local sound = Instance.new('Sound',hit.Parent.Head)
  9676. sound.SoundId = 'rbxassetid://447226325'
  9677. sound.Volume = 5
  9678. sound:Play()
  9679. local sound3 = Instance.new("Sound",hit.Parent.Head)
  9680. sound3.Volume = 5.5
  9681. sound3.SoundId = "rbxassetid://702631545"
  9682. sound3:Play()
  9683. pcall(function()
  9684. for i,v in pairs(hit.Parent.Head:GetChildren()) do
  9685. if v:IsA('Decal') then v:Destroy() end
  9686. end
  9687. end)
  9688. pcall(function()
  9689. local ree=Instance.new('Decal',hit.Parent.Head)
  9690. ree.Name = "face"
  9691. ree.Texture = "rbxassetid://33453339"
  9692. end)
  9693. MOAN = false
  9694. aidsificating = hit.Parent
  9695. for i, v in pairs(handle["pink toy"]:GetChildren()) do
  9696. if v:IsA("Part") then
  9697. v:FindFirstChild("ParticleEmitter"):Destroy()
  9698. end
  9699. end
  9700. end
  9701. end
  9702. end)
  9703. end
  9704. end)
  9705. end
  9706. end)
  9707.  
  9708. mouse.Button1Down:connect(function(jew)
  9709. if usable and working == false and equipped then
  9710. if blademode == "katana" then
  9711. notify()
  9712. katanaswing()
  9713. elseif blademode == "knife" then
  9714. notify()
  9715. if grabbed == nil then
  9716. if mode == "fling" then
  9717. fling()
  9718. else
  9719. grab()
  9720. end
  9721. elseif grabbed ~= nil then
  9722. if mode == "kill" then
  9723. kill()
  9724. elseif mode == "throw" then
  9725. throw()
  9726. elseif mode == "release" then
  9727. release()
  9728. end
  9729. end
  9730. elseif blademode == "dildo" then
  9731. raep()
  9732. end
  9733. end
  9734. end)
  9735.  
  9736. end
  9737. spawned()
  9738.  
  9739. player.CharacterAdded:connect(function()
  9740. spawned()
  9741. end)
  9742. local avgs = {}
  9743.  
  9744. game:GetService('RunService').Heartbeat:connect(function(step)
  9745. local ofps = math.floor((60/(step*60))*10)/10
  9746. if #avgs > 100 then
  9747. table.remove(avgs,1)
  9748. end
  9749. table.insert(avgs,#avgs+1,ofps)
  9750. local fpsa = 0
  9751. for i,v in pairs(avgs) do
  9752. fpsa = fpsa+v
  9753. end
  9754. fpsa = math.floor(fpsa/#avgs)
  9755. fps.Text = 'FPS: '..tostring(fpsa)
  9756. end)
  9757.  
  9758. while true do
  9759. for i,v in pairs(rekt) do
  9760. if v.Parent ~= nil then
  9761. if v:FindFirstChildOfClass('Humanoid') and v:FindFirstChildOfClass('Humanoid').Health>0 then
  9762. for a,c in pairs(v:GetChildren()) do
  9763. if c:IsA('Tool') then
  9764. c.ManualActivationOnly = true
  9765. wait()
  9766. if game:GetService('Players'):GetPlayerFromCharacter(v) then
  9767. c.Parent = game:GetService('Players'):GetPlayerFromCharacter(v).Backpack
  9768. c.ManualActivationOnly = false
  9769. end
  9770. end
  9771. end
  9772. v:FindFirstChildOfClass('Humanoid').PlatformStand = true
  9773. v:FindFirstChildOfClass('Humanoid').Sit = false
  9774. v:FindFirstChildOfClass('Humanoid').JumpPower = 0
  9775. v:FindFirstChildOfClass('Humanoid').WalkSpeed = 0
  9776. v:FindFirstChildOfClass('Humanoid').Name = "hecc"
  9777. else
  9778. table.remove(rekt,i)
  9779. end
  9780. else
  9781. table.remove(rekt,i)
  9782. end
  9783. end
  9784. wait()
  9785. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement